33 lines
918 B
Perl
33 lines
918 B
Perl
package WebGUI::i18n::English::Form_Group;
|
|
|
|
use strict; ##Required for all good Perl::Critic compliant code
|
|
|
|
our $I18N = {
|
|
'Group Manager' => {
|
|
message => q|Group Manager|,
|
|
lastUpdated => 1131394070, #seconds from the epoch
|
|
context => q|A form to add or do minor edits to groups|
|
|
},
|
|
|
|
'Add User...' => {
|
|
message => q|Add User...|,
|
|
lastUpdated => 1131394070, #seconds from the epoch
|
|
context => q|Hint for a text box where you enter in a username|
|
|
},
|
|
|
|
'Add Group...' => {
|
|
message => q|Add Group...|,
|
|
lastUpdated => 1131394070, #seconds from the epoch
|
|
context => q|Hint for a text box where you enter in a groupname|
|
|
},
|
|
|
|
'New Group' => {
|
|
message => q|New Group|,
|
|
lastUpdated => 1131394070, #seconds from the epoch
|
|
context => q|Label for a button to create a new group.|
|
|
},
|
|
|
|
};
|
|
|
|
1;
|
|
#vim:ft=perl
|