|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
+-----------------------------------------------------------------------+
|
|
|
|
| localization/<lang>/csv2vcard.inc |
|
|
|
|
| |
|
|
|
|
| Localization file of the Roundcube Webmail client |
|
|
|
|
| Copyright (C) 2005-2015, The Roundcube Dev Team |
|
|
|
|
| |
|
|
|
|
| Licensed under the GNU General Public License version 3 or |
|
|
|
|
| any later version with exceptions for skins & plugins. |
|
|
|
|
| See the README file for a full license statement. |
|
|
|
|
| |
|
|
|
|
+-----------------------------------------------------------------------+
|
|
|
|
| Author: Aleksander Machniak <alec@alec.pl> |
|
|
|
|
+-----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This is a list of CSV column names specified in CSV file header
|
|
|
|
// These must be original texts used in Outlook/Thunderbird exported csv files
|
|
|
|
// Encoding UTF-8
|
|
|
|
|
|
|
|
$map = array();
|
|
|
|
|
|
|
|
// MS Outlook 2010
|
|
|
|
$map['anniversary'] = "Anniversary";
|
|
|
|
$map['assistants_name'] = "Assistant's Name";
|
|
|
|
$map['assistants_phone'] = "Assistant's Phone";
|
|
|
|
$map['birthday'] = "Birthday";
|
|
|
|
$map['business_city'] = "Business City";
|
|
|
|
$map['business_countryregion'] = "Business Country/Region";
|
|
|
|
$map['business_fax'] = "Business Fax";
|
|
|
|
$map['business_phone'] = "Business Phone";
|
|
|
|
$map['business_phone_2'] = "Business Phone 2";
|
|
|
|
$map['business_postal_code'] = "Business Postal Code";
|
|
|
|
$map['business_state'] = "Business State";
|
|
|
|
$map['business_street'] = "Business Street";
|
|
|
|
$map['car_phone'] = "Car Phone";
|
|
|
|
$map['categories'] = "Categories";
|
|
|
|
$map['company'] = "Company";
|
|
|
|
$map['department'] = "Department";
|
|
|
|
$map['email_address'] = "E-mail Address";
|
|
|
|
$map['email_2_address'] = "E-mail 2 Address";
|
|
|
|
$map['email_3_address'] = "E-mail 3 Address";
|
|
|
|
$map['first_name'] = "First Name";
|
|
|
|
$map['gender'] = "Gender";
|
|
|
|
$map['home_city'] = "Home City";
|
|
|
|
$map['home_countryregion'] = "Home Country/Region";
|
|
|
|
$map['home_fax'] = "Home Fax";
|
|
|
|
$map['home_phone'] = "Home Phone";
|
|
|
|
$map['home_phone_2'] = "Home Phone 2";
|
|
|
|
$map['home_postal_code'] = "Home Postal Code";
|
|
|
|
$map['home_state'] = "Home State";
|
|
|
|
$map['home_street'] = "Home Street";
|
|
|
|
$map['job_title'] = "Job Title";
|
|
|
|
$map['last_name'] = "Last Name";
|
|
|
|
$map['managers_name'] = "Manager's Name";
|
|
|
|
$map['middle_name'] = "Middle Name";
|
|
|
|
$map['mobile_phone'] = "Mobile Phone";
|
|
|
|
$map['notes'] = "Notes";
|
|
|
|
$map['other_city'] = "Other City";
|
|
|
|
$map['other_countryregion'] = "Other Country/Region";
|
|
|
|
$map['other_fax'] = "Other Fax";
|
|
|
|
$map['other_phone'] = "Other Phone";
|
|
|
|
$map['other_postal_code'] = "Other Postal Code";
|
|
|
|
$map['other_state'] = "Other State";
|
|
|
|
$map['other_street'] = "Other Street";
|
|
|
|
$map['pager'] = "Pager";
|
|
|
|
$map['primary_phone'] = "Primary Phone";
|
|
|
|
$map['spouse'] = "Spouse";
|
|
|
|
$map['suffix'] = "Suffix";
|
|
|
|
$map['title'] = "Title";
|
|
|
|
$map['web_page'] = "Web Page";
|
|
|
|
|
|
|
|
// Thunderbird
|
|
|
|
$map['birth_day'] = "Birth Day";
|
|
|
|
$map['birth_month'] = "Birth Month";
|
|
|
|
$map['birth_year'] = "Birth Year";
|
|
|
|
$map['display_name'] = "Display Name";
|
|
|
|
$map['fax_number'] = "Fax Number";
|
|
|
|
$map['home_address'] = "Home Address";
|
|
|
|
$map['home_country'] = "Home Country";
|
|
|
|
$map['home_zipcode'] = "Home ZipCode";
|
|
|
|
$map['mobile_number'] = "Mobile Number";
|
|
|
|
$map['nickname'] = "Nickname";
|
|
|
|
$map['organization'] = "Organization";
|
|
|
|
$map['pager_number'] = "Pager Namber";
|
|
|
|
$map['primary_email'] = "Primary Email";
|
|
|
|
$map['secondary_email'] = "Secondary Email";
|
|
|
|
$map['web_page_1'] = "Web Page 1";
|
|
|
|
$map['web_page_2'] = "Web Page 2";
|
|
|
|
$map['work_phone'] = "Work Phone";
|
|
|
|
$map['work_address'] = "Work Address";
|
|
|
|
$map['work_country'] = "Work Country";
|
|
|
|
$map['work_zipcode'] = "Work ZipCode";
|
|
|
|
|
|
|
|
// Atmail
|
|
|
|
$map['date_of_birth'] = "Date of Birth";
|
|
|
|
$map['email'] = "Email";
|
|
|
|
$map['home_mobile'] = "Home Mobile";
|
|
|
|
$map['home_zip'] = "Home Zip";
|
|
|
|
$map['info'] = "Info";
|
|
|
|
$map['user_photo'] = "User Photo";
|
|
|
|
$map['url'] = "URL";
|
|
|
|
$map['work_city'] = "Work City";
|
|
|
|
$map['work_company'] = "Work Company";
|
|
|
|
$map['work_dept'] = "Work Dept";
|
|
|
|
$map['work_fax'] = "Work Fax";
|
|
|
|
$map['work_mobile'] = "Work Mobile";
|
|
|
|
$map['work_state'] = "Work State";
|
|
|
|
$map['work_title'] = "Work Title";
|
|
|
|
$map['work_zip'] = "Work Zip";
|