Commit 789f7972 authored by Grigory Fedorov's avatar Grigory Fedorov

Unused string resources removed, new file with untranslatable words created.

parent e654ed76
......@@ -47,15 +47,15 @@ public class VcardMaps {
if (ADDRESS_PROPERTY_MAP.size() != AddressProperty.values().length)
throw new IllegalStateException();
TELEPHONE_TYPE_MAP.put(TelephoneType.BBS, R.string.vcard_type_bbs);
TELEPHONE_TYPE_MAP.put(TelephoneType.BBS, R.string.bbs);
TELEPHONE_TYPE_MAP.put(TelephoneType.CELL, R.string.vcard_type_cell);
TELEPHONE_TYPE_MAP.put(TelephoneType.FAX, R.string.vcard_type_fax);
TELEPHONE_TYPE_MAP.put(TelephoneType.HOME, R.string.vcard_type_home);
TELEPHONE_TYPE_MAP.put(TelephoneType.ISDN, R.string.vcard_type_isdn);
TELEPHONE_TYPE_MAP.put(TelephoneType.ISDN, R.string.isdn);
TELEPHONE_TYPE_MAP.put(TelephoneType.MODEM, R.string.vcard_type_modem);
TELEPHONE_TYPE_MAP.put(TelephoneType.MSG, R.string.vcard_type_msg);
TELEPHONE_TYPE_MAP.put(TelephoneType.PAGER, R.string.vcard_type_pager);
TELEPHONE_TYPE_MAP.put(TelephoneType.PCS, R.string.vcard_type_pcs);
TELEPHONE_TYPE_MAP.put(TelephoneType.PCS, R.string.pcs);
TELEPHONE_TYPE_MAP.put(TelephoneType.PREF, R.string.vcard_type_pref);
TELEPHONE_TYPE_MAP.put(TelephoneType.VIDEO, R.string.vcard_type_video);
TELEPHONE_TYPE_MAP.put(TelephoneType.VOICE, R.string.vcard_type_voice);
......@@ -67,7 +67,7 @@ public class VcardMaps {
EMAIL_TYPE_MAP.put(EmailType.INTERNET, R.string.vcard_type_internet);
EMAIL_TYPE_MAP.put(EmailType.PREF, R.string.vcard_type_pref);
EMAIL_TYPE_MAP.put(EmailType.WORK, R.string.vcard_type_work);
EMAIL_TYPE_MAP.put(EmailType.X400, R.string.vcard_type_x400);
EMAIL_TYPE_MAP.put(EmailType.X400, R.string.x400);
if (EMAIL_TYPE_MAP.size() != EmailType.values().length)
throw new IllegalStateException();
}
......
......@@ -50,11 +50,9 @@ public enum AccountProtocol {
*/
public int getNameResource() {
if (this == xmpp)
return R.string.account_type_names_xmpp;
return R.string.xmpp;
else if (this == gtalk)
return R.string.account_type_names_gtalk;
else if (this == wlm)
return R.string.account_type_names_wlm;
return R.string.google_talk;
else
throw new UnsupportedOperationException();
}
......@@ -64,11 +62,9 @@ public enum AccountProtocol {
*/
public int getShortResource() {
if (this == xmpp)
return R.string.account_protocol_xmpp_title;
return R.string.xmpp;
else if (this == gtalk)
return R.string.account_protocol_gtalk_title;
else if (this == wlm)
return R.string.account_protocol_wlm_title;
return R.string.google_talk;
else
throw new UnsupportedOperationException();
}
......
......@@ -86,7 +86,7 @@ public class ContactEditor extends ContactViewer implements Toolbar.OnMenuItemCl
input.setText(rosterContact.getName());
builder.setView(input);
builder.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
try {
......@@ -96,7 +96,7 @@ public class ContactEditor extends ContactViewer implements Toolbar.OnMenuItemCl
}
}
});
builder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
builder.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
......
......@@ -207,7 +207,7 @@ public class ContactVcardViewerFragment extends Fragment implements OnVCardListe
xmppItems.removeAllViews();
View jabberIdView = createItemView(xmppItems, getString(R.string.contact_viewer_jid),
View jabberIdView = createItemView(xmppItems, getString(R.string.jabber_id),
bareAddress, R.drawable.ic_vcard_xmpp_24dp);
if (jabberIdView != null) {
......
......@@ -82,7 +82,7 @@ public class AccountEditorFragment extends BaseSettingsFragment
if (getString(R.string.account_proxy_type_key).equals(key)) {
boolean enabled = !getString(R.string.account_proxy_type_none).equals(newValue)
&& !getString(R.string.account_proxy_type_orbot).equals(newValue);
&& !getString(R.string.orbot).equals(newValue);
for (int id : new Integer[]{R.string.account_proxy_host_key,
R.string.account_proxy_port_key, R.string.account_proxy_user_key,
R.string.account_proxy_password_key,}) {
......
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_copyright">© Redsolution LTD, 2010–2015</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_feedback">mailto:info@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_site">http://www.xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_version">Версия: %s</string>
<string name="about_license">Лицензия: GNU GPLv3\n<a href="https://github.com/redsolution/xabber-android">Программное обеспечение с открытым исходным кодом</a></string>
<string name="about_open_source_xmpp_client">open source XMPP client</string>
</resources>
\ No newline at end of file
......@@ -22,47 +22,13 @@
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type">Тип учетной записи</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_facebook">учетная запись facebook.com (не email)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_gtalk">учетная запись gmail.com или службы google</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_livejournal">учетная запись livejournal.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_qip">учетная запись qip.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_vkontakte">имя или id на vkontakte.ru (не email)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_xmpp">имя@сервер.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_ya">учетная запись yandex.ru (не email)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_facebook">Вы не можете подключиться к чату Facebook, указав свой email. Вы должны указать имя пользователя Facebook и пароль. Дополнительную информацию можно найти на http://www.facebook.com/sitetour/chat.php</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_gtalk">Если у Вас нет учётной записи Google, её можно создать на сайте http://mail.google.com/\nТакже вы можете использовать ваше_имя@ваш_гугло_домен</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_livejournal">Если у Вас нет учётной записи LiveJournal, её можно создать здесь: http://livejournal.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_qip">Если у Вас нет учётной записи QIP, её можно создать здесь: http://qip.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_vkontakte">Вы можете указать имя пользователя (например masha.v.kontakte) или указать свой номер (например id123456). Вы не можете войти в чат Вконтакте, использовав свой email. Чтобы войти в чат, Вам надо указать имя пользователя Вконтакте и пароль. Дополнительная информация: http://vk.com/help.php?page=jabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_xmpp">Подробную информацию об XMPP (Jabber) можно найти по адресу https://xmpp.org\nЗарегистрировать новую учетную запись можно тут https://register.jabber.org или тут http://jabber.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_ya">Если у Вас нет учетной записи Yandex, её можно создать здесь: http://yandex.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_facebook">Facebook</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_gtalk">Google Talk</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_livejournal">LiveJournal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_qip">QIP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_vkontakte">В контакте</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_xmpp">XMPP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_ya">Я.Онлайн</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_user_name">Имя пользователя</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
......@@ -100,21 +66,11 @@
<string name="account_oauth_invalidated">Не авторизован</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_oauth_summary">Настройки авторизации OAuth</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_gtalk.png -->
<string name="account_protocol_gtalk_title">Google Talk</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_protocol_wlm_title">WLM</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_protocol_xmpp_title">XMPP</string>
<string name="account_proxy_host">Хост для прокси</string>
<string name="account_proxy_password">Пароль для прокси</string>
<string name="account_proxy_port">Порт для прокси</string>
<string name="account_proxy_type">Тип прокси</string>
<string name="account_proxy_type_http">HTTP</string>
<string name="account_proxy_type_none">Отключено</string>
<string name="account_proxy_type_orbot">Orbot</string>
<string name="account_proxy_type_socks4">SOCKS4</string>
<string name="account_proxy_type_socks5">SOCKS5</string>
<string name="account_proxy_user">Имя пользователя для прокси</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_sasl">Использовать SASL аутентификацию (рекомендуется)</string>
......@@ -142,18 +98,6 @@
<string name="account_tls_require">Требовать TLS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_require_summary">Требовать TLS шифрование при подключении к серверу</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_odnoklassniki">В качестве имени пользователя нужно использовать ваш ID (например: 123456). Вы не можете войти в чат, использовав свой логин, email или номер телефона. Ваш ID можно узнать в настройках профиля http://www.odnoklassniki.ru/settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_wlm">Вы будете перенаправлены на http://live.com для ввода имени пользователя и пароля.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_odnoklassniki">Номер (ID) на Одноклассниках (не логин или e-mail)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_wlm"></string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_odnoklassniki">Одноклассники</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_wlm">Windows Live Messenger</string>
<string name="account_use_orbot">Использовать анонимное соединение через TOR и требовать TLS шифрование\nНе рекомендуется для Google Talk</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_confirm.png -->
<string name="confirm_cancellation">Вы уверены, что хотите отменить все не сохраненные изменения?</string>
......
......@@ -9,6 +9,7 @@
<string name="account_delete">Удалить учетную запись</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Редактировать учетную запись</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_registration">Регистрация</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_authentication">Авторизация</string>
......
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="development_changes_20">+ Добавлена поддержка сервера jabber.org и т.п.\n- Отключена поддержка gmail.com</string>
<string name="development_changes_21">+ Добавлена ​​поддержка чатов Gtalk, Facebook, LiveJournal, QIP.ru, Ya.Online, Вконтакте.</string>
<string name="development_changes_22">+ Исправления авторизации в чатах</string>
<string name="development_changes_23">+ Незначительные исправления в поведении при отключении от сети</string>
<string name="development_changes_24">С Рождеством!</string>
<string name="development_changes_25">+ Добавлен перевод на немецкий\n+ Опция для TLS\n+ Работа окна чата ускорена</string>
<string name="development_changes_26">+ Поддержка сжатия\n+ Добавлена опция "отправки по нажатию Enter"\n+ Исправления в списке контактов\n+ Исправления вибрации и световой индикации для некоторых телефонов</string>
<string name="development_changes_27">+ Исправления поведения при получении сообщений\n+ Исправлено переподключение при смене сети</string>
<string name="development_changes_28">+ Оптимизация дизайна\n+ Индикатор соединения\n+ Исправления в дизайне чата</string>
<string name="development_changes_29">+ Исправления в таймауте для сессий со сжатием</string>
<string name="development_changes_30">+ Иконки для высокого разрешения экрана\n+ Настройки сжатия</string>
<string name="development_changes_31">+ Добавлены цветовые схемы</string>
<string name="development_changes_32">+ Переключение между чатами жестами\n+ Отключение смайлов\n+ Отключение смены статуса при гашении экрана\n+ Исправлена работа с TLS и сжатием\n+ Исправлено подключение к jabberd2 серверам.</string>
<string name="development_changes_33">+ Исправление для переключения жестами</string>
<string name="development_changes_34">+ Пробная поддержка конференций (MUC)\n+ Возможность скрыть Xabber из области уведомлений\n+ Возможность убрать уведомления о сообщениях\n* Реорганизовано меню\n* Исправлено переключение между чатами через уведомления</string>
<string name="development_changes_35">* Незначительные исправления в работе MUC\n* Улучшен интерфейс добавления учетных записей\n* Улучшено окно смены статуса</string>
<string name="development_changes_36">С днем космонавтики!</string>
<string name="development_changes_37">+ Перевод на Французский\n* Подправлен Немецкий перевод\n* Исправлено поле ввода чата\n* Ускорены чаты с большой историей сообщений\n* Незначительные исправления в работе чата\n* Незначительные исправления в работе извещений\n* Стараемся не показывать старые сообщение при повторном входе в комнату</string>
<string name="development_changes_38">+ Добавлен тип учетной записи "Google Talk для доменов служб Google"\n* Исправлена смена ориентации в чате</string>
<string name="development_changes_39">+ Добавлена возможность установки на SD карту\n+ Добавлена опция "Извещать о входящих сообщения в открытом чате"\n* Уменьшено потребление трафика при подключении\n* Исправления в механизме переподключения\n* Уменьшено потребление памяти\n* Исправлен перевод на Немецкий (спасибо: Niklas Casper, Sven Rohweder, Sven Henze, Julian Berkner)</string>
<string name="development_changes_40">* Исправлена работа с конференциями</string>
<string name="development_changes_41">* Исправлено редактирование учетных записей\n* Исправлены уведомления о входящих сообщениях\n* Незначительные исправления в работе чата\nNB: Если у вас был создан ярлык на главном экране, возможно его придется удалить и создать новый</string>
<string name="development_changes_42">* Исправлена версия проекта</string>
<string name="development_changes_43">+ Добавлена поддержка доменных SRV записей\n* Временно отключена эксперементальная функция геолокации</string>
<string name="development_changes_44">+ Опция "запускать при включении телефона"\n+ Поиск по списку контактов\n+ Опция "всегда показывать оффлайн контанты в указанной группе"\n+ Опция перехода в состояние "Отошел" через указанный промежуток времени\n* Улучшен механизм переподключения\n* При отключении не происходит очистка списка контактов\n* Ускорена прокрутка списка контактов и чата\n* Отключенные комнаты всегда отображаются в списке контактов\n* Исправлен механизм добавления контакта\n* Исправлено ​​вибро для некоторых моделей телефонов\n* Мелкие исправления в чате</string>
<string name="development_changes_45">* Мелкие исправления в чате</string>
<string name="development_changes_46">* Мелкие исправления в чате</string>
<string name="development_changes_47">* Исправлено отображение статусов для некоторых серверов</string>
<string name="development_changes_48">* Незначительные исправления списка контактов</string>
<string name="development_changes_49">* Исправлено отображение контактов вне групп\n* Исправлено падение на некоторых устройствах</string>
<string name="development_changes_50">+ Перевод на Польский\n+ Сохранение истории сообщений на SD карте\n+ Опция "не использовать SASL аутентификацию" для старых серверов\n+ Возможность разом закрыть все чаты\n+ Настройки для закрытие клавиатуры после отправки сообщения\n* Обновлены иконки\n* Улучшен диалог добавления контакта\n* Улучшен механизм переподключения\n* Исправлено отображение контактов не в сети\n* Переделана работа с вибрацией\nEсли у вас перестанет работать вибро, проверьте настройки телефона или включите опцию: Настройки - Уведомления - Игнорировать системные настройки.</string>
<string name="development_changes_51">* Исправлено переключение между чатами</string>
<string name="development_changes_52">* Незначительные исправления в обработке пакетов</string>
<string name="development_changes_53">+ Возможность скрывать изменение статуса в конференциях\n* Небольшие исправления в работе чата</string>
<string name="development_changes_54">* Исправлена критическая ошибка, вызывавшее постоянное переподключение\n* Незначительные исправления</string>
<string name="development_changes_55">+ Обновление внешнего вида\n+ Поддержка аппаратной кнопки поиска\n* Исправлено незапланированное переподключение\n* Исправлен экспорт большой истории сообщений\n* Другие исправления\nNB: Приложение требует новых разрешений для улучшения управления подключением</string>
<string name="development_changes_56">+ Поддержка Windows Live Messenger (требуется Android 2.2 или выше)\n+ Поддержка Одноклассники\n+ Предотвращение отключения WiFi\n+ Кнопка "Закрыть все чаты" вынесена в меню приложения\n* Исправлены уведомления в Android 4.0.3+\n* Другие исправления\nNB: Предотвращение отключения WiFi может увеличить расход батареи. Отключить эту функцию можно в настройках приложения.</string>
<string name="development_changes_57">* Исправлены уведомления</string>
<string name="development_changes_58">* Исправлена работа с отключенной опцией "Указать хост вручную"\n* Исправлено появление чёрного экрана при очистке области уведомлений\n+ Интеграция с системными учётными записями и списком контактов в телефоне\n+ Отправка через Xabber\n+ Меню действий над интегрированным контактом в Xabber\n+ При открытии чата фокус передаётся полю ввода сообщения\n+ Опция "Не хранить пароль"\n+ Xabber теперь доступен на Amazon Appstore\nNB: Приложение требует новых разрешений.</string>
<string name="development_changes_59">* Исправлено открытие чата из системного списка контактов</string>
<string name="development_changes_60">* Исправлено предложение о включении синхронизации с системным списком контактов\n* Незначительные исправления</string>
<string name="development_changes_61">+ Просмотр информации о контакте (vCard и подключенные ресурсы)\n+ Отображение используемого контактом клиента\n+ Настройка уведомления только о первом сообщении в чате\n+ Настройка отображения текста сообщения в области уведомления\n+ Возможность сбросить индивидуальные настройки отображения контактов не в сети\n+ Поддержка ping\n+ Иконка в честь Первого мая\n* Незначительные исправления</string>
<string name="development_changes_62">* Незначительные исправления списка контактов</string>
<string name="development_changes_63">+ Настраиваемый размер шрифта в чате\n+ Возможность настройки оповещений для отдельных пользователей\n+ Уведомление о наборе текста\n+ Ярлыки для чатов на рабочем столе\n+ Настройки отображения сообщений в чате\n* Чат работает быстрее\n* Исправлена прокрутка в чате\n* Исправлены ошибки уведомлений\n* Незначительные исправления</string>
<string name="development_changes_64">* Исправлена загрузка битых изображений\n* Незначительные исправления</string>
<string name="development_changes_65">* Исправлена авторизация для Windows Live Messenger\n* Незначительные исправления</string>
<string name="development_changes_66">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="development_changes_67">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="development_changes_68">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="development_changes_69">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="development_changes_70">+ Поддержка OTR шифрования\n+ Проверка сертификата сервера\n+ Поддержка старого механизма SSL авторизации\n+ Уведомления о доставке сообщений\n+ Настройки вибрации для отдельного чата\n+ Улучшено управление статусом в зависимости от активности\n+ Настраиваемые приоритеты в зависимости от статуса\n* Исправлено подключение к Windows Live Messenger (MSN) и ВКонтакте\n* Исправлены иконки уведомлений в Android 4\n* Улучшена работа с SRV записями и циклический перебор DNS</string>
<string name="development_changes_71">+ Голосование за открытый исходный код</string>
<string name="development_changes_72">+ Поддержка архива сообщений (на стороне сервера рекомендуется плагин для Prosody)\n+ Настройки истории сообщений для каждой учетной записи\n+ Копирование отпечатка OTR в буфер обмена\n+ Голландский и турецкий переводы\n* Уменьшен объем трафика при переподключении\n* Исправлены оповещения в конференциях\n* Исправлен список активных чатов\n* Исправлены уведомления о доставке сообщений\n* Исправлены переводы\nВсем спасибо за помощь!</string>
<string name="development_changes_73">* Незначительные исправления</string>
<string name="development_changes_74">* Исправлено отображение клиента для контактов\n* Исправлены уведомления о наборе сообщения\n* Исправлена проверка OTR с помощью вопроса\n* Незначительные исправления</string>
<string name="development_changes_75">* Исправлена проверка сертификатов серверов\n* Незначительные исправления</string>
<string name="development_changes_76">+ Перевод на Словацкий\n* Исправлена проверка сертификатов серверов\n* Незначительные исправления</string>
<string name="development_changes_77">+ Перевод на Чешский.\n+ Функция привлечения внимания собеседника\n+ Настройки уведомлений по ключевым фразам\n+ Возможность отключения уведомлений о наборе сообщений\n+ Просмотр списка участников конференции\n* Незначительные исправления\n* Исправлены и дополнены переводы\nВсем спасибо за помощь!</string>
<string name="development_changes_78">+ Исходные коды Xabber теперь доступны на GitHub\n* Незначительные исправления</string>
<string name="development_changes_79">+ Поддержка TOR через приложение Orbot\n+ Поддержка прокси\n+ Переводы на Белорусский, Персидский, Итальянский, Португальский, Украинский, Китайский - Китай, Китайский - Тайвань\n* Исправлены уведомления для Android 4+\n* Исправлена работа с историей сообщений на сервере\n* Исправлен выход из приложения\n* Исправлены переводы\n* Незначительные исправления\nВсем спасибо за помощь!</string>
<string name="development_changes_80">* Обновлена иконка приложения</string>
<string name="development_changes_81">* Обновлены переводы</string>
<string name="production_changes_1">Первый выпуск</string>
<string name="production_changes_2">Первое обновление</string>
<string name="production_changes_3">+ Статусы сохраняются между сессиями</string>
<string name="production_changes_4">+ Исправления в debug режиме</string>
<string name="production_changes_5">+ Теперь работает как служба</string>
<string name="production_changes_6">+ Нет звукового сигнала при каждом уведомлении</string>
<string name="production_changes_7">+ Уведомления сохраняются в базе данных\n+ Исправления синхронизации\n+ Исправлено листание чата при открытии/скрытии экранной клавиатуры</string>
<string name="production_changes_8">+ 48 уникальных аватар\n+ Группы в списке контактов\n+ Меню настроек\n+ Типы аккаунтов\n+ Улучшения интерфейсов</string>
<string name="production_changes_9">+ Оптимизирован пользовательский интерфейс\n+ Сортировка списка контактов не зависит от регистра букв\n+ Опция для скрытия аватара в окне чата\n+ Опция для включения/выключения аккаунтов\n</string>
<string name="production_changes_10">- Удалены не поддерживаемые типы аккаунтов\n+ Исправлено поведение при долгом удержании кнопки "добавить аккаунт"</string>
<string name="production_changes_11">- Удалено контекстное меню для перехода в онлайн/оффлайн</string>
<string name="production_changes_12">+ Смена имени приложения\n+ Оптимизирована структура данных\n+ Общие изменения и обновления </string>
<string name="production_changes_13">+ Очистка истории согласно настройкам\n+ Исправления в работе с последнее сообщением от контакта</string>
<string name="production_changes_14">+ Исправления в раскрытии групп</string>
<string name="production_changes_15">+ Контекстное меню для цитирования сообщения\n+ Копирование сообщения, очистка поля ввода\n+ Возможность убрать сообщение из истории\n+ Исправлено поведение при чате с оффлайн собеседником</string>
<string name="production_changes_16">+ Поддержка смайлов</string>
<string name="production_changes_17">+ Сохранение неотправленных сообщений\n+ Иконки для отображения статуса сообщения</string>
<string name="production_changes_18">+ Поддержка *googlemail.com аккаунтов\n+ Настройки звуковых оповещений\n+ Экспериментальное переключение чатов жестами\n+ Исправления во внутренней структуре</string>
<string name="production_changes_19">+ Исправления для окна ввода сообщения</string>
<string name="production_changes_20">+ Английский язык установлен по умолчанию\n+ Изменения в интерфейсе</string>
<string name="production_changes_21">+ Поддержка большинства Jabber-серверов\n+ Исправлены ошибки в CS локали\n+ Незначительные исправления\n+ С Рождеством!</string>
<string name="production_changes_22">+ Поддержка TLS\n+ Поддержка сжатия\n+ Опция "отправить по нажатию Enter"\n+ Индикатор соединения\n+ Добавлен перевод на немецкий\n+ Ускорена работа окна чата\n+ Исправления в списке контактов\n+ Исправления для вибрации и световой индикации\n+ Исправления поведения при приеме сообщений\n+ Исправления переподключения при смене сети</string>
<string name="production_changes_23">+ Иконки для высокого разрешения экрана\n+ Опция для сжатия</string>
<string name="production_changes_24">+ Добавлены цветовые схемы</string>
<string name="production_changes_25">+ Переключение между чатами жестами\n+ Отключение смайлов\n+ Отключение смены статуса при гашении экрана\n* Исправлена работа с TLS и сжатием\n* Исправлено подключение к jabberd2 серверам.</string>
<string name="production_changes_26">+ Ракета в честь 50-й годовщины полета Юрия Гагарина в космос (12.04.1961)\n+ Пробная поддержка конференций (MUC)\n+ Возможность скрыть Xabber из области уведомлений\n+ Возможность убрать уведомления о сообщениях\n* Реорганизовано меню\n* Исправлено переключение между чатами через уведомления\n* Улучшен интерфейс добавления учетных записей\n* Улучшено окно смены статуса</string>
<string name="production_changes_27">+ Перевод на Французский\n+ Добавлен тип учетной записи "Google Talk для доменов служб Google"\n* Исправлено поле ввода чата\n* Ускорены чаты с большой историей сообщений\n* Незначительные исправления в работе чата\n* Незначительные исправления в работе извещений\n* Убраны повторяющиеся сообщение при повторном входе в комнату\n* Исправлена смена ориентации экрана в чате</string>
<string name="production_changes_28">+ Добавлена возможность установки на SD карту\n+ Добавлена опция "Извещать о входящих сообщения в открытом чате"\n* Уменьшено потребление трафика при подключении\n* Исправления в механизме переподключения\n* Уменьшено потребление памяти\n* Исправлена работа с конференциями\n* Исправлено редактирование учетных записей\n* Исправлены уведомления о входящих сообщениях\n* Незначительные исправления в работе чата\n* Исправлен перевод на Немецкий (спасибо: Niklas Casper, Sven Rohweder, Sven Henze, Julian Berkner)</string>
<string name="production_changes_29">+ Добавлена поддержка доменных SRV записей\n* Временно отключена эксперементальная функция геолокации</string>
<string name="production_changes_30">+ Опция "запускать при включении телефона"\n+ Поиск по списку контактов\n+ Опция "всегда показывать оффлайн контанты в указанной группе"\n+ Опция перехода в состояние "Отошел" через указанный промежуток времени\n* Улучшен механизм переподключения\n* При отключении не происходит очистка списка контактов\n* Ускорена прокрутка списка контактов и чата\n* Отключенные комнаты всегда отображаются в списке контактов\n* Исправлен механизм добавления контакта\n* Исправлено ​​вибро для некоторых моделей телефонов\n* Мелкие исправления</string>
<string name="production_changes_31">+ Перевод на Польский\n+ Сохранение истории сообщений на SD карте\n+ Опция "не использовать SASL аутентификацию" для старых серверов\n+ Возможность разом закрыть все чаты\n+ Настройки для закрытие клавиатуры после отправки сообщения\n* Обновлены иконки\n* Улучшен диалог добавления контакта\n* Улучшен механизм переподключения\n* Исправлено отображение контактов не в сети\n* Переделана работа с вибрацией\nEсли у вас перестанет работать вибро, проверьте настройки телефона или включите опцию: Настройки - Уведомления - Игнорировать системные настройки.</string>
<string name="production_changes_32">+ Возможность скрывать изменение статуса в конференциях\n* Незначительные исправления в работе чата\n* Незначительные исправления в обработке пакетов</string>
<string name="production_changes_33">* Исправлена критическая ошибка, вызывавшее постоянное переподключение\n* Незначительные исправления</string>
<string name="production_changes_34">+ Обновление внешнего вида\n+ Поддержка аппаратной кнопки поиска\n* Исправлено незапланированное переподключение\n* Исправлен экспорт большой истории сообщений\n* Другие исправления\nNB: Приложение требует новых разрешений для улучшения управления подключением</string>
<string name="production_changes_35">+ Поддержка Windows Live Messenger (требуется Android 2.2 или выше)\n+ Поддержка Одноклассники\n+ Предотвращение отключения WiFi\n+ Кнопка "Закрыть все чаты" вынесена в меню приложения\n* Исправлены уведомления в Android 4.0.3+\n* Другие исправления\nNB: Предотвращение отключения WiFi может увеличить расход батареи. Отключить эту функцию можно в настройках приложения.</string>
<string name="production_changes_36">+ Интеграция с системными учётными записями и списком контактов в телефоне\n+ Отправка через Xabber\n+ Меню действий над интегрированным контактом в Xabber\n+ При открытии чата фокус передаётся полю ввода сообщения\n+ Опция "Не хранить пароль"\n+ Объединены "Google Talk" и "Google Talk для доменов" типы учетных записей\n+ Иконка в честь Первого мая\n* Исправлена работа с отключенной опцией "Указать хост вручную"\n* Исправлено появление чёрного экрана при очистке области уведомлений\nNB: Приложение требует новых разрешений.</string>
<string name="production_changes_37">* Незначительное исправление в VIP версии</string>
<string name="production_changes_38">+ Просмотр информации о контакте (vCard и подключенные ресурсы)\n+ Отображение иконки используемого контактом клиента\n+ Теперь все смогут увидеть, что ты используешь VIP версию Xabber-а :)\n+ Настройка уведомления только о первом сообщении в чате\n+ Настройка отображения текста сообщения в области уведомления\n+ Возможность сбросить индивидуальные настройки отображения контактов не в сети\n+ Поддержка ping\n* Незначительные исправления</string>
<string name="production_changes_39">+ Настраиваемый размер шрифта в чате\n+ Возможность настройки оповещений для отдельных пользователей\n+ Уведомление о наборе текста\n+ Ярлыки для чатов на рабочем столе\n+ Настройки отображения сообщений в чате\n* Чат работает быстрее\n* Исправлена прокрутка в чате\n* Исправлены ошибки уведомлений\n* Исправлена загрузка битых изображений\n* Незначительные исправления</string>
<string name="production_changes_40">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="production_changes_41">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="production_changes_42">* Исправлена прокрутка в чате\n* Незначительные исправления</string>
<string name="production_changes_43">+ Поддержка OTR шифрования\n+ Проверка сертификата сервера\n+ Поддержка старого механизма SSL авторизации\n+ Уведомления о доставке сообщений\n+ Настройки вибрации для отдельного чата\n+ Улучшено управление статусом в зависимости от активности\n+ Настраиваемые приоритеты в зависимости от статуса\n* Исправлено подключение к Windows Live Messenger (MSN) и ВКонтакте\n* Исправлены иконки уведомлений в Android 4\n* Улучшена работа с SRV записями и циклический перебор DNS</string>
<string name="production_changes_44">+ Голосование за открытый исходный код</string>
<string name="production_changes_45">С новым гором!\n+ Поддержка архива сообщений (на стороне сервера рекомендуется плагин для Prosody)\n+ Настройки истории сообщений для каждой учетной записи\n+ Копирование отпечатка OTR в буфер обмена\n* Исправлена проверка сертификатов серверов\n* Уменьшен объем трафика при переподключении\n* Исправлены оповещения в конференциях\n* Исправлены уведолмения о доставке и о наборе сообщений\n* Незначительные исправления\n* Исправлены и дополнены переводы\nВсем спасибо за помощь!</string>
<string name="production_changes_46">Мы рады сообшить, что исходный код Xabber будет опубликован в январе 2013 под лицензией GNU GPLv3!\n\nС новым гором!</string>
<string name="production_changes_47">+ Исходные коды Xabber теперь доступны на GitHub\n+ Перевод на Чешский.\n+ Функция привлечения внимания собеседника\n+ Настройки уведомлений по ключевым фразам\n+ Возможность отключения уведомлений о наборе сообщений\n+ Просмотр списка участников конференции\n* Незначительные исправления\n* Исправлены и дополнены переводы\nВсем спасибо за помощь!</string>
<string name="production_changes_48">+ Поддержка TOR через приложение Orbot\n+ Поддержка прокси\n+ Переводы на Белорусский, Персидский, Итальянский, Португальский, Украинский, Китайский - Китай, Китайский - Тайвань\n* Исправлены уведомления для Android 4+\n* Исправлена работа с историей сообщений на сервере\n* Исправлен выход из приложения\n* Исправлены переводы\n* Незначительные исправления\nВсем спасибо за помощь!</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_ADD_TO_GROUP">Ошибка при добавлении в группу</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
......@@ -40,9 +40,7 @@
<string name="choose_account">Выберите учетную запись</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="EMPTY_ACCOUNT">Пожалуйста, выберите учетную запись</string>
<string name="add_new_group">Добавить новую группу…</string>
<string name="accept_contact">Разрешить</string>
<string name="decline_contact">Отклонить</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_viewer">Информация о контакте</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_for">Просмотр информации о %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_xmpp">XMPP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_jid">Jabber ID</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_name">Присвоенный псевдоним</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resources">Ресурсы</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resource_summary">Ресурс: %1$s\nПриоритет: %2$d\nКлиент: %3$s</string>
<string name="contact_viewer_client">Клиент</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_client_info">%1$s, тип: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_person">Персональные данные</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_nick_name">Псевдоним</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
......@@ -98,24 +82,15 @@
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_video">Видео</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_bbs">BBS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_modem">Модем</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_msg">Голосовая почта</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_isdn">ISDN</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_pcs">PCS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_internet">Интернет</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_x400">X400</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="please_wait">Пожалуйста, подождите...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="unknown">Не известно</string>
<string name="edit_alias">Редактировать псевдоним</string>
<string name="edit_contact_groups">Редактировать группы</string>
<string name="remove_contact">Удалить контакт</string>
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_fingerprint_description">Чтобы Вам убедиться, что никто не выдает себя за вашего собеседника, он должен сообщить Вам цифровой отпечаток пальца, который вы сверите с указанным здесь. Не следует использовать XMPP чат для такой проверки.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="EMPTY_NICK_NAME">Не указан ник</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases.png -->
<string name="events_phrases_title">Ключевые фразы</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_answer">Ответ на секретный вопрос:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="available">Доступен</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in10m">Через 10 минут</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
......@@ -29,7 +29,4 @@
<string name="save">Сохранить</string>
<string name="ok">Ok</string>
<string name="cancel">Отмена</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_copyright">© Redsolution LTD, 2010–2015</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
......
......@@ -22,47 +22,13 @@
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type">Account type</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_facebook">username for facebook.com (not e-mail)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_gtalk">username for gmail.com or Google Apps domain</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_livejournal">username for livejournal.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_qip">username for qip.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_vkontakte">username or id for vkontakte.ru (not e-mail)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_xmpp">name@example.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_ya">username for yandex.ru (not e-mail)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_facebook">You can not login to Facebook chat using your email. To set up Facebook chat you have to provide your Facebook username and password. You may check http://www.facebook.com/sitetour/chat.php for details.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_gtalk">If you don\'t have Google account you may create one at http://mail.google.com\nAlso you can use your_user_name@your_google_domain</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_livejournal">If you don\'t have Livejournal account you may create one at http://livejournal.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_qip">If you don\'t have QIP account you may create one at http://qip.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_vkontakte">You can enter you name (e.g. masha.v.kontakte) or id (e.g. id123456). You can not login to VKontakte chat using your email. To set up chat you have to provide your Vkontakte.ru username and password. Check http://vk.com/help.php?page=jabber for details.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_xmpp">If you want to learn more about XMPP (Jabber) here: https://xmpp.org</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_ya">If you don\'t have Ya.Online account you may create one at http://yandex.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_facebook">Facebook</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_gtalk">Google Talk</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_livejournal">LiveJournal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_qip">QIP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_vkontakte">VKontakte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_xmpp">XMPP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_ya">Ya.Online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_user_name">Username</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
......@@ -100,21 +66,11 @@
<string name="account_oauth_invalidated">Not authorized</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_oauth_summary">OAuth settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_gtalk.png -->
<string name="account_protocol_gtalk_title">Google Talk</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_protocol_wlm_title">WLM</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_protocol_xmpp_title">XMPP</string>
<string name="account_proxy_host">Proxy host</string>
<string name="account_proxy_password">Proxy password</string>
<string name="account_proxy_port">Proxy port</string>
<string name="account_proxy_type">Proxy type</string>
<string name="account_proxy_type_http">HTTP</string>
<string name="account_proxy_type_none">Disabled</string>
<string name="account_proxy_type_orbot">Orbot</string>
<string name="account_proxy_type_socks4">SOCKS4</string>
<string name="account_proxy_type_socks5">SOCKS5</string>
<string name="account_proxy_user">Proxy user</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_sasl">Use SASL Authentication (recommended)</string>
......@@ -142,18 +98,6 @@
<string name="account_tls_require">Require TLS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_require_summary">Require TLS encryption when connect to server</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_odnoklassniki">You must use your ID as your user name (e.g. 123456). You can not login to Odnoklasniki chat using your email, login or phone number. Your ID can be found here http://www.odnoklassniki.ru/settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_wlm">You will be redirected to http://live.com in order to enter username and password.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_odnoklassniki">id for odnoklassniki.ru (not login or e-mail)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_wlm">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_odnoklassniki">Odnoklassniki</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_wlm">Windows Live Messenger</string>
<string name="account_use_orbot">Chat through TOR anonymity network and force TLS cryptographic protocol\nNot recommended for Google Talk</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_confirm.png -->
<string name="confirm_cancellation">Are you sure you want to discard all the changes?</string>
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_confirm.png -->
<string name="account_delete_confirm">Do you really want to delete account %s?\n(it won\'t be deleted from server, just from Xabber)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<string name="development_changes_20">+ Added support for jabber.org and etc.\n- Support for gmail.com disabled</string>
<string name="development_changes_21">+ Added support for Gtalk, Facebook chat, LiveJournal chat, QIP.ru, Ya.Online, Vkontakte chat.</string>
<string name="development_changes_22">+ Multiple chat and authorisation fixes.</string>
<string name="development_changes_23">+ Disconnect issues on network changes fixed a bit.</string>
<string name="development_changes_24">Merry Christmas!</string>
<string name="development_changes_25">+ German Language translation\n+ TLS option\n+ Chat has beed sped up significantly.</string>
<string name="development_changes_26">+ Compression support.\n+ "Send message by Enter" option\n+ Сontact list fixed\n+ Fixed vibro and light indication for some phones</string>
<string name="development_changes_27">+ Message receive fix\n+ Reconnection on network change fix</string>
<string name="development_changes_28">+ Design optimization\n+ Connection indicator\n+ Chat design fix</string>
<string name="development_changes_29">+ Timeout for compressed session fix</string>
<string name="development_changes_30">+ Hi-res Icons\n+ Compression options.</string>
<string name="development_changes_31">+ Color themes</string>
<string name="development_changes_32">+ Chat switching by gestures\n+ Option to turn off smiles/emoticons\n+ Option to change status on screen switching-off\n+ Compress and TLS issues fixed\n+ Connection with jabberd2 servers fixed</string>
<string name="development_changes_33">+ Gesture switching fixed</string>
<string name="development_changes_34">+ Unstable multi user chat support (MUC)\n+ Option to notify about incoming messages\n+ Option to hide persistent notification\n* Heavily updated English and Russian translations\n* Menu rearranged\n* Chat\'s notification fix</string>
<string name="development_changes_35">* Minor fixes in MUC\n* Add account wizard improved\n* Status change window improved</string>
<string name="development_changes_36">+ Space rocket on icon dedicated to 50th anniversary of first manned space flight by Yuri Gagarin (12.04.1961)</string>
<string name="development_changes_37">+ French translation (thank you, Charlie Huriel!)\n* Minor fixes in German translation\n* Chat input box mad cursor fix\n* Speedup chat with long message history\n* Minor fixes in chat\n* Minor fixes in notification bar\n* Fix message duplication in MUC</string>
<string name="development_changes_38">+ Аccount type "Google Talk for Domains" added\n* Screen orientation change bug fixed</string>
<string name="development_changes_39">+ Installation on SD card\n+ Option to notify on incoming messages in open chat\n* Reduced traffic usage\n* Reconnection issues fix\n* Memory leak fix\n* German translation fix (thank you, Niklas Casper, Sven Rohweder, Sven Henze, Julian Berkner)</string>
<string name="development_changes_40">* Fixed work with the conferences</string>
<string name="development_changes_41">* Fixed account settings update\n* Fixed notification about incoming messages\n* Minor fixes in chat\nNB: You will probably have to recreate shortcut for Xabber after update</string>
<string name="development_changes_42">* Fix project version</string>
<string name="development_changes_43">+ SRV records support\n* Experimental geolocation functions are turned off for a while</string>
<string name="development_changes_44">+ Start at phone boot option\n+ Contact search\n+ "Always show offline contacts" option for specified groups\n+ "Away" status after specified timeout\n* Reconnection improved\n* Persistent contact list, does not disappear while disconnected\n* Contact list and chat scrolling speed improved\n* Disconnected rooms in contact list are always shown\n* Adding contacts menu fixed\n* Fixed vibro for some phones\n* Minor fixes in chat</string>
<string name="development_changes_45">* Minor chat fixes</string>
<string name="development_changes_46">* Minor chat fixes</string>
<string name="development_changes_47">* Fixed statuses for some servers</string>
<string name="development_changes_48">* Minor contact list fixes</string>
<string name="development_changes_49">* Displaying non-group contacts fixed \n* Fail on some devices fixed</string>
<string name="development_changes_50">+ Polish translation (thank you, Qrix!)\n+ Export message history to SD card\n+ "Don\'t use SASL Authentication" option for old servers\n+ Close all chats button\n+ Hide keyboard after send message option\n* Icons updated\n* Adding contact dialog improved\n* Reconnection improved\n* Displaying offline contacts fixed\n* Vibration bug fixed\nIf vibro does not work please check phone settings or enable option: Settings - Notifications - Ignore system vibro settings.</string>
<string name="development_changes_51">* Chat switch fixed</string>
<string name="development_changes_52">* Minor packet processing fix</string>
<string name="development_changes_53">+ Option to hide state change in conferences\n* Minor bug fix in chat</string>
<string name="development_changes_54">* Critical reconnect loop bug fixed\n* Minor fixes</string>
<string name="development_changes_55">+ Design update\n+ Hardware search button support\n* Unreasonable disconnect error fixed\n* Export large message history fixed\n* Minor fixes\nNB: New permission needed for better connection management</string>
<string name="development_changes_56">+ Windows Live Messenger support (Android 2.2 or higher required)\n+ Odnoklassniki support\n+ Prevent WiFi from been disabled\n+ Move "Close all chats" to the option menu\n* Fixed notifications on Android 4.0.3+\n* Minor fixes\nNB: Preventing WiFi from been disabled will reduce battery life. You can disable this function in application settings.</string>
<string name="development_changes_57">* Notification bugfix</string>
<string name="development_changes_58">* "Use custom host" connection option fixed\n* Black screen on clear notification fixed\n+ Integration into Android accounts and contacts\n+ Share using Xabber\n+ Quick contacts in Xabber\n+ Focus on input field when opening chat\n+ Do not keep password option\n+ Merge "Google Talk" and "Google Talk for Domains" account types\n+ Xabber is now available on Amazon Appstore\nNB: New permissions will be required.</string>
<string name="development_changes_59">* Open chat from system contact list fixed</string>
<string name="development_changes_60">* Suggestion to enable integration with system contacts fixed\n* Minor fixes</string>
<string name="development_changes_61">+ View contact\'s information (vCard and online resourses)\n+ Show contact\'s client software in contact list\n+ Option to notify on the first message only in a chat\n+ Option not to show message text in notification area\n+ Option to reset “Show offline contacts” settings\n+ Ping support\n+ Icon in honor of International Workers\' Day\n* Minor fixes</string>
<string name="development_changes_62">* Minor contact list fixes</string>
<string name="development_changes_63">+ Customize font size in chat\n+ Notification options for each contact\n+ Typing-notification\n+ Shortcut to a chat on home screen\n+ Displaying a message on a new line option\n* Chat speedup\n* Chat scrolling fixed\n* Notifications fixed\n* Minor fixes</string>
<string name="development_changes_64">* Loading invalid avatars fixed\n* Minor fixes</string>
<string name="development_changes_65">* Authorization for Windows Live Messenger fixed\n* Minor fixes</string>
<string name="development_changes_66">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="development_changes_67">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="development_changes_68">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="development_changes_69">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="development_changes_70">+ OTR (Off-The-Record) encryption support\n+ Check for the server certificate option\n+ Legacy SSL authorization option\n+ Message delivery receipts\n+ Vibro settings for each chat\n+ Activity based statuses improved\n+ Status based priority support\n* Fixed connection issues for Windows Live Messenger (MSN) and vk chat\n* Notification icons for Android 4+ fixed\n* SRV lookup and DNS round robin improved\n* Translations fixed (Thank you folks!)</string>
<string name="development_changes_71">+ Vote for open source</string>
<string name="development_changes_72">+ Message archive support (Plug-in for Prosody is recommended on server side)\n+ Per account history settings\n+ Copy OTR fingerprint to the clipboard\n+ Dutch and Turkish translations\n* Reduce traffic on reconnection\n* Notifications in conferences fixed\n* Active chat list fixed\n* Message delivery receipts fixed\n* Multiple translations fixed\nThanks for your help!</string>
<string name="development_changes_73">* Minor fixes</string>
<string name="development_changes_74">* Contact\'s client indication fixed\n* Typing notifications fixed\n* OTR verification with question fixed\n* Minor fixes</string>
<string name="development_changes_75">* Server certificate validation fixed\n* Minor fixes</string>
<string name="development_changes_76">+ Slovak translation (thank you, Dominik!)\n* Server certificate validation fixed\n* Minor fixes</string>
<string name="development_changes_77">+ Czech translations\n+ Call attention feature\n+ Notifications based on key phrase\n+ Option to disable typing notifications\n+ List of occupants in a chat room (view only)\n* Multiple minor fixes\n* Multiple translations fixed\nThank you folks!</string>
<string name="development_changes_78">+ Source Codes of Xabber are now available on GitHub\n* Multiple minor fixes</string>
<string name="development_changes_79">+ TOR support using Orbot\n+ Proxy support\n+ Belarusian, Persian, Italian, Portuguese, Ukrainian, Chinese - China, Chinese - Taiwan translations\n* Notification in Android 4+ fixed\n* Server side history fixed\n* Exit from Xabber fixed\n* Translations fixed\n* Minor fixes\nThank you folks!</string>
<string name="development_changes_80">* Icon updated</string>
<string name="development_changes_81">* Translations updated</string>
<string name="production_changes_1">Initial release</string>
<string name="production_changes_2">First update</string>
<string name="production_changes_3">+ Status saved between sessions</string>
<string name="production_changes_4">+ Debug mode fix</string>
<string name="production_changes_5">+ Now runs as a service</string>
<string name="production_changes_6">+ No sound on each notification</string>
<string name="production_changes_7">+ Notifications are stored in database\n+ Synchronization fix\n+ Soft keyboard show/hide now scrolls chat window properly</string>
<string name="production_changes_8">+ 48 unique default avatars\n+ Groups in contact list\n+ Preferences menu\n+ Account types\n+ Interface tweaks</string>
<string name="production_changes_9">+ Optimized user interface\n+ Sort in contact list is now case insensitive\n+ Facebook chat account type\n+ Option to hide avatar in title of chat\n+ Accounts are optionally Enabled/Disabled\n+ Interface tweaks\n- Geolocation functions disabled (for now)\n</string>
<string name="production_changes_10">- Removed unsupported account types\n+ Long tap on "add account" button fixed</string>
<string name="production_changes_11">- Removed context menu to go online/offline</string>
<string name="production_changes_12">+ App name change\n+ Data structure optimized\n+ Multiple fixes and updates </string>
<string name="production_changes_13">+ Clear history according settings\n+ Last message for contacts optimized</string>
<string name="production_changes_14">+ Expanding operations fix</string>
<string name="production_changes_15">+ Context menu to quote chat message and to repeat send\n+ Copy and paste chat message, clear message text\n+ Remove selected chat message from history.\n+ Chat with disconnected contacts fixed</string>
<string name="production_changes_16">+ Emoticon support</string>
<string name="production_changes_17">+ Typed but not sent text is now saved\n+ Icons to display message status</string>
<string name="production_changes_18">+ Support for googlemail.com added\n+ Custom sound notifications\n+ Chat switching by gestures (experimental)\n+ Internal fixes.</string>
<string name="production_changes_19">+ Bugs with chat input fixed</string>
<string name="production_changes_20">+ English is now default language\n+ Some changes in user interface</string>
<string name="production_changes_21">+ Support for most Jabber servers\n+ Fixed error in cs locale\n+ Minor bugfixes\n+ Merry Christmas!</string>
<string name="production_changes_22">+ TLS option\n+ Compression support\n+ "Send message by Enter" option\n+ Connection indicator\n+ German language\n+ Chat sped up significantly\n+ Contact list fix\n+ Vibro and light indication for some phones fix\n+ Message receive fix\n+ Reconnection on network change fix</string>
<string name="production_changes_23">+ Hi-res icons\n+ Compression options</string>
<string name="production_changes_24">+ Color themes</string>
<string name="production_changes_25">+ Chat switching by gestures\n+ Option to turn off smiles/emoticons\n+ Option to change status on screen switching-off\n* Compress and TLS issues fixed\n* Connection with jabberd2 servers fixed</string>
<string name="production_changes_26">+ Space rocket on icon dedicated to 50th anniversary of first manned space flight by Yuri Gagarin (12.04.1961)\n+ Basic multi user chat support (MUC)\n+ Option to notify about incoming messages\n+ Option to hide persistent notification\n* Heavily updated English and Russian translations\n* Menu rearranged\n* Chat\'s notification fix\n* Add account wizard improved\n* Status change window improved</string>
<string name="production_changes_27">+ French translation (thank you, Charlie Huriel!)\n+ Аccount type "Google Talk for Domains" added\n* Chat input box mad cursor fix\n* Speedup chat with long message history\n* Minor fixes in chat\n* Minor fixes in notification bar\n* Fix message duplication in MUC\n* Screen orientation change bug fixed</string>
<string name="production_changes_28">+ Installation on SD card\n+ Option to notify on incoming messages in open chat\n* Reduced traffic usage\n* Reconnection issues fix\n* Memory leak fix\n* Fixed work with the conferences\n* Fixed account settings update\n* Fixed notification about incoming messages\n* Minor fixes in chat\n* German translation fix (thank you, Niklas Casper, Sven Rohweder, Sven Henze, Julian Berkner)</string>
<string name="production_changes_29">+ SRV records support\n* Geolocation function is temporarily disabled.</string>
<string name="production_changes_30">+ Start at phone boot option\n+ Contact search\n+ "Always show offline contacts" option for specified groups\n+ "Away" status after specified timeout\n* Reconnection improved\n* Persistent contact list, does not disappear while disconnected\n* Contact list and chat scrolling speed improved\n* Disconnected rooms in contact list are always shown\n* Adding contacts menu fixed\n* Fixed vibro for some phones\n* Minor fixes</string>
<string name="production_changes_31">+ Polish translation (thank you, Qrix!)\n+ Export message history to SD card\n+ "Don\'t use SASL Authentication" option for old servers\n+ Close all chats option\n+ Hide keyboard after send message option\n* Icons updated\n* Adding contact dialog improved\n* Reconnection improved\n* Displaying offline contacts fixed\n* Vibration bug fixed\nIf vibro does not work please check phone settings or enable option: Settings - Notifications - Ignore system vibro settings.</string>
<string name="production_changes_32">+ Option to hide state change in conferences\n* Minor bug fix in chat\n* Minor packet processing fix</string>
<string name="production_changes_33">* Critical reconnect loop bug fixed\n* Minor fixes</string>
<string name="production_changes_34">+ Design update\n+ Hardware search button support\n* Unreasonable disconnect error fixed\n* Export large message history fixed\n* Minor fixes\nNB: New permission needed for better connection management</string>
<string name="production_changes_35">+ Windows Live Messenger support (Android 2.2 or higher required)\n+ Odnoklassniki support\n+ Prevent WiFi from been disabled\n+ Move "Close all chats" to the option menu\n* Fixed notifications on Android 4.0.3+\n* Minor fixes\nNB: Preventing WiFi from been disabled will reduce battery life. You can disable this function in application settings.</string>
<string name="production_changes_36">+ Integration into Android accounts and contacts\n+ Share using Xabber\n+ Quick contacts in Xabber\n+ Focus on input field when opening chat\n+ Do not keep password option\n+ Merge "Google Talk" and "Google Talk for Domains" account types\n+ Icon in honor of International Workers\' Day\n* "Use custom host" connection option fixed\n* Black screen on clear notification fixed\nNB: New permissions will be required.</string>
<string name="production_changes_37">* Minor fix for vip version</string>
<string name="production_changes_38">+ View contact\'s information (vCard and online resourses)\n+ Show contact\'s client software icon in contact list\n+ Now everybody can see, that you are using Xabber VIP version :)\n+ Option to notify on the first message only in a chat\n+ Option not to show message text in notification area\n+ Option to reset “Show offline contacts” settings\n+ Ping support\n* Minor fixes</string>
<string name="production_changes_39">+ Customize font size in chat\n+ Notification options for each contact\n+ Typing-notification\n+ Shortcut to a chat on home screen\n+ Displaying a message on a new line option\n* Chat speedup\n* Chat scrolling fixed\n* Notifications fixed\n* Loading invalid avatars fixed\n* Minor fixes</string>
<string name="production_changes_40">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="production_changes_41">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="production_changes_42">* Chat scrolling issue fixed\n* Minor fixes</string>
<string name="production_changes_43">+ OTR (Off-The-Record) encryption support\n+ Check for the server certificate option\n+ Legacy SSL authorization option\n+ Message delivery receipts\n+ Vibro settings for each chat\n+ Activity based statuses improved\n+ Status based priority support\n* Fixed connection issues for Windows Live Messenger (MSN) and vk chat\n* Notification icons for Android 4+ fixed\n* SRV lookup and DNS round robin improved\n* Translations fixed (Thank you folks!)</string>
<string name="production_changes_44">+ Vote for open source</string>
<string name="production_changes_45">Merry Christmas!\n+ Dutch, Slovak, Turkish, Chinese translations\n+ Message archive support (Prosody plug-in is recommended on the server side)\n+ Per account history settings\n+ Copy OTR fingerprint to the clipboard\n* Server certificate validation fixed\n* Reduced reconnection traffic\n* Notifications in conferences fixed\n* List of active chat fixed\n* Message delivery receipts fixed\n* Typing notifications fixed\n* Minor fixes\n* Multiple translations fixed\nThank you guys!</string>
<string name="production_changes_46">We are happy to announce that source code of Xabber will be released in January 2013 under GNU GPLv3 license!\n\nMerry Christmas everyone!</string>
<string name="production_changes_47">+ Source Codes of Xabber are now available on GitHub\n+ Czech translations\n+ Call attention feature\n+ Notifications based on key phrase\n+ Option to disable typing notifications\n+ List of occupants in a chat room (view only)\n* Multiple minor fixes\n* Multiple translations fixed\nThank you folks!</string>
<string name="production_changes_48">+ TOR support using Orbot\n+ Proxy support\n+ Belarusian, Persian, Italian, Portuguese, Ukrainian, Chinese - China, Chinese - Taiwan translations\n* Notification in Android 4+ fixed\n* Server side history fixed\n* Exit from Xabber fixed\n* Translations fixed\n* Minor fixes\nThank you folks!</string>
</resources>
......@@ -35,7 +35,7 @@
<array name="account_type_xmpp">
<item>@string/account_protocol_xmpp</item>
<item>@string/account_type_names_xmpp</item>
<item>@string/xmpp</item>
<item>@string/account_type_hints_xmpp</item>
<item>@string/account_type_helps_xmpp</item>
<item>@drawable/ic_vcard_xmpp_24dp</item>
......@@ -48,7 +48,7 @@
<array name="account_type_gtalk">
<item>@string/account_protocol_gtalk</item>
<item>@string/account_type_names_gtalk</item>
<item>@string/google_talk</item>
<item>@string/account_type_hints_gtalk</item>
<item>@string/account_type_helps_gtalk</item>
<item>@drawable/ic_hangouts_grey600_24dp</item>
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_ADD_TO_GROUP">Error: can\'t add to group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
......@@ -40,9 +40,7 @@
<string name="choose_account">Choose an account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="EMPTY_ACCOUNT">Please select an account</string>
<string name="add_new_group">Add new group…</string>
<string name="accept_contact">Authorize</string>
<string name="decline_contact">Discard</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_viewer">Contact info</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_for">View information about %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_xmpp">XMPP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_jid">Jabber ID</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_name">Jabber name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resources">Resources</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resource_summary">Resource: %1$s\nPriority: %2$d\nClient: %3$s</string>
<string name="contact_viewer_client">Client</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_client_info">%1$s, type: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_person">Personal information</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_nick_name">Nickname</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
......@@ -98,27 +82,16 @@
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_video">Video</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_bbs">BBS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_modem">Modem</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_msg">Voice messaging</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_isdn">ISDN</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_pcs">PCS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_internet">Internet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_x400">X400</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="please_wait">Please wait...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="unknown">Unknown</string>
<string name="edit_alias">Edit alias</string>
<string name="edit_contact_groups">Edit groups</string>
<string name="remove_contact">Remove contact</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_fingerprint_description">Your opponent can provide his fingerprint you can compare with specified here to be sure he is who you think he is. You should not use XMPP chat for this purpose.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="EMPTY_NICK_NAME">Nickname not specified</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases.png -->
<string name="events_phrases_title">Key phrases</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases.png -->
<string name="phrase_add">Add phrase</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_remove.png -->
<string name="phrase_delete">Delete phrase</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_remove.png -->
<string name="phrase_delete_confirm">Do you realy want to delete phrase: %s?</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases.png -->
<string name="phrase_empty">&lt; Any text &gt;</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_detail.png -->
<string name="phrase_group">Part of the contact group</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_detail.png -->
<string name="phrase_regexp">Regular expression</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_detail.png -->
<string name="phrase_sound">Sound\nChoose notification sound</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_detail.png -->
<string name="phrase_text">Text to search for</string>
<!-- https://dl.dropboxusercontent.com/u/1029995/com.xabber.android/preference_editor_notifications_phrases_detail.png -->
<string name="phrase_user">Contact\'s Jabber ID part</string>
</resources>
\ No newline at end of file
......@@ -403,17 +403,17 @@
<string-array name="account_proxy_type_entries">
<item>@string/account_proxy_type_none</item>
<item>@string/account_proxy_type_http</item>
<item>@string/account_proxy_type_socks4</item>
<item>@string/account_proxy_type_socks5</item>
<item>@string/account_proxy_type_orbot</item>
<item>@string/http</item>
<item>@string/socks4</item>
<item>@string/socks5</item>
<item>@string/orbot</item>
</string-array>
<string-array name="account_proxy_type_entryvalues">
<item>@string/account_proxy_type_none</item>
<item>@string/account_proxy_type_http</item>
<item>@string/account_proxy_type_socks4</item>
<item>@string/account_proxy_type_socks5</item>
<item>@string/account_proxy_type_orbot</item>
<item>@string/http</item>
<item>@string/socks4</item>
<item>@string/socks5</item>
<item>@string/orbot</item>
</string-array>
<string-array name="account_archive_mode_entries">
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_answer">Secret answer:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="available">Available</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
......@@ -37,5 +37,4 @@
<string name="saved_statuses">Saved statuses</string>
<string name="clear_status_history">Clear status history</string>
<string name="status_message">Status message</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<string name="xmpp">XMPP</string>
<string name="google_talk">Google Talk</string>
<string name="http">HTTP</string>
<string name="orbot">Orbot</string>
<string name="socks4">SOCKS4</string>
<string name="socks5">SOCKS5</string>
<string name="jabber_id">Jabber ID</string>
<string name="bbs">BBS</string>
<string name="isdn">ISDN</string>
<string name="pcs">PCS</string>
<string name="x400">X400</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in10m">In 10 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
......@@ -28,7 +28,4 @@
<string name="auto">Automatically</string>
<string name="save">Save</string>
<string name="ok">Ok</string>
<string name="cancel">Cancel</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) 2013, Redsolution LTD. All rights reserved.
This file is part of Xabber project; you can redistribute it and/or
modify it under the terms of the GNU General Public License, Version 3.
Xabber is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License,
along with this program. If not, see http://www.gnu.org/licenses/.
-->
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
>
<PreferenceCategory
android:title="@string/contact_viewer_xmpp"
>
<PreferenceScreen
android:title="@string/contact_viewer_jid"
android:key="@string/contact_viewer_jid"
/>
<PreferenceScreen
android:title="@string/contact_viewer_name"
android:key="@string/contact_viewer_name"
/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/contact_viewer_resources"
android:key="@string/contact_viewer_resources"
/>
<PreferenceCategory
android:title="@string/vcard_person"
>
<PreferenceScreen
android:title="@string/vcard_nick_name"
android:key="@string/vcard_nick_name"
/>
<PreferenceScreen
android:title="@string/vcard_formatted_name"
android:key="@string/vcard_formatted_name"
>
<PreferenceScreen
android:title="@string/vcard_prefix_name"
android:key="@string/vcard_prefix_name"
/>
<PreferenceScreen
android:title="@string/vcard_given_name"
android:key="@string/vcard_given_name"
/>
<PreferenceScreen
android:title="@string/vcard_middle_name"
android:key="@string/vcard_middle_name"
/>
<PreferenceScreen
android:title="@string/vcard_family_name"
android:key="@string/vcard_family_name"
/>
<PreferenceScreen
android:title="@string/vcard_suffix_name"
android:key="@string/vcard_suffix_name"
/>
</PreferenceScreen>
<PreferenceScreen
android:title="@string/vcard_birth_date"
android:key="@string/vcard_birth_date"
/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/vcard_organization"
>
<PreferenceScreen
android:title="@string/vcard_title"
android:key="@string/vcard_title"
/>
<PreferenceScreen
android:title="@string/vcard_role"
android:key="@string/vcard_role"
/>
<PreferenceScreen
android:title="@string/vcard_organization"
android:key="@string/vcard_organization"
/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/vcard_other"
>
<PreferenceScreen
android:title="@string/vcard_url"
android:key="@string/vcard_url"
/>
<PreferenceScreen
android:title="@string/vcard_categories"
android:key="@string/vcard_categories"
/>
<PreferenceScreen
android:title="@string/vcard_decsription"
android:key="@string/vcard_decsription"
/>
<PreferenceScreen
android:title="@string/vcard_note"
android:key="@string/vcard_note"
/>
</PreferenceCategory>
</PreferenceScreen>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment