1
0
mirror of https://github.com/libre-tube/LibreTube.git synced 2024-12-14 22:30:30 +05:30

added string resource

This commit is contained in:
arkibax 2024-01-27 10:25:03 +01:00
parent 8287e87785
commit c94a3ff526
2 changed files with 2 additions and 1 deletions
app/src/main
java/com/github/libretube/ui/fragments
res/values

View File

@ -92,7 +92,7 @@ class WatchHistoryFragment : DynamicLayoutManagerFragment() {
binding.filterTypeTV.text = resources.getStringArray(R.array.filterOptions)[selectedTypeFilter]
binding.filterStatusTV.text = resources.getStringArray(R.array.filterStatusOptions)[selectedStatusFilter]
val watchPositionItem = arrayOf("Also clear watch positions")
val watchPositionItem = arrayOf(getString(R.string.also_clear_watch_positions))
val selected = booleanArrayOf(false)
binding.clear.setOnClickListener {

View File

@ -554,4 +554,5 @@
<string name="tooltip_edit_groups">Edit groups</string>
<string name="tooltip_create_playlist">Create playlist</string>
<string name="tooltip_scroll_to_top">Scroll to top</string>
<string name="also_clear_watch_positions">Also clear watch positions</string>
</resources>