26 lines
580 B
Perl
26 lines
580 B
Perl
package WebGUI::i18n::English::AdminConsole;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'admin console' => {
|
|
message => q|Admin Console|,
|
|
lastUpdated => 1099344172,
|
|
context => q|The title of the admin console.|
|
|
},
|
|
|
|
'toggle on' => {
|
|
message => q|Show admin console.|,
|
|
lastUpdated => 1099344172,
|
|
context => q|A message indicating that clicking on the link will display the admin console.|
|
|
},
|
|
|
|
'toggle off' => {
|
|
message => q|Hide admin console.|,
|
|
lastUpdated => 1099344172,
|
|
context => q|A message indicating the clicking on the link will hide the admin console.|
|
|
},
|
|
|
|
|
|
};
|
|
|
|
1;
|