You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

csv2vcard.inc 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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: Pekka Nurmi <peknur@gmail.com> |
  15. +-----------------------------------------------------------------------+
  16. */
  17. $map = array();
  18. $map['display_name'] = "Näyttönimi";
  19. $map['first_name'] = "Etunimi";
  20. $map['last_name'] = "Sukunimi";
  21. $map['home_phone'] = "Kotipuhelin";
  22. $map['home_city'] = "Kotikaupunki";
  23. $map['home_state'] = "Kodin lääni";
  24. $map['business_city'] = "Työpaikan kaupunki";
  25. $map['business_state'] = "Työpaikan lääni";
  26. $map['job_title'] = "Ammattinimi";
  27. $map['department'] = "Osasto";
  28. $map['notes'] = "Muistiinpanot";
  29. $map['birth_day'] = "Syntymäpäivä";
  30. $map['birth_month'] = "Syntymäkuukausi";
  31. $map['birth_year'] = "Syntymävuosi";
  32. $map['display_name'] = "Näytettävä nimi";
  33. $map['fax_number'] = "Faksin numero";
  34. $map['nickname'] = "Lempinimi";
  35. $map['primary_email'] = "Ensisijainen sähköposti";
  36. $map['secondary_email'] = "Toissijainen sähköposti";
  37. $map['work_phone'] = "Työpuhelin";
  38. $map['pager_number'] = "Hakulaitteen numero";
  39. $map['mobile_number'] = "Matkapuhelinnumero";
  40. $map['home_address'] = "Kotiosoite";
  41. $map['home_zipcode'] = "Kodin postinumero";
  42. $map['home_country'] = "Kotimaa";
  43. $map['work_address'] = "Työosoite";
  44. $map['work_zipcode'] = "Työpaikan postinumero";
  45. $map['work_country'] = "Työpaikan maa";
  46. $map['organization'] = "Järjestö";
  47. $map['web_page_1'] = "Verkkosivu 1";
  48. $map['web_page_2'] = "Verkkosivu 2";