allow translating the widget config sample strings
This commit is contained in:
parent
ce9d4fe2af
commit
d08e1cebd4
|
@ -150,9 +150,9 @@ class WidgetListConfigureActivity : AppCompatActivity() {
|
|||
listItems.add(ListSection(day))
|
||||
|
||||
var time = dateTime.withHourOfDay(7)
|
||||
listItems.add(ListEvent(1, (time.millis / 1000).toInt(), (time.plusMinutes(30).millis / 1000).toInt(), "Workout", "Leg day"))
|
||||
listItems.add(ListEvent(1, (time.millis / 1000).toInt(), (time.plusMinutes(30).millis / 1000).toInt(), getString(R.string.sample_title_1), getString(R.string.sample_description_1)))
|
||||
time = dateTime.withHourOfDay(8)
|
||||
listItems.add(ListEvent(2, (time.millis / 1000).toInt(), (time.plusHours(1).millis / 1000).toInt(), "Meeting with John", "In Rockstone Garden"))
|
||||
listItems.add(ListEvent(2, (time.millis / 1000).toInt(), (time.plusHours(1).millis / 1000).toInt(), getString(R.string.sample_title_2), getString(R.string.sample_description_2)))
|
||||
|
||||
dateTime = dateTime.plusDays(1)
|
||||
code = Formatter.getDayCodeFromTS((dateTime.millis / 1000).toInt())
|
||||
|
@ -160,11 +160,11 @@ class WidgetListConfigureActivity : AppCompatActivity() {
|
|||
listItems.add(ListSection(day))
|
||||
|
||||
time = dateTime.withHourOfDay(8)
|
||||
listItems.add(ListEvent(3, (time.millis / 1000).toInt(), (time.plusHours(1).millis / 1000).toInt(), "Library", ""))
|
||||
listItems.add(ListEvent(3, (time.millis / 1000).toInt(), (time.plusHours(1).millis / 1000).toInt(), getString(R.string.sample_title_3), ""))
|
||||
time = dateTime.withHourOfDay(13)
|
||||
listItems.add(ListEvent(4, (time.millis / 1000).toInt(), (time.plusHours(1).millis / 1000).toInt(), "Lunch with Mary", "In the Plaza"))
|
||||
listItems.add(ListEvent(4, (time.millis / 1000).toInt(), (time.plusHours(1).millis / 1000).toInt(), getString(R.string.sample_title_4), getString(R.string.sample_description_4)))
|
||||
time = dateTime.withHourOfDay(18)
|
||||
listItems.add(ListEvent(5, (time.millis / 1000).toInt(), (time.plusMinutes(10).millis / 1000).toInt(), "Coffee time", ""))
|
||||
listItems.add(ListEvent(5, (time.millis / 1000).toInt(), (time.plusMinutes(10).millis / 1000).toInt(), getString(R.string.sample_title_5), ""))
|
||||
|
||||
return listItems
|
||||
}
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">S</string>
|
||||
<string name="sunday_letter">S</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">S</string>
|
||||
<string name="sunday_letter">D</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">S</string>
|
||||
<string name="sunday_letter">D</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">श</string>
|
||||
<string name="sunday_letter">र</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">SZO</string>
|
||||
<string name="sunday_letter">V</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">S</string>
|
||||
<string name="sunday_letter">D</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">土</string>
|
||||
<string name="sunday_letter">日</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">S</string>
|
||||
<string name="sunday_letter">D</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">L</string>
|
||||
<string name="sunday_letter">S</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
|
@ -84,6 +84,16 @@
|
|||
<string name="saturday_letter">S</string>
|
||||
<string name="sunday_letter">S</string>
|
||||
|
||||
<!-- List widget config example events -->
|
||||
<string name="sample_title_1">Workout</string>
|
||||
<string name="sample_description_1">Leg day</string>
|
||||
<string name="sample_title_2">Meeting with John</string>
|
||||
<string name="sample_description_2">In Rockstone garden</string>
|
||||
<string name="sample_title_3">Library</string>
|
||||
<string name="sample_title_4">Lunch with Mary</string>
|
||||
<string name="sample_description_4">In the Plaza</string>
|
||||
<string name="sample_title_5">Coffee time</string>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_44">
|
||||
Added more color customization options\n
|
||||
|
|
Loading…
Reference in New Issue