0
|
1 <?php
|
|
2
|
|
3 /*
|
|
4 +-----------------------------------------------------------------------+
|
|
5 | localization/<lang>/csv2vcard.inc |
|
|
6 | |
|
|
7 | Localization file of the Roundcube Webmail client |
|
|
8 | Copyright (C) 2005-2015, The Roundcube Dev Team |
|
|
9 | |
|
|
10 | Licensed under the GNU General Public License version 3 or |
|
|
11 | any later version with exceptions for skins & plugins. |
|
|
12 | See the README file for a full license statement. |
|
|
13 | |
|
|
14 +-----------------------------------------------------------------------+
|
|
15 | Author: Aleksander Machniak <alec@alec.pl> |
|
|
16 +-----------------------------------------------------------------------+
|
|
17 */
|
|
18
|
|
19 // This is a list of CSV column names specified in CSV file header
|
|
20 // These must be original texts used in Outlook/Thunderbird exported csv files
|
|
21 // Encoding UTF-8
|
|
22
|
|
23 $map = array();
|
|
24
|
|
25 // MS Outlook 2010
|
|
26 $map['anniversary'] = "Anniversary";
|
|
27 $map['assistants_name'] = "Assistant's Name";
|
|
28 $map['assistants_phone'] = "Assistant's Phone";
|
|
29 $map['birthday'] = "Birthday";
|
|
30 $map['business_city'] = "Business City";
|
|
31 $map['business_countryregion'] = "Business Country/Region";
|
|
32 $map['business_fax'] = "Business Fax";
|
|
33 $map['business_phone'] = "Business Phone";
|
|
34 $map['business_phone_2'] = "Business Phone 2";
|
|
35 $map['business_postal_code'] = "Business Postal Code";
|
|
36 $map['business_state'] = "Business State";
|
|
37 $map['business_street'] = "Business Street";
|
|
38 $map['car_phone'] = "Car Phone";
|
|
39 $map['categories'] = "Categories";
|
|
40 $map['company'] = "Company";
|
|
41 $map['department'] = "Department";
|
|
42 $map['email_address'] = "E-mail Address";
|
|
43 $map['email_2_address'] = "E-mail 2 Address";
|
|
44 $map['email_3_address'] = "E-mail 3 Address";
|
|
45 $map['first_name'] = "First Name";
|
|
46 $map['gender'] = "Gender";
|
|
47 $map['home_city'] = "Home City";
|
|
48 $map['home_countryregion'] = "Home Country/Region";
|
|
49 $map['home_fax'] = "Home Fax";
|
|
50 $map['home_phone'] = "Home Phone";
|
|
51 $map['home_phone_2'] = "Home Phone 2";
|
|
52 $map['home_postal_code'] = "Home Postal Code";
|
|
53 $map['home_state'] = "Home State";
|
|
54 $map['home_street'] = "Home Street";
|
|
55 $map['job_title'] = "Job Title";
|
|
56 $map['last_name'] = "Last Name";
|
|
57 $map['managers_name'] = "Manager's Name";
|
|
58 $map['middle_name'] = "Middle Name";
|
|
59 $map['mobile_phone'] = "Mobile Phone";
|
|
60 $map['notes'] = "Notes";
|
|
61 $map['other_city'] = "Other City";
|
|
62 $map['other_countryregion'] = "Other Country/Region";
|
|
63 $map['other_fax'] = "Other Fax";
|
|
64 $map['other_phone'] = "Other Phone";
|
|
65 $map['other_postal_code'] = "Other Postal Code";
|
|
66 $map['other_state'] = "Other State";
|
|
67 $map['other_street'] = "Other Street";
|
|
68 $map['pager'] = "Pager";
|
|
69 $map['primary_phone'] = "Primary Phone";
|
|
70 $map['spouse'] = "Spouse";
|
|
71 $map['suffix'] = "Suffix";
|
|
72 $map['title'] = "Title";
|
|
73 $map['web_page'] = "Web Page";
|
|
74
|
|
75 // Thunderbird
|
|
76 $map['birth_day'] = "Birth Day";
|
|
77 $map['birth_month'] = "Birth Month";
|
|
78 $map['birth_year'] = "Birth Year";
|
|
79 $map['display_name'] = "Display Name";
|
|
80 $map['fax_number'] = "Fax Number";
|
|
81 $map['home_address'] = "Home Address";
|
|
82 $map['home_country'] = "Home Country";
|
|
83 $map['home_zipcode'] = "Home ZipCode";
|
|
84 $map['mobile_number'] = "Mobile Number";
|
|
85 $map['nickname'] = "Nickname";
|
|
86 $map['organization'] = "Organization";
|
|
87 $map['pager_number'] = "Pager Namber";
|
|
88 $map['primary_email'] = "Primary Email";
|
|
89 $map['secondary_email'] = "Secondary Email";
|
|
90 $map['web_page_1'] = "Web Page 1";
|
|
91 $map['web_page_2'] = "Web Page 2";
|
|
92 $map['work_phone'] = "Work Phone";
|
|
93 $map['work_address'] = "Work Address";
|
|
94 $map['work_country'] = "Work Country";
|
|
95 $map['work_zipcode'] = "Work ZipCode";
|
|
96
|
|
97 // Atmail
|
|
98 $map['date_of_birth'] = "Date of Birth";
|
|
99 $map['email'] = "Email";
|
|
100 $map['home_mobile'] = "Home Mobile";
|
|
101 $map['home_zip'] = "Home Zip";
|
|
102 $map['info'] = "Info";
|
|
103 $map['user_photo'] = "User Photo";
|
|
104 $map['url'] = "URL";
|
|
105 $map['work_city'] = "Work City";
|
|
106 $map['work_company'] = "Work Company";
|
|
107 $map['work_dept'] = "Work Dept";
|
|
108 $map['work_fax'] = "Work Fax";
|
|
109 $map['work_mobile'] = "Work Mobile";
|
|
110 $map['work_state'] = "Work State";
|
|
111 $map['work_title'] = "Work Title";
|
|
112 $map['work_zip'] = "Work Zip";
|