mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 01:21:20 +01:00
* contact import: correct mismapped fields * contacts: remove im:other field from UI, it does not exist in the vCard * vcard: add some more maps for common vcard types to roundcube types * contact import: list all possible roundcube contact fields in csv import UI, remove hard coded $local_map * add SORT_LOCALE_STRING flag * fix typos * remove unwanted label * move field list to csv2vcard * move rcube_csv2vcard::list_fields to rcmail_action_contacts_import::list_fields as it relies on rcmail_action_contacts * use single field map for csv2vcard imports, remove hardcoded version * fix test * small cs fix * reformat csv2vcard.inc * fix failing test * restore existance check * fix failing test again
46 lines
2.3 KiB
PHP
46 lines
2.3 KiB
PHP
<?php
|
||
|
||
/*
|
||
+-----------------------------------------------------------------------+
|
||
| localization/ru_RU/csv2vcard.inc |
|
||
| |
|
||
| Language file of the Roundcube Webmail client |
|
||
| Copyright (C) 2005-2014, 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> |
|
||
+-----------------------------------------------------------------------+
|
||
*/
|
||
$map['День рождения'] = 'birthday-d';
|
||
$map['Месяц рождения'] = 'birthday-m';
|
||
$map['Год рождения'] = 'birthday-y';
|
||
$map['Отображаемое имя'] = 'name';
|
||
$map['Номер факса'] = 'phone:homefax';
|
||
$map['Адрес'] = 'street:home';
|
||
$map['Город'] = 'locality:home';
|
||
$map['Штат'] = 'region:home';
|
||
$map['Страна'] = 'country:home';
|
||
$map['Почтовый индекс'] = 'zipcode:home';
|
||
$map['Номер сотового телефона'] = 'phone:mobile';
|
||
$map['Псевдоним'] = 'nickname';
|
||
$map['Организация'] = 'organization';
|
||
$map['Номер пейджера'] = 'phone:pager';
|
||
$map['Адрес электронной почты'] = 'email:home';
|
||
$map['Альтернативный адрес электронной почты'] = 'email:other';
|
||
$map['Веб-страница 1'] = 'website:homepage';
|
||
$map['Веб-страница 2'] = 'website:other';
|
||
$map['Веб-страница'] = 'website:homepage';
|
||
$map['Заметки'] = 'notes';
|
||
$map['Рабочий телефон'] = 'phone:work';
|
||
$map['Адрес (раб.)'] = 'street:work';
|
||
$map['Страна (раб.)'] = 'country:work';
|
||
$map['Почтовый индекс (раб.)'] = 'zipcode:work';
|
||
$map['Фамилия'] = 'surname';
|
||
$map['Имя'] = 'firstname';
|
||
$map['Город (раб.)'] = 'locality:work';
|
||
$map['work_state_short'] = 'Штат (раб.)';
|