Commit 12854db7 authored by Grigory Fedorov's avatar Grigory Fedorov

Merge branch 'develop' into feature/about_screen

Conflicts:
	app/src/main/res/values/about_viewer.xml
parents a4d53c42 c3eaddd9
......@@ -346,22 +346,6 @@ public class SettingsManager implements OnInitializedListener,
throw new IllegalStateException();
}
public static ChatsDivide chatsDivide() {
String value = getString(R.string.chats_divide_key,
R.string.chats_divide_default);
if (Application.getInstance()
.getString(R.string.chats_divide_always_value).equals(value))
return ChatsDivide.always;
else if (Application.getInstance()
.getString(R.string.chats_divide_portrait_value).equals(value))
return ChatsDivide.portial;
else if (Application.getInstance()
.getString(R.string.chats_divide_never_value).equals(value))
return ChatsDivide.never;
else
throw new IllegalStateException();
}
public static boolean chatsStateNotification() {
return getBoolean(R.string.chats_state_notification_key,
R.bool.chats_state_notification_default);
......@@ -730,25 +714,6 @@ public class SettingsManager implements OnInitializedListener,
never,
}
public enum ChatsDivide {
/**
* Always divide message header from text.
*/
always,
/**
* Only in portial mode.
*/
portial,
/**
* Never.
*/
never
}
public enum SecurityOtrMode {
/**
......
......@@ -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,}) {
......
......@@ -13,113 +13,114 @@
along with this program. If not, see http://www.gnu.org/licenses/.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
>
android:layout_height="match_parent">
<TextView
android:text="@string/account_type"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Spinner
android:id="@+id/account_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="4dip"
android:paddingBottom="8dip"
android:prompt="@string/account_type"
/>
<LinearLayout
android:id="@+id/auth_panel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true" >
android:padding="16dp">
<TextView
android:text="@string/account_user_name"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:text="@string/account_type" />
<EditText
android:id="@+id/account_user_name"
<Spinner
android:id="@+id/account_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:singleLine="true"
android:text=""
android:hint=""
android:paddingBottom="8dip"
android:paddingTop="4dip"
android:prompt="@string/account_type"
/>
<TextView
android:text="@string/account_password"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/account_password"
<LinearLayout
android:id="@+id/auth_panel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:singleLine="true"
android:text=""
/>
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/account_user_name" />
<EditText
android:id="@+id/account_user_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint=""
android:inputType="textEmailAddress"
android:singleLine="true"
android:text="" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/account_password" />
<EditText
android:id="@+id/account_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:singleLine="true"
android:text="" />
<CheckBox
android:id="@+id/store_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/account_store_password" />
</LinearLayout>
<CheckBox
android:id="@+id/store_password"
android:layout_width="match_parent"
android:id="@+id/use_orbot"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/account_store_password" />
android:checked="false"
android:text="@string/account_use_orbot" />
</LinearLayout>
<CheckBox
android:id="@+id/use_orbot"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checked="false"
android:text="@string/account_use_orbot" />
<CheckBox
android:id="@+id/register_account"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checked="false"
android:text="@string/account_register" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/confirm_password_layout"
android:visibility="gone">
<CheckBox
android:id="@+id/register_account"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:checked="false"
android:text="@string/account_register" />
<TextView
android:text="@string/confirm_password"
<LinearLayout
android:id="@+id/confirm_password_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/confirm_password" />
<EditText
android:id="@+id/confirm_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:singleLine="true"
android:text="" />
</LinearLayout>
<EditText
android:id="@+id/confirm_password"
<TextView
android:id="@+id/account_help"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:singleLine="true"
android:text=""/>
android:layout_height="match_parent"
android:autoLink="all" />
</LinearLayout>
<TextView
android:id="@+id/account_help"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:autoLink="all"
/>
</LinearLayout>
</ScrollView>
......@@ -31,7 +31,7 @@
android:id="@+id/muc_server"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/muc_server_hint"
android:hint="@string/conference_jabber_org"
android:inputType="textEmailAddress"
android:singleLine="true" />
......
......@@ -34,7 +34,7 @@
android:id="@+id/contact_user"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="user@domain.name"
android:hint="@string/user_domain_name"
android:singleLine="true"
android:inputType="textEmailAddress"
/>
......
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_compression">Использовать сжатие</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_editor_title">%1$s учетная запись %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_enabled">Учетная запись включена</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_host">Хост</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_password">Пароль</string>
<string name="confirm_password">Подтверждение пароля</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_port">Порт</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_priority">Приоритет</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_resource">Ресурс</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_server_name">Сервер</string>
<!-- 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 -->
<string name="EMPTY_SERVER_NAME">Не указано имя сервера</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
<string name="EMPTY_USER_NAME">Не указано имя пользователя</string>
<string name="CONFIRM_PASSWORD">Пароли не совпадают</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_03.png -->
<string name="account_archive_mode">Хранить историю сообщений</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_available">На сервере, если возможно</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_dont_store">Не хранить</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_local">На устройстве</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_server">На сервере</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_unread">Только не отправленные и не прочитанные сообщения</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_compression_summary">Отметьте для включения сжатия данных</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_custom">Указать хост вручную</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_custom_summary">Указать хост для подключения вручную вместо использования SRV записи</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_enabled_summary">Отметьте для включения учетной записи</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_error.png -->
<string name="account_invalid_port">Порт должен быть числом (значение по умолчанию: 5222)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_error.png -->
<string name="account_invalid_priority">Приоритет должен быть между -128 и 128 (значение по умолчанию: 10)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_oauth">Авторизация</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_oauth_not_authorized.png -->
<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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_sasl_summary">Отключите эту опцию для подключения к очень старому серверу</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_store_password">Хранить пароль</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_store_password_summary">Отключение приведет к запросу пароля при каждом подключении</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_syncable">Интеграция с контактами в телефоне</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_syncable_summary">Отображать контакты этой учетной записи в списке контактов в телефоне</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_tls.png -->
<string name="account_tls_enable">Использовать TLS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_enable_summary">Использовать TLS шифрование если поддерживается сервером</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_tls.png -->
<string name="account_tls_legacy">Старый SSL</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_legacy_summary">Использовать старый SSL метод шифрования соединения с сервером</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_mode">Использование TLS/SSL</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_tls.png -->
<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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
<string name="INCORRECT_USER_NAME">Неправильное имя пользователя. Просмотрите подсказку внизу экрана</string>
<string name="orbot_required_message">Для использования TOR необходимо установить приложение Orbot и активировать в нём передачу данных. Вы хотите установить его из Google Play?</string>
<string name="orbot_required_title">Установить Orbot?</string>
......
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_confirm.png -->
<string name="account_delete_confirm">Вы действительно хотите удалить учетную запись %s? (учетная запись не будет удалена с сервера, только из Xabber)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_add">Добавить учетную запись</string>
<string name="account_register">Зарегистрировать новую учетную запись</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_delete">Удалить учетную запись</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Редактировать учетную запись</string>
<string name="account_state_registration">Регистрация</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_authentication">Авторизация</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connected">В сети</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connecting">Подключение</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_disconnecting">Отключение</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_offline">Не в сети</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_waiting">Ожидание подключения</string>
</resources>
\ No newline at end of file
<?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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_text">%1$s установил статус: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_text_none">%1$s убрал текстовый статус</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_join">%1$s подключился</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_kick">%1$s был выпнут</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_account_is_offline.png -->
<string name="account_is_offline">Сообщения будут доставлены после подключения к сети</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_delay">отправлено в %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_input_hint">Введите сообщение</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_switch.png -->
<string name="chat_page">Чат %1$d из %2$d</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_send">Отправить</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="clear_history">Очистить историю сообщений</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="clear_message">Очистить текст</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_contact_is_offline.png -->
<string name="contact_is_offline">Сообщения доставлены на сервер получателя и могут быть прочитаны им после подключения к сети</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="ENTRY_IS_NOT_AVAILABLE">Контакт не доступен</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="FILE_NOT_FOUND">Файл не найден</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_copy">Копировать</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_quote">Цитировать</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_remove">Удалить из истории</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_repeat">Повторить отправку</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_settings.png -->
<string name="save_history">Сохранять локальную историю сообщений\nХранить историю переписки на устройстве</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu.png -->
<string name="show_history">Показать историю сообщений</string>
<string name="action_attention_called">Сообщение для привлечения внимания было отправлено</string>
<string name="action_attention_requested">Вас окликнули</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_ban">%1$s был забанен</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_ban_by">%2$s забанил %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_invite_error">Приглашение не было получено %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_invite_sent">Приглашение было выслано %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_join_complete">Вы подключились к конференции, ваш ник %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_join_complete_to">Вы подключились к конференции %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_kick_by">%2$s выпнул %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_leave">%1$s покинул(а) чат</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_nickname">%1$s теперь %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_encryption">Шифрование было включено, но личность собеседника не была проверена. Вы можете выбрать способ проверки в меню OTR шифрования.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_error">Ошибка OTR: %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_finish">Собеседник закончил шифрованную беседу. Вы должны сделать то же самое или начать беседу заново.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_finished_session">Сообщение не было отправлено. Вы должны закончить шифрованную беседу или начать её заново</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_plain">Вы закончили шифрованую беседу</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_cheated">Собеседник попытался обмануть систему проверки личности</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_failed">Не удалось проверить личность собеседника</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_not_approved">Ваш ответ был успрешно проверен. Вам также следует задать вопрос собеседнику или проверить секретный ключ.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_unverified">Проверка личности выявила не соответствие</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_verified">Проверка личности успешно завершена</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_unreadable">Полученное зашифрованное сообщение невозможно прочитать</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_verified">Шифрование было включено</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_available">%1$s теперь в сети</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_away">%1$s отошел</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_chat">%1$s готов поболтать</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_dnd">%1$s просит не беспокоить</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_unavailable">%1$s отключился</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_xa">%1$s давно отсутствует</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_subject">%1$s изменил(а) тему: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="ATTENTION_IS_NOT_SUPPORTED">Контант не поддерживает возможность его окликнуть или отключил эту функцию</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="call_attention">Окликнуть</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu.png -->
<string name="chat_settings">Настройки чата</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_typing.png -->
<string name="chat_state_composing">Набирает сообщение…</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_paused.png -->
<string name="chat_state_paused">Ввел текст…</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_typed">набрано в %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="export_chat">Сохранить чат</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat_done.png -->
<string name="export_chat_done">История сохранена на SD карте</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat.png -->
<string name="export_chat_mask">%2$s для %1$s.html</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat.png -->
<string name="export_chat_send">Отправить после сохранения</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat.png -->
<string name="export_chat_title">Укажите имя файла</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_conference.png -->
<string name="muc_invite">Пригласить в конференцию</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_leaved.png -->
<string name="muc_is_unavailable">Сообщения не могут быть доставлены. Пожалуйста, присоединитесь к конференции</string>
<string name="occupant_list">Список участников</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="otr_encryption">OTR шифрование</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_end">Прекратить шифрование</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_refresh">Заново начать шифрование</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="otr_request">Собеседник запросил OTR шифрование беседы, но у вас не установлен плагин, который его поддерживает. Используйте Pidgin или Adium для PC/Mac и Xabber или GibberBot для Android. Посетите http://otr.cypherpunks.ca/ для получения более полной информации.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_01.png -->
<string name="otr_start">Начать шифрование</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="otr_unencrypted_message">Это сообщние не было зашифровано.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="otr_unreadable_message">Зашифрованное сообщение, отправленное Вами, невозможно прочитать</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_otr_progress.png -->
<string name="otr_verification">Проверка личности OTR</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_verify_fingerprint">Проверка отпечатком пальца</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_verify_question">Проверка вопросом</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_verify_secret">Проверка секретным ключом</string>
<string name="recent_chats">Недавние чаты</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/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 -->
......@@ -18,8 +18,6 @@
<string name="muc_room">Конференция</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server">Сервер конференций</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server_hint">conferenсe.jabber.ru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="NICK_ALREADY_USED">Такой ник уже используется</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 -->
......
......@@ -68,10 +68,6 @@
<string name="preference_interface">Темы\nНастройки внешнего вида</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_02.png -->
<string name="about_viewer">О программе</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_divide">Сообщение с новой строки\nОтображать сообщение с новой строки</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_new_line.png -->
<string name="chats_divide_portrait">В портретном режиме</string>
<string name="chats_show_background">Отображать фон\nОтключение может увеличить производительность</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_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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_compression">Use compression</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_editor_title">%1$s account %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_enabled">Enabled</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_host">Host</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_password">Password</string>
<string name="confirm_password">Confirm password</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_port">Port</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_priority">Priority</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_resource">Resource</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_server_name">Server</string>
<!-- 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 -->
<string name="EMPTY_SERVER_NAME">Server name is not specified</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
<string name="EMPTY_USER_NAME">Username is not specified</string>
<string name="CONFIRM_PASSWORD">Passwords do not match</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_03.png -->
<string name="account_archive_mode">Store message history</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_available">On server if available</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_dont_store">Don\'t store</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_local">Locally on device</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_server">On server</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_history.png -->
<string name="account_archive_mode_unread">Locally only unsent and unread</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_compression_summary">Check to enable data compression</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_custom">Custom host</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_custom_summary">Use custom host settings instead of SRV record</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_enabled_summary">Check to enable account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_error.png -->
<string name="account_invalid_port">Port must be a number (default: 5222)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_error.png -->
<string name="account_invalid_priority">Priority value must be a number between -128 and 128 (default: 10)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_oauth">Authorization</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_oauth_not_authorized.png -->
<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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_sasl_summary">Disable for very old server</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_store_password">Store password</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_store_password_summary">Disable this option to request password each time you go online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_syncable">Integrate into system contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_syncable_summary">Show contacts from this account in phone`s contact list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_tls.png -->
<string name="account_tls_enable">Enable TLS</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_enable_summary">Use TLS encryption when possible to connect to server</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_tls.png -->
<string name="account_tls_legacy">Legacy SSL</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_legacy_summary">Use legacy SSL encryption when connect to server</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_tls_mode">TLS/SSL usage</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_tls.png -->
<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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
<string name="INCORRECT_USER_NAME">Incorrect user name. Check help text below for details.</string>
<string name="orbot_required_message">In order to process using TOR you must have Orbot installed and activated to proxy traffic through it. Would you like to install it from Google Play?</string>
<string name="orbot_required_title">Install Orbot?</string>
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_confirm.png -->
<resources>
<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 -->
<string name="account_add">Add account</string>
<string name="account_register">Register new account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_delete">Delete account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Edit account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_registration">Registering</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_authentication">Authorizing</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connected">Online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connecting">Connecting</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_disconnecting">Disconnecting</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_offline">Offline</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_waiting">Waiting to reconnect</string>
</resources>
<?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>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_text">%1$s changed status: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_text_none">%1$s cleared status text</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_join">%1$s joined conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_kick">%1$s was kicked</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_account_is_offline.png -->
<string name="account_is_offline">You are currently offline. Messages you send will be delivered next time you connect.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_delay">sent at %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_input_hint">Type your message here</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_switch.png -->
<string name="chat_page">Chat %1$d of %2$d</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_send">Send</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="clear_history">Clear history</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="clear_message">Clear text</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_contact_is_offline.png -->
<string name="contact_is_offline">The recipient is offline. Messages you send will be delivered when they come back online.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="ENTRY_IS_NOT_AVAILABLE">Contact is not available</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="FILE_NOT_FOUND">File not found</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_copy">Copy</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_quote">Quote</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_remove">Remove from history</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_repeat">Retry sending</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_settings.png -->
<string name="save_history">Save local history\nStore message history locally</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu.png -->
<string name="show_history">Show history</string>
<string name="action_attention_called">Call attention was sent</string>
<string name="action_attention_requested">Attention was requested</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_ban">%1$s was banned</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_ban_by">%1$s was banned by %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_invite_error">Invitation was not received by %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_invite_sent">Invitation was sent to %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_join_complete">You have joined chat as %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_join_complete_to">You have joined chat %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_kick_by">%1$s was kicked by %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_leave">%1$s left chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_nickname">%1$s changed nickname to %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_encryption">Encryption has been enabled but this contact has not been verified. You can verify it from the OTR encryption menu.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_error">OTR error: %1$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_finish">Opponent has left conversation. You should do the same or restart it.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_finished_session">Your message has not been sent. Leave the conversation or restart it.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_plain">You have left the encrypted conversation</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_cheated">Opponent attempted to cheat during verification</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_failed">Verification failed</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_not_approved">Your answer for the secret question was verified. You should ask your opponent too or check shared secret.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_unverified">Verification failed</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_smp_verified">Verification successfully passed</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_unreadable">The encrypted message received is unreadable</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_verified">Encryption enabled</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_available">%1$s is now online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_away">%1$s is now away</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_chat">%1$s free for chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_dnd">%1$s asks do not disturb</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_unavailable">%1$s is now unavailable</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_status_xa">%1$s away for a long time</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_status.png -->
<string name="action_subject">%1$s has changed the subject to: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="ATTENTION_IS_NOT_SUPPORTED">Contact doesn\'t support or has disabled attention</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="call_attention">Call attention</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu.png -->
<string name="chat_settings">Chat settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_typing.png -->
<string name="chat_state_composing">Typing…</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_paused.png -->
<string name="chat_state_paused">Entered text…</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_typed">entered at %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="export_chat">Export chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat_done.png -->
<string name="export_chat_done">History has been exported to SD Card</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat.png -->
<string name="export_chat_mask">%2$s for %1$s.html</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat.png -->
<string name="export_chat_send">Send after export</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/export_chat.png -->
<string name="export_chat_title">Enter file name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_conference.png -->
<string name="muc_invite">Invite to chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_leaved.png -->
<string name="muc_is_unavailable">Your messages can not be delivered. Please join chat</string>
<string name="occupant_list">List of occupants</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="otr_encryption">OTR encryption</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_end">Stop encryption</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_refresh">Restart encryption</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="otr_request">Off-the-Record private conversation has been requested but you do not have a supportive plugin. Use Pidgin, Gajim or Adium for PC/Mac and Xabber or ChatSecure for Android. Go to http://otr.cypherpunks.ca/ for more information.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_01.png -->
<string name="otr_request">Off-the-Record private conversation has been requested but you do not have a supportive plugin. Use Pidgin, Gajim or Adium for PC/Mac and Xabber, Conversations or ChatSecure for Android. Go to http://otr.cypherpunks.ca/ for more information.</string>
<string name="otr_start">Start encryption</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="otr_unencrypted_message">This message has not been encrypted</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="otr_unreadable_message">The encrypted message you sent is unreadable</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_otr_progress.png -->
<string name="otr_verification">OTR verification</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_verify_fingerprint">Verify with fingerprint</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_verify_question">Verify with question</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_otr_02.png -->
<string name="otr_verify_secret">Verify with shared secret</string>
<string name="recent_chats">Recent chats</string>
......
......@@ -35,8 +35,8 @@
<array name="account_type_xmpp">
<item>@string/account_protocol_xmpp</item>
<item>@string/account_type_names_xmpp</item>
<item>@string/account_type_hints_xmpp</item>
<item>@string/xmpp</item>
<item>@string/name_example_com</item>
<item>@string/account_type_helps_xmpp</item>
<item>@drawable/ic_vcard_xmpp_24dp</item>
<item>True</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">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<resources>
<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 -->
<string name="CANNOT_CREATE_CONTACT">Error: can\'t add contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_CONTACT">Error: can\'t delete contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_FROM_GROUP">Error: can\'t remove from group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_GROUP">Error: can\'t delete group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_RENAME_GROUP">Error: can\'t rename group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_account">Account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_editor_title">Editing %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_group">Select groups</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_name">Alias (optional)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add_confirm.png -->
<string name="contact_subscribe_confirm">Share your %1$s account status with contact?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_user">Contact username</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="ENTRY_IS_NOT_FOUND">Contact not found</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_add">Create new group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_default">Friends</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_exists">Group with this name already exists</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_is_empty">Set group name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/group_add.png -->
<string name="group_name">Group name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="accept_subscription">Accept contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="account_reconnect">Reconnect</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_disabled">Manage accounts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_empty">Add account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_contacts">Add contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_online">Show offline contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_offline">Go online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_waiting">Reconnect</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_connecting">Connecting...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_state_connecting">Connecting…</string>
<string name="application_state_disabled">Accounts disabled</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_empty">You don\'t have any accounts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_contacts">You have no contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_online">Nobody online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_offline">No online accounts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_roster">Connected.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_loading.png -->
<string name="application_state_starting">Launching application... </string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_waiting">Waiting for connection...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu_extra.png -->
<string name="application_state_starting">Launching application…</string>
<string name="application_state_waiting">Waiting for connection…</string>
<string name="chat_list">Chat list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="chat_list_is_empty">No active chats</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="chat_viewer">Chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="close_chat">Close chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="CONNECTION_FAILED">Connection error</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="contact_add">Add contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_delete">Delete</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_confirm.png -->
<string name="contact_delete_confirm">Do you really want to delete contact %1$s from account %2$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_editor">Edit</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="contact_list">Contact list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="discard_subscription">Decline contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="exit">Exit</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_active_chat">Active chats</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_none">No groups</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_remove">Delete group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_confirm.png -->
<string name="group_remove_confirm">Do you really want to delete group %s? Users from this group will stay in contact list.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_rename">Rename group</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NO_SUCH_ACCOUNT">Account not found</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NOT_CONNECTED">Connection not established</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="request_subscription">Request subscription</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="XMPP_EXCEPTION">Stream error</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_closing.png -->
<string name="application_state_closing">Saving changes...\nApplication will be closed soon.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="application_state_closing">Saving changes…\nApplication will be closed soon.</string>
<string name="certificate_confirmation">%1$s.\nDo you absolutely trust a certificate with sha1 fingerprint: %2$s? Do you want not to be notified about this issue with this certificate?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check_details.png -->
<string name="certificate_details">\n\nIssued to:\nCommon Name (CN): %1$s\nOrganization (O): %2$s\nOrganizationl Unit (OU): %3$s\nSerial Number: %4$s\n\nIssued by:\nCommon Name (CN): %5$s\nOrganization (O): %6$s\nOrganizationl Unit (OU): %7$s\n\nValidity:\nIssued on: %8$s\nExpires on: %9$s.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_details">\n\nIssued to:\nCommon Name (CN): %1$s\nOrganization (O): %2$s\nOrganizational Unit (OU): %3$s\nSerial Number: %4$s\n\nIssued by:\nCommon Name (CN): %5$s\nOrganization (O): %6$s\nOrganizational Unit (OU): %7$s\n\nValidity:\nIssued on: %8$s\nExpires on: %9$s.</string>
<string name="certificate_invalid_chane">Signature chain verification failed</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_target">Target verification failed</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_self_signed">Self-signed certificate</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_show_details">Details ...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="certificate_show_details">Details…</string>
<string name="close_chats">Close all chats</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_integration.png -->
<string name="contact_integration_suggest">Do you want Xabber to be integrated into system contacts?\nThis can be changed in "Settings" → "XMPP accounts" → Your account → "Contact integration".\nNB: System contact list can go slower for a few minutes.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_room">Conferences</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="OTR_ERROR">OTR error</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_invite.png -->
<string name="select_contact">Please click to select contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_always">Always show</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_never">Never show</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_normal">Use general settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="show_offline_settings">Show offline contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_boot.png -->
<string name="start_at_boot_suggest">Do you want to run Xabber at startup?\nThis can be changed in "Settings" → "Connection settings" → "Run at boot"</string>
<string name="contact_search_hint">Search contacts</string>
<string name="sender_is_you">You</string>
<string name="xmpp_accounts">XMPP accounts</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<resources>
<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 -->
<string name="vcard_formatted_name">Formatted name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_prefix_name">Prefix</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_given_name">Given name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_middle_name">Middle name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_family_name">Family name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_suffix_name">Suffix name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_birth_date">Birthday</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_url">Web site</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_organization">Organization</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_title">Job title, function</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_role">Role</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_other">Other information</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_categories">Categories</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_decsription">Description</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_note">Notes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address">Address</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pobox">PO Box</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_extadr">Extended Address</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_street">Street</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_locality">Locality</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_region">Region</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pcode">Postal Code</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_ctry">Country Name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_telephone">Telephone</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_email">Email</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type">Labels</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_home">Home</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_work">Work</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_postal">Postal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_parcel">Parcel</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_dom">Domestic</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_intl">International</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_pref">Preferred</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_voice">Voice</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_fax">Fax</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_pager">Pager</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_cell">Cellular</string>
<!-- 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="please_wait">Please wait…</string>
<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">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<resources>
<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 -->
<string name="otr_is_verified">This contact is trusted</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_local_fingerprint">Your fingerprint:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_remote_fingerprint">Your opponent\'s fingerprint:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_scan_fingerprint">Scan QR code with opponent\'s fingerprint</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_show_fingerprint">Show QR code with your fingerprint</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_play.png -->
<string name="zxing_install_fail">There is no Google Play installed. Please install Barcode Scanner manually.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_scanner.png -->
<string name="zxing_install_message">This application requires Barcode Scanner. Would you like to install it?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_copy_fingerprint">Copy your fingerprint to clipboard</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<resources>
<string name="EMPTY_NICK_NAME">Nickname not specified</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="EMPTY_ROOM_NAME">Conference not specified</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_join">Join conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick">Nick</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick_hint">Your nick in conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password">Password</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password_hint">password is not required</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_room">Conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server">Multi User Chat server</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server_hint">conference.jabber.org</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="NICK_ALREADY_USED">Nick already used</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_IN_PROGRESS">Already in progress</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_JOINED">Already joined</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_add">Add conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_delete">Remove conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_confirm.png -->
<string name="muc_delete_confirm">Do you really want to remove conference %1$s from account %2$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_edit">Authorization settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm">%2$s invites you to join conference %3$s. Join from account %1$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm_reason">%2$s invites you to join conference %3$s: %4$s. Join from account %1$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_leave">Leave conference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_save">Save conference</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="account_quantity_1">account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="account_quantity_2">accounts</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<!-- Used for plural form in russian.-->
<string name="account_quantity_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_1">account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_2">accounts</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<!-- Used for plural form in russian. -->
<string name="account_quantity_offline_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_authorization.png -->
<string name="AUTHENTICATION_FAILED">Authorization error</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_1">contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_2">contacts</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<!-- Used for plural form in russian. -->
<string name="chat_contact_quantity_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_1">message</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_2">messages</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<!-- Used for plural form in russian. -->
<string name="chat_message_quantity_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_status">%1$d %2$s from %3$d %4$s</string>
<string name="chat_messages_from_contact">%1$d %2$s from %3$s</string>
<string name="chat_contact_and_message">%1$s: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_1">%1$d of %2$d %3$s online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_2">%1$d of %2$d %3$s online</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<!-- Used for plural form in russian. -->
<string name="connection_state_connected_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<string name="connection_state_connecting_1">%1$d of %2$d %3$s connecting</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<string name="connection_state_connecting_2">%1$d of %2$d %3$s connecting</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<!-- Used for plural form in russian. -->
<string name="connection_state_connecting_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<string name="connection_state_waiting_1">%1$d of %2$d %3$s waiting to connect</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<string name="connection_state_waiting_2">%1$d of %2$d %3$s waiting to connect</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<!-- Used for plural form in russian. -->
<string name="connection_state_waiting_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="connection_state_offline">%1$d %2$s offline</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/message_archive.png -->
<string name="archive_available_request_message">Do you want to store message history on server?\nIt allows Xabber to load message history from all the devices using this account.\nThis feature will take some additional traffic and will slightly reduce connection speed.\nWARNING: All your local history will be removed.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_archive.png -->
<string name="archive_available_request_title">Enable message archive?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_certificate.png -->
<string name="INVALID_CERTIFICATE">Invalid certificate</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_invite.png -->
<string name="muc_invite_message">Do you want to enter conference?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_otr_progress.png -->
<string name="otr_verification_in_progress">Click here to abort it.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_password.png -->
<string name="PASSWORD_REQUIRED">Password required</string>
<string name="pay_attention">Pay attention</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_subscription.png -->
<string name="subscription_request_message">Authorization request</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<resources>
<string name="events_phrases_title">Key phrases</string>
<string name="phrase_add">Add phrase</string>
<string name="phrase_delete">Delete phrase</string>
<string name="phrase_delete_confirm">Do you realy want to delete phrase: %s?</string>
<string name="phrase_delete_confirm">Do you really want to delete phrase: %s?</string>
<string name="phrase_empty">&lt; Any text &gt;</string>
<string name="phrase_group">Part of the contact group</string>
<string name="phrase_regexp">Regular expression</string>
......
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_debug.png -->
<string name="cache_clear">Clear cache\nClear all local data. This can free some space.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_debug_cache.png -->
<string name="cache_clear_warning">Do you really want to remove chat history and another local data?\nAccount and roster data are not affected. Application will be closed.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_send_by_enter">Send on Enter\nMessage can be sent by Enter button</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="cache_clear">Clear cache\nClear all local data. This can free up some space.</string>
<string name="cache_clear_warning">Do you really want to remove chat history and other local data?\nAccount and roster data are not affected. The app will close.</string>
<string name="chats_send_by_enter">Send on Enter\nMessage can be sent by pressing the Enter button</string>
<string name="connection_go_away">Auto-away\nAutomatically set away status on screen lock</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_02.png -->
<string name="contacts_order">Sort contacts\nAllows to set contacts order</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_sort.png -->
<string name="contacts_order_alphabet">Alphabetically</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_sort.png -->
<string name="contacts_order">Sort contacts\nSet the order in which contacts are displayed</string>
<string name="contacts_order_alphabet">Alphabetic</string>
<string name="contacts_order_status">By status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_01.png -->
<string name="contacts_show_accounts">Group by account\nGroup contacts in contact list by account</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_02.png -->
<string name="contacts_show_active_chats">Active chats on top\nDisplay active chats on top of contact list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_01.png -->
<string name="contacts_show_active_chats">Active chats on top\nDisplay active chats at the top of the contact list</string>
<string name="contacts_show_avatars">Show avatars\nShows users\' avatars in contact list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_02.png -->
<string name="contacts_show_empty_groups">Show empty groups\nShow groups with no online contacts </string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_01.png -->
<string name="contacts_show_empty_groups">Show empty groups\nShow groups with no online contacts</string>
<string name="contacts_show_groups">Show groups\nShow groups in contact list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_01.png -->
<string name="contacts_show_offline">Show offline contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_01.png -->
<string name="contacts_show_panel">Show account\'s panel\nShow action buttons with account\'s avatars in the bottom right corner of contact list</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_02.png -->
<string name="contacts_stay_active_chats">Duplicate active chats\nActive chats appear both on top of contact list and in home groups</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_debug.png -->
<string name="contacts_show_panel">Show accounts panel\nShow action buttons with avatars in the bottom right corner of contact list</string>
<string name="contacts_stay_active_chats">Duplicate active chats\nActive chats appear both on top of contact list and in groups</string>
<string name="debug_log">Debug log\nWrite messages to debug log (please restart application to apply changes)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_lightning">Light indication\nBlink LED on notification</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_persistent">Taskbar icon\nShow persistent notification. This option prevents Android from unloading application from memory</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_persistent">Taskbar icon\nShow persistent notification. This option prevents Android from unloading the app from memory</string>
<string name="events_sound">Audio alert\nChoose notification sound</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_vibro">Vibrate\nVibrate on notification</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance.png -->
<string name="interface_theme">Theme\nTheme settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_skin.png -->
<string name="interface_theme_dark">Dark</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_skin.png -->
<string name="interface_theme_light">Light</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_skin.png -->
<string name="interface_theme_normal">Default</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance.png -->
<string name="interface_smiles">Emoticons\nEmoticons (previously known as smiles) settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_smiles.png -->
<string name="interface_smiles_android">Android emoticons</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_smiles.png -->
<string name="interface_smiles_none">No graphical emoticons</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_connection">Connection settings\nConnection settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_contacts">Contact list\nCustomize contact list appearance</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_02.png -->
<string name="preference_debug">Debug settings\nSettings to help developers improve Xabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="preference_editor">Settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_events">Notifications\nNotification settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_interface">Theme settings\nAppearance settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_02.png -->
<string name="about_viewer">About</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_divide">Message on the new line\nDisplay a message on a new line</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_new_line.png -->
<string name="chats_divide_portrait">In portrait mode</string>
<string name="chats_show_background">Show background\nDisabling may increase performance</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_font_size">Font size\nSize of text in the message</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_font_size.png -->
<string name="chats_font_size">Font size\nSize of message text</string>
<string name="chats_font_size_large">Large</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_font_size.png -->
<string name="chats_font_size_normal">Normal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_font_size.png -->
<string name="chats_font_size_small">Small</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_font_size.png -->
<string name="chats_font_size_xlarge">Extra large</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_hide_keyboard">Hide keyboard\nHide software keyboard after message sent</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_keyboard.png -->
<string name="chats_hide_keyboard">Hide keyboard\nHide software keyboard after sending message</string>
<string name="chats_hide_keyboard_landscape">In landscape mode</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_02.png -->
<string name="chats_receipt">Message delivery receipts\nSend and receive message delivery receipts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_show_avatars">Avatars in messages\nShow avatars in each message</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_show_status_change">Show status changes\nShow messages about status changes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="chats_show_status_change_muc">In conferences</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer.png -->
<string name="chats_state_notification">Show typing notification\nNotify that you are typing</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="connection_adjust_priority">Adjust priority\nSet priority according to selected status. Account`s priority will be overridden.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="chats_state_notification">Show typing notification\nShow that the other user is typing</string>
<string name="connection_adjust_priority">Adjust priority\nSet priority according to selected status. Account priority will be overridden.</string>
<string name="connection_go_away_immediately">Immediately on screen lock</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="connection_go_xa">"Extended away" when idle\nSet "Extended away" on screen lock</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="connection_priority">Priority settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="connection_start_at_boot">Start when Android boots\nStart the application when Android boots. This doesn\'t work when Xabber is installed on SDCard.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="connection_wake_lock">Prevent sleep mode\nWill reduce battery life</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_01.png -->
<string name="connection_wifi_lock">Keep WiFi awake\nKeep WiFi active while on standby. Will reduce battery life</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_01.png -->
<string name="connection_start_at_boot">Start when Android boots\nStart the application when Android boots. This doesn\'t work when Xabber is installed on SD card.</string>
<string name="connection_wake_lock">Prevent sleep mode\nPrevent the device from sleeping. This will increase battery usage.</string>
<string name="connection_wifi_lock">Keep WiFi awake\nKeep WiFi active on standby. This will increase battery usage</string>
<string name="contacts_reset_offline">Reset offline settings\nClear individual settings for groups and accounts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_reset_offline.png -->
<string name="contacts_reset_offline_warning">Do you really want to clear individual settings for groups and accounts?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_02.png -->
<string name="events_first_only">Alert on first message\nNotify only on first message in the chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_first_only">Alert on first message\nNotify only on the first message in a chat</string>
<string name="events_ignore_system_vibro">Ignore system vibration settings\nUse this option if system vibration does not work</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_02.png -->
<string name="events_message">Notification settings\nConfigure notifications about incoming messages</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_where.png -->
<string name="events_message">Notification settings\nConfigure incoming message notifications</string>
<string name="events_message_chat">Chats only</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_where.png -->
<string name="events_message_chat_and_muc">Chats and conferences</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_where.png -->
<string name="events_message_none">Don\'t notify</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_02.png -->
<string name="events_show_text">Show message in notification\nShow message text in notification area</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_02.png -->
<string name="events_visible_chat">Notify in current chat\nNotify on incoming messages in current chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_02.png -->
<string name="negative_priotiry_summary">%s (you won\'t receive messages from any chat)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_accounts">XMPP accounts\nManage your accounts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_02.png -->
<string name="preference_accounts">XMPP accounts\nManage accounts</string>
<string name="preference_security">Security\nSecurity settings</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security.png -->
<string name="security_check_certificate">Check server certificate\nNotify about certificate issues while encrypted connection</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security.png -->
<string name="security_clear_certificate">Remove certificates\nClear list of certificates ignored</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security.png -->
<string name="security_otr_history">Store history\nStore history while OTR session</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security.png -->
<string name="security_check_certificate">Check server certificate\nNotify for certificate problems on encrypted connections</string>
<string name="security_clear_certificate">Remove certificates\nClear list of ignored certificates</string>
<string name="security_otr_history">Store history\nStore chat history for OTR sessions</string>
<string name="security_otr_mode">OTR mode</string>
<string name="chats_attention">Attention\nReact for the incoming attention requests</string>
<string name="chats_attention_sound">Attention sound\nChoose ring-tone</string>
<string name="chats_attention">Attention\nReact for incoming attention requests</string>
<string name="chats_attention_sound">Attention sound\nChoose ringtone</string>
<string name="connection_load_vcard">Load vCard\nLoad and update contact\'s personal info and avatar. Disable to reduce traffic usage.</string>
<string name="connection_use_carbons">Carbon-copied mode\nMay work unstable! Will share the sessions for the same account on this client. Disable to reduce traffic usage.</string>
<string name="events_phrases">Key phrases\nCustom sound notifications about messages with preset phrases</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_remove.png -->
<string name="security_clear_certificate_warning">Do you really want to remove all the ignored certificates?</string>
</resources>
\ No newline at end of file
<string name="connection_use_carbons">Carbon-copied mode\nMay be unstable! Will share sessions for the same account on this client. Disable to reduce traffic usage.</string>
<string name="events_phrases">Key phrases\nNotify some messages that contain preset phrases and select the sounds</string>
<string name="security_clear_certificate_warning">Do you really want to remove all ignored certificates?</string>
</resources>
......@@ -268,22 +268,6 @@
</string-array>
<string name="chats_font_size_default">@string/chats_font_size_normal_value</string>
<string name="chats_divide_key">chats_divide</string>
<string name="chats_divide_always_value">always</string>
<string name="chats_divide_portrait_value">portrait</string>
<string name="chats_divide_never_value">never</string>
<string-array name="chats_divide_entries">
<item>@string/always</item>
<item>@string/chats_divide_portrait</item>
<item>@string/never</item>
</string-array>
<string-array name="chats_divide_entryvalues">
<item>@string/chats_divide_always_value</item>
<item>@string/chats_divide_portrait_value</item>
<item>@string/chats_divide_never_value</item>
</string-array>
<string name="chats_divide_default">@string/chats_divide_portrait_value</string>
<string name="chats_state_notification_key">chats_state_notification</string>
<bool name="chats_state_notification_default">true</bool>
......@@ -419,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">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<resources>
<string name="otr_answer">Secret answer:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question">Secret question:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question_description">Use secret question to verify each other.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret">Shared secret:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret_description">Use shared secret to verify each other.</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<resources>
<string name="available">Available</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="away">Away</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="chat">Ready for chat!</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="clear_statuses">Delete saved status messages</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="dnd">Do not disturb</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="edit_status">Edit status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="empty_status">&lt;Empty status&gt;</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="invisible">Invisible</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="remove_status">Delete status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="select_status">Set status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor">Set status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor_for">Change status for %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_text_hint">Enter status message</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unavailable">Offline</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unsubscribed">Not authorized</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="xa">Away for a long time</string>
<string name="new_status">New status</string>
<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>
<string name="name_example_com">name@example.com</string>
<string name="user_domain_name">user@domain.name</string>
<string name="conference_jabber_org">conference.jabber.org</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<resources>
<string name="in10m">In 10 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in15m">In 15 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1h">In an hour</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1m">In a minute</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in2m">In 2 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in30m">In 30 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in5m">In 5 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="always">Always</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="disabled">Disabled</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="manual">Manual</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="never">Never</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="required">Required</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<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>
......@@ -39,13 +39,6 @@
android:key="@string/chats_font_size_key"
android:title="@string/chats_font_size"
/>
<ListPreference
android:defaultValue="@string/chats_divide_default"
android:entries="@array/chats_divide_entries"
android:entryValues="@array/chats_divide_entryvalues"
android:key="@string/chats_divide_key"
android:title="@string/chats_divide"
/>
<CheckBoxPreference
android:defaultValue="@bool/chats_state_notification_default"
android:key="@string/chats_state_notification_key"
......
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