Template i18n, new batch. Through 210 of 247.

This commit is contained in:
Colin Kuskie 2008-12-27 05:48:59 +00:00
parent 117c9dedab
commit 6233660669
8 changed files with 73 additions and 56 deletions

Binary file not shown.

View file

@ -923,6 +923,18 @@ our $I18N = {
lastUpdated => 1229311001, lastUpdated => 1229311001,
}, },
'UP' => {
message => q{UP},
context => q{template label, referring to the previous week, up. Should be an abbreviation with 2 characters},
lastUpdated => 1230356830,
},
'DN' => {
message => q{DN},
context => q{template label, referring to the next week, down. Should be an abbreviation with 2 characters},
lastUpdated => 1230356830,
},
}; };
1; 1;

View file

@ -1,57 +1,62 @@
package WebGUI::i18n::English::Asset_Dashboard; package WebGUI::i18n::English::Asset_Dashboard;
use strict; use strict;
our $I18N = { our $I18N = {
'dashboard template field label' => { 'dashboard template field label' => {
message => q|Dashboard Template|, message => q|Dashboard Template|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard template description' => { 'dashboard template description' => {
message => q|Choose a Dashboard/Portal Layout template. The default is the <b>Three Column Layout</b>.|, message => q|Choose a Dashboard/Portal Layout template. The default is the <b>Three Column Layout</b>.|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'assetName' => { 'assetName' => {
message => q|Dashboard (beta)|, message => q|Dashboard (beta)|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard adminsGroupId description' => { 'dashboard adminsGroupId description' => {
message => q|Which group may administer this Dashboard: Add/Edit/Remove Available Dashlets, Preferences, and Templates|, message => q|Which group may administer this Dashboard: Add/Edit/Remove Available Dashlets, Preferences, and Templates|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard adminsGroupId field label' => { 'dashboard adminsGroupId field label' => {
message => q|Who can manage?|, message => q|Who can manage?|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard usersGroupId field label' => { 'dashboard usersGroupId field label' => {
message => q|Who can personalize?|, message => q|Who can personalize?|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard usersGroupId description' => { 'dashboard usersGroupId description' => {
message => q|The group whose users may save their personalizations/preferences to the site. If someone is in the "Who can view?" group but not in this group, they can personalize the arrangement of the Dashlets (whose positions will be saved in cookies), but they will not be able to edit the preferences of any particular Dashlet.|, message => q|The group whose users may save their personalizations/preferences to the site. If someone is in the "Who can view?" group but not in this group, they can personalize the arrangement of the Dashlets (whose positions will be saved in cookies), but they will not be able to edit the preferences of any particular Dashlet.|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard template field label' => { 'dashboard template field label' => {
message => q|Dashboard Template|, message => q|Dashboard Template|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'dashboard template field label' => { 'dashboard template field label' => {
message => q|Dashboard Template|, message => q|Dashboard Template|,
lastUpdated => 1133619940 lastUpdated => 1133619940
}, },
'assets to hide' => { 'assets to hide' => {
message => q|Assets To Hide.|, message => q|Assets To Hide.|,
lastUpdated => 1118942468 lastUpdated => 1118942468
}, },
'assets to hide description' => { 'assets to hide description' => {
message => q|This list contains one checkbox for each child Asset of the Page Layout. Select the message => q|This list contains one checkbox for each child Asset of the Page Layout. Select the
checkbox for any Asset that you do not want displayed in the Page Layout Asset. checkbox for any Asset that you do not want displayed in the Page Layout Asset.
|, |,
lastUpdated => 1119410080, lastUpdated => 1119410080,
}, },
}; 'hide new content list' => {
message => q|Hide New Content List|,
1; lastUpdated => 1230356526,
},
};
1;