mirror of
https://github.com/wallabag/android-app.git
synced 2026-05-19 15:10:37 +00:00
Remove framabag mentions
This commit is contained in:
@@ -26,7 +26,7 @@ wallabag is available on the Google Play Store and F-Droid.
|
||||
|
||||
wallabag has been made for you to comfortably read and archive your articles.
|
||||
You can download wallabag from wallabag.org and follow the instructions to install it on your own server.
|
||||
Alternatively, you can directly sign up for [wallabag.it](https://wallabag.it) or [Framabag](https://framabag.org).
|
||||
Alternatively, you can directly sign up for [wallabag.it](https://wallabag.it).
|
||||
|
||||
This android application allows you to put a link in your wallabag instance, letting you read your wallabag links offline.
|
||||
|
||||
@@ -36,7 +36,7 @@ wallabag is a creation from Nicolas Lœuillet released under the MIT License (Ex
|
||||
## Features
|
||||
|
||||
The android app lets you:
|
||||
- Connect to your self-hosted wallabag instance or connect to your [wallabag.it](https://wallabag.it) or [Framabag](https://framabag.org) account.
|
||||
- Connect to your self-hosted wallabag instance or connect to your [wallabag.it](https://wallabag.it) account.
|
||||
- Supports wallabag 2.0 and higher.
|
||||
- Completely ad-free.
|
||||
- Increase and decrease the size of the font and also switch between a serif or sans-serif font for a more comfortable reading experience.
|
||||
|
||||
@@ -27,10 +27,8 @@ public class WallabagWebService {
|
||||
private static final String TAG = WallabagWebService.class.getSimpleName();
|
||||
|
||||
private static final Pattern WALLABAG_LOGIN_FORM_V2 = compile("/login_check\"? method=\"?post\"? name=\"?loginform\"?>");
|
||||
private static final Pattern FRAMABAG_LOGIN_FORM = compile("/login_check\" class=\"form\" method=\"post\" name=\"loginform\">");
|
||||
private static final Pattern WALLABAG_LOGOUT_LINK_V2 = compile("/logout\"?>");
|
||||
private static final Pattern WALLABAG_LOGO_V2 = compile("alt=\"wallabag logo\" ?/?>");
|
||||
private static final Pattern FRAMABAG_MARKER = compile("<span class=\"frama\">Frama</span>");
|
||||
private static final Pattern WALLABAG_LOGIN_FORM_V1 = compile("<form method=\"?post\"? action=\"?\\?login\"? name=\"?loginform\"?>");
|
||||
|
||||
private static final String CLIENT_NAME = "Android app";
|
||||
@@ -276,8 +274,7 @@ public class WallabagWebService {
|
||||
}
|
||||
|
||||
public static boolean isLoginPage(String body) {
|
||||
return (containsMarker(body, WALLABAG_LOGIN_FORM_V2) && containsMarker(body, WALLABAG_LOGO_V2))
|
||||
|| (containsMarker(body, FRAMABAG_LOGIN_FORM) && containsMarker(body, FRAMABAG_MARKER));
|
||||
return containsMarker(body, WALLABAG_LOGIN_FORM_V2) && containsMarker(body, WALLABAG_LOGO_V2);
|
||||
}
|
||||
|
||||
private boolean isRegularPage(String body) throws IOException {
|
||||
|
||||
-38
@@ -52,14 +52,12 @@ public class ConnectionWizardActivity extends BaseActionBarActivity {
|
||||
|
||||
private static final int PROVIDER_NO = -1;
|
||||
private static final int PROVIDER_WALLABAG_IT = 0;
|
||||
private static final int PROVIDER_FRAMABAG = 1;
|
||||
|
||||
private static final String PAGE_NONE = "";
|
||||
private static final String PAGE_WELCOME = "welcome";
|
||||
private static final String PAGE_PROVIDER_SELECTION = "provider_selection";
|
||||
private static final String PAGE_CONFIG_GENERIC = "config_generic";
|
||||
private static final String PAGE_CONFIG_WALLABAG_IT = "config_wallabag_it";
|
||||
private static final String PAGE_CONFIG_FRAMABAG = "config_framabag";
|
||||
private static final String PAGE_SUMMARY = "summary";
|
||||
|
||||
public static void runWizard(Context context, boolean skipWelcome) {
|
||||
@@ -127,10 +125,6 @@ public class ConnectionWizardActivity extends BaseActionBarActivity {
|
||||
|| ("https://" + WallabagItConfigFragment.WALLABAG_IT_HOSTNAME).equals(url)) {
|
||||
bundle.putInt(DATA_PROVIDER, PROVIDER_WALLABAG_IT);
|
||||
filledOutSomething = true;
|
||||
} else if(FramabagConfigFragment.FRAMABAG_HOSTNAME.equals(url)
|
||||
|| ("https://" + FramabagConfigFragment.FRAMABAG_HOSTNAME).equals(url)) {
|
||||
bundle.putInt(DATA_PROVIDER, PROVIDER_FRAMABAG);
|
||||
filledOutSomething = true;
|
||||
} else if(!TextUtils.isEmpty(url) && !"https://".equals(url)) {
|
||||
bundle.putString(DATA_URL, url);
|
||||
filledOutSomething = true;
|
||||
@@ -277,10 +271,6 @@ public class ConnectionWizardActivity extends BaseActionBarActivity {
|
||||
goToFragment = new WallabagItConfigFragment();
|
||||
break;
|
||||
|
||||
case PROVIDER_FRAMABAG:
|
||||
goToFragment = new FramabagConfigFragment();
|
||||
break;
|
||||
|
||||
default:
|
||||
goToFragment = new GenericConfigFragment();
|
||||
break;
|
||||
@@ -289,7 +279,6 @@ public class ConnectionWizardActivity extends BaseActionBarActivity {
|
||||
|
||||
case PAGE_CONFIG_GENERIC:
|
||||
case PAGE_CONFIG_WALLABAG_IT:
|
||||
case PAGE_CONFIG_FRAMABAG:
|
||||
goToFragment = new SummaryFragment();
|
||||
break;
|
||||
|
||||
@@ -432,10 +421,6 @@ public class ConnectionWizardActivity extends BaseActionBarActivity {
|
||||
provider = PROVIDER_WALLABAG_IT;
|
||||
break;
|
||||
|
||||
case R.id.providerFramabag:
|
||||
provider = PROVIDER_FRAMABAG;
|
||||
break;
|
||||
|
||||
default:
|
||||
provider = PROVIDER_NO;
|
||||
break;
|
||||
@@ -600,29 +585,6 @@ public class ConnectionWizardActivity extends BaseActionBarActivity {
|
||||
|
||||
}
|
||||
|
||||
public static class FramabagConfigFragment extends GenericConfigFragment {
|
||||
|
||||
public String getPageName() {
|
||||
return PAGE_CONFIG_FRAMABAG;
|
||||
}
|
||||
|
||||
static final String FRAMABAG_HOSTNAME = "framabag.org";
|
||||
|
||||
@Override
|
||||
protected int getLayoutResourceID() {
|
||||
return R.layout.connection_wizard_framabag_config_fragment;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void gatherData() {
|
||||
super.gatherData();
|
||||
|
||||
url = "https://" + FRAMABAG_HOSTNAME;
|
||||
tryPossibleURLs = false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static class SummaryFragment extends WizardPageFragment {
|
||||
|
||||
@Override
|
||||
|
||||
@@ -1,102 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<!-- Disable on-screen keyboard by default -->
|
||||
<View android:layout_width="0dp" android:layout_height="0dp"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" tools:ignore="UnusedAttribute">
|
||||
<requestFocus/>
|
||||
</View>
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="30dp"
|
||||
android:paddingRight="30dp"
|
||||
android:paddingTop="20dp">
|
||||
|
||||
<TextView
|
||||
android:paddingBottom="20dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:text="@string/connectionWizard_provider_framabag_titleMessage"/>
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/username"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ems="10"
|
||||
android:hint="@string/pref_name_connection_username"
|
||||
android:inputType="text" />
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:passwordToggleEnabled="true">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/password"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ems="10"
|
||||
android:hint="@string/pref_name_connection_password"
|
||||
android:inputType="textPassword" />
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
||||
<View android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="?android:attr/dividerHorizontal" />
|
||||
|
||||
<LinearLayout
|
||||
style="?android:attr/buttonBarStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<Button
|
||||
style="?android:attr/buttonBarButtonStyle"
|
||||
android:id="@+id/prev_button"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/connectionWizard_provider_framabag_prev" />
|
||||
|
||||
<View android:layout_width="1dp"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="?android:attr/dividerVertical" />
|
||||
|
||||
<Button
|
||||
style="?android:attr/buttonBarButtonStyle"
|
||||
android:id="@+id/next_button"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/connectionWizard_provider_framabag_next" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -43,16 +43,6 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/connectionWizard_providerSelection_provider_wallabagit_desc" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/providerFramabag"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/connectionWizard_providerSelection_provider_framabag_name"/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/connectionWizard_providerSelection_provider_framabag_desc"/>
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/providerOther"
|
||||
android:layout_width="match_parent"
|
||||
|
||||
@@ -36,7 +36,6 @@
|
||||
<string name="notification_copyToClipboard">Zkopírovat do schránky</string>
|
||||
<string name="connectionWizard_summary_text">Klikněte pro uložení a přejití na hlavní obrazovku.</string>
|
||||
<string name="connectionWizard_summary_titleMessage">A je to.</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Vyberte tuto možnost, pokud máte účet na https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Vyberte tuto možnost, pokud máte účet na https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_titleMessage">Vyberte poskytovatele Wallabagu</string>
|
||||
<string name="connectionWizard_welcome_next">Další</string>
|
||||
@@ -83,7 +82,6 @@
|
||||
<string name="connectionWizard_providerSelection_next">Další</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Přeskočit</string>
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Konfigurace pro wallabag.it</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Konfigurace pro Framabag</string>
|
||||
<string name="pref_desc_ui_annotations_enabled">Experimentální funkce! Zobrazujte, upravujte a vytvářejte anotace</string>
|
||||
<string name="pref_name_ui_annotations_enabled">Podpora anotací</string>
|
||||
<string name="menuTTS">Převod textu na řeč</string>
|
||||
@@ -94,7 +92,6 @@
|
||||
<string name="tts_image">Obrázek: %s</string>
|
||||
<string name="title">Název</string>
|
||||
<string name="connectionWizard_summary_prev">Zpět</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Zpět</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Zpět</string>
|
||||
<string name="connectionWizard_provider_general_prev">Zpět</string>
|
||||
<string name="pref_name_storage_dbPath_dbMoved">Databáze byla přesunuta</string>
|
||||
@@ -218,7 +215,6 @@
|
||||
<string name="connectionWizard_misc_installQrCodeScanner">Nainstalujte si prosím aplikaci na skenování QR kódů</string>
|
||||
<string name="connectionWizard_provider_general_next">Připojit</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Připojit</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Připojit</string>
|
||||
<string name="notification_clipboardLabel">Podrobnosti o chybě</string>
|
||||
<string name="contentIsTooLong">Obsah článku je pro zobrazení příliš dlouhý</string>
|
||||
<string name="articleContent_globeIconAltText">Ikona zeměkoule</string>
|
||||
@@ -330,8 +326,7 @@
|
||||
<string name="pref_desc_connection_url">Příklady:
|
||||
\n https://wallabag.domena.cz
|
||||
\n https://domena.cz/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_name_connection_url">Adresa URL Wallabag</string>
|
||||
<string name="pref_categoryName_connection">Připojení</string>
|
||||
<string name="pref_desc_runConnectionWizard">Pomůže vám provést základní nastavení připojení</string>
|
||||
|
||||
@@ -82,8 +82,7 @@
|
||||
Beispiele:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Benutzername</string>
|
||||
<string name="pref_name_connection_password">Passwort</string>
|
||||
@@ -105,7 +104,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Anderer</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Wähle diese Option, um die Einstellungen manuell einzugeben</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Wähle diese Option, wenn du einen Account auf https://wallabag.it hast</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Wähle diese Option, wenn du einen Account auf https://framabag.org hast</string>
|
||||
<string name="connectionWizard_providerSelection_titleMessage">Wähle deinen wallabag-Anbieter</string>
|
||||
<string name="connectionWizard_provider_general_next">Verbinden</string>
|
||||
<string name="connectionWizard_provider_general_prev">Zurück</string>
|
||||
@@ -113,9 +111,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_next">Verbinden</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Zurück</string>
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">wallabag.it Einstellungen</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Verbinden</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Zurück</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag Einstellungen</string>
|
||||
<string name="connectionWizard_summary_next">Einstellungen speichern</string>
|
||||
<string name="connectionWizard_summary_prev">Zurück</string>
|
||||
<string name="connectionWizard_summary_text">Einstellungen speichern und zum Hauptbildschirm gelangen.</string>
|
||||
|
||||
@@ -37,9 +37,6 @@
|
||||
<string name="connectionWizard_summary_prev">Επιστροφή</string>
|
||||
<string name="connectionWizard_summary_text">Κάνετε κλικ για αποθήκευση και μεταβείτε στην κεντρική οθόνη.</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Τέλος.</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Σύνδεση</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Επιστροφή</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Ρύθμιση του Framabag</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Σύνδεση</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Επιστροφή</string>
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Ρύθμιση του wallabag.it</string>
|
||||
@@ -48,7 +45,6 @@
|
||||
<string name="connectionWizard_provider_general_titleMessage">Βασική ρύθμιση</string>
|
||||
<string name="connectionWizard_providerSelection_next">Συνέχεια</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Προσπέραση</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Επιλέξτε αυτό αν έχετε λογαριασμό στο https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Επιλέξτε αυτή την επιλογή αν έχετε λογαριασμό στο https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Επιλέξτε αυτό για να εισάγετε τις απαιτούμενες ρυθμίσεις χειροκίνητα</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Άλλο</string>
|
||||
@@ -183,8 +179,7 @@
|
||||
<string name="pref_desc_connection_url">Παραδείγματα:
|
||||
\n https://wallabag.example.com
|
||||
\n https://example.com/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_name_connection_url">URL wallabag</string>
|
||||
<string name="pref_categoryName_connection">Σύνδεση</string>
|
||||
<string name="pref_desc_runConnectionWizard">Σας βοηθάει να επιλέξετε βασικές ρυθμίσεις σύνδεσης</string>
|
||||
|
||||
@@ -154,8 +154,7 @@
|
||||
Ejemplos:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Usuario</string>
|
||||
<string name="pref_name_connection_password">Contraseña</string>
|
||||
@@ -240,7 +239,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Otro</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Selecciona esta opción para introducir los ajustes requeridos manualmente</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Selecciona esta opción si tienes una cuenta en https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Selecciona esta opción si tienes una cuenta en https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Saltar</string>
|
||||
<string name="connectionWizard_providerSelection_next">Siguiente</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">Configuración básica</string>
|
||||
@@ -249,9 +247,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Configuración de wallabag.it</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Volver</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Conectar</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Configuración de Framabag</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Volver</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Conectar</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Todo listo.</string>
|
||||
<string name="connectionWizard_summary_text">Pulsa para guardar los ajustes e ir a la pantalla principal.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Configuración completada</string>
|
||||
|
||||
@@ -139,8 +139,7 @@
|
||||
<string name="pref_desc_connection_url">Adibideak:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Erabiltzaile-izena</string>
|
||||
<string name="pref_name_connection_password">Pasahitza</string>
|
||||
|
||||
@@ -73,9 +73,6 @@
|
||||
<string name="connectionWizard_summary_toastMessage">تنظیمات تکمیل شد</string>
|
||||
<string name="connectionWizard_summary_text">برای ذخیره و رفتن به صفحه اصلی کلیک کنید.</string>
|
||||
<string name="connectionWizard_summary_titleMessage">همه چیز مرتب است.</string>
|
||||
<string name="connectionWizard_provider_framabag_next">اتصال</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">قبل</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">پیکربندی Framabag</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">اتصال</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">قبل</string>
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">پیکربندی wallabag.it</string>
|
||||
@@ -84,7 +81,6 @@
|
||||
<string name="connectionWizard_provider_general_titleMessage">پیکربندی ابتدایی</string>
|
||||
<string name="connectionWizard_providerSelection_next">بعدی</string>
|
||||
<string name="connectionWizard_providerSelection_prev">صرف نظر</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">اگر حسابی روی https://framabag.org دارید این گزینه را انتخاب کنید</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">اگر حسابی روی https://wallabag.it دارید این گزینه را انتخاب کنید</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">این گزینه را برای وارد کردن تنظیمات مورد نیاز به صورت دستی انتخاب کنید</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">سایر</string>
|
||||
@@ -204,8 +200,7 @@
|
||||
<string name="pref_desc_connection_url">مثالها:
|
||||
\n https://wallabag.example.com
|
||||
\n https://example.com/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_name_connection_url">نشانی والابگ</string>
|
||||
<string name="pref_categoryName_connection">اتصال</string>
|
||||
<string name="pref_desc_runConnectionWizard">به شما برای انجام تنظیمات یک اتصال کمک میکند</string>
|
||||
|
||||
@@ -161,8 +161,7 @@
|
||||
<string name="pref_desc_connection_url">Exemples :
|
||||
\n https://wallabag.example.com
|
||||
\n https://example.com/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_name_connection_username">Identifiant</string>
|
||||
<string name="pref_name_connection_password">Mot de passe</string>
|
||||
<string name="pref_name_connection_api_clientID">ID Client</string>
|
||||
@@ -255,7 +254,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Autre</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Choisissez cette option pour entrer les paramètres manuellement</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Choisissez cette option si vous avez un compte sur https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Choisissez cette option si vous avez un compte sur https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Ignorer</string>
|
||||
<string name="connectionWizard_providerSelection_next">Suivant</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">Configuration de base</string>
|
||||
@@ -264,9 +262,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Configuration de wallabag.it</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Retour</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Connecter</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Configuration de Framabag</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Retour</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Connecter</string>
|
||||
<string name="connectionWizard_summary_titleMessage">C\'est fini.</string>
|
||||
<string name="connectionWizard_summary_text">Appuyez sur le bouton pour sauvegarder les paramètres et aller à l\'écran principal.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">La configuration est terminée</string>
|
||||
|
||||
@@ -52,7 +52,6 @@
|
||||
\n Za otklanjanje nedostatak vrste „Brze” sinkronizacije, „Čišćenje izbrisanih članaka” provjerava svaki lokalni članak i pita poslužitelja, je li još uvijek prisutan na poslužitelju – ako ne, lokalni se članak uklanja. Ovisno o broju članaka, traje neko vrijeme, ali štedi promet putem „Potpune” sinkronizacije.
|
||||
\n
|
||||
\n Nijedna od ovih funkcija ne utječe na sinkronizaciju između klijenta i poslužitelja: tvoje lokalne promjene uvijek će se poslati poslužitelju prije aktualiziranja lokalnog sadržaja."</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Natrag</string>
|
||||
<string name="testConnection_errorMessage_unknownPageAfterLogin">Nepoznata stranica nakon prijave. Uzrok tome je obično aktivirana dvofaktorska autentifikacija, što program još ne podržava</string>
|
||||
<string name="noPreviousArticle">Nema prethodnog članka u trenutačnom popisu</string>
|
||||
<string name="d_checkCredentials_errorMessage_unknown">Nepoznata greška</string>
|
||||
@@ -146,11 +145,9 @@
|
||||
<string name="tts_image">Slika: %s</string>
|
||||
<string name="menu_lists_fullUpdate">Potpuno aktualiziranje</string>
|
||||
<string name="d_disableTouch_currentCode">Trenutačno odabrani tipkovnički kod (za mijenjanje koda, pritisni gumb):</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag konfiguracija</string>
|
||||
<string name="pref_desc_misc_localQueue_removeFirstItem">Uklanja prvu nesinkroniziranu stavku. Može pomoći, ako tijekom sinkronizacije dobiješ ponavljajuće obavijesti o grešci. U svakom slučaju, najprije ispiši sve lokalne promjene u datoteku</string>
|
||||
<string name="notification_updatingArticles_full">Izvršavanje potpunog aktualiziranja</string>
|
||||
<string name="testConnection_errorMessage_authProblems">Problemi u vezi s autorizacijom. Uzrok tomu su obično HTTP-preusmjeravanja.</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Spoji</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Osalo</string>
|
||||
<string name="menu_manageTags">Upravljaj oznakama</string>
|
||||
<string name="voiceHeight">Visina glasa</string>
|
||||
@@ -202,7 +199,6 @@
|
||||
<string name="pref_desc_ui_showArticleAddedDialog">Prikazuje dijaloški okvir koji omogućuje dodavanje u omiljene/arhiv/označivanje novo dodanog članka. Ako je opcija deaktivirana, prikazat će se poruka.</string>
|
||||
<string name="message_disableTouch_inputEnabled">Unos dodirom aktiviran</string>
|
||||
<string name="notification_action_media_fastforward">Naprijed</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Odaberi ovo, ako imaš račun na https://framabag.org</string>
|
||||
<string name="pref_name_ui_screenScrolling_smooth">Koristi neisprekidano klizanje</string>
|
||||
<string name="d_configurationIsQuestionable_title">Otkriven problem</string>
|
||||
<string name="notification_action_media_play">Pokreni</string>
|
||||
@@ -333,8 +329,7 @@
|
||||
<string name="pref_desc_connection_url">Primjeri:
|
||||
\n https://wallabag.example.com
|
||||
\n https://example.com/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_categoryName_ui">Korisničko sučelje</string>
|
||||
<string name="d_checkCredentials_errorMessage_notFoundWithMessage">Sučelje nije pronađeno: %s</string>
|
||||
<string name="pref_name_ui_screenScrolling_percent">Postotak visine ekrana za klizanje</string>
|
||||
|
||||
@@ -115,8 +115,7 @@
|
||||
Példák:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Felhasználónév</string>
|
||||
<string name="pref_name_connection_password">Jelszó</string>
|
||||
@@ -168,7 +167,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Egyéb</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Válassza ezt ha kézzel szeretné megadni a beállításokat</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Válassza ezt a beállítást, ha van egy fiókja itt: https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Válassza ezt a beállítást, ha van egy fiókja itt: https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Kihagyás</string>
|
||||
<string name="connectionWizard_providerSelection_next">Következő</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">Alapkonfiguráció</string>
|
||||
@@ -177,9 +175,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">wallabag.it konfiguráció</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Vissza</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Csatlakozás</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag konfiguráció</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Vissza</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Csatlakozás</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Minden kész.</string>
|
||||
<string name="connectionWizard_summary_text">Kattintson a mentéshez, és a fő képernyőhöz való visszajutáshoz.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Beállítás kész</string>
|
||||
|
||||
@@ -144,8 +144,7 @@
|
||||
Esempi:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Nome utente</string>
|
||||
<string name="pref_name_connection_password">Password</string>
|
||||
@@ -218,7 +217,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Altro</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Seleziona questa opzione per inserire le impostazioni richieste manualmente</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Seleziona questa opzione se hai un account su https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Seleziona questa opzione se hai un account su https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Salta</string>
|
||||
<string name="connectionWizard_providerSelection_next">Successivo</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">Configurazione base</string>
|
||||
@@ -227,9 +225,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Configurazione di wallabag.it</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Indietro</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Connetti</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Configurazione di Framabag</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Indietro</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Connetti</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Fatto.</string>
|
||||
<string name="connectionWizard_summary_text">Premi il bottone per salvare le impostazioni ed andare alla schermata principale.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Impostazione completata</string>
|
||||
|
||||
@@ -113,8 +113,7 @@
|
||||
例:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">ユーザー名</string>
|
||||
<string name="pref_name_connection_password">パスワード</string>
|
||||
@@ -166,7 +165,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">その他</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">必要な設定を手動で行う場合は、このオプションを選択してください</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">https://wallabag.it にアカウントを持っている場合は、このオプションを選択してください</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">https://framabag.org にアカウントを持っている場合は、このオプションを選択してください</string>
|
||||
<string name="connectionWizard_providerSelection_prev">スキップ</string>
|
||||
<string name="connectionWizard_providerSelection_next">次へ</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">基本的な構成</string>
|
||||
@@ -175,9 +173,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">wallabag.it の構成</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">戻る</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">接続</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag の構成</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">戻る</string>
|
||||
<string name="connectionWizard_provider_framabag_next">接続</string>
|
||||
<string name="connectionWizard_summary_titleMessage">すべて完了しました。</string>
|
||||
<string name="connectionWizard_summary_text">クリックすると、保存して、メイン画面に移動します。</string>
|
||||
<string name="connectionWizard_summary_toastMessage">セットアップは完了です</string>
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
<string name="notification_expandedError">에러:%s</string>
|
||||
<string name="wrongUsernameOrPassword_errorMessage">로그인할 수 없음: 잘못된 사용자 이름 또는 암호일 수 있음</string>
|
||||
<string name="pref_option_autoSync_interval_1h">1 시간</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">https://framabag.org에 계정이 있는 경우 이 옵션을 선택하십시오</string>
|
||||
<string name="pref_desc_ui_readingSpeed">읽기 속도(분당 단어로 측정됨). 예상 판독 시간을 계산하는 데 사용된다.</string>
|
||||
<string name="pref_name_imageCache_enabled">문서 이미지를 캐시에 저장</string>
|
||||
<string name="manageTags_title">태그 관리</string>
|
||||
@@ -115,7 +114,6 @@
|
||||
<string name="notification_channel_name_error">에러</string>
|
||||
<string name="loading_article_text">로딩…</string>
|
||||
<string name="message_disableTouch_inputDisabled">터치식 입력이 비활성화</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag 구성</string>
|
||||
<string name="pref_desc_ui_previewImage_enabled">문서 앞에 미리 보기 이미지 표시</string>
|
||||
<string name="ttsFastForward">빨리감기</string>
|
||||
<string name="feedName_archived">보관됨</string>
|
||||
@@ -143,7 +141,6 @@
|
||||
<string name="remove_tag">태그 삭제</string>
|
||||
<string name="nav_other_about">대해서</string>
|
||||
<string name="ttsOptions">옵션</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">이전</string>
|
||||
<string name="themeName_light_contrast">밝기(높은 대비)</string>
|
||||
<string name="pref_name_connection_password">비밀번호</string>
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">wallabag.it 구성</string>
|
||||
@@ -158,8 +155,7 @@
|
||||
<string name="pref_name_ui_article_textAlignment_justify">문자 정렬: 정당화</string>
|
||||
<string name="pref_categoryName_autoSync">자동 동기화</string>
|
||||
<string name="manageTags_addNew">추가</string>
|
||||
<string name="connectionWizard_provider_framabag_next">연결</string>
|
||||
<string name="aboutText"><b>안드로이드용 wallabag 앱 </b>
|
||||
<string name="aboutText"><b>안드로이드용 wallabag 앱 </b>
|
||||
\n왈라백은 스스로 호스팅할 수 있는 앱으로, 더 이상 어떤 콘텐츠도 놓치지 않도록 해준다. 압축을 푼 콘텐츠를 여유롭게 클릭, 저장 및 읽어보십시오.</string>
|
||||
<string name="downloadAsFileArticleDownloadedDetail">기사가 %s 다운로드되었다</string>
|
||||
<string name="connectionWizard_summary_next">설정 저장</string>
|
||||
@@ -268,8 +264,7 @@
|
||||
<string name="pref_desc_connection_url">예시:
|
||||
\nhttps://wallabag.example.com
|
||||
\nhttps://example.com/wallabag
|
||||
\nhttps://app.wallabag.it
|
||||
\nhttps://framabag.org</string>
|
||||
\nhttps://app.wallabag.it</string>
|
||||
<string name="pref_name_storage_dbPath_internalStorage">내부 저장소</string>
|
||||
<string name="connectionWizard_welcome_rerunNotice">항상 \"설정\"에서 연결 마법사를 다시 실행할 수 있다.</string>
|
||||
<string name="testConnection_errorMessage_unknown">알수없는 오류</string>
|
||||
|
||||
@@ -162,8 +162,7 @@
|
||||
<string name="pref_desc_connection_url">Eksempler:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_advanced_httpAuthUsername">HTTP-autentiseringsbrukernavn</string>
|
||||
<string name="pref_name_connection_advanced_httpAuthPassword">HTTP-autentiseringspassord</string>
|
||||
@@ -254,10 +253,6 @@
|
||||
<string name="pref_name_storage_dbPath_dbMoved">Database flyttet</string>
|
||||
<string name="pref_name_misc_appendWallabagMention">Legg til wallabag-nevning</string>
|
||||
<string name="pref_desc_misc_appendWallabagMention">Legg til \"via @wallabagapp\" i delte tekster</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Velg dette hvis du har en konto på https://framabag.org</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag-oppsett</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Tilbake</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Koble til</string>
|
||||
<string name="remove_tag">Fjern etikett</string>
|
||||
<string name="scrolledOverBottom">Rull %d gang(er) til over bunnen for å markere artikkelen som lest</string>
|
||||
<string name="markedAsRead">Artikkel merket som lest</string>
|
||||
|
||||
@@ -200,9 +200,6 @@
|
||||
<string name="connectionWizard_summary_toastMessage">Configuratie afgerond</string>
|
||||
<string name="connectionWizard_summary_text">Klik om op te slaan en naar het hoofdscherm te gaan.</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Klaar.</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Verbind</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Terug</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag configuratie</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Verbind</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Terug</string>
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">wallabag.it configuratie</string>
|
||||
@@ -211,7 +208,6 @@
|
||||
<string name="connectionWizard_provider_general_titleMessage">Basis configuratie</string>
|
||||
<string name="connectionWizard_providerSelection_next">Volgende</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Overslaan</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Selecteer dit als u een account heeft bij https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Selecteer dit als u een account heeft bij https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Selecteer dit om de verbinding handmatig in te stellen</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Anders</string>
|
||||
@@ -335,8 +331,7 @@
|
||||
<string name="pref_desc_connection_url">Voorbeelden:
|
||||
\n https://wallabag.example.com
|
||||
\n https://example.com/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_name_connection_url">wallabag URL</string>
|
||||
<string name="pref_categoryName_connection">Verbinding</string>
|
||||
<string name="pref_desc_runConnectionWizard">Helpt u met het opzetten van de verbindingsinstellingen</string>
|
||||
|
||||
@@ -144,8 +144,7 @@
|
||||
Przykłady:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Nazwa użytkownika</string>
|
||||
<string name="pref_name_connection_password">Hasło</string>
|
||||
@@ -218,7 +217,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Inny</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Wybierz tę opcję, aby ręcznie wprowadzić wymagane ustawienia</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Wybierz tę opcję jeżeli posiadasz konto na https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Wybierz tę opcję jeżeli posiadasz konto na https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Pomiń</string>
|
||||
<string name="connectionWizard_providerSelection_next">Dalej</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">Podstawowa konfiguracja</string>
|
||||
@@ -227,9 +225,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Konfiguracja wallabag.it</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Wróć</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Połącz</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Konfiguracja Framabag</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Wróć</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Połącz</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Wszystko gotowe.</string>
|
||||
<string name="connectionWizard_summary_text">Kliknij, aby zapisać i przejdź do głównego ekranu.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Konfiguracja zakończona</string>
|
||||
|
||||
@@ -65,7 +65,6 @@
|
||||
<string name="connectionWizard_providerSelection_next">Seguinte</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Pular</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Outro</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Configuração de Framabag</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Configuração completada</string>
|
||||
<string name="connectionWizard_welcome_next">Seguinte</string>
|
||||
<string name="connectionWizard_welcome_prev">Pular</string>
|
||||
@@ -81,8 +80,7 @@
|
||||
Exemplos:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Nome do utilizador</string>
|
||||
<string name="pref_name_sync_syncTypes">Tipos de sincronização</string>
|
||||
@@ -119,7 +117,6 @@
|
||||
<string name="readSpeed">Velocidade de leitura</string>
|
||||
<string name="readVolume">Volume de leitura</string>
|
||||
<string name="markedAsRead">Artigo marcado como lido</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Voltar</string>
|
||||
<string name="connectionWizard_provider_general_prev">Voltar</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Voltar</string>
|
||||
<string name="connectionWizard_summary_prev">Voltar</string>
|
||||
@@ -131,7 +128,6 @@
|
||||
<string name="themeName_dark">Escuro</string>
|
||||
<string name="themeName_dark_contrast">Escuro (alto contraste)</string>
|
||||
<string name="pref_name_ui_theme">Tema da app</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Conectar</string>
|
||||
<string name="connectionWizard_provider_general_next">Conectar</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Conectar</string>
|
||||
<string name="pref_categoryName_connection">Conexão</string>
|
||||
|
||||
@@ -72,8 +72,7 @@
|
||||
Например:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Имя пользователя</string>
|
||||
<string name="pref_name_connection_password">Пароль</string>
|
||||
@@ -166,7 +165,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">Другой</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Выберите этот вариант для ввода необходимых параметров вручную</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Выберите этот вариант, если у вас есть аккаунт на https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Выберите этот вариант, если у вас есть аккаунт на https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Пропустить</string>
|
||||
<string name="connectionWizard_providerSelection_next">Дальше</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">Основные параметры</string>
|
||||
@@ -175,9 +173,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">Настройка wallabag.it</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Назад</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Подключиться</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Настройка Framabag</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Назад</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Подключиться</string>
|
||||
<string name="connectionWizard_summary_titleMessage">Готово.</string>
|
||||
<string name="connectionWizard_summary_text">Нажмите на кнопку, чтобы сохранить настройки и перейти к главному экрану.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Настройка завершена</string>
|
||||
|
||||
@@ -140,8 +140,7 @@
|
||||
Örnekler:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Kullanıcı adı</string>
|
||||
<string name="pref_name_connection_password">Şifre</string>
|
||||
@@ -264,10 +263,6 @@
|
||||
<string name="pref_name_storage_dbPath_dbMoved">Veritabanı taşındı</string>
|
||||
<string name="pref_name_misc_appendWallabagMention">wallabag alıntısını sonuna ekle</string>
|
||||
<string name="pref_desc_misc_appendWallabagMention">Paylaşılan metinlerin sonuna \"via @wallabagapp\" ekle</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Eğer https://framabag.org üzerinde bir hesabınız varsa bunu seçin</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag ayarları</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Geri</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Bağlan</string>
|
||||
<string name="remove_tag">Etiketi kaldır</string>
|
||||
<string name="menu_annotate">Not</string>
|
||||
<string name="copiedToClipboard">Panoya kopyalandı</string>
|
||||
|
||||
@@ -161,8 +161,7 @@
|
||||
<string name="pref_desc_connection_url">示例:
|
||||
\n https://wallabag.example.com
|
||||
\n https://example.com/wallabag
|
||||
\n https://app.wallabag.it
|
||||
\n https://framabag.org</string>
|
||||
\n https://app.wallabag.it</string>
|
||||
<string name="pref_name_connection_username">用户名</string>
|
||||
<string name="pref_name_connection_password">密码</string>
|
||||
<string name="pref_name_connection_api_clientID">客户端 ID</string>
|
||||
@@ -253,7 +252,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_name">其他</string>
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">选择此选项以手动输入所需的设置</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">如果您在 https://wallabag.it 上有帐户,请选择此项</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">如果您在 https://framabag.org 上有帐户,请选择此项</string>
|
||||
<string name="connectionWizard_providerSelection_prev">跳过</string>
|
||||
<string name="connectionWizard_providerSelection_next">下一步</string>
|
||||
<string name="connectionWizard_provider_general_titleMessage">基本配置</string>
|
||||
@@ -262,9 +260,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_titleMessage">wallabag.it 配置</string>
|
||||
<string name="connectionWizard_provider_wallabagit_prev">上一步</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">连接</string>
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag 配置</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">上一步</string>
|
||||
<string name="connectionWizard_provider_framabag_next">连接</string>
|
||||
<string name="connectionWizard_summary_titleMessage">全部完成。</string>
|
||||
<string name="connectionWizard_summary_text">单击此处保存并转到主屏幕。</string>
|
||||
<string name="connectionWizard_summary_toastMessage">设置完成</string>
|
||||
|
||||
@@ -183,8 +183,7 @@
|
||||
Examples:\n
|
||||
https://wallabag.example.com\n
|
||||
https://example.com/wallabag\n
|
||||
https://app.wallabag.it\n
|
||||
https://framabag.org
|
||||
https://app.wallabag.it
|
||||
</string>
|
||||
<string name="pref_name_connection_username">Username</string>
|
||||
<string name="pref_name_connection_password">Password</string>
|
||||
@@ -341,8 +340,6 @@
|
||||
<string name="connectionWizard_providerSelection_provider_general_desc">Select this to input required settings manually</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_name" translatable="false">wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_wallabagit_desc">Select this option if you have an account on https://wallabag.it</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_name" translatable="false">Framabag</string>
|
||||
<string name="connectionWizard_providerSelection_provider_framabag_desc">Select this if you have an account on https://framabag.org</string>
|
||||
<string name="connectionWizard_providerSelection_prev">Skip</string>
|
||||
<string name="connectionWizard_providerSelection_next">Next</string>
|
||||
|
||||
@@ -354,10 +351,6 @@
|
||||
<string name="connectionWizard_provider_wallabagit_prev">Back</string>
|
||||
<string name="connectionWizard_provider_wallabagit_next">Connect</string>
|
||||
|
||||
<string name="connectionWizard_provider_framabag_titleMessage">Framabag configuration</string>
|
||||
<string name="connectionWizard_provider_framabag_prev">Back</string>
|
||||
<string name="connectionWizard_provider_framabag_next">Connect</string>
|
||||
|
||||
<string name="connectionWizard_summary_titleMessage">All done.</string>
|
||||
<string name="connectionWizard_summary_text">Click to save and go to the main screen.</string>
|
||||
<string name="connectionWizard_summary_toastMessage">Setup complete</string>
|
||||
|
||||
Reference in New Issue
Block a user