phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: preferences/inc hook_settings.inc.php,1.2.2.1,1


From: Ralf Becker <address@hidden>
Subject: [Phpgroupware-cvs] CVS: preferences/inc hook_settings.inc.php,1.2.2.1,1.2.2.2
Date: Tue, 18 Mar 2003 06:21:31 -0500

Update of /cvsroot/phpgroupware/preferences/inc
In directory subversions:/tmp/cvs-serv17192/inc

Modified Files:
      Tag: Version-0_9_14-branch
        hook_settings.inc.php 
Log Message:
made some more messages from the users-prefs translatable

Index: hook_settings.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/preferences/inc/hook_settings.inc.php,v
retrieving revision 1.2.2.1
retrieving revision 1.2.2.2
diff -C2 -r1.2.2.1 -r1.2.2.2
*** hook_settings.inc.php       17 Jan 2002 03:51:21 -0000      1.2.2.1
--- hook_settings.inc.php       18 Mar 2003 11:21:28 -0000      1.2.2.2
***************
*** 58,63 ****
  
        $time_formats = array(
!               '12' => '12 hour',
!               '24' => '24 hour'
        );
        create_select_box('Time format','timeformat',$time_formats);
--- 58,63 ----
  
        $time_formats = array(
!               '12' => lang('12 hour'),
!               '24' => lang('24 hour')
        );
        create_select_box('Time format','timeformat',$time_formats);
***************
*** 90,95 ****
                // The 'True' is *NOT* being used as a constant, don't change it
                $yes_and_no = array(
!                       'True' => 'Yes',
!                       ''     => 'No'
                );
                create_select_box('Show current users on navigation 
bar','show_currentusers',$yes_and_no);
--- 90,95 ----
                // The 'True' is *NOT* being used as a constant, don't change it
                $yes_and_no = array(
!                       'True' => lang('Yes'),
!                       ''     => lang('No')
                );
                create_select_box('Show current users on navigation 
bar','show_currentusers',$yes_and_no);
***************
*** 97,105 ****
  
        reset($GLOBALS['phpgw_info']['user']['apps']);
!       while (list($permission) = each($GLOBALS['phpgw_info']['user']['apps']))
        {
!               if ($GLOBALS['phpgw_info']['apps'][$permission]['status'] != 2)
                {
!                       $user_apps[$permission] = $permission;
                }
        }
--- 97,105 ----
  
        reset($GLOBALS['phpgw_info']['user']['apps']);
!       while (list($app) = each($GLOBALS['phpgw_info']['user']['apps']))
        {
!               if ($GLOBALS['phpgw_info']['apps'][$app]['status'] != 2 && $app)
                {
!                       $user_apps[$app] = 
$GLOBALS['phpgw_info']['apps'][$app]['title'] ? 
$GLOBALS['phpgw_info']['apps'][$app]['title'] : lang($app);
                }
        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]