diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-30 12:00:52 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-11-30 14:39:59 +0100 |
commit | 4958e21332c19a8bc1704ff71489c2c991efb05c (patch) | |
tree | 5053e5e45750de111fd0f350181de902786bd141 /android/source/res/values-tr | |
parent | f824c4f23c01510b12b53f33778bfa72f7a2ea57 (diff) |
android: Simplify version info handling for about dialog
* Don't set and retrieve the placeholder text in/from
the TexView in the about dialog, but use the string
resource directly.
* Add the HTML code directly in the string resource,
rather than having to fiddle with that in the Java
code.
With this in place, only the version name and the
commit hash need to be replaced.
Since there is no placeholder text in the text view,
it's also no longer necessary to explicitly set an
empty string in case of an exception.
Change-Id: Iaa78f5a6020bea4ed80a1b41d3b23cc8d313813c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160146
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android/source/res/values-tr')
-rw-r--r-- | android/source/res/values-tr/strings.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/res/values-tr/strings.xml b/android/source/res/values-tr/strings.xml index ef0722f035cd..a9ce0782da97 100644 --- a/android/source/res/values-tr/strings.xml +++ b/android/source/res/values-tr/strings.xml @@ -5,7 +5,7 @@ <string name="app_name_settings">LibreOffice Görüntüleyici Ayarları</string> <string name="app_about_name"><b>LibreOffice Görüntüleyici \'Beta\'</b></string> - <string name="app_version">Versiyon: %1$s\nBuild ID: %2$s</string> + <string name="app_version">Versiyon: %1$s<br>Build ID: <a href="https://hub.libreoffice.org/git-core/%2$s">%2$s</a></string> <string name="app_description">LibreOffice Görüntüleyici LibreOffice tabanlı bir belge görüntüleyicisidir.</string> <string name="app_credits">https://www.libreoffice.org</string> <string name="app_vendor">Bu sürüm $VENDOR tarafından derlenmiştir.</string> |