From 3d6cc0cb1f9568b5f7b55346d47048789659dbb4 Mon Sep 17 00:00:00 2001 From: Mathias Meyer Date: Mon, 18 Aug 2014 10:45:13 +0200 Subject: [PATCH] Fix casing for the settings tabs. This also slighlty improves the copy on the SSH key settings page. --- assets/scripts/app/controllers/repo_settings.coffee | 4 ++-- assets/scripts/app/templates/settings.hbs | 6 +++--- assets/scripts/app/templates/ssh_key.hbs | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/assets/scripts/app/controllers/repo_settings.coffee b/assets/scripts/app/controllers/repo_settings.coffee index 4fb7ef25..3cf63526 100644 --- a/assets/scripts/app/controllers/repo_settings.coffee +++ b/assets/scripts/app/controllers/repo_settings.coffee @@ -1,8 +1,8 @@ Travis.RepoSettingsController = Em.ObjectController.extend tabs: index: "General Settings" - env_vars: "Environment variables" - ssh_key: "Ssh key" + env_vars: "Environment Variables" + ssh_key: "SSH Key" init: -> @_super.apply this, arguments diff --git a/assets/scripts/app/templates/settings.hbs b/assets/scripts/app/templates/settings.hbs index 79ec209b..9c9458e4 100644 --- a/assets/scripts/app/templates/settings.hbs +++ b/assets/scripts/app/templates/settings.hbs @@ -1,8 +1,8 @@ diff --git a/assets/scripts/app/templates/ssh_key.hbs b/assets/scripts/app/templates/ssh_key.hbs index 196bc40c..648b57ff 100644 --- a/assets/scripts/app/templates/ssh_key.hbs +++ b/assets/scripts/app/templates/ssh_key.hbs @@ -3,7 +3,7 @@ {{partial "ssh_key/form"}} {{else}}
-

Ssh key is set.

+

SSH key is set.

{{#if description}}
Description: @@ -23,8 +23,8 @@ {{else}}

You don't have any custom key set up. - Currently used key has a following fingerprint: {{defaultKey.fingerprint}} + The default key's fingerprint is {{defaultKey.fingerprint}}

- Add a custom ssh key + Add a custom SSH key {{/if}}