mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-01 05:44:41 +03:00
Add new localization constant
This commit is contained in:
parent
12c3e2d60d
commit
a2bfeb72a7
@ -265,6 +265,7 @@ menu.updates=Updates
|
||||
my_settings.error.no_password=No Password set for the Administrator
|
||||
my_settings.error.password_match=Entered passwords do not match
|
||||
no_such_operator=No such Operator
|
||||
not_found=-not found-
|
||||
operator.group.no_description=<no description>
|
||||
operator.groups.intro=Choose groups according to operator skills.
|
||||
operator.groups.title=Operator groups
|
||||
|
@ -91,7 +91,7 @@ if (!$op) {
|
||||
$page['avatar'] = topage($op['vcavatar']);
|
||||
}
|
||||
|
||||
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : "-not found-";
|
||||
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : getlocal("not_found");
|
||||
$page['canmodify'] = $canmodify ? "1" : "";
|
||||
|
||||
prepare_menu($operator);
|
||||
|
@ -72,7 +72,7 @@ if (!$op) {
|
||||
}
|
||||
|
||||
$page['formgroup'] = array();
|
||||
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : "-not found-";
|
||||
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : getlocal("not_found");
|
||||
$page['canmodify'] = $canmodify ? "1" : "";
|
||||
|
||||
if ($op) {
|
||||
|
@ -61,7 +61,7 @@ if (!$op) {
|
||||
|
||||
$page['permissionsList'] = get_permission_list();
|
||||
$page['formpermissions'] = array("");
|
||||
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : "-not found-";
|
||||
$page['currentop'] = $op ? topage(get_operator_name($op)) . " (" . $op['vclogin'] . ")" : getlocal("not_found");
|
||||
|
||||
if ($op) {
|
||||
foreach (permission_ids() as $perm => $id) {
|
||||
|
Loading…
Reference in New Issue
Block a user