fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [13898] Addressbook: rename constructor


From: Sigurd Nes
Subject: [Fmsystem-commits] [13898] Addressbook: rename constructor
Date: Tue, 15 Sep 2015 09:15:54 +0000

Revision: 13898
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=13898
Author:   sigurdne
Date:     2015-09-15 09:15:53 +0000 (Tue, 15 Sep 2015)
Log Message:
-----------
Addressbook: rename constructor

Modified Paths:
--------------
    trunk/addressbook/admin.php
    trunk/addressbook/inc/class.addressbook_importer.inc.php
    trunk/addressbook/inc/class.boXport.inc.php
    trunk/addressbook/inc/class.boaddressbook.inc.php
    trunk/addressbook/inc/class.boaddressbook_prefs.inc.php
    trunk/addressbook/inc/class.bocatalog_contact_addr_type.inc.php
    trunk/addressbook/inc/class.bocatalog_contact_comm_descr.inc.php
    trunk/addressbook/inc/class.bocatalog_contact_comm_type.inc.php
    trunk/addressbook/inc/class.bocatalog_contact_note_type.inc.php
    trunk/addressbook/inc/class.ipc_addressbook.inc.php
    trunk/addressbook/inc/class.pdb.inc.php
    trunk/addressbook/inc/class.remote.inc.php
    trunk/addressbook/inc/class.soaddressbook.inc.php
    trunk/addressbook/inc/class.socatalog_contact_addr_type.inc.php
    trunk/addressbook/inc/class.socatalog_contact_comm_descr.inc.php
    trunk/addressbook/inc/class.socatalog_contact_comm_type.inc.php
    trunk/addressbook/inc/class.socatalog_contact_note_type.inc.php
    trunk/addressbook/inc/class.uiXport.inc.php
    trunk/addressbook/inc/class.uiaddressbook.inc.php
    trunk/addressbook/inc/class.uiaddressbook_prefs.inc.php
    trunk/addressbook/inc/class.uicategorize_contacts.inc.php
    trunk/addressbook/inc/class.uifields.inc.php
    trunk/addressbook/inc/class.uivcard.inc.php
    trunk/addressbook/inc/class.widget_lists.inc.php
    trunk/addressbook/inc/export/Multiple_VCard
    trunk/addressbook/inc/export/Netscape_LDIF
    trunk/addressbook/inc/export/OpenOffice_-_calc
    trunk/addressbook/inc/export/OpenOffice_-_writer
    trunk/addressbook/inc/export/Outlook_CSV_-_Deutsch
    trunk/addressbook/inc/export/Outlook_CSV_-_Dutch
    trunk/addressbook/inc/export/Outlook_CSV_-_English
    trunk/addressbook/inc/export/Outlook_CSV_-_Espa?\195?\177ol
    trunk/addressbook/inc/export/Outlook_CSV_-_Fran?\195?\167ais
    trunk/addressbook/inc/export/Palm_PDB
    trunk/addressbook/inc/export/phpgw_LDIF
    trunk/addressbook/inc/export/phpgw_SQL
    trunk/addressbook/inc/functions.inc.php
    trunk/addressbook/inc/hook_add_def_pref.inc.php
    trunk/addressbook/inc/hook_addressbook_add_def_acl.inc.php
    trunk/addressbook/inc/hook_admin.inc.php
    trunk/addressbook/inc/hook_config_validate.inc.php
    trunk/addressbook/inc/hook_help.inc.php
    trunk/addressbook/inc/hook_home.inc.php
    trunk/addressbook/inc/hook_manual.inc.php
    trunk/addressbook/inc/hook_notifywindow.inc.php
    trunk/addressbook/inc/hook_preferences.inc.php
    trunk/addressbook/inc/hook_sidebox_menu.inc.php
    trunk/addressbook/inc/import/Import_Multiple_VCard
    trunk/addressbook/inc/import/Import_from_Netscape
    trunk/addressbook/inc/import/Import_from_Outlook_-_Deutsch
    trunk/addressbook/inc/import/Import_from_Outlook_-_Dutch
    trunk/addressbook/inc/import/Import_from_Outlook_-_English
    trunk/addressbook/inc/import/Import_from_Outlook_-_Espa?\195?\177ol
    trunk/addressbook/inc/import/Import_from_Outlook_-_Fran?\195?\167ais

Modified: trunk/addressbook/admin.php
===================================================================
--- trunk/addressbook/admin.php 2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/admin.php 2015-09-15 09:15:53 UTC (rev 13898)
@@ -66,4 +66,3 @@
 
        $t->pparse('out','admin');
        $phpgw->common->phpgw_footer();
-?>

Modified: trunk/addressbook/inc/class.addressbook_importer.inc.php
===================================================================
--- trunk/addressbook/inc/class.addressbook_importer.inc.php    2015-09-15 
08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.addressbook_importer.inc.php    2015-09-15 
09:15:53 UTC (rev 13898)
@@ -21,7 +21,7 @@
        {
                var $record;
                
-               function addressbook_importer()
+               function __construct()
                {
                }
                
@@ -47,4 +47,3 @@
                        $this->record['notes'][$args][$element] = $value;
                }
        }
-?>

Modified: trunk/addressbook/inc/class.boXport.inc.php
===================================================================
--- trunk/addressbook/inc/class.boXport.inc.php 2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/class.boXport.inc.php 2015-09-15 09:15:53 UTC (rev 
13898)
@@ -32,7 +32,7 @@
 
                var $use_session = False;
 
-               function boXport($session=False)
+               function __construct($session=False)
                {
                        $this->contacts = $GLOBALS['phpgw']->contacts;
                        $this->so = CreateObject('addressbook.soaddressbook');
@@ -283,5 +283,4 @@
                        
                        return $buffer;
                }
-       }
-?>
+       }
\ No newline at end of file

Modified: trunk/addressbook/inc/class.boaddressbook.inc.php
===================================================================
--- trunk/addressbook/inc/class.boaddressbook.inc.php   2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/class.boaddressbook.inc.php   2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -46,7 +46,7 @@
                        'add_vcard' => true  // call from 
addressbook.uivcard.in to import a vcard
                );
 
-               function boaddressbook($session=True)
+               function __construct($session=True)
                {
                        $this->so = CreateObject('addressbook.soaddressbook');
                        $this->rights = $this->so->rights;

Modified: trunk/addressbook/inc/class.boaddressbook_prefs.inc.php
===================================================================
--- trunk/addressbook/inc/class.boaddressbook_prefs.inc.php     2015-09-15 
08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.boaddressbook_prefs.inc.php     2015-09-15 
09:15:53 UTC (rev 13898)
@@ -29,7 +29,7 @@
        var $org_columns_forced=false;
        var $default_category_forced=false;
        var $public=array('read_preferences' => True);
-       function boaddressbook_prefs()
+       function __construct()
        {
                $this->preferences=CreateObject('phpgwapi.preferences');
        }

Modified: trunk/addressbook/inc/class.bocatalog_contact_addr_type.inc.php
===================================================================
--- trunk/addressbook/inc/class.bocatalog_contact_addr_type.inc.php     
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.bocatalog_contact_addr_type.inc.php     
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,7 +1,7 @@
 <?php
        class bocatalog_contact_addr_type
        {
-               function bocatalog_contact_addr_type()
+               function __construct()
                {
                        $this->so = 
CreateObject('addressbook.socatalog_contact_addr_type');
                }
@@ -30,5 +30,4 @@
                {
                        return $this->so->get_record($key);
                }
-       }
-?>
+       }
\ No newline at end of file

Modified: trunk/addressbook/inc/class.bocatalog_contact_comm_descr.inc.php
===================================================================
--- trunk/addressbook/inc/class.bocatalog_contact_comm_descr.inc.php    
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.bocatalog_contact_comm_descr.inc.php    
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,7 +1,7 @@
 <?php
        class bocatalog_contact_comm_descr
        {
-               function bocatalog_contact_comm_descr()
+               function __construct()
                {
                        $this->so = 
CreateObject('addressbook.socatalog_contact_comm_descr');
                }
@@ -87,5 +87,4 @@
                                }
                        }
                }
-       }
-?>
+       }
\ No newline at end of file

Modified: trunk/addressbook/inc/class.bocatalog_contact_comm_type.inc.php
===================================================================
--- trunk/addressbook/inc/class.bocatalog_contact_comm_type.inc.php     
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.bocatalog_contact_comm_type.inc.php     
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,7 +1,7 @@
 <?php
        class bocatalog_contact_comm_type
        {
-               function bocatalog_contact_comm_type()
+               function __construct()
                {
                        $this->so = 
CreateObject('addressbook.socatalog_contact_comm_type');
                }
@@ -30,5 +30,4 @@
                {
                        return $this->so->get_record($key);
                }
-       }
-?>
+       }
\ No newline at end of file

Modified: trunk/addressbook/inc/class.bocatalog_contact_note_type.inc.php
===================================================================
--- trunk/addressbook/inc/class.bocatalog_contact_note_type.inc.php     
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.bocatalog_contact_note_type.inc.php     
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,7 +1,7 @@
 <?php
        class bocatalog_contact_note_type
        {
-               function bocatalog_contact_note_type()
+               function __construct()
                {
                        $this->so = 
CreateObject('addressbook.socatalog_contact_note_type');
                }
@@ -31,4 +31,3 @@
                        return $this->so->get_record($key);
                }
        }
-?>

Modified: trunk/addressbook/inc/class.ipc_addressbook.inc.php
===================================================================
--- trunk/addressbook/inc/class.ipc_addressbook.inc.php 2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/class.ipc_addressbook.inc.php 2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -37,7 +37,7 @@
                *
                * @access  public
                */
-               function ipc_addressbook()
+               function __construct()
                {
                        $this->contacts = CreateObject('phpgwapi.contacts');
                        $this->vcard    = CreateObject('phpgwapi.vcard');
@@ -392,4 +392,3 @@
                }
 
        }
-?>

Modified: trunk/addressbook/inc/class.pdb.inc.php
===================================================================
--- trunk/addressbook/inc/class.pdb.inc.php     2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/class.pdb.inc.php     2015-09-15 09:15:53 UTC (rev 
13898)
@@ -282,4 +282,3 @@
                        exit;
                }
        }
-?>

Modified: trunk/addressbook/inc/class.remote.inc.php
===================================================================
--- trunk/addressbook/inc/class.remote.inc.php  2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/class.remote.inc.php  2015-09-15 09:15:53 UTC (rev 
13898)
@@ -30,7 +30,7 @@
 
                var $ldap = 0;
 
-               function remote($serverid='BigFoot')
+               function __construct($serverid='BigFoot')
                {
                        $GLOBALS['phpgw']->db->query("SELECT * FROM 
phpgw_addressbook_servers",__LINE__,__FILE__);
                        while ($GLOBALS['phpgw']->db->next_record())
@@ -133,5 +133,4 @@
                                return $in;
                        }
                }
-       }
-?>
+       }
\ No newline at end of file

Modified: trunk/addressbook/inc/class.soaddressbook.inc.php
===================================================================
--- trunk/addressbook/inc/class.soaddressbook.inc.php   2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/class.soaddressbook.inc.php   2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -62,7 +62,7 @@
                *
                * @param bool $useacl respect the access controls - should be 
true unless you know what you are doing
                */
-               function soaddressbook($useacl = true)
+               function __construct($useacl = true)
                {
                        $this->contacts = CreateObject('phpgwapi.contacts');
 

Modified: trunk/addressbook/inc/class.socatalog_contact_addr_type.inc.php
===================================================================
--- trunk/addressbook/inc/class.socatalog_contact_addr_type.inc.php     
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.socatalog_contact_addr_type.inc.php     
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,15 +1,11 @@
 <?php
        class socatalog_contact_addr_type
        {
-               function socatalog_contact_addr_type()
+               function __construct()
                {
                        $this->db = &$GLOBALS['phpgw']->db;
                }
                
-               function _constructor()
-               {
-               }
-               
                function select_catalog()
                {
                        $addr_type = CreateObject('phpgwapi.contact_addr_type');
@@ -57,4 +53,3 @@
                        return $return_fields;
                }
        }
-?>

Modified: trunk/addressbook/inc/class.socatalog_contact_comm_descr.inc.php
===================================================================
--- trunk/addressbook/inc/class.socatalog_contact_comm_descr.inc.php    
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.socatalog_contact_comm_descr.inc.php    
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,15 +1,12 @@
 <?php
        class socatalog_contact_comm_descr
        {
-               function socatalog_contact_comm_descr()
+               function __construct()
                {
                        $this->db = &$GLOBALS['phpgw']->db;
                }
                
-               function _constructor()
-               {
-               }
-               
+       
                function select_catalog()
                {
                        $comm_type = 
CreateObject('phpgwapi.contact_comm_descr');
@@ -72,4 +69,3 @@
                        return $return_fields;
                }
        }
-?>

Modified: trunk/addressbook/inc/class.socatalog_contact_comm_type.inc.php
===================================================================
--- trunk/addressbook/inc/class.socatalog_contact_comm_type.inc.php     
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.socatalog_contact_comm_type.inc.php     
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,15 +1,11 @@
 <?php
        class socatalog_contact_comm_type
        {
-               function socatalog_contact_comm_type()
+               function __construct()
                {
                        $this->db = &$GLOBALS['phpgw']->db;
                }
                
-               function _constructor()
-               {
-               }
-               
                function select_catalog()
                {
                        $comm_type = CreateObject('phpgwapi.contact_comm_type');
@@ -57,4 +53,3 @@
                        return $return_fields;
                }
        }
-?>

Modified: trunk/addressbook/inc/class.socatalog_contact_note_type.inc.php
===================================================================
--- trunk/addressbook/inc/class.socatalog_contact_note_type.inc.php     
2015-09-15 08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.socatalog_contact_note_type.inc.php     
2015-09-15 09:15:53 UTC (rev 13898)
@@ -1,15 +1,12 @@
 <?php
        class socatalog_contact_note_type
        {
-               function socatalog_contact_note_type()
+               function __construct()
                {
                        $this->db = &$GLOBALS['phpgw']->db;
                }
                
-               function _constructor()
-               {
-               }
-               
+
                function select_catalog()
                {
                        $comm_type = CreateObject('phpgwapi.contact_note_type');
@@ -57,4 +54,3 @@
                        return $return_fields;
                }
        }
-?>

Modified: trunk/addressbook/inc/class.uiXport.inc.php
===================================================================
--- trunk/addressbook/inc/class.uiXport.inc.php 2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/class.uiXport.inc.php 2015-09-15 09:15:53 UTC (rev 
13898)
@@ -30,7 +30,7 @@
                var $filter;
                var $cat_id;
 
-               function uiXport()
+               function __construct()
                {
                        $this->template = $GLOBALS['phpgw']->template;
                        $this->cat      = CreateObject('phpgwapi.categories');
@@ -278,4 +278,3 @@
                        }
                }
        }
-?>

Modified: trunk/addressbook/inc/class.uiaddressbook.inc.php
===================================================================
--- trunk/addressbook/inc/class.uiaddressbook.inc.php   2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/class.uiaddressbook.inc.php   2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -3550,5 +3550,4 @@
                                 'nonavbar' => $this->nonavbar
                                ));
        }
-}
-?>
+}
\ No newline at end of file

Modified: trunk/addressbook/inc/class.uiaddressbook_prefs.inc.php
===================================================================
--- trunk/addressbook/inc/class.uiaddressbook_prefs.inc.php     2015-09-15 
08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.uiaddressbook_prefs.inc.php     2015-09-15 
09:15:53 UTC (rev 13898)
@@ -75,7 +75,7 @@
                var $lang_fields;
                var $bo;
                var $submit;
-               function uiaddressbook_prefs()
+               function __construct()
                {
                        $this->template = $GLOBALS['phpgw']->template;
                        if(!$this->session_data_saved())
@@ -963,4 +963,3 @@
                
 
 }
-?>

Modified: trunk/addressbook/inc/class.uicategorize_contacts.inc.php
===================================================================
--- trunk/addressbook/inc/class.uicategorize_contacts.inc.php   2015-09-15 
08:16:34 UTC (rev 13897)
+++ trunk/addressbook/inc/class.uicategorize_contacts.inc.php   2015-09-15 
09:15:53 UTC (rev 13898)
@@ -24,7 +24,7 @@
                        'java_script' => True
                        );
                
-               function uicategorize_contacts()
+               function __construct()
                {
                        $this->template = &$GLOBALS['phpgw']->template;
                        $this->lists = CreateObject('addressbook.widget_lists', 
'Categories', 'categorize_contacts_form');
@@ -183,4 +183,3 @@
                        $this->selected_cat = phpgw::get_var('all_cats');
                }
        }
-?>

Modified: trunk/addressbook/inc/class.uifields.inc.php
===================================================================
--- trunk/addressbook/inc/class.uifields.inc.php        2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/class.uifields.inc.php        2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -23,7 +23,7 @@
                        'delete' => true
                );
 
-               function uifields()
+               function __construct()
                {
                        if ( !isset($GLOBALS['phpgw']->template) || 
!is_object($GLOBALS['phpgw']->template) )
                        {

Modified: trunk/addressbook/inc/class.uivcard.inc.php
===================================================================
--- trunk/addressbook/inc/class.uivcard.inc.php 2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/class.uivcard.inc.php 2015-09-15 09:15:53 UTC (rev 
13898)
@@ -32,7 +32,7 @@
                        'address3' => 'address3'
                );
 
-               function uivcard()
+               function __construct()
                {
                        $this->template = $GLOBALS['phpgw']->template;
                        $this->contacts = CreateObject('phpgwapi.contacts');

Modified: trunk/addressbook/inc/class.widget_lists.inc.php
===================================================================
--- trunk/addressbook/inc/class.widget_lists.inc.php    2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/class.widget_lists.inc.php    2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -29,7 +29,7 @@
                * @param array $form_name The name form where it will be this 
widget
                * @param string $use_combos Use True if you want to have combos 
in your widget
                */
-               function widget_lists($title, $form_name, $use_combos=True, 
$use_filter=False)
+               function __construct($title, $form_name, $use_combos=True, 
$use_filter=False)
                {
                        $this->template = &$GLOBALS['phpgw']->template;
                        $this->title = $title;
@@ -371,4 +371,3 @@
                        return $tmp;
                }
        }
-?>

Modified: trunk/addressbook/inc/export/Multiple_VCard
===================================================================
--- trunk/addressbook/inc/export/Multiple_VCard 2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/export/Multiple_VCard 2015-09-15 09:15:53 UTC (rev 
13898)
@@ -182,4 +182,3 @@
                        return $buffer;
                }
        }
-?>

Modified: trunk/addressbook/inc/export/Netscape_LDIF
===================================================================
--- trunk/addressbook/inc/export/Netscape_LDIF  2015-09-15 08:16:34 UTC (rev 
13897)
+++ trunk/addressbook/inc/export/Netscape_LDIF  2015-09-15 09:15:53 UTC (rev 
13898)
@@ -202,4 +202,3 @@
                        return $buffer;
                }
        }
-?>

Modified: trunk/addressbook/inc/export/OpenOffice_-_calc
===================================================================
--- trunk/addressbook/inc/export/OpenOffice_-_calc      2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/export/OpenOffice_-_calc      2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -496,4 +496,3 @@
 
                
        }
-?>

Modified: trunk/addressbook/inc/export/OpenOffice_-_writer
===================================================================
--- trunk/addressbook/inc/export/OpenOffice_-_writer    2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/export/OpenOffice_-_writer    2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -471,4 +471,3 @@
 
                
        }
-?>

Modified: trunk/addressbook/inc/export/Outlook_CSV_-_Deutsch
===================================================================
--- trunk/addressbook/inc/export/Outlook_CSV_-_Deutsch  2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/export/Outlook_CSV_-_Deutsch  2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -37,27 +37,27 @@
                        'suffix'                => 'Suffix',
                        'org_name'              => 'Firma',
                        'department'            => 'Abteilung',
-                       'work_add1'             => 'Stra\xDFe gesch\xE4ftlich',
-                       'work_add2'             => 'Stra\xDFe gesch\xE4ftlich 
2',
-                       'work_add3'             => 'Stra\xDFe gesch\xE4ftlich 
3',
-                       'work_city'             => 'Ort gesch\xE4ftlich',
-                       'work_state'            => 'Region gesch\xE4ftlich',
-                       'work_postal_code'      => 'Postleitzahl 
gesch\xE4ftlich',
-                       'work_country'          => 'Land gesch\xE4ftlich',
-                       'home_add1'             => 'Stra\xDFe privat',
+                       'work_add1'             => 'Straße geschäftlich',
+                       'work_add2'             => 'Straße geschäftlich 2',
+                       'work_add3'             => 'Straße geschäftlich 3',
+                       'work_city'             => 'Ort geschäftlich',
+                       'work_state'            => 'Region geschäftlich',
+                       'work_postal_code'      => 'Postleitzahl geschäftlich',
+                       'work_country'          => 'Land geschäftlich',
+                       'home_add1'             => 'Straße privat',
                        'home_city'             => 'Ort privat',
                        'home_state'            => 'Region privat',
                        'home_postal_code'      => 'Postleitzahl privat',
                        'home_country'          => 'Land privat',
-                       'tel_fax'             => 'Fax gesch\xE4ftlich',
-                       'tel_work'            => 'Telefon gesch\xE4ftlich',
+                       'tel_fax'             => 'Fax geschäftlich',
+                       'tel_work'            => 'Telefon geschäftlich',
                        'tel_msg'             => 'Telefon Assistent',
                        'tel_car'             => 'Autotelefon',
                        'tel_isdn'            => 'ISDN',
                        'tel_home'            => 'Telefon privat',
                        'tel_cell'            => 'Mobiltelefon',
                        'tel_pager'           => 'Pager',
-                       'ophone'              => 'Telefon gesch\xE4ftlich 2',
+                       'ophone'              => 'Telefon geschäftlich 2',
                        'bday'                => 'Geburtstag',
                        'email'               => 'E-Mail-Adresse',
                        'email_home'          => 'E-Mail 2: Adresse',
@@ -208,4 +208,3 @@
                        return $buffer;
                }
        }
-?>

Modified: trunk/addressbook/inc/export/Outlook_CSV_-_Dutch
===================================================================
--- trunk/addressbook/inc/export/Outlook_CSV_-_Dutch    2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/export/Outlook_CSV_-_Dutch    2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -4,7 +4,7 @@
 // importeren bestand en de waarden van de array zullen gebruikt worden
 // bij het aanmaken van het uitvoerbestand.
 //
-// Een uit Outlook ge\xEBxporteerd bestand ziet er uit als volgt:
+// Een uit Outlook geëxporteerd bestand ziet er uit als volgt:
 //
 // Titel<tab>Voornaam<tab>Middelste naam<tab>Achternaam<tab>...
 // <tab>Jan<tab><tab>Janssens<tab>...
@@ -13,9 +13,9 @@
 // Dit is wat opgezocht zal worden voor de sleutel.
 //
 // De array hoeft in geen specifieke volgorde te staan en alle velden die
-// niet gedefini\xEBerd zijn, zullen ook niet worden omgezet.
+// niet gedefiniëerd zijn, zullen ook niet worden omgezet.
 // Als de waarde gelijk is aan '+', zal ze worden toegevoegd aan het vorige
-// veld en alle tekst na de '+' zal worden toegevoegd v\xF3\xF3r de waarde.
+// veld en alle tekst na de '+' zal worden toegevoegd vóór de waarde.
 // Zo zal bijvoorbeeld het volgende een komma en een spatie toevoegen tussen
 // Achternaam en Voornaam en het resultaat bewaren in Volledige naam:
 //
@@ -123,4 +123,3 @@
                        return lang('Successfully imported x records into your 
addressbook.',$num);
                }
        }
-?>

Modified: trunk/addressbook/inc/export/Outlook_CSV_-_English
===================================================================
--- trunk/addressbook/inc/export/Outlook_CSV_-_English  2015-09-15 08:16:34 UTC 
(rev 13897)
+++ trunk/addressbook/inc/export/Outlook_CSV_-_English  2015-09-15 09:15:53 UTC 
(rev 13898)
@@ -211,4 +211,3 @@
                        return $buffer;
                }
        }
-?>

Modified: trunk/addressbook/inc/export/Outlook_CSV_-_Espa?\195?\177ol
===================================================================



reply via email to

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