summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-10-30 14:19:00 +0300
committerAndrew Dolgov <[email protected]>2019-10-30 14:19:24 +0300
commit2015e4483870fb9615020bcd616b352a6b26aa50 (patch)
tree45e98b12dd38453f8a9b24ede27967b00791a792
parentad73a1f94857856082b9ec0019511db8b0f3f483 (diff)
externalize new string resources
-rwxr-xr-xorg.fox.ttrss/src/main/res/values/strings.xml5
-rwxr-xr-xorg.fox.ttrss/src/main/res/xml/preferences.xml6
2 files changed, 7 insertions, 4 deletions
diff --git a/org.fox.ttrss/src/main/res/values/strings.xml b/org.fox.ttrss/src/main/res/values/strings.xml
index 4cf36455..a0b0f0b4 100755
--- a/org.fox.ttrss/src/main/res/values/strings.xml
+++ b/org.fox.ttrss/src/main/res/values/strings.xml
@@ -278,5 +278,8 @@
<string name="prefs_headline_images_wifi_only_long">Overrides previous setting</string>
<string name="prefs_inline_video_player">Experimental. Long tap to open separate player</string>
<string name="prefs_enable_image_downsampling">Auto-resize images</string>
- <string name="prefs_enable_image_downsampling_long">Asks backend to downsample images if not on Wi-Fi. Needs a plugin (ttrss-api-resize).</string>
+ <string name="prefs_enable_image_downsampling_long">Asks backend to downsample images if not on Wi-Fi. Needs a plugin (ttrss-api-resize)</string>
+ <string name="prefs_always_downsample_images">Always resize images</string>
+ <string name="prefs_always_downsample_images_long">Even on Wi-Fi</string>
+ <string name="prefs_inline_video_player_title">Inline video player</string>
</resources>
diff --git a/org.fox.ttrss/src/main/res/xml/preferences.xml b/org.fox.ttrss/src/main/res/xml/preferences.xml
index deb34210..f20bb2cc 100755
--- a/org.fox.ttrss/src/main/res/xml/preferences.xml
+++ b/org.fox.ttrss/src/main/res/xml/preferences.xml
@@ -130,14 +130,14 @@
android:defaultValue="false"
android:key="always_downsample_images"
android:dependency="enable_image_downsampling"
- android:title="Always resize images"
- android:summary="Even on Wi-Fi" />
+ android:title="@string/prefs_always_downsample_images"
+ android:summary="@string/prefs_always_downsample_images_long" />
<org.fox.ttrss.util.LessBrokenSwitchPreference
android:defaultValue="false"
android:key="inline_video_player"
android:summary="@string/prefs_inline_video_player"
- android:title="Inline video player" />
+ android:title="@string/prefs_inline_video_player_title" />
</PreferenceCategory>