changeset 5952:24d5af811027

spelling: fix title casing on translated template strings
author Andrew Shadura <andrew@shadura.me>
date Sat, 28 May 2016 15:08:31 +0200
parents 060ffe6dd700
children e2fb29be0681
files kallithea/templates/admin/auth/auth_settings.html kallithea/templates/base/root.html
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/admin/auth/auth_settings.html	Sun May 08 18:33:47 2016 +0200
+++ b/kallithea/templates/admin/auth/auth_settings.html	Sat May 28 15:08:31 2016 +0200
@@ -119,7 +119,7 @@
             elems.splice(elems.indexOf(plugin_id), 1);
             $auth_plugins_input.val(elems.join(','));
             $cur_button.removeClass('btn-success');
-            $cur_button.html(_TM['disabled']);
+            $cur_button.html(_TM['Disabled']);
         }
         else{
             if(elems.indexOf(plugin_id) == -1){
@@ -127,7 +127,7 @@
             }
             $auth_plugins_input.val(elems.join(','));
             $cur_button.addClass('btn-success');
-            $cur_button.html(_TM['enabled']);
+            $cur_button.html(_TM['Enabled']);
         }
     });
 </script>
--- a/kallithea/templates/base/root.html	Sun May 08 18:33:47 2016 +0200
+++ b/kallithea/templates/base/root.html	Sat May 28 15:08:31 2016 +0200
@@ -37,8 +37,8 @@
                 'Expand Diff': "${_('Expand Diff')}",
                 'Failed to revoke permission': "${_('Failed to revoke permission')}",
                 'Confirm to revoke permission for {0}: {1} ?': "${_('Confirm to revoke permission for {0}: {1} ?')}",
-                'enabled': "${_('enabled')}",
-                'disabled': "${_('disabled')}",
+                'Enabled': "${_('Enabled')}",
+                'Disabled': "${_('Disabled')}",
                 'Select changeset': "${_('Select changeset')}",
                 'Specify changeset': "${_('Specify changeset')}",
                 'MSG_SORTASC': "${_('Click to sort ascending')}",