diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-10-17 02:28:09 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-10-17 02:28:09 +0000 |
commit | b2cf64db9dc0fca20be122e341573602ac3d5c32 (patch) | |
tree | de46c89f2bea22eeaf366c3a3319e4222e89a4eb /app/src/main/res | |
parent | a8d511295513a07b9a91478a60755f55127191cd (diff) | |
download | infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.tar infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.tar.gz infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.tar.bz2 infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.tar.lz infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.tar.xz infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.tar.zst infinity-for-reddit-b2cf64db9dc0fca20be122e341573602ac3d5c32.zip |
Continue adding comment filter.
Diffstat (limited to 'app/src/main/res')
27 files changed, 198 insertions, 21 deletions
diff --git a/app/src/main/res/layout/activity_comment_filter_preference.xml b/app/src/main/res/layout/activity_comment_filter_preference.xml new file mode 100644 index 00000000..6f2b6051 --- /dev/null +++ b/app/src/main/res/layout/activity_comment_filter_preference.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".activities.CommentFilterPreferenceActivity"> + + <com.google.android.material.appbar.AppBarLayout + android:id="@+id/appbar_layout_comment_filter_preference_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:theme="@style/AppTheme.AppBarOverlay"> + + <com.google.android.material.appbar.CollapsingToolbarLayout + android:id="@+id/collapsing_toolbar_layout_comment_filter_preference_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layout_scrollFlags="scroll|enterAlways" + app:titleEnabled="false" + app:toolbarId="@+id/toolbar_comment_filter_preference_activity"> + + <androidx.appcompat.widget.Toolbar + android:id="@+id/toolbar_comment_filter_preference_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/actionBarSize" + app:popupTheme="@style/AppTheme.PopupOverlay" + app:navigationIcon="?attr/homeAsUpIndicator" /> + + </com.google.android.material.appbar.CollapsingToolbarLayout> + + </com.google.android.material.appbar.AppBarLayout> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/recycler_view_comment_filter_preference_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> + + <com.google.android.material.floatingactionbutton.FloatingActionButton + android:id="@+id/fab_comment_filter_preference_activity" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_margin="@dimen/fab_margin" + android:layout_gravity="bottom|end" + app:backgroundTint="?attr/colorPrimaryLightTheme" + app:srcCompat="@drawable/ic_add_day_night_24dp" + app:tint="@android:color/white" /> + +</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/activity_comment_filter_usage_listing.xml b/app/src/main/res/layout/activity_comment_filter_usage_listing.xml new file mode 100644 index 00000000..6b268520 --- /dev/null +++ b/app/src/main/res/layout/activity_comment_filter_usage_listing.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".activities.CommentFilterUsageListingActivity"> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/activity_customize_comment_filter.xml b/app/src/main/res/layout/activity_customize_comment_filter.xml new file mode 100644 index 00000000..fc6cbfd9 --- /dev/null +++ b/app/src/main/res/layout/activity_customize_comment_filter.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".activities.CustomizeCommentFilterActivity"> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_comment_filter_options_bottom_sheet.xml b/app/src/main/res/layout/fragment_comment_filter_options_bottom_sheet.xml new file mode 100644 index 00000000..011f7d51 --- /dev/null +++ b/app/src/main/res/layout/fragment_comment_filter_options_bottom_sheet.xml @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:paddingBottom="8dp" + android:overScrollMode="never"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <TextView + android:id="@+id/edit_text_view_comment_filter_options_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/edit" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + app:drawableStartCompat="@drawable/ic_edit_24dp" + android:drawablePadding="48dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/apply_to_text_view_comment_filter_options_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/apply_to" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + app:drawableStartCompat="@drawable/ic_apply_to_24dp" + android:drawablePadding="48dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + <TextView + android:id="@+id/delete_text_view_comment_filter_options_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/delete" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="32dp" + android:paddingEnd="32dp" + app:drawableStartCompat="@drawable/ic_delete_24dp" + android:drawablePadding="48dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground" /> + + </LinearLayout> + +</androidx.core.widget.NestedScrollView>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_post_filter_options_bottom_sheet.xml b/app/src/main/res/layout/fragment_post_filter_options_bottom_sheet.xml index a9c9310e..2fa19826 100644 --- a/app/src/main/res/layout/fragment_post_filter_options_bottom_sheet.xml +++ b/app/src/main/res/layout/fragment_post_filter_options_bottom_sheet.xml @@ -33,7 +33,7 @@ android:id="@+id/apply_to_text_view_post_filter_options_bottom_sheet_fragment" android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="@string/apply_post_filter_to" + android:text="@string/apply_to" android:textColor="?attr/primaryTextColor" android:textSize="?attr/font_default" android:fontFamily="?attr/font_family" diff --git a/app/src/main/res/layout/item_comment_filter_usage_embedded.xml b/app/src/main/res/layout/item_comment_filter_usage_embedded.xml new file mode 100644 index 00000000..e156e968 --- /dev/null +++ b/app/src/main/res/layout/item_comment_filter_usage_embedded.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<TextView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="8dp" + android:layout_marginStart="24dp" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_default" + android:fontFamily="?attr/font_family" />
\ No newline at end of file diff --git a/app/src/main/res/layout/item_comment_filter_with_usage.xml b/app/src/main/res/layout/item_comment_filter_with_usage.xml new file mode 100644 index 00000000..191db7bd --- /dev/null +++ b/app/src/main/res/layout/item_comment_filter_with_usage.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<ml.docilealligator.infinityforreddit.customviews.InterceptTouchEventLinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="72dp" + android:paddingEnd="16dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground"> + + <TextView + android:id="@+id/comment_filter_name_text_view_item_comment_filter" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:fontFamily="?attr/font_family" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_16" /> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/comment_filter_usage_recycler_view_item_comment_filter" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:nestedScrollingEnabled="false" /> + +</ml.docilealligator.infinityforreddit.customviews.InterceptTouchEventLinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index c2be9f03..e627ba0f 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -958,7 +958,7 @@ Zpráva: %2$s"</string> <string name="post_filter_requires_a_name">"Jak se jmenuje tento filtr příspěvků?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' již existuje"</string> <string name="duplicate_post_filter_dialog_message">"Chcete jej přepsat?"</string> - <string name="apply_post_filter_to">"Použít na"</string> + <string name="apply_to">"Použít na"</string> <string name="post_filter_usage_home">"Domů"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 72a09343..d536040e 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -991,7 +991,7 @@ Nachricht: %2$s"</string> <string name="post_filter_requires_a_name">"Wie lautet der Name des Beitragsfilters?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' existiert bereits"</string> <string name="duplicate_post_filter_dialog_message">"Überschreiben?"</string> - <string name="apply_post_filter_to">"Anwenden auf"</string> + <string name="apply_to">"Anwenden auf"</string> <string name="post_filter_usage_home">"Home"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml index 9a028320..b93471f4 100644 --- a/app/src/main/res/values-el/strings.xml +++ b/app/src/main/res/values-el/strings.xml @@ -902,7 +902,7 @@ https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforredd <string name="post_filter_requires_a_name">"Ποιο είναι το όνομα αυτού του φίλτρου ανάρτησης;"</string> <string name="duplicate_post_filter_dialog_title">"%1$s Υπάρχουν Ήδη"</string> <string name="duplicate_post_filter_dialog_message">"Παράκαμψη;"</string> - <string name="apply_post_filter_to">"Εφαρμογή σε"</string> + <string name="apply_to">"Εφαρμογή σε"</string> <string name="post_filter_usage_home">"Αρχική"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 0093680d..68c2e86a 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -1006,7 +1006,7 @@ Mensaje: %2$s"</string> <string name="post_filter_requires_a_name">"¿Cuál es el nombre de este filtro de publicaciones?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' Ya Existe"</string> <string name="duplicate_post_filter_dialog_message">"¿Sobrescribir?"</string> - <string name="apply_post_filter_to">"Aplicar a"</string> + <string name="apply_to">"Aplicar a"</string> <string name="post_filter_usage_home">"Inicio"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 77db201b..02a5419b 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -1061,7 +1061,7 @@ Les onglets pourraient perdre tout leur contenu quand vous passez d'un onglet à <string name="post_filter_requires_a_name">"Quel est le nom de ce filtre de publication ?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' Existe déjà"</string> <string name="duplicate_post_filter_dialog_message">"Le remplacer ?"</string> - <string name="apply_post_filter_to">"Appliquer à"</string> + <string name="apply_to">"Appliquer à"</string> <string name="post_filter_usage_home">"Acceuil"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index 53bea1b7..e01c1483 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -1030,7 +1030,7 @@ https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforredd <string name="post_filter_name_hint">"Post filter का नाम"</string> <string name="post_filter_requires_a_name">"इस post filter का नाम क्या है?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' पहले से ही है"</string> - <string name="apply_post_filter_to">"लागू करें"</string> + <string name="apply_to">"लागू करें"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> <string name="post_filter_usage_user">"User: %1$s"</string> diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 0171b1c0..a2d5a571 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -937,7 +937,7 @@ Videó autómatikus lejátszása le van tiltva."</string> <string name="duplicate_post_filter_dialog_message">"Írja fölül?"</string> <!-- Fuzzy --> - <string name="apply_post_filter_to">"Alkalmazd"</string> + <string name="apply_to">"Alkalmazd"</string> <string name="post_filter_usage_home">"Home"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 603beca2..e275f34f 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -906,7 +906,7 @@ Messaggio: %2$s"</string> <string name="post_filter_requires_a_name">"Come vuoi chiamare questo filtro post?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' esiste già"</string> <string name="duplicate_post_filter_dialog_message">"Vuoi sovrascriverlo?"</string> - <string name="apply_post_filter_to">"Applica a"</string> + <string name="apply_to">"Applica a"</string> <string name="post_filter_usage_home">"Home"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 27f23737..8953bb22 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -1033,7 +1033,7 @@ https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforredd <string name="min_awards_hint">"最小のアワード数 (-1: 制限なし)"</string> <string name="duplicate_post_filter_dialog_title">"「%1$s 」は既に存在します"</string> <string name="duplicate_post_filter_dialog_message">"上書きしますか?"</string> - <string name="apply_post_filter_to">"適用"</string> + <string name="apply_to">"適用"</string> <string name="post_filter_usage_home">"ホーム"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> <string name="post_filter_usage_user">"ユーザー: %1$s"</string> diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index b1ffdc6a..94580610 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -966,7 +966,7 @@ Bericht: %2$s"</string> <string name="post_filter_requires_a_name">"Wat is de naam van deze post filter?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' Bestaat Al"</string> <string name="duplicate_post_filter_dialog_message">"Overschrijven?"</string> - <string name="apply_post_filter_to">"Toepassen op"</string> + <string name="apply_to">"Toepassen op"</string> <string name="post_filter_usage_home">"Thuis"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 88464efe..c91a3468 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -956,7 +956,7 @@ Wiadomość: %2$s"</string> <string name="post_filter_requires_a_name">"Jaka jest nazwa filtru tego posta?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' już istnieje"</string> <string name="duplicate_post_filter_dialog_message">"Nadpisać?"</string> - <string name="apply_post_filter_to">"Zastosuj do"</string> + <string name="apply_to">"Zastosuj do"</string> <string name="post_filter_usage_home">"Strona główna"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index ce5c902d..91287b62 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -944,7 +944,7 @@ Mensagem: %2$s"</string> <string name="post_filter_requires_a_name">"Qual é o nome deste filtro de postagem?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' já existe"</string> <string name="duplicate_post_filter_dialog_message">"Substituir isto?"</string> - <string name="apply_post_filter_to">"Aplicar a"</string> + <string name="apply_to">"Aplicar a"</string> <string name="post_filter_usage_home">"Início"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index cfebe3c9..b964bc83 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -953,7 +953,7 @@ Mensagem: %2$s"</string> <string name="post_filter_requires_a_name">"Qual é o nome deste Filtro de Publicações?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' já existe"</string> <string name="duplicate_post_filter_dialog_message">"Substituir?"</string> - <string name="apply_post_filter_to">"Aplicar a"</string> + <string name="apply_to">"Aplicar a"</string> <string name="post_filter_usage_home">"Início"</string> <string name="post_filter_usage_subreddit">"Comunidade: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Comunidade"</string> diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml index db632014..9b506646 100644 --- a/app/src/main/res/values-ro/strings.xml +++ b/app/src/main/res/values-ro/strings.xml @@ -950,7 +950,7 @@ Mesaj: %2$s"</string> <string name="post_filter_requires_a_name">"Care este numele acestui filtru de post?"</string> <string name="duplicate_post_filter_dialog_title">"%1$s' Există Deja"</string> <string name="duplicate_post_filter_dialog_message">"Îl înlocuiești?"</string> - <string name="apply_post_filter_to">"Se aplică la"</string> + <string name="apply_to">"Se aplică la"</string> <string name="post_filter_usage_home">"Acasă"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 647dc3d8..7297be41 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -966,7 +966,7 @@ https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforredd <string name="post_filter_requires_a_name">"Как называется этот фильтр постов?"</string> <string name="duplicate_post_filter_dialog_title">"«%1$s» уже существует"</string> <string name="duplicate_post_filter_dialog_message">"Переопределить это?"</string> - <string name="apply_post_filter_to">"Применить к"</string> + <string name="apply_to">"Применить к"</string> <string name="post_filter_usage_home">"Домашняя"</string> <string name="post_filter_usage_subreddit">"Сабреддит: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Сабреддит"</string> diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml index fefd14b5..ec296f29 100644 --- a/app/src/main/res/values-tr-rTR/strings.xml +++ b/app/src/main/res/values-tr-rTR/strings.xml @@ -974,7 +974,7 @@ Mesaj: %2$s"</string> <string name="post_filter_requires_a_name">"Bu gönderi filtresinin adı nedir?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' Zaten Var"</string> <string name="duplicate_post_filter_dialog_message">"Geçersiz kılınsın mı?"</string> - <string name="apply_post_filter_to">"Uygulanan:"</string> + <string name="apply_to">"Uygulanan:"</string> <string name="post_filter_usage_home">"Ana Sayfa"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index c34bc491..bc044225 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -954,7 +954,7 @@ https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforredd <string name="post_filter_requires_a_name">"Яка назва для цього фільтру дописів?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' вже існує"</string> <string name="duplicate_post_filter_dialog_message">"Перезаписати його?"</string> - <string name="apply_post_filter_to">"Задіяно для"</string> + <string name="apply_to">"Задіяно для"</string> <string name="post_filter_usage_home">"Домівка"</string> <string name="post_filter_usage_subreddit">"Сабредит: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Сабредит"</string> diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index c1aa63d7..093a2fc5 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -967,7 +967,7 @@ Thông báo: %2$s"</string> <string name="post_filter_requires_a_name">"Bộ lọc bài đăng này tên là gì?"</string> <string name="duplicate_post_filter_dialog_title">"'%1$s' đã tồn tại"</string> <string name="duplicate_post_filter_dialog_message">"Ghi đè nó?"</string> - <string name="apply_post_filter_to">"Áp dụng vào"</string> + <string name="apply_to">"Áp dụng vào"</string> <string name="post_filter_usage_home">"Trang chủ"</string> <string name="post_filter_usage_subreddit">"Subreddit: %1$s"</string> <string name="post_filter_usage_subreddit_all">"Subreddit"</string> diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 726fefb6..e58e7b7e 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -981,7 +981,7 @@ Reddit 视频分辨率较低。 <string name="post_filter_requires_a_name">"该帖子过滤器的名称是什么?"</string> <string name="duplicate_post_filter_dialog_title">"“%1$s”已经存在"</string> <string name="duplicate_post_filter_dialog_message">"覆盖吗?"</string> - <string name="apply_post_filter_to">"应用于"</string> + <string name="apply_to">"应用于"</string> <string name="post_filter_usage_home">"主页"</string> <string name="post_filter_usage_subreddit">"版块:%1$s"</string> <string name="post_filter_usage_subreddit_all">"版块"</string> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 7cab6989..33f35339 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1141,7 +1141,7 @@ <string name="post_filter_requires_a_name">What is the name of this post filter?</string> <string name="duplicate_post_filter_dialog_title">\'%1$s\' Already Exists</string> <string name="duplicate_post_filter_dialog_message">Override it?</string> - <string name="apply_post_filter_to">Apply to</string> + <string name="apply_to">Apply to</string> <string name="post_filter_usage_home">Home</string> <string name="post_filter_usage_subreddit">Subreddit: %1$s</string> <string name="post_filter_usage_subreddit_all">Subreddit</string> |