Fix casing for the settings tabs.
This also slighlty improves the copy on the SSH key settings page.
This commit is contained in:
parent
2958717eba
commit
3d6cc0cb1f
|
@ -1,8 +1,8 @@
|
||||||
Travis.RepoSettingsController = Em.ObjectController.extend
|
Travis.RepoSettingsController = Em.ObjectController.extend
|
||||||
tabs:
|
tabs:
|
||||||
index: "General Settings"
|
index: "General Settings"
|
||||||
env_vars: "Environment variables"
|
env_vars: "Environment Variables"
|
||||||
ssh_key: "Ssh key"
|
ssh_key: "SSH Key"
|
||||||
|
|
||||||
init: ->
|
init: ->
|
||||||
@_super.apply this, arguments
|
@_super.apply this, arguments
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<ul class="navigation">
|
<ul class="navigation">
|
||||||
<li>{{#link-to "settings.index"}}General settings{{/link-to}}</li>
|
<li>{{#link-to "settings.index"}}General Settings{{/link-to}}</li>
|
||||||
<li>{{#link-to "env_vars"}}Environment variables{{/link-to}}</li>
|
<li>{{#link-to "env_vars"}}Environment Variables{{/link-to}}</li>
|
||||||
{{#if Travis.config.ssh_key_enabled}}
|
{{#if Travis.config.ssh_key_enabled}}
|
||||||
<li>{{#link-to "ssh_key"}}Ssh key{{/link-to}}</li>
|
<li>{{#link-to "ssh_key"}}SSH Key{{/link-to}}</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{{partial "ssh_key/form"}}
|
{{partial "ssh_key/form"}}
|
||||||
{{else}}
|
{{else}}
|
||||||
<div class="ssh-key">
|
<div class="ssh-key">
|
||||||
<p>Ssh key is set.</p>
|
<p>SSH key is set.</p>
|
||||||
{{#if description}}
|
{{#if description}}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<span class="label">Description:</label>
|
<span class="label">Description:</label>
|
||||||
|
@ -23,8 +23,8 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
<p>
|
<p>
|
||||||
You don't have any custom key set up.
|
You don't have any custom key set up.
|
||||||
Currently used key has a following fingerprint: {{defaultKey.fingerprint}}
|
The default key's fingerprint is <code>{{defaultKey.fingerprint}}</code>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<a {{action "add"}} href="#" class="add-ssh-key">Add a custom ssh key</a>
|
<a {{action "add"}} href="#" class="add-ssh-key">Add a custom SSH key</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user