43 lines
1.1 KiB
Perl
43 lines
1.1 KiB
Perl
package WebGUI::i18n::English::FriendManager;
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
|
|
'settings groupIdAdminFriends label' => {
|
|
message => q{Friends Manager},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'settings groupIdAdminFriends hoverHelp' => {
|
|
message => q{Group to manage friends, to assign people to one another and to view the interface for managing friends.},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'view template label' => {
|
|
message => q{View Template},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'view template hoverHelp' => {
|
|
message => q{This template renders the Friend Manager itself, inside the layout and style templates.},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'groupsToManageFriends label' => {
|
|
message => q{Groups to Manage as Friends},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'groupsToManageFriends hoverHelp' => {
|
|
message => q{Choose groups of users whose Friends Networks you want to Manage.},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
'title' => {
|
|
message => q{Friend Manager},
|
|
lastUpdated => 0,
|
|
},
|
|
|
|
};
|
|
|
|
1;
|