improve title of filter profiles editing

This commit is contained in:
johan12345
2021-10-02 13:15:58 +02:00
parent 738dcd5f8d
commit d249bf47c7
3 changed files with 3 additions and 1 deletions

View File

@@ -118,7 +118,7 @@ class FilterFragment : Fragment() {
vm.filterProfile.observe(viewLifecycleOwner) {
if (it != null) {
binding.toolbar.title = "${getString(R.string.menu_filter)}: ${it.name}"
binding.toolbar.title = getString(R.string.edit_filter_profile, it.name)
}
}
}

View File

@@ -241,4 +241,5 @@
<string name="privacy_link">https://evmap.vonforst.net/de/privacy.html</string>
<string name="faq_link">https://evmap.vonforst.net/de/faq.html</string>
<string name="required">erforderlich</string>
<string name="edit_filter_profile">„%s“ bearbeiten</string>
</resources>

View File

@@ -226,4 +226,5 @@
<string name="privacy_link">https://evmap.vonforst.net/en/privacy.html</string>
<string name="faq_link">https://evmap.vonforst.net/en/faq.html</string>
<string name="required">required</string>
<string name="edit_filter_profile">Edit “%s”</string>
</resources>