+} else {
+ ArrayList(this)
}
\ No newline at end of file
diff --git a/app/src/main/java/org/koitharu/kotatsu/utils/ext/CommonExt.kt b/app/src/main/java/org/koitharu/kotatsu/utils/ext/CommonExt.kt
index 7e104e0f4..67ca43114 100644
--- a/app/src/main/java/org/koitharu/kotatsu/utils/ext/CommonExt.kt
+++ b/app/src/main/java/org/koitharu/kotatsu/utils/ext/CommonExt.kt
@@ -2,14 +2,15 @@ package org.koitharu.kotatsu.utils.ext
import android.content.res.Resources
import android.util.Log
+import java.io.FileNotFoundException
+import java.net.SocketTimeoutException
import org.koitharu.kotatsu.R
import org.koitharu.kotatsu.core.exceptions.CloudFlareProtectedException
import org.koitharu.kotatsu.core.exceptions.EmptyHistoryException
import org.koitharu.kotatsu.core.exceptions.UnsupportedFileException
import org.koitharu.kotatsu.core.exceptions.WrongPasswordException
import org.koitharu.kotatsu.parsers.exception.AuthRequiredException
-import java.io.FileNotFoundException
-import java.net.SocketTimeoutException
+import org.koitharu.kotatsu.parsers.util.format
fun Throwable.getDisplayMessage(resources: Resources) = when (this) {
is AuthRequiredException -> resources.getString(R.string.auth_required)
diff --git a/app/src/main/java/org/koitharu/kotatsu/utils/ext/PrimitiveExt.kt b/app/src/main/java/org/koitharu/kotatsu/utils/ext/PrimitiveExt.kt
index 14e7cbb9d..a8359f5a1 100644
--- a/app/src/main/java/org/koitharu/kotatsu/utils/ext/PrimitiveExt.kt
+++ b/app/src/main/java/org/koitharu/kotatsu/utils/ext/PrimitiveExt.kt
@@ -1,27 +1,3 @@
package org.koitharu.kotatsu.utils.ext
-import java.text.DecimalFormat
-import java.text.NumberFormat
-import java.util.*
-
-fun Number.format(decimals: Int = 0, decPoint: Char = '.', thousandsSep: Char? = ' '): String {
- val formatter = NumberFormat.getInstance(Locale.US) as DecimalFormat
- val symbols = formatter.decimalFormatSymbols
- if (thousandsSep != null) {
- symbols.groupingSeparator = thousandsSep
- formatter.isGroupingUsed = true
- } else {
- formatter.isGroupingUsed = false
- }
- symbols.decimalSeparator = decPoint
- formatter.decimalFormatSymbols = symbols
- formatter.minimumFractionDigits = decimals
- formatter.maximumFractionDigits = decimals
- return when (this) {
- is Float,
- is Double -> formatter.format(this.toDouble())
- else -> formatter.format(this.toLong())
- }
-}
-
inline fun Int.ifZero(defaultValue: () -> Int): Int = if (this == 0) defaultValue() else this
\ No newline at end of file
diff --git a/app/src/main/res/drawable/ic_appearance.xml b/app/src/main/res/drawable/ic_appearance.xml
new file mode 100644
index 000000000..b5aa6519c
--- /dev/null
+++ b/app/src/main/res/drawable/ic_appearance.xml
@@ -0,0 +1,12 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/ic_copyleft.xml b/app/src/main/res/drawable/ic_copyleft.xml
deleted file mode 100644
index 47ac8bbca..000000000
--- a/app/src/main/res/drawable/ic_copyleft.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
diff --git a/app/src/main/res/layout-w600dp/activity_settings.xml b/app/src/main/res/layout-w600dp/activity_settings.xml
index c381476a0..642380efc 100644
--- a/app/src/main/res/layout-w600dp/activity_settings.xml
+++ b/app/src/main/res/layout-w600dp/activity_settings.xml
@@ -1,5 +1,5 @@
-
+ app:layout_constraintTop_toTopOf="parent"
+ app:liftOnScroll="false">
-
+
-
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_settings_simple.xml b/app/src/main/res/layout/activity_settings_simple.xml
deleted file mode 100644
index fa9c5d762..000000000
--- a/app/src/main/res/layout/activity_settings_simple.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_copyright.xml b/app/src/main/res/layout/fragment_copyright.xml
deleted file mode 100644
index fe9c3e4e1..000000000
--- a/app/src/main/res/layout/fragment_copyright.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/preference_dialog_multiautocompletetextview.xml b/app/src/main/res/layout/preference_dialog_multiautocompletetextview.xml
new file mode 100644
index 000000000..bcf067dc3
--- /dev/null
+++ b/app/src/main/res/layout/preference_dialog_multiautocompletetextview.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/pref_slider.xml b/app/src/main/res/layout/preference_slider.xml
similarity index 100%
rename from app/src/main/res/layout/pref_slider.xml
rename to app/src/main/res/layout/preference_slider.xml
diff --git a/app/src/main/res/raw/copyright b/app/src/main/res/raw/copyright
deleted file mode 100644
index bf4212730..000000000
--- a/app/src/main/res/raw/copyright
+++ /dev/null
@@ -1,24 +0,0 @@
-Kotatsu is a free and open source manga reader for Android.
-Copyright (C) 2020 by Koitharu
-This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-You should have received a copy of the GNU General Public License
- along with this program. If not, see http://www.gnu.org/licenses/.
-Open Source Licenses
-
\ No newline at end of file
diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml
index 0f0e6134e..0e8ab0bad 100644
--- a/app/src/main/res/values-be/strings.xml
+++ b/app/src/main/res/values-be/strings.xml
@@ -217,13 +217,7 @@
Гэтая глава адсутнічае на вашай прыладзе. Спампуйце ціпрачытайце яе онлайн.
На дадзены момант няма актыўных спамповак
У чарзе
- Ліцэнзія
- Аўтарскія правы і ліцэнзіі
- Гэтыя людзі робяць Kotatsu лепш
- Падзякі
- Калі вам падабаецца гэтая праграма, вы можаце дапамагчы фінансава з дапамогай ЮMoney (был. Яндекс.Деньги)
- Падтрымаць распрацоўшчыка
- Тэма на 4PDA
+ Тэма на 4PDA
Зваротная сувязь
Дапамагчы з перакладам праграмы
Пераклад
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 966ee5667..d25f7be80 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -217,13 +217,7 @@
Dieses Kapitel fehlt auf deinem Gerät. Lade ihn herunter oder lese ihn online.
Zurzeit sind keine aktiven Datenübertragungen vorhanden
In Warteschlange
- Wenn diese Anwendung dir gefällt, kannst du über Yoomoney (Yandex.Money) finanziell helfen
- Lizenz
- Urheberrecht und Lizenzen
- Diese Leute machen Kotatsu besser
- Danksagung
- Den Entwickler unterstützen
- Thema auf 4PDA
+ Thema auf 4PDA
Rückmeldung
Übersetzung
Diese Anwendung übersetzen
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 1b64f874e..44bb53494 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -205,14 +205,8 @@
Encuentra qué leer en el menú lateral.
Lo que leas se mostrará aquí
Está un poco vacío aquí…
- Agradecimientos
- Si te gusta esta aplicación, puedes ayudar económicamente a través de Yoomoney (ex. Yandex.Money)
- Apoyar al desarrollador
- Buscar sólo en %s
- Todas estas personas hicieron que Kotatsu fuera mejor
- Licencia
- Derechos de autor y licencias
- Falta un capítulo
+ Buscar sólo en %s
+ Falta un capítulo
Traducir esta aplicación
Comentarios
Traducción
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 022d894ce..69ef71847 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -4,13 +4,7 @@
Tyylilajit
%s -valtuutusta ei tueta
Valtuutus valmis
- Lisenssi
- Tekijänoikeudet ja lisenssit
- Nämä ihmiset tekevät Kotatsusta paremman
- Kiitokset
- Jos pidät tästä sovelluksesta, voit auttaa taloudellisesti Yoomoneyn (ent. Yandex.Money) kautta
- Tue kehittäjää
- Aihe 4PDA: ssa
+ Aihe 4PDA: ssa
Palaute
Käännös
Käännä tämä sovellus
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index a20bce18d..c76fb6027 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -217,13 +217,7 @@
Téléchargez ou lisez ce chapitre manquant en ligne.
Aucun téléchargement actif
En file d\'attente
- Si vous aimez cette application, vous pouvez envoyer de l\'argent via Yoomoney (ex. Yandex.Money)
- Soutenir le concepteur
- Licence
- Droits d\'auteur et licences
- Ces personnes ont toutes rendu Kotatsu meilleur
- Remerciements
- Sujet sur 4PDA
+ Sujet sur 4PDA
Remarques
Traduction
Traduire cette application
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 4245f4355..a1586ed71 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -217,13 +217,7 @@
Questo capitolo manca sul tuo dispositivo. Scaricalo o leggilo in linea.
Attualmente non ci sono scaricamenti attivi
In coda
- Licenza
- Diritti d\'autore e licenze
- Queste persone rendono Kotatsu migliore
- Ringraziamenti
- Se ti piace questa applicazione, puoi aiutare finanziariamente via Yoomoney (Yandex.Money)
- Sostieni lo sviluppatore
- Argomento su 4PDA
+ Argomento su 4PDA
Commenti
Traduzione
Traduci questa applicazione
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index dbf16817d..4e3fdfcd5 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -163,10 +163,7 @@
右から左(←)の読書を好む
フィードバック
4PDAに関する話題
- 開発者をサポートします(Yoomoneyが開きます)
- このアプリが気に入ったら、Yoomoney(Yandex.Moneyなど)から開発者をサポートできます
- ライセンス
- 承認済み
+ 承認済み
%sへのログインはサポートされていません
完成
進行中
@@ -212,12 +209,10 @@
このアプリを翻訳
全てのデータが復元されました
復元
- 感謝の気持ち
- 準備中…
+ 準備中…
開始時に維持
バックアップと復元
- 著作権とライセンス
- リバース
+ リバース
選択した構成はこの漫画のために記憶されます
クッキーを削除
GitHubでissueを作成する(GitHubのアカウントが必要です)
@@ -235,8 +230,7 @@
スケールモード
名前を入力する必要があります
今日
- この人達のお陰でKotatsuがより良くなりました
- Kotatsuを翻訳する(Weblateのサイトに移動します)
+ Kotatsuを翻訳する(Weblateのサイトに移動します)
次のページ
サイレント
サインイン
diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml
index 04a7d2dd5..74c07b980 100644
--- a/app/src/main/res/values-nb-rNO/strings.xml
+++ b/app/src/main/res/values-nb-rNO/strings.xml
@@ -223,13 +223,7 @@
Oversettelse
Tilbakemelding
Emne på 4PDA
- Støtt utvikleren
- Hvis du liker programmet kan du kronerulle det på Yoomoney (tidligere Yandex.Money)
- Takk rettes til
- Folk som gjorde Kotatsu enda bedre
- Opphavsrett og lisenser
- Lisens
- Identitetsbekreftet
+ Identitetsbekreftet
Innlogging på %s støttes ikke
Du vil bli utlogget fra alle kilder
Sjangere
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index afa68d7a0..25bc9f483 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -183,12 +183,7 @@
Tradução
Comentar
Tópico no 4PDA
- Apoie o desenvolvedor
- Se você gosta deste aplicativo, você pode enviar dinheiro através do Yoomoney (ex. Yandex.Money)
- Gratidão
- Todas essas pessoas tornaram o Kotatsu melhor
- Licença
- Autorizado
+ Autorizado
O login em %s não é suportado
Você será desconectado de todas as fontes
Gêneros
@@ -266,8 +261,7 @@
Os dados foram restaurados, mas há erros
Criar problema no GitHub
Arquivo não encontrado
- Direitos autorais e licenças
- Localizar capítulo
+ Localizar capítulo
Não há capítulos neste mangá
%1$s%%
\ No newline at end of file
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index 24d687be3..0f0d99fc0 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -185,13 +185,7 @@
Traduzir esta aplicação
Comentar
Tópico no 4PDA
- Apoiar o desenvolvedor
- Se você gosta deste aplicativo, você pode enviar dinheiro através do Yoomoney (ex. Yandex.Money)
- Agradecimentos
- Todas essas pessoas tornaram o Kotatsu melhor
- Direitos de autor e licenças
- Licença
- Baixe ou leia este capítulo perdido online.
+ Baixe ou leia este capítulo perdido online.
O capítulo está em falta
Autorizado
O login em %s não é suportado
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 4801b3498..6a432f53a 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -220,13 +220,7 @@
Перевод
Тема на 4PDA
Обратная связь
- Поддержать разработчика
- Если вам нравится это приложение, вы можете помочь финансово с помощью ЮMoney (бывш. Яндекс.Деньги)
- Благодарности
- Все эти люди сделали Kotatsu лучше
- Авторские права и лицензии
- Лицензия
- Авторизация выполнена
+ Авторизация выполнена
Вход в %s не поддерживается
Вы выйдете из всех источников
Жанры
@@ -269,4 +263,9 @@
Разные языки
Найти главу
В этой манге нет глав
+ Оформление
+ Контент
+ Обновление рекомендаций
+ Исключить жанры
+ Укажите жанры, которые Вы не хотите видеть в рекомендациях
\ No newline at end of file
diff --git a/app/src/main/res/values-sw360dp/bools.xml b/app/src/main/res/values-sw360dp/bools.xml
new file mode 100644
index 000000000..927afe2f8
--- /dev/null
+++ b/app/src/main/res/values-sw360dp/bools.xml
@@ -0,0 +1,6 @@
+
+
+
+ false
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index c9154f6a5..eb03a51d6 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -131,8 +131,7 @@
Yedekten geri yükle
Güncelle
Oturum aç
- Lisans
- Bitti
+ Bitti
Hakkında
Bu içeriği görüntülemek için oturum açın
Onayla
@@ -185,9 +184,7 @@
Çeviri
Yalnızca %s içinde ara
4PDA\'daki konu
- Teşekkürler
- Tüm bu insanlar Kotatsu\'yu daha iyi hale getirdi
- Devam ediyor
+ Devam ediyor
Tüm kaynaklardaki oturumunuz kapatılacak
Kullanılan kaynaklar
Kullanılabilir kaynaklar
@@ -226,16 +223,13 @@
CAPTCHA gerekli
Tüm çerezler kaldırıldı
Seçilen yapılandırma bu manga için hatırlanacak
- Bu uygulamayı beğendiyseniz Yoomoney (eski Yandex.Money) üzerinden para gönderebilirsiniz
- Tüm güncelleme geçmişi kalıcı olarak silinsin mi\?
+ Tüm güncelleme geçmişi kalıcı olarak silinsin mi\?
…ve %1$d daha fazlası
Uygulamayı başlatmak için bir parola girin
Tüm son arama sorguları kalıcı olarak kaldırılsın mı\?
Geri bildirim
Yedek kaydedildi
- Geliştiriciyi destekleyin
- Telif Hakkı ve Lisanslar
- Türler
+ Türler
Tarih biçimi
Öntanımlı
Bir ad girmelisiniz
diff --git a/app/src/main/res/values/attrs.xml b/app/src/main/res/values/attrs.xml
index 42d3174b2..449fc3a29 100644
--- a/app/src/main/res/values/attrs.xml
+++ b/app/src/main/res/values/attrs.xml
@@ -2,6 +2,7 @@
+
diff --git a/app/src/main/res/values/bools.xml b/app/src/main/res/values/bools.xml
index 967cf9dce..6cb53be9e 100644
--- a/app/src/main/res/values/bools.xml
+++ b/app/src/main/res/values/bools.xml
@@ -1,5 +1,5 @@
-
+
false
true
false
diff --git a/app/src/main/res/values/constants.xml b/app/src/main/res/values/constants.xml
index 2e676d010..5132610e6 100644
--- a/app/src/main/res/values/constants.xml
+++ b/app/src/main/res/values/constants.xml
@@ -1,5 +1,9 @@
+ https://github.com/nv95/Kotatsu/issues
+ https://discord.gg/NNJ5RgVBC5
+ https://4pda.to/forum/index.php?showtopic=697669
+ https://hosted.weblate.org/engage/kotatsu
- -1
- 1
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index a825c48a6..a44dfec15 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -222,13 +222,7 @@
Translation
Feedback
Topic on 4PDA
- Support the developer
- If you like this app, you can send money through Yoomoney (ex. Yandex.Money)
- Gratitudes
- These people all made Kotatsu better
- Copyright and Licenses
- License
- Authorized
+ Authorized
Logging in on %s is not supported
You will be logged out from all sources
Genres
@@ -270,6 +264,13 @@
Find chapter
No chapters in this manga
%1$s%%
+ Appearance
+ Content
+ GitHub
+ Discord
+ Suggestions updating
+ Exclude genres
+ Specify genres that you do not want to see in the suggestions
Delete selected items from device permanently?
Removal completed
Are you sure you want to download all selected manga with all its chapters? This action can consume a lot of traffic and storage
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index 2acf59e35..2ad34b167 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -1,4 +1,4 @@
-
+
@@ -149,7 +149,11 @@
+
+
diff --git a/app/src/main/res/xml/pref_about.xml b/app/src/main/res/xml/pref_about.xml
index 7be3e5c8a..bde3d1904 100644
--- a/app/src/main/res/xml/pref_about.xml
+++ b/app/src/main/res/xml/pref_about.xml
@@ -1,84 +1,44 @@
+ xmlns:android="http://schemas.android.com/apk/res/android">
-
+
+ android:key="app_version"
+ android:persistent="false"
+ android:summary="@string/check_for_updates" />
-
-
-
-
-
-
+ android:defaultValue="true"
+ android:key="app_update_auto"
+ android:summary="@string/show_notification_app_update"
+ android:title="@string/application_update" />
-
+
+ android:key="about_feedback_github"
+ android:persistent="false"
+ android:summary="@string/url_github_issues"
+ android:title="@string/github" />
+ android:key="about_feedback_4pda"
+ android:summary="@string/url_forpda"
+ android:title="@string/about_feedback_4pda" />
-
-
-
-
+ android:key="about_feedback_discord"
+ android:summary="@string/url_discord"
+ android:title="@string/discord" />
+ android:key="about_app_translation"
+ android:summary="@string/about_app_translation_summary"
+ android:title="@string/about_app_translation" />
diff --git a/app/src/main/res/xml/pref_appearance.xml b/app/src/main/res/xml/pref_appearance.xml
new file mode 100644
index 000000000..eac08e162
--- /dev/null
+++ b/app/src/main/res/xml/pref_appearance.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_backup.xml b/app/src/main/res/xml/pref_backup.xml
index 7a61eb336..7fc94bcba 100644
--- a/app/src/main/res/xml/pref_backup.xml
+++ b/app/src/main/res/xml/pref_backup.xml
@@ -6,14 +6,12 @@
+ android:title="@string/create_backup" />
+ android:title="@string/restore_backup" />
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_history.xml b/app/src/main/res/xml/pref_history.xml
index 50061d04a..6b7d82c50 100644
--- a/app/src/main/res/xml/pref_history.xml
+++ b/app/src/main/res/xml/pref_history.xml
@@ -1,51 +1,42 @@
+ xmlns:android="http://schemas.android.com/apk/res/android">
+ android:title="@string/clear_search_history" />
+ android:title="@string/clear_updates_feed" />
+ android:title="@string/exclude_nsfw_from_history" />
-
+
+ android:title="@string/clear_thumbs_cache" />
+ android:title="@string/clear_pages_cache" />
+ android:title="@string/clear_cookies" />
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_main.xml b/app/src/main/res/xml/pref_main.xml
deleted file mode 100644
index dd72fe7c1..000000000
--- a/app/src/main/res/xml/pref_main.xml
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_notifications.xml b/app/src/main/res/xml/pref_notifications.xml
index c1a70a6fd..b3c349d72 100644
--- a/app/src/main/res/xml/pref_notifications.xml
+++ b/app/src/main/res/xml/pref_notifications.xml
@@ -1,23 +1,19 @@
+ xmlns:android="http://schemas.android.com/apk/res/android">
+ android:title="@string/notification_sound" />
+ android:title="@string/vibration" />
+ android:title="@string/light_indicator" />
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_reader.xml b/app/src/main/res/xml/pref_reader.xml
index 8fa00ef0e..e152d7054 100644
--- a/app/src/main/res/xml/pref_reader.xml
+++ b/app/src/main/res/xml/pref_reader.xml
@@ -7,14 +7,13 @@
android:defaultValue="false"
android:key="reader_prefer_rtl"
android:summary="@string/prefer_rtl_reader_summary"
- android:title="@string/prefer_rtl_reader"
- app:iconSpaceReserved="false" />
+ android:title="@string/prefer_rtl_reader" />
+ app:allowDividerAbove="true" />
+ android:title="@string/pages_animation" />
+ android:title="@string/show_pages_numbers" />
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_root.xml b/app/src/main/res/xml/pref_root.xml
new file mode 100644
index 000000000..a7ed841c0
--- /dev/null
+++ b/app/src/main/res/xml/pref_root.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/pref_source.xml b/app/src/main/res/xml/pref_source.xml
index d4be72273..51a669888 100644
--- a/app/src/main/res/xml/pref_source.xml
+++ b/app/src/main/res/xml/pref_source.xml
@@ -5,10 +5,9 @@
+ app:allowDividerAbove="true" />