diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2021-01-23 19:44:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 19:44:08 +0100 |
commit | b5f547bd9fd312b9609d28965eb2e80513678b3a (patch) | |
tree | ca3e6ec6ecec6a0c27eb74ea107f565fb884dc72 /core/src/main | |
parent | 35d010caa23124d12d8487fefadf6ad64beb50dc (diff) | |
parent | 37b5becd598fae6d761c9c3d1441094871fa30e6 (diff) | |
download | AntennaPod-b5f547bd9fd312b9609d28965eb2e80513678b3a.zip |
Merge pull request #4892 from ByteHamster/every-hours
Added new string for 'every x hours'
Diffstat (limited to 'core/src/main')
-rw-r--r-- | core/src/main/res/values/strings.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 64554bc38..2f4aa7fac 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -410,8 +410,11 @@ <string name="pref_autoUpdateIntervallOrTime_Disable">Disable</string> <string name="pref_autoUpdateIntervallOrTime_Interval">Set Interval</string> <string name="pref_autoUpdateIntervallOrTime_TimeOfDay">Set Time of Day</string> - <string name="pref_autoUpdateIntervallOrTime_every">every %1$s</string> <string name="pref_autoUpdateIntervallOrTime_at">at %1$s</string> + <plurals name="pref_autoUpdateIntervallOrTime_every_hours"> + <item quantity="one">Every hour</item> + <item quantity="other">Every %d hours</item> + </plurals> <string name="pref_followQueue_title">Continuous Playback</string> <string name="pref_pauseOnHeadsetDisconnect_title">Headphones or Bluetooth disconnect</string> <string name="pref_unpauseOnHeadsetReconnect_title">Headphones Reconnect</string> |