diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index e72274758..e7b9e7d47 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -1,4 +1,7 @@ -6.6.2 +6.6.3 + - fix [ 1221284 ] Operation\user.pm i18n {internationalize labels} + +6.6.2 - Changed the back to site link in the admin console to act intuitively rather than logically. - fix [ 1220552 ] moderation of postings/threads - fix [ 1218870 ] !! Bugs in Article.pm (old 'Discussion allowed' feature) diff --git a/lib/WebGUI/Operation/User.pm b/lib/WebGUI/Operation/User.pm index 2c96b8326..a6bd59bdf 100644 --- a/lib/WebGUI/Operation/User.pm +++ b/lib/WebGUI/Operation/User.pm @@ -318,7 +318,7 @@ sub www_editUser { @exclude = (@exclude,"1","2","7"); $tabform->getTab("groups")->group( -name=>"groupsToAdd", - -label=>"GROUPS TO ADD", + -label=>$i18n->get("groups to add"), -excludeGroups=>\@exclude, -size=>15, -multiple=>1, @@ -340,7 +340,7 @@ sub www_editUser { -name=>"groupsToDelete", -options=>WebGUI::SQL->buildHashRef("select groupId, groupName from groups where groupId in (".quoteAndJoin(\@include).") and showInForms=1 order by groupName"), - -label=>"GROUPS TO DELETE", + -label=>$i18n->get("groups to delete"), -multiple=>1, -size=>15, -value=>\@groupsToDelete diff --git a/lib/WebGUI/i18n/English/WebGUI.pm b/lib/WebGUI/i18n/English/WebGUI.pm index cbeab13bc..a6c49e8c3 100644 --- a/lib/WebGUI/i18n/English/WebGUI.pm +++ b/lib/WebGUI/i18n/English/WebGUI.pm @@ -4051,12 +4051,22 @@ Message Boards hold forums for users. There are many different Wobjects in WebG message => q|Clear Cache|, lastUpdated => 1031514049 }, - + 'Enable Metadata ?' => { message => q|Enable Metadata ?|, lastUpdated => 1089039511 }, + 'groups to add' => { + message => q|GROUPS TO ADD|, + lastUpdated => 1118861810 + }, + + 'groups to delete' => { + message => q|GROUPS TO DELETE|, + lastUpdated => 1118861810 + }, + }; 1;