Commit 7fc567c3 authored by Grigory Fedorov's avatar Grigory Fedorov

Alpha version 0.9.31 released. Only en and ru languages supported.

res/versions cleaned a lot.
parent cd8299b2
......@@ -2,12 +2,14 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.1"
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.xabber.androiddev"
minSdkVersion 14
targetSdkVersion 21
versionCode 83
versionName '0.9.31'
}
buildTypes {
......
......@@ -13,15 +13,12 @@
along with this program. If not, see http://www.gnu.org/licenses/.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xabber.androiddev"
android:versionCode="78"
android:versionName="@string/application_version"
android:installLocation="auto"
>
package="com.xabber.androiddev">
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
......
......@@ -16,6 +16,8 @@ package com.xabber.android.ui;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.text.method.LinkMovementMethod;
......@@ -31,15 +33,25 @@ public class AboutViewer extends ManagedActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.about_viewer);
((TextView) findViewById(R.id.about_version))
.setText(getString(R.string.about_version,
getString(R.string.application_version)));
.setText(getString(R.string.about_version, getVersionName()));
((TextView) findViewById(R.id.about_license))
.setMovementMethod(LinkMovementMethod.getInstance());
getActionBar().setDisplayHomeAsUpEnabled(true);
}
private String getVersionName() {
try {
PackageInfo pInfo = getPackageManager().getPackageInfo(getPackageName(), 0);
return pInfo.versionName;
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return "";
}
public static Intent createIntent(Context context) {
return new Intent(context, AboutViewer.class);
}
......
......@@ -20,6 +20,8 @@ import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.preference.CheckBoxPreference;
import android.preference.Preference;
......@@ -82,12 +84,21 @@ public class PreferenceEditor extends ManagedPreferenceActivity implements
PreferenceScreen about = (PreferenceScreen) getPreferenceScreen()
.findPreference(getString(R.string.preference_about_key));
about.setSummary(getString(R.string.application_name) + "\n"
+ getString(R.string.application_version));
about.setSummary(getString(R.string.application_name) + "\n" + getVersionName());
about.setIntent(AboutViewer.createIntent(this));
PreferenceSummaryHelper.updateSummary(getPreferenceScreen());
}
private String getVersionName() {
try {
PackageInfo pInfo = getPackageManager().getPackageInfo(getPackageName(), 0);
return pInfo.versionName;
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return "";
}
@Override
protected void onResume() {
super.onResume();
......
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</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/about_viewer.png -->
<string name="about_feedback">Mail: info@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_site">http://www.xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_version">Verze: %s</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/account_editor_02.png -->
<string name="account_compression">Použít kompresi</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_editor_title">%1$s účet %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_enabled">Povoleno</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_02.png -->
<string name="account_host">Hostitel</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_01.png -->
<string name="account_password">Heslo</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">Priorita</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">Typ účtu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_facebook">uživatelské jméno pro facebook.com (NE e-mail)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_gtalk">uživatelské jméno na gmail.com nebo Google Apps</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_hints_xmpp">jmeno@priklad.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add.png -->
<string name="account_type_helps_qip">Pokud nevlastníte QIP účet, můžete si jej založit na http://qip.ru</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">Uživatelské jméno</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
<string name="EMPTY_SERVER_NAME">Uveďte jméno serveru</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_error.png -->
<string name="EMPTY_USER_NAME">Uveďte uživatelské jméno</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_oauth">Autorizace</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_editor_wlm.png -->
<string name="account_oauth_summary">Nastavení 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>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_add_type.png -->
<string name="account_type_names_wlm">Windows Live Messenger</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/account_list.png -->
<string name="account_add">Přidat účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_delete">Smazat účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Upravit účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connected">Připojený</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connecting">Připojuji</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_disconnecting">Odpojuji</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_offline">Odpojený</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_waiting">Čekám na připojení</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/chat_viewer_status.png -->
<string name="action_kick">%1$s byl vyhozen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_delay">Zpráva byla poslána v %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_input_hint">Zde napište vaši zprávu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer.png -->
<string name="chat_send">Poslat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="clear_history">Smazat historii</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu_extra.png -->
<string name="clear_message">Smazat text</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_copy">Kopírovat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_remove">Odstranit z historie</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_context_menu.png -->
<string name="message_repeat">Znovu odeslat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_settings.png -->
<string name="save_history">Uložit lokální historii\nUložit historii zpráv lokálně</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_option_menu.png -->
<string name="show_history">Zobrazit historii</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/chat_viewer_otr_status.png -->
<string name="action_otr_error">Chyba OTR: %1$s</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_editor_error.png -->
<string name="CANNOT_CREATE_CONTACT">Chyba: nelze přidat kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_CONTACT">Chyba: nelze odstranit kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_account">Účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_editor_title">Upravování %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_group">Zvolit skupinu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add_confirm.png -->
<string name="contact_subscribe_confirm">Přidat kontakt %1$s do účtu %2$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_user">Adresa kontaktu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="ENTRY_IS_NOT_FOUND">Kontakt nenalezen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_add">Vytvořit novou skupinu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_default">Přátelé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_exists">Skupina se stejným názvem již existuje</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_is_empty">Zadejte název skupiny</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/group_add.png -->
<string name="group_name">Jméno skupiny</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 -->
<string name="accept_subscription">Přijmout kotakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_disabled">Zpravovat účty</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_empty">Přidat účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_contacts">Přidat kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_online">Zobrazit offline kontakty</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_waiting">Opakované připojení</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_connecting">Připojuji...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_state_disabled">Zakázat účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_empty">Nemáte registrovaný účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_online">Nikdo není online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_roster">Připojeno.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_waiting">Čekám na připojení</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="CONNECTION_FAILED">Chyba spojení</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="contact_add">Přidat kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_delete">Smazat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_editor">Upravit</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="contact_list">Seznam kontaktů</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="discard_subscription">Odmítnout kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="exit">Ukončit</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_none">Žádné skupiny</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_remove">Odstranit skupinu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_rename">Přemenovat skupinu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NO_SUCH_ACCOUNT">Účet nenalezen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="OTR_ERROR">Chyba OTR</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_viewer_xmpp.png -->
<string name="contact_viewer_for">Informace o %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_name.png -->
<string name="vcard_given_name">Jméno</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_family_name">Příjmení</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_birth_date">Narozeniny</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_organization">Organizace</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_categories">Kategorie</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address">Adresa</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</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/market.png -->
<string name="production_title">Xabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_title">Xabber VIP</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_conference_context_menu.png -->
<string name="muc_join">Připojit se do konference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick">Přezdívka</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick_hint">Vaše přezdívka v konferenci</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password">Heslo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_room">Konference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_leave">Odejít z konference</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_save">Uložit konferenci</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/notification_bar_connected.png -->
<string name="account_quantity_1">účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="account_quantity_2">účty</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_1">účet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_2">účty</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_authorization.png -->
<string name="AUTHENTICATION_FAILED">Chyba autorizace</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_1">kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_2">kontakty</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_1">zpráva</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_2">zprávy</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_status">%1$d %2$s od %3$d %4$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="connection_state_offline">%1$d %2$s vypnuto</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</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_chat_viewer.png -->
<string name="chats_send_by_enter">Odeslat Entrem\nZpráva bude odeslána stisknutím klávesy Enter</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_contact_list_sort.png -->
<string name="contacts_order_alphabet">Abecedně</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_sound">Audio upozornění\nZvolte notifikační upozornění</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_notifications_01.png -->
<string name="events_vibro">Vibrace\nVibrační upozornění</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance.png -->
<string name="interface_theme">Vzhled\nNastavení vzhledu</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_skin.png -->
<string name="interface_theme_dark">Tmavé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_skin.png -->
<string name="interface_theme_light">Světlé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_appearance_skin.png -->
<string name="interface_theme_normal">Výchozí</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_connection">Nastavení připojení\nNastavení připojení</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="preference_editor">Nastavení</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_events">Notifikace\nNastavení notifikací</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_01.png -->
<string name="preference_interface">Témata\nNastavení vzhledu</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</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 -->
<string name="available">Dostupný</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="away">Pryč</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="chat">Chci chatovat!</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="dnd">Nevyrušovat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="edit_status">Upravit status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="invisible">Neviditelný</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="remove_status">Smazat status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="select_status">Zvolit status</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor">Změnit stav</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor_for">Změna statusu pro %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unavailable">Odpojený</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="xa">Delší dobu nedostupný</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</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/about_viewer.png -->
<string name="about_copyright">© Redsolution LTD, 2010-2013</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_feedback">mailto:info@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_site">http://www.xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_version">Version: %s</string>
</resources>
\ No newline at end of file
This diff is collapsed.
<?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 -->
<string name="account_delete_confirm">Willst du das Benutzerkonto %s wirklich löschen?\n(Wird nicht vom Server gelöscht, nur in Xabber)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_add">Benutzerkonto hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_delete">Konto löschen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Konto bearbeiten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_authentication">Autorisierung</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">Verbinden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_disconnecting">Trennen</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">Auf Wiederverbindung warten</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="development_changes_20">+ Unterstützung für jabber.org usw. hinzugefügt\n- Unterstützung für gmail.com dekativiert</string>
<string name="development_changes_21">+ Unterstützung für GTalk, Facebook chat, LiveJournal chat, QIP.ru, Ya.Online, Vkontakte chat hinzugefügt.</string>
<string name="development_changes_22">+ verschiedene Chat und Autorisierungskorrekturen</string>
<string name="development_changes_23">+ Verbindungsverlustprobleme bei Netzwerkwechsel etwas korrigiert</string>
<string name="development_changes_24">Frohe Weihnachten!</string>
<string name="development_changes_25">+ Deutsche Übersetzung\n+ TLS Option\n+ Chat deutlich beschleungigt</string>
<string name="development_changes_31">+ Farbschemen</string>
<string name="development_changes_71">+ Nachrichtenarchiv unterstützung (Plug-in für Prosody serverseitig empfohlen)\n+ Chatverlaufeinstellungen pro Konto\n+ OTR Fingerabdruck in Zwischenablage kopieren\n+ Holländische und Türkische Übersetzungen\n* Datenvolumen für Wiederverbindungen reduziert\n* Benachrichtigungen in Konferenzen korrigiert\n* Aktive Chatliste korrigiert\n* Bestätigungen für Nachrichtenübermittlung korrigiert\n* Mehrere Übersetzungen korrigiert\nDanke für eure Hilfe!</string>
<string name="production_changes_1">Erste Veröffentlichung</string>
<string name="production_changes_2">Erstes Update</string>
<string name="production_changes_3">+ Status wird zwischen den Sitzungen gespeichert</string>
<string name="production_changes_4">+ Debug Modus Fehlerbehebung</string>
<string name="production_changes_5">+ läuft jetzt als Dienst</string>
<string name="production_changes_6">+ Kein Ton bei jeder einzelnen Benachrichtigung</string>
<string name="production_changes_7">+ Benachrichtigungen werden in der Datenbank gespeichert\n+ Synchronisations korrektur\n+ Soft keyboard show/hide now scrolls chat window properly</string>
<string name="production_changes_8">+ 48 verschiedene Standardavatare\n+ Gruppen in der Kontaktliste\n+ Einstellungsmenü\n+ Kontotypen\n+ Interface feinarbeiten</string>
<string name="production_changes_9">+ Optimierte Benutzeroberfläche\n+ Sortierung ist nicht mehr Gross/Kleinschreibungsabhängig\n+ Facebook Chat Kontotyp\n+ Option um den Avatare im Chattitel zu verstecken\n+ Konten können deaktiviert werden\n+ Oberflächen-Feinschliff\n- Lokalisierungsfunktionen deaktiviert (momentan)</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">+ Smilies</string>
<string name="production_changes_17">+ getippter aber nicht gesendeter Text wird nun gespeichert\n+ Icons für den Nachrichtenstatus</string>
<string name="production_changes_18">+ Unterstützung für googlemail.com hinzugefügt\n+ persönliche Audiobenachrichtigungen\n+ Gesten zum Chatwechsel (experimentell)\n+ Interne korrekturen</string>
<string name="production_changes_19">+ Fehler bei der Texteingabe korrigiert</string>
<string name="production_changes_20">+ Englisch ist nun Standardsprache\n+ einige Korrekturen an der Benutzeroberfläche</string>
<string name="production_changes_21">+ Unterstützung für die meisten Jabber Server\n+ Fehlerkorrektur in der cs Lokalisierung\n+ kleinere Fehlerkorrekturen\n+ Frohe Weihnachten!</string>
<string name="production_changes_22">+ TLS Option\n+ Kompressionsunterstützung\n+ "Nachricht mit Enter senden" Option\n+ Verbindungsanzeige\n+ Deutsche Sprachversion\n+ Chat deutlich beschleunigt\n+ Fehlerkorrektur in der Kontaktliste\n+ Fehlerkorrektur der Vibrations- und LED Benachrichtigung einiger Telefone\n+ Nachrichtenempfang-Fehlerkorrektur\n+ Fehlerkorrektur beim Wiedervebinden beim Netzwechsel</string>
<string name="production_changes_23">+ Hi-Res Icons\n+ Kompressionsoptionen</string>
<string name="production_changes_24">Farbschema</string>
<string name="production_changes_25">+ Chatwechsel mit Gesten\n+ Option um Smilies/Emoticons abzuschalten\n+ Option den Status zu ändern wenn der Bildschirm abschaltet\n+ Kompressions- und TLS Fehler behoben\n+ Verbindung mit jabberd2 Servern korrigiert</string>
</resources>
This diff is collapsed.
<?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 -->
<string name="CANNOT_ADD_TO_GROUP">Fehler: Kann nicht zur Gruppe hinzugefügt werden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_CREATE_CONTACT">Fehler: Kann Kontakt nicht hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_CONTACT">Fehler: Kann Kontakt nicht löschen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_FROM_GROUP">Fehler: Kann nicht aus der Gruppe gelöscht werden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_GROUP">Fehler: Gruppe kann nicht gelöscht werden </string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_RENAME_GROUP">Fehler: Gruppe kann nicht umbenannt werden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_account">Konto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_editor_title">%s bearbeiten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_group">Gruppen auswählen</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">Kontakt %1$s zu Account %2$s hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_user">Alias</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="ENTRY_IS_NOT_FOUND">Kontakt wurde nicht gefunden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_add">Gruppe hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_default">Freunde</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_exists">Eine Gruppe mit diesem Name existiert bereits</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_is_empty">Gruppenname setzen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/group_add.png -->
<string name="group_name">Gruppename</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="choose_account">Bitte Konto auswählen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="EMPTY_ACCOUNT">Bitte Konto auswählen</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 -->
<string name="accept_subscription">Kontakt bestätigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="account_reconnect">Wiederverbinden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_disabled">Konten verwalten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_empty">Konto hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_contacts">Kontakt hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_online">Offline Kontakte zeigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_offline">Verbinden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_waiting">Wiederverbinden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_connecting">Verbinde...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_state_disabled">Konto deaktiviert</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_empty">Kein Benutzerkonto vorhanden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_contacts">Keine Kontakte vorhanden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_online">Niemand ist Online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_offline">Keine Kontakte online</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_roster">Verbunden.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_loading.png -->
<string name="application_state_starting">Anwendung wird gestartet... </string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_waiting">Warte auf Verbindung</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu_extra.png -->
<string name="chat_list">Chatliste</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="chat_list_is_empty">Keine aktiven Gespräche</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">Chat beenden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="CONNECTION_FAILED">Verbindungsfehler</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="contact_add">Kontakt hinzufügen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_delete">Kontakt löschen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_confirm.png -->
<string name="contact_delete_confirm">Möchtest du wirklich Kontakt %1$s aus Konto %2$s löschen?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_editor">Kontakt bearbeiten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="contact_list">Kontaktliste</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="discard_subscription">Kontakt ablehnen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="exit">Beenden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_active_chat">Aktive Gespräche</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_none">Ohne Gruppe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_remove">Gruppe löschen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_confirm.png -->
<string name="group_remove_confirm">Willst du die Gruppe %s wirklich löschen? Benutzer dieser Gruppe bleiben in der Kontaktliste.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_rename">Gruppe umbenennen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NO_SUCH_ACCOUNT">Konto nicht gefunden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NOT_CONNECTED">Verbindung nicht hergestellt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="request_subscription">Abonnement anfordern</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="XMPP_EXCEPTION">Fehler im Datenstrom</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_closing.png -->
<string name="application_state_closing">Einstellungen werden gespeichert...\nDie Anwendung wird beendet.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_confirmation">%1$s.\nVertraust du dem Zertifikat mit folgendem SHA1 Fingerabdruck: %2$s vollständig?\nMöchtest du über jedes Problem mit diesem Zeritifikat informiert werden?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check_details.png -->
<string name="certificate_details">\n\nAusgestellt an:\nCommon Name (CN): %1$s\nOrganisation (O): %2$s\nOrganisationseinheit (OU): %3$s\nSeriennummer: %4$s\n\nErstellt durch:\nCommon Name (CN): %5$s\nOrganisation (O): %6$s\nOrganisationseinheit (OU): %7$s\n\nGültigkeit:\nErstellt am: %8$s\nAuflaufdatum: %9$s.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_chane">Verifikation der Signaturkette fehlgeschlagen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_target">Ziel konnte nicht verifiziert werden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_self_signed">Selbst-signiertes Zertifikat</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="close_chats">Alle Chats beenden</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_integration.png -->
<string name="contact_integration_suggest">Möchtest du Xabber in deine Kontaktliste integrieren?\nEs kann unter "Einstellungen" → "XMPP Accounts" → Dein Account → "Integration der Kontakte" hinzugefügt werden.\nEs ist möglich, dass die Kontakliste für ein paar Minuten langsamer reagiert.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_room">Konferenzen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="OTR_ERROR">OTR Fehler</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_invite.png -->
<string name="select_contact">Bitte Kontakt auswählen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_always">Immer anzeigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_never">Niemals anzeigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_normal">Globale Einstellungen benutzen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="show_offline_settings">Offline Kontakte anzeigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_boot.png -->
<string name="start_at_boot_suggest">Xabber beim Start von Android starten?\nDies kann unter "Einstellungen" → "Verbindungseinstellungen" → "Mit Android starten" geändert werden.</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 -->
<string name="contact_viewer">Informationen anzeigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_for">Zeige Infos über %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">Ressourcen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resource_summary">Ressource: %1$s\nPriorität: %2$d\nClient: %3$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_client_info">%1$s, schreibt: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_person">Persönliche Informationen</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">Formatierter Name</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_prefix_name">Präfix</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_given_name">Vorname</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_middle_name">Zweiter Vorname</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_family_name">Nachname</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_suffix_name">Suffix</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_birth_date">Geburtstag</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_url">Internetseite</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_organization">Organisation</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_title">Beruf</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_role">Rolle</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_other">Andere Informationen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_categories">Kategorien</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_decsription">Beschreibung</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_note">Notizen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address">Adresse</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pobox">Postfach</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_extadr">Adresszusatz</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_street">Strasse</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_locality">Ort</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_region">Bundesland</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pcode">PLZ</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_ctry">Land</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_telephone">Telefon</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_email">E-Mail-Adresse</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">Zu Hause</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_work">Auf Arbeit</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_postal">Postleitzahl</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_parcel">Paketdienst</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_dom">Inländisch</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">Bevorzugt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_voice">Telefon</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">Handy</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">Mailbox</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">Sprachmailbox</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">Bitte warten...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="unknown">Unbekannt</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 -->
<string name="otr_fingerprint_description">Dein Chatpartner kann dir seinen virtuellen Fingerabdruck schicken, um seine Identität zu bestätigen. Für diesen Zweck sollte nicht XMPP verwendet werden.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_is_verified">Dieser Kontakt ist vertrauenswürdig</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_local_fingerprint">Dein virtueller Fingerabdruck:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_remote_fingerprint">Virtueller Fingerabdruck deines Gesprächspartners:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_scan_fingerprint">QR Code von virtuellem Fingerabdruck des Gesprächspartners scannen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_show_fingerprint">QR Code mit deinem virtuellem Fingerabdruck zeigen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_play.png -->
<string name="zxing_install_fail">Google Play nicht installiert. Bitte installiere die App Barcode Scanner manuell.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_scanner.png -->
<string name="zxing_install_message">Diese Anwendung benötigt die App Barcode Scanner. Möchtest du diese installieren?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_copy_fingerprint">Virtuellen Fingerabdruck in Zwischenablage kopieren</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/market.png -->
<string name="production_description">Kostenloser Jabber (XMPP) Client mit Multi-Account-Unterstützung und einfachem Interface. Xabber ist kostenlos, frei von Werbung und wurde entworfen, um der beste Jabber Client für Android zu sein.\n\nFunktionen:\n- Mit mehreren Konten gleichzeitig online sein\n- Parallele Chats: Schneller Wechsel zwischen mehreren gleichzeitigen Chats\n- Vielfältige Einstellmöglichkeiten der Sichtbarkeit für Kontakte und Gruppen\n- Kompatibel mit allen normalen XMPP Servern\n- Vorkonfigurierte Konten für Google Talk, Facebook Chat, Livejournal Chat, Vkontakte, Ya.Online, Google Apps GTalk Konten\n- Gruppenchats\n- Gesprächsverlauf speicherbar\n- Gesprächsverlauf auf die SD-Karte exportierbar\n- Emoticons\n- Hyperlink Unterstützung (Webseiten, YouTube, E-Mail Adressen und Telefonnummern, XMPP Uri)\n- Unterstützung für Avatare\n- vCard Unterstützung\n- Kontakte lassen sich nach Gruppe und/oder Konto sortieren\n- Verwaltung der Kontaktliste: Hinzufügen/Entfernen/Bearbeiten von Kontakten, Gruppen und Abonements\n- Suchen nach Kontakten\n- Integration in die Kontaktliste des Telefons\n- Benachrichtigungseinstellungen für jeden Kontakt personalisieren\n- Benachrichtigungen bei bestimmten Schlüsselwörtern\n- Volle Unicode Unterstützung - chatte in jeder Sprache!\n- Hoch- und Querformat Anzeige\n- Verbindungskompression (für einige Server)\n- Ressourcen und Prioritäten\n- OTR-Verschlüsselung\n- TLS support\n- Legacy SSL support\n- SASL support\n- Überprüfung der Serverzertifikate\n- SRV-Datensatz and DNS round robin support\n- Client-Software Symbole in der Kontaktliste (Adium, Empathy, Gajim, Gtalk, iChat, Miranda, Pidgin, Psi, QIP, Xabber, Xabber VIP)\n- Benachrichtigung beim Tippen\n- Empfangsbestätigungen für Nachrichten\n- Starte Chats vom Home-Screen aus\n\nListe der vorkonfigurierten Dienste::\n- GTalk (Google Talk, auch für Google Apps Konten mit eigener Domain)\n- Windows Live Messenger (Android 2.2 oder höher erforderlich)\n- Facebook chat\n- LiveJournal\n- VKontakte\n- Ya.Online\n- QIP\n- Odnoklassniki\n\nKommende Funktionen::\n- Dateiversand\n- Oberfläche für Tablets\n\nUnterstützte Protokolle:\nRFC-3920: Core\nRFC-3921: Instant Messaging and Presence\nXEP-0030: Service Discovery\nXEP-0128: Service Discovery Extensions\nXEP-0115: Entity Capabilities\nXEP-0054: vcard-temp\nXEP-0153: vCard-Based Avatars\nXEP-0045: Multi-User Chat\nXEP-0078: Non-SASL Authentication\nXEP-0138: Stream Compression\nXEP-0203: Delayed Delivery\nXEP-0091: Legacy Delayed Delivery\nXEP-0199: XMPP Ping\nXEP-0147: XMPP URI Scheme Query Components\nXEP-0085: Chat State Notifications\nXEP-0184: Message Delivery Receipts\nXEP-0155: Stanza Session Negotiation\nXEP-0059: Result Set Management\nXEP-0136: Message Archiving\nXEP-0224: Attention\n\nSieh Dir die Xabber Entwicklungs-Version für die neuesten Funktionen an!\n\nQuelltext ist verfügbar unter:\nhttps://github.com/redsolution/xabber-android under GNU GPLv3 license.\n\nWeiter Informationen gibt es auf unserer Webseite http://xabber.com oder folge @xabber_xmpp bei Twitter.</string>
<!-- Can be used for Google Play promotion -->
<string name="production_promo">Multi-Account XMPP (Jabber) Client.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="production_title">Xabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="development_description">Experimentelle (möglicherweise instabile) Version von Xabber - ein kostenloser Jabber (XMPP) Client mit Multi-Account-Unterstützung und klarem Interface.\n\nDu kannst diese Version testen wenn Du uns helfen willst Xabber zu testen und zu verbessern. Stabilität ist nicht garantiert, also verwende die normale Version, wenn Dir diese Version nicht zusagt. Aber wenn Du risikofreudig BIST, wirst Du der erste sein der neue Funktionen nutzen kann!\n\nFür weitere Informationen besuche unsere Webseite http://xabber.com oder folge @xabber_xmpp bei Twitter.\n\nWenn Du irgendwelche Fehler findest oder gute Ideen hast, bitte Mail an: info+devel@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="development_title">Xabber Entwicklerversion</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_description">VIP-Version von Xabber - ein großartiger Jabber (XMPP) Client mit Multi-Account-Unterstützung und klarer, einfacher Benutzeroberfläche. Xabber wurde entwickelt, um der beste Jabber-Client für Android sein.\n\nDiese VIP-Version von Xabber ist in keiner Weise besser als die reguläre Version von Xabber, die Goldmünze im Programmicon ist der einzige Unterschied. Sie zeigt dass Du etwas gekauft und unterstützt hast obwohl es kostenlos ist.\n\n...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_title">Xabber-VIP</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 -->
<string name="EMPTY_NICK_NAME">Spitzname nicht angegeben</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="EMPTY_ROOM_NAME">Konferenz nicht angegeben</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_join">Konferenz beitreten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick">Spitzname</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick_hint">Dein Spitzname in der Konferenz</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password">Passwort</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password_hint">Kein Passwort benötigt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_room">Konferenz</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server">Mehrbenutzer Chat</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">Der Spitzname wird bereits verwendet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_IN_PROGRESS">Bereits in Arbeit</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_JOINED">Bereits beigetreten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_add">Konferenz beitreten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_delete">Konferenz entfernen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_confirm.png -->
<string name="muc_delete_confirm">Möchtest du die Konferenz %1$s wirklich von Konto %2$s entfernen?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_edit">Autorisierungseinstellungen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm">%2$s lädt dich zur Konferenz %3$s ein. Mit Konto %1$s beitreten?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm_reason">%2$s lädt dich zur Konferenz %3$s: "%4$s" ein. Mit Konto %1$s beitreten?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_leave">Konferenz verlassen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_save">Konferenz speichern</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/notification_bar_connected.png -->
<string name="account_quantity_1">Konto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="account_quantity_2">Konten</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<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">Konto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_2">Konten</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_authorization.png -->
<string name="AUTHENTICATION_FAILED">Autorisierungsfehler</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_1">Kontakt</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_2">Kontakte</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_5">Kontakte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_1">Nachricht</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_2">Nachrichten</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<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 von %3$d %4$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_1">%1$d von %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 von %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 -->
<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 von %2$d %3$s verbinden...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<string name="connection_state_connecting_2">%1$d von %2$d %3$s verbinden...</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<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 von %2$d %3$s wartet auf Verbindung...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<string name="connection_state_waiting_2">%1$d von %2$d %3$s warten auf Verbindung...</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<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">Möchtest du deine Nachrichten auf dem Server speichern?\nDies ermöglicht Xabber deinen Verlauf auf jedem Gerät zu laden, das diesen Account nutzt.\nDieses Feature wird zusätzliches Datenvolumen benötigen und die Verbindungsgeschwindigkeit leicht reduzieren.\nWARNUNG: Alle lokalen Verläufe werden gelöscht.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_archive.png -->
<string name="archive_available_request_title">Nachrichtenarchiv aktivieren?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_certificate.png -->
<string name="INVALID_CERTIFICATE">Ungültiges Zertifikat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_invite.png -->
<string name="muc_invite_message">Möchtest du der Konferenz beitreten?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_otr_progress.png -->
<string name="otr_verification_in_progress">Hier klicken um abzubrechen.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_password.png -->
<string name="PASSWORD_REQUIRED">Kennwort erforderlich</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_subscription.png -->
<string name="subscription_request_message">Autorisationsanfrage</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
This diff is collapsed.
<?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 -->
<string name="otr_answer">Geheime Antwort:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question">Geheime Frage:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question_description">Geheime Frage für gegenseitige Verifikation nutzen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret">Geteiltes Geheimnis:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret_description">Geteiltes Geheimnis für gegenseitige Verifikation nutzen</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 -->
<string name="available">Erreichbar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="away">Abwesend</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="chat">Bereit zum Chatten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="clear_statuses">Gespeicherte Statusmeldungen löschen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="dnd">Nicht stören</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="edit_status">Status bearbeiten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="empty_status">&lt;kein Status&gt;</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="invisible">Unsichtbar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="remove_status">Status löschen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="select_status">Status setzen</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor">Status ändern</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor_for">Status ändern für %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_text_hint">Eigenen Status setzen</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">Nicht autorisiert</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="xa">Abwesend für längere Zeit</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 -->
<string name="in10m">Nach 10 Minuten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in15m">Nach 15 Minuten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1h">In einer Stunde</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1m">Nach einer Minute</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in2m">Nach 2 Minuten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in30m">Nach 30 Minuten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in5m">Nach 5 Minuten</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="always">Immer</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="disabled">Deaktiviert</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="manual">Manuell</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="never">Nie</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="required">Erforderlich</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="auto">Automatisch</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/about_viewer.png -->
<string name="about_copyright">© Redsolution LTD, 2010-2013</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_feedback">mailto:info@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_site">http://www.xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_version">Version: %s</string>
<string name="about_license">Licencia: \n<a href="https://github.com/redsolution/xabber-android">Software libre</a> bajo la GNU GPL3</string>
</resources>
\ No newline at end of file
This diff is collapsed.
<?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 -->
<string name="account_delete_confirm">¿Está seguro de que quiere borrar la cuenta %s?\n(no será borrada del servidor, sólo de Xabber)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_add">Añadir cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_delete">Eliminar cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Editar cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_authentication">Autorizando</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connected">En línea</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connecting">Conectando</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_disconnecting">Desconectando</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_offline">Desconectado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_waiting">Esperando reconexión</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="development_changes_76">+ Traducción a eslovaco (¡Gracias Dominik!)\n* Corrección de validación de certificado del servidor\n* Correciones menores</string>
<string name="production_changes_45">¡Feliz Navidad!\n+ Traducciones al holandes, eslovaco, turco y chino\n+ Soporte de archivado de mensajes (se recomienda Prosody)\n+ Configuración de historial por cuentas\n+ Copiar huella OTR al portapapeles\n* Corrección de validación de certificados de servidor\n* Menos tráfico en reconexión\n* Notificación en conferencias corregidas\n* Lista de conversaciones activas corregidas\n* Recibos de entrega corregidos\n* Notificaciones de escritura corregidas\n* Correciones menores\n¡Gracias!</string>
</resources>
This diff is collapsed.
<?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 -->
<string name="CANNOT_ADD_TO_GROUP">Error: No se puede añadir al grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_CREATE_CONTACT">Error: No se puede añadir el contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_CONTACT">Error: No se puede eliminar el contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_FROM_GROUP">Error: No se puede eliminar del grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_GROUP">Error: No se puede borrar el grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_RENAME_GROUP">Error: No se puede renombrar el grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_account">Cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_editor_title">Editando %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_group">Selecciona los grupos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_name">Alias (opcional)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add_confirm.png -->
<string name="contact_subscribe_confirm">¿Añadir el contacto %1$s a la cuenta %2$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_user">Nombre de usuario del amigo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="ENTRY_IS_NOT_FOUND">Contacto no encontrado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_add">Crear nuevo grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_default">Amigos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_exists">Este grupo ya existe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_is_empty">Especificar nombre del grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/group_add.png -->
<string name="group_name">Nombre de grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="choose_account">Elija una cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="EMPTY_ACCOUNT">Seleccione una cuenta por favor</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 -->
<string name="accept_subscription">Aceptar contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="account_reconnect">Volver a conectar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_disabled">Gestionar cuentas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_empty">Añadir cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_contacts">Añadir contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_online">Mostrar contactos desconectados</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_offline">Conectarse</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_waiting">Volver a conectar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_connecting">Conectando...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_state_disabled">Cuentas deshabilitadas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_empty">No tiene ninguna cuenta registrada</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_contacts">No tiene ningún contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_online">No hay nadie en línea</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_offline">Todas las cuentas están desconectadas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_roster">Conectado.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_loading.png -->
<string name="application_state_starting">Cargando aplicación... </string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_waiting">Conectando...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu_extra.png -->
<string name="chat_list">Lista de chats</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="chat_list_is_empty">Chats inactivos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="chat_viewer">Chatear</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="close_chat">Cerrar chat</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="CONNECTION_FAILED">Error de conexión</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="contact_add">Añadir contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_delete">Eliminar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_confirm.png -->
<string name="contact_delete_confirm">¿Estás seguro de que quieres eliminar el contacto %1$s de la cuenta %2$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_editor">Editar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="contact_list">Lista de contactos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="discard_subscription">Rechazar contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="exit">Salir</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_active_chat">Chats activos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_none">Sin grupos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_remove">Borrar grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_confirm.png -->
<string name="group_remove_confirm">¿Está seguro de que quiere borrar el grupo %s? Los miembros de este grupo permanecerán en la lista contactos.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_rename">Renombrar grupo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NO_SUCH_ACCOUNT">Cuenta no encontrada</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NOT_CONNECTED">Conexión no establecida</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="request_subscription">Solicitar suscripción</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="XMPP_EXCEPTION">Error de stream</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_closing.png -->
<string name="application_state_closing">Guardando cambios...\nLa aplicación se cerrará a continuación</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_confirmation">%1$s.\n¿Confías totalmente en el certificado con huella sha1: %2$s y quieres que no se te notifique sobre este problema?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check_details.png -->
<string name="certificate_details">\n\n\nEmitido para:\nNombre (CN): %1$s\nOrganización (O): %2$s\nUnidad organizativa (OU): %3$s\nNúmero de serie: %4$s\n\nEmitido por:\nNombre (CN): %5$s\nOrganización (O): %6$s\nUnidad organizativa (OU): %7$s\n\nValidez:\nEmitido: %8$s\nExpira: %9$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_chane">Falló la cadena de verificación de firma</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_target">Falló la verificación del destinatario</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_self_signed">Certificado auto-firmado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_show_details">Detalles ...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="close_chats">Cerrar todas las conversaciones</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_integration.png -->
<string name="contact_integration_suggest">¿Quieres integrar Xabber con los contactos del sistema?\nEsto se puede configurar en "Opciones" → "Cuentas XMPP" → Tu cuenta → "Integración con los contactos del sistema".\nNota: Los contactos del sistema pueden ir más lentos durante unos minutos.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_room">Conferencias</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="OTR_ERROR">Error OTR</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_invite.png -->
<string name="select_contact">Click para seleccionar contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_always">Mostrar contactos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_never">Ocultar contactos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_normal">Usar la configuración general</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="show_offline_settings">Mostrar contactos desconectados</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_boot.png -->
<string name="start_at_boot_suggest">¿Desea que Xabber se ejecute al iniciar el aparato?</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 -->
<string name="contact_viewer">Ver información</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_for">Ver información acerca de %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_xmpp"></string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_jid">ID de Jabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_name">Nombre en Jabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resources">Dispositivos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resource_summary">Dispositivo: %1$s \nPrioridad: %2$d \nCliente: %3$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_client_info">%1$s, tipo: %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_person">Información personal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_nick_name">Apodo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_formatted_name">Nombre completo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_prefix_name">Prefijo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_given_name">Nombre</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_middle_name">Segundo nombre</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_family_name">Apellido</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_suffix_name">Sufijo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_birth_date">Fecha de nacimiento</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_url">Sitio web</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_organization">Organización</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_title">Puesto, función</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_role">Rol</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_other">Más información</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_categories">Categorías</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_decsription">Descripción</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_note">Notas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address">Dirección</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pobox">Apartado de correos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_extadr">Dirección completa</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_street">Calle</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_locality">Localidad</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_region">Región</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pcode">Código postal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_ctry">País</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_telephone">Teléfono</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_email">Correo electrónico</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type">Etiquetas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_home">Casa</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_work">Trabajo</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">Entregas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_dom">Nacional</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_intl">Internacional</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_pref">Preferida</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_voice">Voz</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">Buscapersonas</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_cell">Móvil</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_video">Vídeo</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">Módem</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_msg">Buzón de voz</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_isdn">RDSI</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">Un momento...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="unknown">Desconocido</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
</resources>
<?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 -->
<string name="otr_fingerprint_description">Tu interlocutor puede proporcionarte su huella de seguridad con la que puedes comparar para asegurar que es quien dice ser. Debes usar un medio de comunicación seguro para esto.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_is_verified">Este contacto es de confianza</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_local_fingerprint">Tu huella de seguridad:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_remote_fingerprint">La huella de seguridad de tu interlocutor:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_scan_fingerprint">Escanear código QR con la huella de seguridad del interlocutor</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_show_fingerprint">Mostrar código QR con tu huella de seguridad</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_play.png -->
<string name="zxing_install_fail">No tienes instalado Google Play. Por favor instala "Barcode Scanner" manualmente.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_scanner.png -->
<string name="zxing_install_message">Esta aplicación necesita "Barcode Scanner". ¿Quieres instalarlo?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_copy_fingerprint">Copiar tu huella de seguridad al portapapeles</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/market.png -->
<string name="production_description">Cliente de código abierto de Jabber (XMPP) con soporte para múltiples cuentas en una sencilla interfaz. Xabber es gratuito, libre y sin anuncios lo que lo convierte en el mejor cliente de Jabber para Android.\n\nCaracterísticas:\n- Múltiples cuentas\n- Intercambio ágil de chats activos\n- Variedad de opciones para contactos y grupos\n- Compatible con servidores estándar de XMPP\n- Pre-configuración para cuentas de Gtalk, Facebook chat, Livejournal chat, Vkontakte, Ya.Online, Google Apps Gtalk\n- Chat multi-usuario (MUC)\n- Historial de chat\n- Exportar historial a tarjeta SD\n- Archivo de mensajes en servidor\n- Emoticons\n- Enlaces embebidos (páginas web, YouTube, e-mail, números telefónicos, XMPP URI)\n- Avatars\n- Información de contacto (vCard)\n- Agrupar contactos por grupos creados y/o por cuentas\n- Manejo de lista de contactos: agregar/remover/editar contactos, grupos, suscripciones\n- Búsqueda de contactos\n- Integración con la agenda del teléfono (llamar desde el chat o chatear desde la lista de contactos del teléfono)\n- Configuración de notificaciones por contacto\n- Notificaciones al aparecer frases clave\n- Full Unicode para chatear en cualquier lenguaje\n- Vistas para posición horizontal o vertical del dispositivo\n- Compresión de datos (no todos los servidores lo soportan)\n- Recursos/Prioridades\n- Encriptado OTR\n- TLS\n- Legacy SSL\n- SASL\n- Verificación del certificado del servidor\n- SRV y DNS Round Robin\n- Íconos por cliente en lista de contactos: Adium, Empathy, Gajim, Gtalk, iChat, Miranda, Pidgin, Psi, QIP, Xabber, Xabber VIP\n- Notificaciones de "escribiendo"\n- Recibo de mensaje entregado\n- Acceso directo a chat en la pantalla de inicio\n\nLista de servicios pre-configurados:\n- GTalk ( Google Talk, Google Apps )\n- Windows Live Messenger, MSN (requiere Android 2.2+)\n- Facebook chat\n- Livejournal chat\n- VKontakte\n- Ya.Online\n- QIP\n- Odnoklassniki\n\nPróximamente:\n- Soporte para tableta\n- Transferencia de archivos\n\nProtocolos soportados:\nRFC-3920: Core \nRFC-3921: Instant Messaging and Presence \nXEP-0030: Service Discovery \nXEP-0128: Service Discovery Extensions \nXEP-0115: Entity Capabilities \nXEP-0054: vcard-temp \nXEP-0153: vCard-Based Avatars \nXEP-0045: Multi-User Chat (incompletely) \nXEP-0078: Non-SASL Authentication \nXEP-0138: Stream Compression \nXEP-0203: Delayed Delivery \nXEP-0091: Legacy Delayed Delivery \nXEP-0199: XMPP Ping \nXEP-0147: XMPP URI Scheme Query Components \nXEP-0085: Chat State Notifications \nXEP-0184: Message Delivery Receipts \nXEP-0155: Stanza Session Negotiation \nXEP-0059: Result Set Management \nXEP-0136: Message Archiving\nXEP-0224: Attention\n\nBaja las versiones de desarrollo de Xabber para estar al día.\n\nEl código fuente de Xabber está disponible en https://github.com/redsolution/xabber-android según la licencia GNU GPLv3.\n\nPara más información visita nuestra web en http://xabber.com o sigue a @xabber_xmpp en twitter.</string>
<!-- Can be used for Google Play promotion -->
<string name="production_promo">Cliente multi-cuenta XMPP (Jabber)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="production_title">Xabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="development_description">Versión experimental (y posiblemente INESTABLE) de Xabber - cliente gratuito de Jabber (XMPP) con soporte para múltiples cuentas en una sencilla interfaz.\n\nPuede instalara esta versión si quiere ayudarnos a probar y mejorar Xabber. La estabilidad no está garantizada, así que si no se siente aventurero use la versión normal. ¡Pero si es arriesgado tendrá antes las nuevas funcionalidades!\n\n!!Source code of Xabber is available at https://github.com/redsolution/xabber-android under the GNU GPLv3 license.\n\nPara más información visite nuestro sitio web http://xabber.com o síga @xabber_xmpp en twitter.\n\nSi tiene cualquier error o ideas nuevas que proponer, envíe un correo electrónico a: info+devel@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="development_title">Xabber (versión en desarrollo)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_description">Versión VIP de Xabber - un buen cliente de Jabber (XMPP) con soporte de múltipes cuentas y una interfaz limpia y simple. El objetivo de Xabber es ser el mejor cliente de Jabber para Android.\n\nEsta versión VIP de Xabber no tiene nada nuevo sobre la versión normal de Xabber, solo aparece una moneda de oro en el icono de la aplicación. Es muy útil para demostrar que eres importante comprando algo que cualquiera puede obtener gratis.\n\n...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_title">Xabber VIP</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 -->
<string name="EMPTY_NICK_NAME">Apodo no especificado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="EMPTY_ROOM_NAME">Conferencia no especificada</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_join">Unirse a conferencia</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick">Apodo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick_hint">Su apodo en la conferencia</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password">Contraseña</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password_hint">la contraseña no es requerida</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_room">Conferencia</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server">Servidor de chat multi-usuario</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server_hint"></string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="NICK_ALREADY_USED">Alias actualmente en uso</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_IN_PROGRESS">Operación en progreso</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_JOINED">Ya existe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_add">Unirse a conferencia</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_delete">Borrar conferencia</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_confirm.png -->
<string name="muc_delete_confirm">Confirma para borrar la conferencia %1$s de la cuenta %2$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_edit">Opciones de autorización</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm">%2$s te ha invitado a unirte a la conferencia %3$s. Unirte con la cuenta %1$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm_reason">%2$s te ha invitado a unirte a la conferencia %3$s: %4$s. Unirte con la cuenta %1$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_leave">Abandonar conferencia</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_save">Guardar conferencia</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/notification_bar_connected.png -->
<string name="account_quantity_1">cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="account_quantity_2">cuentas</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<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">cuenta</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_2">cuentas</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_authorization.png -->
<string name="AUTHENTICATION_FAILED">Error de autorización</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_1">contacto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_contact_quantity_2">contactos</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<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">mensaje</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<string name="chat_message_quantity_2">mensajes</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_message.png -->
<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 de %3$d %4$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_1">%1$d de %2$d %3$s en línea</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_2">%1$d de %2$d %3$s en línea</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<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 de %2$d %3$s se están conectando</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<string name="connection_state_connecting_2">%1$d de %2$d %3$s se están conectando</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<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 de %2$d %3$s esperando conexión</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<string name="connection_state_waiting_2">%1$d de %2$d %3$s esperando conexión</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<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 desconectado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/message_archive.png -->
<string name="archive_available_request_message">¿Quieres almacenar el histórico de mensaje en el servidor?\nEsto permite a Xabber cargar el historial desde todos los dispositivos que usen esta cuenta.\nEsta funcionalidad usará algo de tráfico adicional y reducirá ligeramente la velocidad de conexión.\nATENCIÓN: Todo tu historial local se eliminará.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_archive.png -->
<string name="archive_available_request_title">¿Activar archivado de mensajes?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_certificate.png -->
<string name="INVALID_CERTIFICATE">Certificado inválido</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_invite.png -->
<string name="muc_invite_message">Quieres entrar a la conferencia?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_otr_progress.png -->
<string name="otr_verification_in_progress">Pulse aquí para cancelarla.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_password.png -->
<string name="PASSWORD_REQUIRED">Contraseña requerida</string>
<string name="pay_attention">Prestar atención</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_subscription.png -->
<string name="subscription_request_message">Solicitud de autorización</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="events_phrases_title">Frases clave</string>
<string name="phrase_add">Añadir frase</string>
<string name="phrase_delete">Borrar frase</string>
<string name="phrase_delete_confirm">¿Quiere realmente borrar la frase: %s?</string>
<string name="phrase_empty">&lt; Cualquier texto &gt;</string>
<string name="phrase_regexp">Expresión regular</string>
<string name="phrase_sound">Sonido\nElige tono de notificación</string>
<string name="phrase_text">Texto a buscar</string>
</resources>
\ No newline at end of file
This diff is collapsed.
<?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 -->
<string name="otr_answer">Respuesta de seguridad:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question">Pregunta de seguridad:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question_description">Usar preguntas de seguridad para verificarse mutuamente.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret">Secreto compartido:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret_description">Usar secreto compartido para verificarse mutuamente.</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 -->
<string name="available">Disponible</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="away">Ausente</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="chat">¡Listo para chatear!</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="clear_statuses">Borrar los mensajes de estado guardados</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="dnd">No molestar</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="edit_status">Editar estado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="empty_status">&lt;vacío&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">Borrar estado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="select_status">Poner estado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor">Cambiar estado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor_for">Cambiar estado para %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_text_hint">Ponga su estado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unavailable">Desconectado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unsubscribed">No autorizado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="xa">Ausencia extendida</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 -->
<string name="in10m">En 10 minutos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in15m">En un cuarto de hora</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1h">En una hora</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1m">En un minuto</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in2m">En 2 minutos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in30m">En media hora</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in5m">En 5 minutos</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="always">Siempre</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="disabled">Desactivado</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">Nunca</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="required">Obligado</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="auto">Automático</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/about_viewer.png -->
<string name="about_copyright">© Redsolution LTD, 2010-2013</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_feedback">mailto:info@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_site">http://www.xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/about_viewer.png -->
<string name="about_version">Version: %s</string>
</resources>
\ No newline at end of file
This diff is collapsed.
<?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 -->
<string name="account_delete_confirm">Souhaitez-vous vraiment supprimer le compte %s?\n(il ne sera pas supprimé du serveur, mais seulement de Xabber)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_add">Ajouter un compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_delete">Supprimer le compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list_context_menu.png -->
<string name="account_editor">Modifier le compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_authentication">Autorisation en cours</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connected">En ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_connecting">Connexion en cours</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_disconnecting">Déconnexion en cours</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_offline">Hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/account_list.png -->
<string name="account_state_waiting">En attente de reconnexion</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="development_changes_20">+ Ajout du support pour jabber.org etc.\n- Support de gmail.com désactivé</string>
<string name="development_changes_21">+ Ajout du support pour Gtalk, Facebook Chat, Livejournal chat, QIP.ru, Ya.Online, Vkontakte chat.</string>
<string name="development_changes_22">+ Correction du chat multiple et de l\'autorisation</string>
<string name="development_changes_23">+ Problèmes de déconnexion sur le changement du réseau partiellement corrigé</string>
<string name="development_changes_24">Joyeux Noël !</string>
<string name="development_changes_76">+ Traduction slovaque (Merci, Dominik)\n* Correction du problème de validation du certificat serveur\n* Corrections mineures</string>
<string name="production_changes_1">Version initiale</string>
<string name="production_changes_2">Première mise à jour</string>
<string name="production_changes_3">+Status sauvegardé entre les sessions</string>
<string name="production_changes_4">+ Correction du mode debug</string>
<string name="production_changes_5">+ Fonctionne maintenant en tant que service</string>
<string name="production_changes_6">+ Pas de son à chaque notification</string>
<string name="production_changes_7">+ Les notification sont sauvegardées dans la base de donnée\n+ Correction de la synchronisation\n+ Le clavier logiciel affiche/masque maintenant correctement le défilement de la fenêtre de chat</string>
<string name="production_changes_8">+ 48 avatars différent par défaut\n+ Groupes dans la liste de contacts\n+ Menu Préférences\n+ Types de comptes\n+ Amélioration de l\'interface</string>
<string name="production_changes_9">+ Interface utilisateur optimisée\n+ le tri de la liste de contact n\'est désormais plus sensible à la casse\n+ compte chat Facebook\n+ Option pour masquer l\'avatar dans le titre de la fenêtre de chat\n+ Les comptes peuvent être optionnellement Activés/Désactivés\n+ Amélioration de l\'interface\n- les fonctions de GeoLocalisation sont désactivées (pour le moment)</string>
<string name="production_changes_10">- Suppression de comptes non compatibles\n+ Correction de l\'appuye long sur "Ajouter compte"</string>
<string name="production_changes_11">- Suppression du menu contextuel pour passer En Ligne/Hors Ligne</string>
<string name="production_changes_12">+ Nom de l\'application modifié\n+ structure de données améliorée\n+Nombreuses corrections et mises à jour</string>
<string name="production_changes_13">+ Vider l\'historique en fonction des paramètres\n+ Dernier message de contacts amélioré</string>
<string name="production_changes_14">+ Correction des opérations d\'exploitation</string>
<string name="production_changes_16">+ Support Emoticon</string>
<string name="production_changes_19">+ Bugs à la saisie de chat corrigés</string>
<string name="production_changes_20">+ L\'anglais est désormais la langue par défaut\n+ Changement dans l\'interface utilisateur</string>
<string name="production_changes_23">+ Icônes haute résolution\n+ Options de compression</string>
<string name="production_changes_24">+ Thèmes de couleur</string>
<string name="production_changes_45">Joyeux Noël!\n+ traductions en Néerlandais, slovaque, turc, chinois\n+ Support de l\'archivage des messages (module prosody recommandé)\n+ Historique spécifique par compte\n+ Copie des empreintes OTR\nCorrections:\n* Validation du certificat\n* Réduction du trafic lors d\'une reconnexion\n* Notifications de conférences\n* Liste des conférences actives\n* Reçus de remise de message\n* Notifications lors de la frappe\n* diverses bug mineures\n* Traductions\nMerci les gars!</string>
</resources>
This diff is collapsed.
<?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 -->
<string name="CANNOT_ADD_TO_GROUP">Erreur: impossible d\'ajouter ce contact au groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_CREATE_CONTACT">Erreur: impossible d\'ajouter le contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_CONTACT">Erreur: impossible de supprimer le contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_FROM_GROUP">Erreur: impossible de supprimer ce contact du groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_REMOVE_GROUP">Erreur: impossible de supprimer le groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="CANNOT_RENAME_GROUP">Erreur: impossible de renommer le groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_account">Compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_editor_title">Modification de %s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="contact_group">Sélectionner les groupes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_name">Surnom (facultatif)</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add_confirm.png -->
<string name="contact_subscribe_confirm">Ajouter le contact %1$s au compte %2$s ?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_add.png -->
<string name="contact_user">Nom d\'utilisateur</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="ENTRY_IS_NOT_FOUND">Contact non trouvé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_add">Créer un nouveau groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor.png -->
<string name="group_default">Amis</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_exists">Ce nom de groupe est déjà utilisé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="group_is_empty">Définir le nom du groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/group_add.png -->
<string name="group_name">Nom du groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="choose_account">Choisir un compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_editor_error.png -->
<string name="EMPTY_ACCOUNT">Merci de sélectionner un compte</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 -->
<string name="accept_subscription">Accepter le contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="account_reconnect">Reconnecter</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_disabled">Gérer les comptes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_action_empty">Ajouter un compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_contacts">Ajouter un contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_no_online">Afficher les contacts hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_offline">Passer En ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_action_waiting">Reconnecter</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_connecting">Connexion....</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_add_account.png -->
<string name="application_state_disabled">Comptes désactivés</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_empty">Vous n\'avez aucun compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_contacts">Vous n\'avez pas de contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_no_online">Aucune personne en ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_offline">Pas de compte en ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_roster">Connecté.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_loading.png -->
<string name="application_state_starting">Démarrage de l\'application... </string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_suggestion.png -->
<string name="application_state_waiting">En attente de connexion...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu_extra.png -->
<string name="chat_list">Liste des conversations</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="chat_list_is_empty">Pas de conversations active</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="chat_viewer">Conversation</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="close_chat">Fermer cette conversation</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="CONNECTION_FAILED">Erreur de connexion</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="contact_add">Ajouter un contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_delete">Supprimer</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_confirm.png -->
<string name="contact_delete_confirm">Souhaitez vous vraiment supprimer le contact %1$s du compte %2$s ?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="contact_editor">Modifier</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="contact_list">Liste de contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="discard_subscription">Refuser le contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="exit">Quitter</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_active_chat">Conversations actives</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_none">Pas de groupes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_remove">Supprimer le groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_confirm.png -->
<string name="group_remove_confirm">Souhaitez-vous vraiment supprimer le groupe %s ? Les utilisateurs de ce groupe resteront dans votre liste de contacts</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="group_rename">Renommer le groupe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NO_SUCH_ACCOUNT">Compte non trouvé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="NOT_CONNECTED">Connexion non établie</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_contact_context_menu.png -->
<string name="request_subscription">Demande de souscription</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="XMPP_EXCEPTION">Erreur de flux</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_closing.png -->
<string name="application_state_closing">Enregistrement des modifications...\nL\'application va être fermée sous peu.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_confirmation">%1$s.\nAvez-vous tout à fait confiance dans ce certificat ayant l\'empreinte sha1: %2$s? Voulez-vous ne plus être informé des problèmes concernant ce certificat?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check_details.png -->
<string name="certificate_details">\n\nÉmis pour:\nNom commun (CN): %1$s\nOrganisation (O): %2$s\nUnité d\'organisation (OU): %3$s\nNuméro de série: %4$s\n\nÉmis par:\nNom commun (CN): %5$s\nOrganisation (O): %6$s\nUnité d\'organisation (OU): %7$s\n\nValidité:\nÉmis le: %8$s\nExpire le: %9$s.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_chane">La vérification de la chaîne des signatures a échoué</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_invalid_target">La vérification de la cible a échoué</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_self_signed">Certificat auto-signé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/certificate_check.png -->
<string name="certificate_show_details">Détails...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_option_menu.png -->
<string name="close_chats">Fermer toutes les conversations</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_integration.png -->
<string name="contact_integration_suggest">Voulez-vous que Xabber soit intégré dans le gestionnaire de contacts du système ?\nCeci peut être changé dans "Paramètres" → "Compte XMPP" → Votre compte → "Intégration des contacts".\nNB: La liste des contacts peut devenir plus lente pendant quelques minutes.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list.png -->
<string name="group_room">Conférences</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_error.png -->
<string name="OTR_ERROR">Erreur OTR</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_invite.png -->
<string name="select_contact">Merci de cliquer pour sélectionner le contact</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_always">Toujours afficher les contacts hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_never">Masquer les contacts hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_show_offline.png -->
<string name="show_offline_normal">Utiliser les paramètres généraux</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_group_context_menu.png -->
<string name="show_offline_settings">Afficher les contacts hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_boot.png -->
<string name="start_at_boot_suggest">Voulez-vous lancer Xabber au démarrage ?\nCeci peut être changé via "Paramètres" → "Paramètres de connexion" → "Lancer au démarrage"</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 -->
<string name="contact_viewer">Voir les informations</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_for">Informations sur %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">Identifiant Jabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_name">Nom Jabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resources">Ressources</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="contact_viewer_resource_summary">Ressource: %1$s\nPriorité: %2$d\nClient: %3$s</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">Informations personnelles</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_nick_name">Surnom</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_formatted_name">Nom formaté</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_prefix_name">Titre</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_given_name">Surnom</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_middle_name">Second prénom</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_family_name">Nom de famille</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_name.png -->
<string name="vcard_suffix_name">Suffixe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_birth_date">Anniversaire</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_url">Site Web</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_organization">Organisation</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_title">Titre de l\'emploi, de la fonction</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_personal.png -->
<string name="vcard_role">Rôle</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_other">Autres informations</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_common.png -->
<string name="vcard_categories">Catégories</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">Adresse</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pobox">CP</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_extadr">Adresse étendue</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_street">Rue</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_locality">Localité</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_region">Région</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_pcode">Code Postal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_address_ctry">Pays</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_telephone">Téléphone</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_email">Courrier Électronique</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type">Étiquettes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_home">Domicile</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_work">Travail</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_postal">Code postal</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_parcel">Paquet</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_dom">Domestique</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">Préféré</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_voice">Voix</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">Pageur</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_cell">Mobile</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_video">Vidéo</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">Méssagerie vocale</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_contact.png -->
<string name="vcard_type_isdn">RNIS</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">Veuillez patienter...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_viewer_xmpp.png -->
<string name="unknown">Inconnu</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 -->
<string name="otr_fingerprint_description">Votre interlocuteur ne peut fournir son empreinte, vous pouvez la comparer méticuleusement pour être sûr qu\'il est bien celui que vous pensez. Vous ne devriez pas utiliser le chat XMPP à cet effet.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_is_verified">Ce contact est digne de confiance</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_local_fingerprint">Votre empreinte:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_remote_fingerprint">L\'empreinte de votre interlocuteur:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_scan_fingerprint">Scanner le QR code de votre interlocuteur</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_show_fingerprint">Afficher le QR code de votre empreinte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_play.png -->
<string name="zxing_install_fail">Google Play ne semble pas installé. Merci d\'installer Barcode Scanner manuellement</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint_scanner.png -->
<string name="zxing_install_message">Cette application nécessite Barcode Scanner. Voulez-vous l\'installer?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_fingerprint.png -->
<string name="otr_copy_fingerprint">Copier votre empreinte dans le presse-papier</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/market.png -->
<string name="production_description">Xabber est un client Jabber (XMPP) gratuit supportant le multi-comptes et avec une interface simple et propre. A la fois libre, gratuit et sans publicité, Xabber est conçu pour être le meilleur client Jabber pour Android.\n\nFonctionnalités:\n- Plusieurs comptes simultanés\n- Conversations temps réel : passage rapide entre les différentes conversations en cours\n- Nombreux paramètres d\'affichage pour les contacts et groupes\n- Compatible avec tous les serveurs XMPP standards\n- Pre-configuré pour le support de Google Talk (y compris les comptes Google Apps), Chat Facebook, Livejournal Chat, VKontakte, Ya.Online\n- Support des conversations multi-utilisateur (MUC)\n- Historique des conversations\n- Export de l\'historique sur carte SD\n- Support de l\'archivage côté serveur\n- Support des émoticônes\n- Support des liens hypertextes (pages web, Youtube, mail, numéro de téléphones, liens XMPP)\n- Avatars\n- Support des vCard\n- Regroupement les contacts par groupe et/ou par compte\n- Contrôle complet sur la liste de contact : ajouter/supprimer/éditer des contacts, groupes, souscription\n- Recherche de contact\n- Intégration dans la liste des contacts du téléphone (appelez via la fenêtre de discussion et discustez via le gestionnaire de contact de votre appareil)\n- Paramètres de notification pour chaque contact\n- Notifications sur mots clés\n- Support complet de l\'Unicode. Discutez dans toute les langues\n- Vues portrait et paysage\n- Compression de flux (tous les serveurs ne le gèrent pas actuellement)\n- Ressources/Priorités\n- Chiffrement OTR (Off The Record)\n- Support TLS\n- Support mode obsolète SSL\n- Support du SASL\n- Vérification des certificats serveur\n- Support des enregistrement DNS SRV ainsi que du round-robin\n- Icônes du logiciel client dans la liste des contacts (Adium, Empathy, Gajim, Gtalk, iChat, Miranda, Pidgin, Psi, QIP, Xabber, Xabber VIP)\n- Support des notification lors de la frappe\n- Accusé de réception des messages\n- Raccourci vers les conversations sur l\'écran d\'accueil\n\nListe des services gérés (pré-configurés) :\n- Gtalk (Google Talk, comptes Google Apps gérés également)\n- Windows Live Messenger / MSN (Android 2.2 ou supérieur)\n- Chat Facebook\n- LiveJournal\n- Vkontakte\n- Ya. Online\n- QIP\n- Odnoklassniki\n\nBientôt:\n- Interface pour tablette\n- Transfert de fichier\n\nProtocole supportés:\nRFC-3920: Core\nRFC-3921: Instant Messaging and Presence\nXEP-0030: Service Discovery\nXEP-0128: Service Discovery Extensions\nXEP-0115: Entity Capabilities\nXEP-0054: vcard-temp\nXEP-0153: vCard-Based Avatars\nXEP-0045: Multi-User Chat (incompletely)\nXEP-0078: Non-SASL Authentication\nXEP-0138: Stream Compression\nXEP-0203: Delayed Delivery\nXEP-0091: Legacy Delayed Delivery\nXEP-0199: XMPP Ping\nXEP-0147: XMPP URI Scheme Query Components\nXEP-0085: Chat State Notifications\nXEP-0184: Message Delivery Receipts\nXEP-0155: Stanza Session Negotiation\nXEP-0059: Result Set Management\nXEP-0136: Message Archiving\nXEP-0224: Attention\n\nInstallez la version de développement de Xabber pour de nouvelles fonctionnalités\n\nLe code source de Xabber est disponible sur https://github.com/redsolution/xabber-android sous la licence GNU GPLv3. \n\nPour plus d\'information visitez notre site http://xabber.com ou suivez @xabber_xmpp sur twitter</string>
<!-- Can be used for Google Play promotion -->
<string name="production_promo">Client XMPP (Jabber) Multi-Compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="production_title">Xabber</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="development_description">Version expérimentale (éventuellement INSTABLE) de Xabber, client jabber (XMPP) opensource et multi-comptes avec une interface propre.\n\nVous pouvez installer cette version si vous désirez nous aider à tester et développer Xabber. La stabilité n\'est pas garantie, donc si vous ne vous sentez pas l\'âme d\'un aventurier, utilisez plutôt la version stable. Mais si vous êtes un preneur de risque, vous aurez la primeur des nouvelles fonctionnalités!\n\nLe code source de Xabber est disponible sur https://github.com/redsolution/xabber-android sous la licence GNU GPLv3.\n\nPour plus d\'information, visitez notre site web http://xabber.com ou suivez @xabber_xmpp sur twitter.\n\nSi vous avez des bugs ou des idées brillantes à signaler, veuillez envoyer un mail à: info+devel@xabber.com</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="development_title">Xabber version de développement</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_description">Version VIP de Xabber — Formidable client Jabber (XMPP) opensource avec support multi-compte et avec une interface propre et simple. Xabber est conçu pour être le meilleur client Jabber pour Android.\n\nCette version VIP de Xabber n\'est en aucun cas meilleure que la version classique, les pièces d\'or sur l\'icone de l\'application ne sont là qu\'à titre distinctif pour remercier les donnateurs qui pourraient utiliser la version gratuite.\n\n...</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/market.png -->
<string name="vip_title">Xabber VIP</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 -->
<string name="EMPTY_NICK_NAME">Pseudo non spécifié</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="EMPTY_ROOM_NAME">Conférence non spécifiée</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_join">Rejoindre une conférence</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick">Pseudo</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_nick_hint">Votre pseudo dans la conférence</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password">Mot de passe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_password_hint">le mot de passe n\'est pas requis</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_room">Conférence</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_server">Serveur de discussions multi-utilisateur</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">Pseudo déjà utilisé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_IN_PROGRESS">Déjà en cours</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_error.png -->
<string name="ALREADY_JOINED">Déjà rejointe</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_add">Rejoindre une conférence</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_delete">Retirer la conférence</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_confirm.png -->
<string name="muc_delete_confirm">Souhaitez-vous vraiment retirer la conférence %1$s du compte %2$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_edit">Paramètres d\'autorisation</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm">%2$s vous a invité à rejoindre la conférence %3$s. La rejoindre avec le compte %1$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor_invite.png -->
<string name="muc_invite_confirm_reason">%2$s vous a invité à rejoindre la conférence %3$s: %4$s. La rejoindre avec le compte %1$s?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/contact_list_conference_context_menu.png -->
<string name="muc_leave">Quitter la conférence</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/conference_editor.png -->
<string name="muc_save">Enregistrer la conférence</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/notification_bar_connected.png -->
<string name="account_quantity_1">compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="account_quantity_2">comptes</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<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">compte</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_2">comptes</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_offline.png -->
<string name="account_quantity_offline_5">-</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_authorization.png -->
<string name="AUTHENTICATION_FAILED">Erreur d\'autorisation</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 -->
<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 -->
<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 de %3$d %4$s</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_1">%1$d sur %2$d %3$s en ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<string name="connection_state_connected_2">%1$d sur %2$d %3$s en ligne</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connected.png -->
<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 sur %2$d %3$s en cours de connexion</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<string name="connection_state_connecting_2">%1$d sur %2$d %3$s en cours de connexion</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_connecting.png -->
<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 sur %2$d %3$s en attente de connexion</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<string name="connection_state_waiting_2">%1$d sur %2$d %3$s en attente de connexion</string>
<!-- Used for plural form in russian. http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_waiting.png -->
<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 hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/message_archive.png -->
<string name="archive_available_request_message">Souhaitez-vous stocker l\'historique des messages sur le serveur ?\nCela permet à Xabber d\'obtenir l\'historique de tous les messages envoyés avec ce compte quels que soient les appareils ayant été utilisés.\nCette fonction génère un peu de trafic supplémentaire et réduit donc légèrement la vitesse de connexion.\nAVERTISSEMENT: Tout votre historique local sera supprimé.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_archive.png -->
<string name="archive_available_request_title">Activer l\'archivage des messages?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_certificate.png -->
<string name="INVALID_CERTIFICATE">Certificat non valide</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_invite.png -->
<string name="muc_invite_message">Souhaitez-vous entrer dans la conférence ?</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_otr_progress.png -->
<string name="otr_verification_in_progress">Cliquez ici pour annuler.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_password.png -->
<string name="PASSWORD_REQUIRED">Mot de passe requis</string>
<string name="pay_attention">Porte attention</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/notification_bar_subscription.png -->
<string name="subscription_request_message">Demande d\'autorisation</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="events_phrases_title">Expressions clé</string>
<string name="phrase_add">Ajouter une expression</string>
<string name="phrase_delete">Supprimer une expression</string>
<string name="phrase_delete_confirm">Voulez vous réellement supprimer cette expression: %s ?</string>
<string name="phrase_regexp">Expression régulière</string>
<string name="phrase_sound">Son\nChoisir le son de notification</string>
<string name="phrase_text">Texte à rechercher</string>
</resources>
\ No newline at end of file
This diff is collapsed.
<?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 -->
<string name="otr_answer">Réponse à la question secrète:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question">Question secrète:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_question.png -->
<string name="otr_question_description">Utiliser une question secrète pour vérifier votre interlocuteur.</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret">Secret partagé:</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/otr_secret.png -->
<string name="otr_secret_description">Utiliser le secret partagé pour vous vérifier mutuellement.</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 -->
<string name="available">Disponible</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="away">Absent</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="chat">Disponible pour bavarder !</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="clear_statuses">Supprimer les messages de statut sauvegardés</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="dnd">Ne pas déranger</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="edit_status">Modifier le statut</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="empty_status">&lt;Statut Vide&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">Supprimer le statut</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_context_menu.png -->
<string name="select_status">Définir le statut</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor">Changer de statut</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_editor_for">Remplacer le statut par "%s"</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor.png -->
<string name="status_text_hint">Mettre un statut</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unavailable">Hors ligne</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="unsubscribed">Non autorisé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/status_editor_status.png -->
<string name="xa">Absent depuis un moment</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 -->
<string name="in10m">Dans 10 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in15m">Dans 15 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1h">Dans une heure</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in1m">Dans une minute</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in2m">Dans 2 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in30m">Dans 30 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_connection_away.png -->
<string name="in5m">Dans 5 minutes</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="always">Toujours</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="disabled">Désactivé</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="manual">Manuel</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_chat_viewer_status.png -->
<string name="never">Jamais</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="required">Requis</string>
<!-- http://dl.dropbox.com/u/1029995/com.xabber.android/preference_editor_security_otr.png -->
<string name="auto">Automatiquement</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
</resources>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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