From d6a562863a6541be437fff4d6377e74399da3450 Mon Sep 17 00:00:00 2001 From: aminecmi Date: Tue, 6 Dec 2022 22:18:38 +0100 Subject: [PATCH] Big cleaning. --- .../android/HomeActivity.kt | 45 +++---------------- .../android/settings/SettingsActivity.kt | 11 +++++ .../src/main/res/anim/slide_in_right.xml | 16 ------- .../src/main/res/anim/slide_out_left.xml | 16 ------- .../res/drawable/ic_bug_report_black_24dp.xml | 9 ---- .../main/res/drawable/ic_close_white_24dp.xml | 5 --- .../res/drawable/ic_history_white_24dp.xml | 5 --- .../drawable/ic_menu_refresh_white_24dp.xml | 5 --- .../src/main/res/layout/filter_fragment.xml | 6 +-- androidApp/src/main/res/menu/home_menu.xml | 9 +++- .../src/main/res/values-ca-rES/strings.xml | 19 ++------ .../src/main/res/values-de-rDE/strings.xml | 16 ++----- .../src/main/res/values-es-rES/strings.xml | 19 ++------ .../src/main/res/values-fa-rIR/strings.xml | 19 ++------ .../src/main/res/values-fr-rFR/strings.xml | 19 ++------ .../src/main/res/values-gl-rES/strings.xml | 19 ++------ .../src/main/res/values-in-rID/strings.xml | 19 ++------ .../src/main/res/values-it-rIT/strings.xml | 19 ++------ .../src/main/res/values-ko-rKR/strings.xml | 19 ++------ .../src/main/res/values-night/strings.xml | 2 - .../src/main/res/values-nl-rNL/strings.xml | 19 ++------ .../src/main/res/values-pt-rBR/strings.xml | 19 ++------ .../src/main/res/values-pt-rPT/strings.xml | 19 ++------ .../src/main/res/values-si-rLK/strings.xml | 19 ++------ .../src/main/res/values-tr-rTR/strings.xml | 19 ++------ .../src/main/res/values-zh-rCN/strings.xml | 19 ++------ .../src/main/res/values-zh-rTW/strings.xml | 19 ++------ .../src/main/res/values/mode_settings.xml | 18 -------- androidApp/src/main/res/values/strings.xml | 19 ++------ androidApp/src/main/res/values/styles.xml | 2 - androidApp/src/main/res/xml/pref_main.xml | 7 +++ 31 files changed, 85 insertions(+), 391 deletions(-) delete mode 100644 androidApp/src/main/res/anim/slide_in_right.xml delete mode 100644 androidApp/src/main/res/anim/slide_out_left.xml delete mode 100644 androidApp/src/main/res/drawable/ic_bug_report_black_24dp.xml delete mode 100644 androidApp/src/main/res/drawable/ic_close_white_24dp.xml delete mode 100644 androidApp/src/main/res/drawable/ic_history_white_24dp.xml delete mode 100644 androidApp/src/main/res/drawable/ic_menu_refresh_white_24dp.xml diff --git a/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/HomeActivity.kt b/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/HomeActivity.kt index 2334679..1169a16 100644 --- a/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/HomeActivity.kt +++ b/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/HomeActivity.kt @@ -1,6 +1,7 @@ package bou.amine.apps.readerforselfossv2.android import android.content.Intent +import android.net.Uri import android.os.Bundle import android.view.Menu import android.view.MenuItem @@ -23,6 +24,7 @@ import bou.amine.apps.readerforselfossv2.android.adapters.ItemsAdapter import bou.amine.apps.readerforselfossv2.android.background.LoadingWorker import bou.amine.apps.readerforselfossv2.android.databinding.ActivityHomeBinding import bou.amine.apps.readerforselfossv2.android.fragments.FilterSheetFragment +import bou.amine.apps.readerforselfossv2.android.settings.SettingsActivity import bou.amine.apps.readerforselfossv2.android.utils.bottombar.maybeShow import bou.amine.apps.readerforselfossv2.android.utils.bottombar.removeBadge import bou.amine.apps.readerforselfossv2.model.SelfossModel @@ -299,45 +301,6 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener, DIAwar } } - // TODO CLEAN -// private fun initDrawer() { -// // TODO add to menu -// addStickyPrimaryItem(R.string.drawer_report_bug, R.drawable.ic_bug_report_black_24dp) { _, _, _ -> -// val browserIntent = -// Intent(Intent.ACTION_VIEW, Uri.parse(AppSettingsService.trackerUrl)) -// startActivity(browserIntent) -// false -// } -// addStickyPrimaryItem(R.string.title_activity_settings, R.drawable.ic_settings_black_24dp) { _, _, _ -> -// settingsLauncher.launch(Intent(this, SettingsActivity::class.java)) -// false -// } -// } -// -// private fun addStickyPrimaryItem(name: Int, icon: Int, clickListener: ((v: View?, item: IDrawerItem<*>, position: Int) -> Boolean)?) { -// // TODO CLEAN -// } -// -// private fun handleDrawerData(tags: List, sources: List) { -// // TODO add to menu -// binding.mainDrawer.itemAdapter.add( -// DividerDrawerItem(), -// PrimaryDrawerItem().apply { -// nameRes = R.string.action_about -// isSelectable = false -// iconRes = R.drawable.ic_info_outline_white_24dp -// isIconTinted = true -// onDrawerItemClickListener = { _,_,_ -> -// LibsBuilder() -// .withAboutIconShown(true) -// .withAboutVersionShown(true) -// .start(this@HomeActivity) -// false -// } -// } -// ) -// } - private fun reloadLayoutManager() { val currentManager = binding.recyclerView.layoutManager val layoutManager: RecyclerView.LayoutManager @@ -654,6 +617,10 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener, DIAwar this@HomeActivity.finish() return true } + R.id.action_settings -> { + settingsLauncher.launch(Intent(this, SettingsActivity::class.java)) + return true + } else -> return super.onOptionsItemSelected(item) } } diff --git a/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/settings/SettingsActivity.kt b/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/settings/SettingsActivity.kt index e5fc87c..3a50efb 100644 --- a/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/settings/SettingsActivity.kt +++ b/androidApp/src/main/java/bou/amine/apps/readerforselfossv2/android/settings/SettingsActivity.kt @@ -18,6 +18,7 @@ import bou.amine.apps.readerforselfossv2.android.R import bou.amine.apps.readerforselfossv2.android.databinding.ActivitySettingsBinding import bou.amine.apps.readerforselfossv2.android.sendSilentlyWithAcraWithName import bou.amine.apps.readerforselfossv2.service.AppSettingsService +import com.mikepenz.aboutlibraries.LibsBuilder import org.acra.ktx.sendSilentlyWithAcra import org.acra.ktx.sendWithAcra import org.kodein.di.DIAware @@ -109,6 +110,16 @@ class SettingsActivity : AppCompatActivity(), AppCompatDelegate.setDefaultNightMode(newValue.toString().toInt()) // ListPreference Only takes string-arrays ¯\_(ツ)_/¯ true } + + preferenceManager.findPreference("action_about")?.onPreferenceClickListener = Preference.OnPreferenceClickListener { _ -> + context?.let { + LibsBuilder() + .withAboutIconShown(true) + .withAboutVersionShown(true) + .start(it) + } + true + } } } diff --git a/androidApp/src/main/res/anim/slide_in_right.xml b/androidApp/src/main/res/anim/slide_in_right.xml deleted file mode 100644 index 3189c25..0000000 --- a/androidApp/src/main/res/anim/slide_in_right.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - \ No newline at end of file diff --git a/androidApp/src/main/res/anim/slide_out_left.xml b/androidApp/src/main/res/anim/slide_out_left.xml deleted file mode 100644 index 0ec7682..0000000 --- a/androidApp/src/main/res/anim/slide_out_left.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - \ No newline at end of file diff --git a/androidApp/src/main/res/drawable/ic_bug_report_black_24dp.xml b/androidApp/src/main/res/drawable/ic_bug_report_black_24dp.xml deleted file mode 100644 index 4d83902..0000000 --- a/androidApp/src/main/res/drawable/ic_bug_report_black_24dp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/androidApp/src/main/res/drawable/ic_close_white_24dp.xml b/androidApp/src/main/res/drawable/ic_close_white_24dp.xml deleted file mode 100644 index 0c8775c..0000000 --- a/androidApp/src/main/res/drawable/ic_close_white_24dp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/androidApp/src/main/res/drawable/ic_history_white_24dp.xml b/androidApp/src/main/res/drawable/ic_history_white_24dp.xml deleted file mode 100644 index de25eb4..0000000 --- a/androidApp/src/main/res/drawable/ic_history_white_24dp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/androidApp/src/main/res/drawable/ic_menu_refresh_white_24dp.xml b/androidApp/src/main/res/drawable/ic_menu_refresh_white_24dp.xml deleted file mode 100644 index cc2d1e0..0000000 --- a/androidApp/src/main/res/drawable/ic_menu_refresh_white_24dp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/androidApp/src/main/res/layout/filter_fragment.xml b/androidApp/src/main/res/layout/filter_fragment.xml index 03a6e26..7354edc 100644 --- a/androidApp/src/main/res/layout/filter_fragment.xml +++ b/androidApp/src/main/res/layout/filter_fragment.xml @@ -45,7 +45,7 @@ android:layout_height="wrap_content" android:layout_marginStart="24dp" android:layout_marginTop="16dp" - android:text="@string/drawer_item_tags" + android:text="@string/filter_item_tags" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> @@ -69,7 +69,7 @@ android:layout_height="wrap_content" android:layout_marginStart="24dp" android:layout_marginTop="24dp" - android:text="@string/drawer_item_hidden_tags" + android:text="@string/filter_item_hidden_tags" android:visibility="gone" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/tagsGroup" /> @@ -96,7 +96,7 @@ android:layout_height="wrap_content" android:layout_marginStart="24dp" android:layout_marginTop="24dp" - android:text="@string/drawer_item_sources" + android:text="@string/filter_item_sources" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/hiddenTagsGroup" /> diff --git a/androidApp/src/main/res/menu/home_menu.xml b/androidApp/src/main/res/menu/home_menu.xml index 73be4c9..8bb1f90 100644 --- a/androidApp/src/main/res/menu/home_menu.xml +++ b/androidApp/src/main/res/menu/home_menu.xml @@ -20,10 +20,15 @@ android:orderInCategory="2" app:showAsAction="ifRoom"/> + + "Autenticació (si és necessària)" "Pot ser que falti una \"/\" al final de l'url." "Nom d'usuari" - "Comparteix" "Llegeix-ho tot" "Desconnecta't" "Configuració" @@ -62,28 +61,19 @@ L\'alçada de les targetes s\'ajustarà al seu contingut L\'alçada de les targetes serà fixa Codi font - S\'ha produït un error en carregar les etiquetes - Filtres - Esborra - Etiquetes - Fonts - Edita - S\'està carregant… + Etiquetes + Fonts Cerca No es pot suprimir la font S\'ha produït un error en comunicar-se amb la instància de Selfoss. Si el problema persisteix, posa\'t en contacte amb mi. Temes - Predeterminat - Predeterminat/Fosc API de Selfoss Nombre d\'elements carregats Etiquetes ocultes Carrega articles en desplaçar Traducció L\'element URL no és vàlid. Estic intentant solucionar aquest problema perquè l\'aplicació no falli. - Informa d\'un error El nombre d\'elements ha de ser enter. - Més informació Obre al navegador Comparteix Es marcaran els articles com a llegits en lliscar el dit d\'un article a l\'altre. @@ -94,7 +84,7 @@ Aquesta acció marcarà els elements com a llegits. Marca com a llegit en lliscar el dit No es marcaran els articles com a llegits en lliscar el dit d\'un article a l\'altre. - Etiquetes ocultes + Etiquetes ocultes Marca com no llegit Sense connexió i memòria clau Els articles no es guardaran a la memòria del dispositiu i l\'aplicació no es podrà utilitzar sense connexió. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-de-rDE/strings.xml b/androidApp/src/main/res/values-de-rDE/strings.xml index f5c9846..2711913 100644 --- a/androidApp/src/main/res/values-de-rDE/strings.xml +++ b/androidApp/src/main/res/values-de-rDE/strings.xml @@ -10,7 +10,6 @@ "Anmeldung erforderlich?" "Ups. Du musst eventuell ein \"/\" am Ende der URL anhängen." "Benutzername" - "Teilen" "Alle gelesen" "Verbindung trennen" "Einstellungen" @@ -62,28 +61,22 @@ Kartenhöhe passt sich Inhalt an Kartenhöhe ist fix Quellcode - Fehler beim Laden der Tags… Filter leeren - Tags - Quellen - bearbeiten + Tags + Quellen Lade… Suche Can\'t delete the source… Beim Versuch deine Selfoss-Instanz zu erreichen ist ein Fehler aufgetreten. Solltet dieser Fehler bestehen bleiben, trete bitte mit mir in Kontakt. Designs - Standard - Standard (Dunkel) selfoss API Loaded items number Hidden Tags Load more articles on scroll Übersetzung The item url is invalid. I\'m looking into solving this issue so the app won\'t crash. - Melde einen Fehler The items number should be an integer. - Read more Im Browser öffnen Teilen Mark articles as read when swiping between articles. @@ -94,7 +87,7 @@ Dies wird alle Elemente als gelesen markieren. Beim Wischen als gelesen markieren Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Eintrag als ungelesen markieren Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +125,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-es-rES/strings.xml b/androidApp/src/main/res/values-es-rES/strings.xml index e5e496d..d3a9325 100644 --- a/androidApp/src/main/res/values-es-rES/strings.xml +++ b/androidApp/src/main/res/values-es-rES/strings.xml @@ -10,7 +10,6 @@ "Inicio de sesión requerido ?" "Oops. Puede que necesite añadir un \"/\" al final de la url." "Nombre de usuario" - "Compartir" "Leer todo" "Desconectar" "Configuración" @@ -62,28 +61,19 @@ Altura de tarjetas se ajustará a su contenido Se fijará la altura de la tarjeta Código fuente - Error al cargar etiquetas… - Filtros - limpiar - Etiquetas - Fuentes - editar - Cargando… + Etiquetas + Fuentes Buscar No se puede eliminar la fuente… Hubo un problema al intentar comunicarse con su instancia de Selfoss. Si el problema persiste, póngase en contacto conmigo. Temas - Predeterminado - Predeterminado/Oscuro Api de Selfoss Número de artículos cargados Etiquetas ocultas Cargar más artículos en desplazamiento Traducción La url del elemento no es válida. Estoy buscando resolver este problema para que la aplicación no colapse. - Reportar un error El número de artículos debe ser un número entero. - Leer más Abrir en el navegador Compartir Marcar artículos como leidos al desplazarse entre ellos. @@ -94,7 +84,7 @@ Esto marcará todos los artículos como leídos. Marcar artículos como leídos al deslizar con el dedo hacia los lados No marcar artículos como leídos al deslizar con el dedo hacia los lados. - Etiquetas ocultas + Etiquetas ocultas Marcar artículo como no leído Sin conexión y caché Los artículos no se guardarán en la memoria del dispositivo y la aplicación no se podrá utilizar sin conexión. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-fa-rIR/strings.xml b/androidApp/src/main/res/values-fa-rIR/strings.xml index f79dc97..9dc873d 100644 --- a/androidApp/src/main/res/values-fa-rIR/strings.xml +++ b/androidApp/src/main/res/values-fa-rIR/strings.xml @@ -10,7 +10,6 @@ "Login required ?" "Oops. You may need to add a \"/\" at the end of the url." "Username" - "Share" "Read all" "Disconnect" "Settings" @@ -62,28 +61,19 @@ Cards height will adjust to its content Card height will be fixed Source code - Error loading tags… - Filters - clear - Tags - Sources - edit - Loading … + Tags + Sources Search Can\'t delete the source… There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me. Themes - Default - Default/Dark Selfoss Api Loaded items number Hidden Tags Load more articles on scroll Translation The item url is invalid. I\'m looking into solving this issue so the app won\'t crash. - Report a bug The items number should be an integer. - Read more Open in browser Share Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-fr-rFR/strings.xml b/androidApp/src/main/res/values-fr-rFR/strings.xml index 590209d..00da8f5 100644 --- a/androidApp/src/main/res/values-fr-rFR/strings.xml +++ b/androidApp/src/main/res/values-fr-rFR/strings.xml @@ -10,7 +10,6 @@ "Avec login ?" "Petit souci. Il manque peut-être un / à la fin ?" "Utilisateur" - "Partager" "Tout lire" "Déconnecter" "Paramètres" @@ -62,28 +61,19 @@ La taille de la carte s\'adaptera au contenu La taille de la carte sera fixe Code source - Erreur lors du chargement des tags… - Filtres - raz - Tags - Sources - éditer - Chargement … + Tags + Sources Rechercher Impossible de supprimer la source… Il y a eu un souci lors de la communication avec votre instance Selfoss. Si le problèmes persiste, contactez-moi pour trouver une solution. Thèmes - Par défaut - Par défaut/Foncé Api Selfoss Nombre d\'articles chargés Tags Cachés Charger plus d\'articles au scroll Traduction L’url de l’élément n’est pas valide. En attendant la résolution du problème, le lien ne s\'ouvrira pas. - Signaler un bug Le nombre d\'articles doit être un entier. - Lire plus Ouvrir Partager Marquer les articles comme lus à la navigation dans le lecteur d\'article. @@ -94,7 +84,7 @@ Marquer tous les éléments comme lus ? Marquer comme lu à la navigation. Ne pas marquer les articles comme lus à la navigation. - Tags Cachés + Tags Cachés Marquer l\'article comme non lu Hors ligne et cache Les articles ne seront pas enregistrés et l\'application ne sera pas utilisable hors ligne. @@ -132,13 +122,10 @@ Thème sombre Utiliser les paramètres système Thème clair - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-gl-rES/strings.xml b/androidApp/src/main/res/values-gl-rES/strings.xml index c56870f..023b280 100644 --- a/androidApp/src/main/res/values-gl-rES/strings.xml +++ b/androidApp/src/main/res/values-gl-rES/strings.xml @@ -10,7 +10,6 @@ "É preciso iniciar sesión?" "Ups! Pode que precises engadir un \"/\" o final da URL." "Nome de usuario" - "Compartir" "Ler todos" "Desconectar" "Axustes" @@ -62,28 +61,19 @@ A altura das tarxetas axustarase ao seu contido A altura das tarxetas será fixa Código fonte - Produciuse un erro ao cargar as etiquetas… - Filtros - limpar - Etiquetas - Fontes - editar - Cargando… + Etiquetas + Fontes Procurar Non se puido eliminar a fonte… Houno unha incidencia ao tratar de comunicarse coa túa instancia de Selfoss. Se o problema persiste, prégolle que se poña en contacto conmigo. Temas - Predeterminado - Predeterminado/Escuro API de Selfoss Número de elementos cargados Etiquetas ocultas Cargar máis artigos ao desprazarse Traducción A URL do elemento non é válida. Estou tratando de solucionar isto pra que a aplicación non falle. - Informar dun erro O número de elementos debería ser un enteiro. - Ler máis Abrir no navegador Compartir Marcar artigos como lidos cando se desliza o dedo dun a outro. @@ -94,7 +84,7 @@ Isto marcara todos os elementos como lidos. Marcar artigos como lidos ao deslizar co dedo cara os lados Non marcar artigos como lidos ao deslizar co dedo cara os lados. - Etiquetas ocultas + Etiquetas ocultas Marcar artículo como non lido Sen conexión e caché Os artigos non se gardaran na memoria do dispositivo e non se poderá utilizar a aplicación sen conexión. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-in-rID/strings.xml b/androidApp/src/main/res/values-in-rID/strings.xml index 8bd35bd..75dd5cf 100644 --- a/androidApp/src/main/res/values-in-rID/strings.xml +++ b/androidApp/src/main/res/values-in-rID/strings.xml @@ -10,7 +10,6 @@ "Harus masuk?" "Ups. Anda mungkin harus menambahkan \"/\" di akhir url." "Nama pengguna" - "Bagikan" "Baca semua" "Putuskan sambungan" "Pengaturan" @@ -62,28 +61,19 @@ Tinggi kartu akan disesuaikan dengan konten Ukuran kartu akan tetap Kode sumber - Kesalahan saat memuat tag… - Filter - kosongkan - Tag - Sumber - suntung - Memuat … + Tag + Sumber Cari Tidak dapat menghapus sumber… Ada masalah saat berkomunikasi dengan Selfoss Anda. Jika masalah berlanjut, tolong hubungi saya. Tema - Bawaan - Bawaan/Gelap Selfoss Api Item nomor dimuat Hidden Tags Muat lebih banyak artikel saat membalik halaman Terjemahan Alamat tautan proyek tidak valid. Saya mencoba memecahkan masalah ini untuk menghindari aplikasi berhenti. - Laporkan bug Jumlah item harus berupa bilangan bulat. - Baca lebih lanjut Buka di peramban Bagikan Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-it-rIT/strings.xml b/androidApp/src/main/res/values-it-rIT/strings.xml index 7449dc2..22c0ec5 100644 --- a/androidApp/src/main/res/values-it-rIT/strings.xml +++ b/androidApp/src/main/res/values-it-rIT/strings.xml @@ -10,7 +10,6 @@ "È richiesto l'accesso?" "Oops. Potrebbe essere necessario aggiungere un \"/\" alla fine dell'url." "Nome utente" - "Condividi" "Segna tutte come lette" "Scollegati" "Impostazioni" @@ -62,28 +61,19 @@ Cards height will adjust to its content Card height will be fixed Codice sorgente - Errore nel caricamento dei tag… - Filtri - cancella - Tags - Fonti - modifica - Caricamento… + Tags + Fonti Cerca Non è possibile eliminare la fonte… There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me. Temi - Predefinito - Predefinito (Scuro) Api di Selfoss Numero di elementi caricati Tag nascosti Load more articles on scroll Traduzioni The item url is invalid. I\'m looking into solving this issue so the app won\'t crash. - Segnala un bug The items number should be an integer. - Read more Open in browser Share Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Segna come non letto Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-ko-rKR/strings.xml b/androidApp/src/main/res/values-ko-rKR/strings.xml index e62f637..e220e24 100644 --- a/androidApp/src/main/res/values-ko-rKR/strings.xml +++ b/androidApp/src/main/res/values-ko-rKR/strings.xml @@ -10,7 +10,6 @@ "로그인이 필요합니까?" "죄송합니다. Url의 끝에 \"/\"를 추가할 필요가 있습니다." "사용자 이름" - "공유" "모두 읽기" "연결 해제" "설정" @@ -62,28 +61,19 @@ Cards height will adjust to its content Card height will be fixed Source code - Error loading tags… - Filters - clear - Tags - Sources - edit - Loading … + Tags + Sources Search Can\'t delete the source… There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me. Themes - Default - Default/Dark Selfoss Api Loaded items number Hidden Tags Load more articles on scroll Translation The item url is invalid. I\'m looking into solving this issue so the app won\'t crash. - Report a bug The items number should be an integer. - Read more Open in browser Share Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-night/strings.xml b/androidApp/src/main/res/values-night/strings.xml index 8123eec..3208ea8 100644 --- a/androidApp/src/main/res/values-night/strings.xml +++ b/androidApp/src/main/res/values-night/strings.xml @@ -6,6 +6,4 @@ A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources \ No newline at end of file diff --git a/androidApp/src/main/res/values-nl-rNL/strings.xml b/androidApp/src/main/res/values-nl-rNL/strings.xml index da0255a..3b79cd4 100644 --- a/androidApp/src/main/res/values-nl-rNL/strings.xml +++ b/androidApp/src/main/res/values-nl-rNL/strings.xml @@ -10,7 +10,6 @@ "Authenticatie vereist?" "Oeps, ben je soms de \"/\" vergeten aan het eind?" "Gebruikersnaam" - "Delen" "Alles lezen" "Verbinding verbreken" "Instellingen" @@ -62,28 +61,19 @@ Hoogte aanpassen aan de hand van kaartinhoud Vaste hoogte Broncode - Fout bij het laden van tags… - Filters - wissen - Tags - Bronnen - bewerken - Bezig met laden … + Tags + Bronnen Zoeken Kan de bron niet verwijderen… Er was een probleem bij het communiceren met uw Selfoss Instance. Als het probleem blijft, neem dan contact met mij op. Thema \'s - Standaard - Standaard/Donker Selfoss Api Geladen items nummer Hidden Tags Laad meer artikelen door te bladeren Vertaling De URL is ongeldig. Ik probeer dit probleem op te lossen, zodat de toepassing niet wordt afgesloten. - Een fout melden Het aantal items moet een geheel getal zijn. - Lees meer Openen in browser Delen Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-pt-rBR/strings.xml b/androidApp/src/main/res/values-pt-rBR/strings.xml index f2c12e1..0c92a87 100644 --- a/androidApp/src/main/res/values-pt-rBR/strings.xml +++ b/androidApp/src/main/res/values-pt-rBR/strings.xml @@ -10,7 +10,6 @@ "É necessário o login ?" "Oops. Talvez você precise adicionar uma \"/\" no final da url." "Usuário" - "Compartilhar" "Ler todos" "Desconectar" "Configurações" @@ -62,28 +61,19 @@ Cards com altura ajustáveis de acordo com o conteúdo Cards com altura de tamanho fixo Código fonte - Erro ao carregar as tags… - Filtros - limpar - Tags - Fontes - editar - Carregando … + Tags + Fontes Procurar Não foi possível apagar a fonte… Houve um problema ao tentar se comunicar com o seu Selfoss. Se o problema persistir, entre em contato comigo. Temas - Padrão - Padrão/Escuro Selfoss Api Quantidade de itens carregados Hidden Tags Carregar mais artigos ao realizar o scroll Traduções A url está inválida. Estou tentando resolver esse problema para que o aplicativo não encerre. - Reportar erro O número dos itens deve ser um número inteiro. - Leia mais Abrir no navegador Compartilhar Se esta configuração estiver ativada, os artigos serão marcados como lidos ao deslizar para a esquerda e para a direita no leitor do artigo. @@ -94,7 +84,7 @@ Isso marcará todos os itens como lidos. Marcar Como Lida ao Abrir Não marca artigos como lido quando abrir. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-pt-rPT/strings.xml b/androidApp/src/main/res/values-pt-rPT/strings.xml index 8883d04..d854673 100644 --- a/androidApp/src/main/res/values-pt-rPT/strings.xml +++ b/androidApp/src/main/res/values-pt-rPT/strings.xml @@ -10,7 +10,6 @@ "É necessário fazer login?" "Uups. Você pode precisar adicionar uma \"/\" no final da url." "Nome do usuário" - "Compartilhar" "Ler tudo" "Desligar" "Configurações" @@ -62,28 +61,19 @@ Altura de cartas irá ajustar ao seu conteúdo Altura do cartão será corrigida Código fonte - Erro ao carregar etiquetas… - Filtros - limpar - Etiquetas - Fontes - editar - A carregar… + Etiquetas + Fontes Buscar Não é possível excluir a fonte… Houve um problema ao tentar se comunicar com sua instância de Selfoss. Se o problema persistir, por favor entre em contato comigo. Temas - Predefinição - Padrão/escuro Api de Selfoss Número de itens carregados Hidden Tags Carregar mais artigos no pergaminho Tradução A url do item é inválido. Eu estou olhando para resolver esta questão, para que o app não vai falhar. - Reportar falha O número de itens deve ser um número inteiro. - Ler mais Abrir no browser Compartilhar Artigos de marca como lida quando passar entre artigos. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-si-rLK/strings.xml b/androidApp/src/main/res/values-si-rLK/strings.xml index 2c7081f..6da88a1 100644 --- a/androidApp/src/main/res/values-si-rLK/strings.xml +++ b/androidApp/src/main/res/values-si-rLK/strings.xml @@ -10,7 +10,6 @@ "Login required ?" "Oops. You may need to add a \"/\" at the end of the url." "පරිශීලක නාමය" - "Share" "Read all" "Disconnect" "සැකසුම්" @@ -62,28 +61,19 @@ Cards height will adjust to its content Card height will be fixed Source code - Error loading tags… - Filters - clear - Tags - Sources - edit - Loading … + Tags + Sources Search Can\'t delete the source… There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me. Themes - Default - Default/Dark Selfoss Api Loaded items number Hidden Tags Load more articles on scroll Translation The item url is invalid. I\'m looking into solving this issue so the app won\'t crash. - Report a bug The items number should be an integer. - Read more Open in browser Share Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-tr-rTR/strings.xml b/androidApp/src/main/res/values-tr-rTR/strings.xml index b29e0c4..7d06c8c 100644 --- a/androidApp/src/main/res/values-tr-rTR/strings.xml +++ b/androidApp/src/main/res/values-tr-rTR/strings.xml @@ -10,7 +10,6 @@ "Kullanıcı Girişi Gerekli?" "Oops. Url'nin sonuna \"/\" eklemek gerekebilir." "Kullanıcı adı" - "Paylaş" "Tümünü oku" "Bağlantıyı kes" "Ayarlar" @@ -62,28 +61,19 @@ Kartların yüksekliği içeriğine göre ayarlanır Kart yüksekliği sabit olacak Kaynak kodu - Etiketler yükleme hatası… - Filtreler - temizle - Etiketler - Kaynaklar - düzenle - Yükleniyor… + Etiketler + Kaynaklar Ara Kaynak silinemiyor… Selfoss Örneğinizle iletişim kurmaya çalışırken bir sorun oluştu. Sorun devam ederse, lütfen benimle iletişime geçin. Temalar - Varsayılan - Varsayılan/koyu Selfoss Uygulaması Yüklenen öğe numarası Hidden Tags Kaydırma üzerine daha fazla makale yükleyin Çeviri Öğe url geçersiz. Uygulama çökmeyeceği için bu sorunu çözmeye çalışıyorum. - Hata bildir Öğe sayısı bir tamsayı olmalıdır. - Daha fazlasını görüntüle Tarayıcıda aç Paylaş Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-zh-rCN/strings.xml b/androidApp/src/main/res/values-zh-rCN/strings.xml index ce78ba2..d7ef71b 100644 --- a/androidApp/src/main/res/values-zh-rCN/strings.xml +++ b/androidApp/src/main/res/values-zh-rCN/strings.xml @@ -10,7 +10,6 @@ "需要登录?" "哎呀。您可能需要在网址的末尾添加一个 \"/\"。" "用户名" - "分享" "全部阅读" "断开连接" "设置" @@ -62,28 +61,19 @@ 卡片高度将根据内容调整 卡片高度将被固定 源代码 - 加载标记时出错..。 - 搜索条件 - 清空 - 标签 - 来源 - 编辑 - 正在载入… + 标签 + 来源 搜索 无法删除数据源… 与您的 Selfoss 通信时出现问题。如果问题一直存在,请与我联系。 主题 - 默认​​​​​ - 默认值/暗 塞尔福斯 Api 已加载项目编号 隐藏标签 翻页时载入更多文章 翻译 项目链接地址无效。我正在设法解决这个问题,以避免应用程序崩溃。 - 报告错误 项目数应为整数。 - 阅读更多 在浏览器中打开 分享 切换文章时将文章标记为已读。 @@ -94,7 +84,7 @@ 这将标记所有项目为已读。 滑动时标为已读 滑动时不标记文章为已读 - 隐藏标签 + 隐藏标签 标记条目为未读 离线和缓存 文章不会被保存到设备内存,应用程序在离线时将无法阅读它们 @@ -132,13 +122,10 @@ 深色模式 遵循系统设置 浅色模式 - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values-zh-rTW/strings.xml b/androidApp/src/main/res/values-zh-rTW/strings.xml index 4a73bea..480e0bd 100644 --- a/androidApp/src/main/res/values-zh-rTW/strings.xml +++ b/androidApp/src/main/res/values-zh-rTW/strings.xml @@ -10,7 +10,6 @@ "需要登入?" "哎呀。您可能需要在网址的末尾添加一个 \"/\"。" "使用者名稱" - "分享" "全部阅读" "断开连接" "设置" @@ -62,28 +61,19 @@ 卡片高度将根据内容调整 卡片高度将被固定 源代码 - 加载标记时出错..。 - 搜索条件 - 清空 - 标签 - 来源 - 编辑 - 正在载入… + 标签 + 来源 搜索 无法删除数据源… 与您的 Selfoss 通信时出现问题。如果问题一直存在,请与我联系。 主题 - 默认​​​​​ - 默认值/暗 塞尔福斯 Api 已加载项目编号 Hidden Tags 翻页时载入更多文章 翻译 项目链接地址无效。我正在设法解决这个问题,以避免应用程序崩溃。 - 报告错误 项目数应为整数。 - 阅读更多 在浏览器中打开 分享 Mark articles as read when swiping between articles. @@ -94,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -132,13 +122,10 @@ Dark mode Follow the system setting Light mode - Error loading sources… Enable analytics The app does not share any personal data about you. A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values/mode_settings.xml b/androidApp/src/main/res/values/mode_settings.xml index f377c76..4b99ab1 100644 --- a/androidApp/src/main/res/values/mode_settings.xml +++ b/androidApp/src/main/res/values/mode_settings.xml @@ -11,22 +11,4 @@ 2 -1 - - - Male - Female - - - - "usenglishmale" - "usenglishfemale" - "ukenglishmale" - "ukenglishfemale" - "eurfrenchmale" - "eurfrenchfemale" - "eurspanishmale" - "eurspanishfemale" - "euritalianmale" - "euritalianfemale" - \ No newline at end of file diff --git a/androidApp/src/main/res/values/strings.xml b/androidApp/src/main/res/values/strings.xml index 9622851..6cf3322 100644 --- a/androidApp/src/main/res/values/strings.xml +++ b/androidApp/src/main/res/values/strings.xml @@ -9,7 +9,6 @@ "Login required ?" "Oops. You may need to add a \"/\" at the end of the url." "Username" - "Share" "Read all" "Disconnect" "Settings" @@ -62,29 +61,19 @@ Cards height will adjust to its content Card height will be fixed Source code - Error loading tags… - Error loading sources… - Filters - clear - Tags - Sources - edit - Loading … + Tags + Sources Search Can\'t delete the source… There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me. Themes - Default - Default/Dark Selfoss Api Loaded items number Hidden Tags Load more articles on scroll Translation The item url is invalid. I\'m looking into solving this issue so the app won\'t crash. - Report a bug The items number should be an integer. - Read more Open in browser Share Mark articles as read when swiping between articles. @@ -95,7 +84,7 @@ This will mark all the items as read. Mark as read on swipe Don\'t mark articles as read when swiping. - Hidden Tags + Hidden Tags Mark item as unread Offline and cache Articles won\'t be saved to the device memory, and the app won\'t be usable offline. @@ -142,6 +131,4 @@ A crash occured. Sending the details to the developper. "Disable automatic bug reporting. " Filters - Tags - Sources diff --git a/androidApp/src/main/res/values/styles.xml b/androidApp/src/main/res/values/styles.xml index 57db461..22e1a4b 100644 --- a/androidApp/src/main/res/values/styles.xml +++ b/androidApp/src/main/res/values/styles.xml @@ -25,7 +25,5 @@ @color/white @color/white @color/white - diff --git a/androidApp/src/main/res/xml/pref_main.xml b/androidApp/src/main/res/xml/pref_main.xml index 0e8088f..8bb2b7d 100644 --- a/androidApp/src/main/res/xml/pref_main.xml +++ b/androidApp/src/main/res/xml/pref_main.xml @@ -51,4 +51,11 @@ android:title="@string/pref_switch_disable_acra" android:icon="@drawable/ic_baseline_bug_report_24"/> + + + + \ No newline at end of file