diff options
author | curche <72807749+curche@users.noreply.github.com> | 2021-04-28 09:12:55 +0000 |
---|---|---|
committer | curche <72807749+curche@users.noreply.github.com> | 2021-04-28 09:12:55 +0000 |
commit | e8aa33a2c651434680f40741d7342a6e066bea68 (patch) | |
tree | bc69408f0ffee857d84086d7efa8852c90404a52 | |
parent | ee4c25a465e2568ab3ed784e60cba8d2e3caa40b (diff) | |
download | infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.tar infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.tar.gz infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.tar.bz2 infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.tar.lz infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.tar.xz infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.tar.zst infinity-for-reddit-e8aa33a2c651434680f40741d7342a6e066bea68.zip |
Make time format strings less ambiguous
the previous date format was ambiguous - 2020-01-02 01:00
this commit changes it with a slightly better date - 2020-01-23 23:45
-rw-r--r-- | app/src/main/res/values/arrays.xml | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index f9c89ca0..d662acbc 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -180,28 +180,29 @@ </string-array> <string-array name="settings_time_format"> - <item>Jan 2, 2020, 01:00</item> - <item>Jan 2, 2020, 01:00 PM</item> - <item>2 Jan, 2020, 01:00</item> - <item>2 Jan, 2020, 01:00 PM</item> - <item>1/2/2020 01:00 (Month first)</item> - <item>1/2/2020 01:00 PM (Month first)</item> - <item>2/1/2020 01:00 (Day first)</item> - <item>2/1/2020 01:00 PM (Day first)</item> - <item>2020/1/2 01:00 (Month first)</item> - <item>2020/1/2 01:00 PM (Month first)</item> - <item>1-2-2020 01:00 (Month first)</item> - <item>1-2-2020 01:00 PM (Month first)</item> - <item>2-1-2020 01:00 (Day first)</item> - <item>2-1-2020 01:00 PM (Day first)</item> - <item>2020-1-2 01:00 (Month first)</item> - <item>2020-1-2 01:00 PM (Month first)</item> - <item>1.2.2020 01:00 (Month first)</item> - <item>1.2.2020 01:00 PM (Month first)</item> - <item>2.1.2020 01:00 (Day first)</item> - <item>2.1.2020 01:00 PM (Day first)</item> - <item>2020.1.2 01:00 (Month first)</item> - <item>2020.1.2 01:00 PM (Month first)</item> + <!-- 2020/01/23 23:45 --> + <item>Jan 23, 2020, 23:45</item> + <item>Jan 23, 2020, 11:45 PM</item> + <item>23 Jan, 2020, 23:45</item> + <item>23 Jan, 2020, 11:45 PM</item> + <item>1/23/2020 23:45</item> + <item>1/23/2020 11:45 PM</item> + <item>23/1/2020 23:45</item> + <item>23/1/2020 11:45 PM</item> + <item>2020/1/23 23:45</item> + <item>2020/1/23 11:45 PM</item> + <item>1-23-2020 23:45</item> + <item>1-23-2020 11:45 PM</item> + <item>23-1-2020 23:45</item> + <item>23-1-2020 11:45 PM</item> + <item>2020-1-23 23:45</item> + <item>2020-1-23 11:45 PM</item> + <item>1.23.2020 23:45</item> + <item>1.23.2020 11:45 PM</item> + <item>23.1.2020 23:45</item> + <item>23.1.2020 11:45 PM</item> + <item>2020.1.23 23:45</item> + <item>2020.1.23 11:45 PM</item> </string-array> <string-array name="settings_time_format_values"> |