Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

csv2vcard.inc 4.2KB

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