mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
made some more messages from the users-prefs translatable
This commit is contained in:
parent
d93bc5b52a
commit
362565025d
@ -57,8 +57,8 @@
|
|||||||
create_select_box('Date format','dateformat',$date_formats);
|
create_select_box('Date format','dateformat',$date_formats);
|
||||||
|
|
||||||
$time_formats = array(
|
$time_formats = array(
|
||||||
'12' => '12 hour',
|
'12' => lang('12 hour'),
|
||||||
'24' => '24 hour'
|
'24' => lang('24 hour')
|
||||||
);
|
);
|
||||||
create_select_box('Time format','timeformat',$time_formats);
|
create_select_box('Time format','timeformat',$time_formats);
|
||||||
|
|
||||||
@ -89,18 +89,18 @@
|
|||||||
{
|
{
|
||||||
// The 'True' is *NOT* being used as a constant, don't change it
|
// The 'True' is *NOT* being used as a constant, don't change it
|
||||||
$yes_and_no = array(
|
$yes_and_no = array(
|
||||||
'True' => 'Yes',
|
'True' => lang('Yes'),
|
||||||
'' => 'No'
|
'' => lang('No')
|
||||||
);
|
);
|
||||||
create_select_box('Show current users on navigation bar','show_currentusers',$yes_and_no);
|
create_select_box('Show current users on navigation bar','show_currentusers',$yes_and_no);
|
||||||
}
|
}
|
||||||
|
|
||||||
reset($GLOBALS['phpgw_info']['user']['apps']);
|
reset($GLOBALS['phpgw_info']['user']['apps']);
|
||||||
while (list($permission) = each($GLOBALS['phpgw_info']['user']['apps']))
|
while (list($app) = each($GLOBALS['phpgw_info']['user']['apps']))
|
||||||
{
|
{
|
||||||
if ($GLOBALS['phpgw_info']['apps'][$permission]['status'] != 2)
|
if ($GLOBALS['phpgw_info']['apps'][$app]['status'] != 2 && $app)
|
||||||
{
|
{
|
||||||
$user_apps[$permission] = $permission;
|
$user_apps[$app] = $GLOBALS['phpgw_info']['apps'][$app]['title'] ? $GLOBALS['phpgw_info']['apps'][$app]['title'] : lang($app);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
create_select_box('Default application','default_app',$user_apps);
|
create_select_box('Default application','default_app',$user_apps);
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
12 hour preferences de 12 Stunden
|
||||||
|
24 hour preferences de 24 Stunden
|
||||||
acl grants have been updated preferences de ACL (Zugangskontrollliste) wurde upgedatet
|
acl grants have been updated preferences de ACL (Zugangskontrollliste) wurde upgedatet
|
||||||
change your password preferences de Passwort ändern
|
change your password preferences de Passwort ändern
|
||||||
change your profile preferences de Profil ändern
|
change your profile preferences de Profil ändern
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
12 hour preferences en 12 hour
|
||||||
|
24 hour preferences en 24 hour
|
||||||
%1 - Preferences preferences en %1 - Preferences
|
%1 - Preferences preferences en %1 - Preferences
|
||||||
acl grants have been updated preferences en ACL grants have been updated
|
acl grants have been updated preferences en ACL grants have been updated
|
||||||
change your password preferences en Change your Password
|
change your password preferences en Change your Password
|
||||||
|
Loading…
Reference in New Issue
Block a user