diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-01-14 18:25:26 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-01-14 18:25:26 -0600 |
commit | 7c3e13114fd189c49e86b8d6c200ffb3c27bb498 (patch) | |
tree | 9024ba5e810b40c22eeb2065e3d22650aa51d54e /androidApp/src/main/res/values | |
parent | e10c55888fede23b225dee03044f6953e997c28b (diff) | |
download | etbsa-trackermap-mobile-7c3e13114fd189c49e86b8d6c200ffb3c27bb498.tar.gz etbsa-trackermap-mobile-7c3e13114fd189c49e86b8d6c200ffb3c27bb498.tar.bz2 etbsa-trackermap-mobile-7c3e13114fd189c49e86b8d6c200ffb3c27bb498.zip |
Refactored reports code into ReportController.kt and added extra report periods
Diffstat (limited to 'androidApp/src/main/res/values')
-rw-r--r-- | androidApp/src/main/res/values/strings.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/androidApp/src/main/res/values/strings.xml b/androidApp/src/main/res/values/strings.xml index e3a31e0..5f9714e 100644 --- a/androidApp/src/main/res/values/strings.xml +++ b/androidApp/src/main/res/values/strings.xml @@ -104,13 +104,19 @@ <string name="positions">Positions</string> <string name="events">Events</string> <string name="stops">Stops</string> - <string name="day_period">Day</string> - <string name="week_period">Week</string> - <string name="month_period">Month</string> <string name="period">Period</string> <string name="select_period">Select</string> <string name="export_report">Export</string> + <!-- Report periods --> + <string name="period_today">Today</string> + <string name="period_last_24">Last 24H</string> + <string name="period_yesterday">Yesterday</string> + <string name="period_this_week">Week</string> + <string name="period_last_7">Last 7d</string> + <string name="period_this_month">Month</string> + <string name="period_last_30">Last 30d</string> + <string name="table_event">Event</string> <string name="table_datetime">Datetime</string> <string name="table_geofence">Geofence</string> |