Change logout navigation label from "Abmelden" to "Log out".

Change scmConfig tab panel label from "Scm Config" to "SCM Config", since SCM is an initialism.
This commit is contained in:
David M. Carr
2010-12-17 12:26:52 -05:00
parent 3795b6dd0d
commit 8da87187ae

View File

@@ -127,7 +127,7 @@ Ext.onReady(function(){
items: [{ items: [{
label: 'General', label: 'General',
fn: function(){ fn: function(){
addTabPanel("scmConfig", "scmConfig", "Scm Config"); addTabPanel("scmConfig", "scmConfig", "SCM Config");
} }
},{ },{
label: 'Repository Types', label: 'Repository Types',
@@ -158,9 +158,9 @@ Ext.onReady(function(){
panel.addSection({ panel.addSection({
id: 'navLogout', id: 'navLogout',
title: 'Abmelden', title: 'Log out',
items: [{ items: [{
label: 'Abmelden', label: 'Log out',
fn: logout fn: logout
}] }]
}); });