diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-12-15 08:41:41 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-12-15 17:27:21 +0100 |
commit | f43c133c87a2a6e8f0918e5038097d63dbdbe256 (patch) | |
tree | 71e6fc921e12db1c260e168bf8698dce07be0e47 /android | |
parent | eaa8327c960591bf113f624be2fc81af00d08090 (diff) |
android lint: Replace "..." with ellipsis character
Address this lint warning listed in the lint-baseline.xml:
<issue
id="TypographyEllipsis"
message="Replace "..." with ellipsis character (…, &#8230;) ?"
errorLine1=" <string name="action_save_as">Save As...</string>"
errorLine2=" ~~~~~~~~~~">
<location
file="res/values/strings.xml"
line="53"
column="35"/>
</issue>
This also helps to avoid introducing more issues of that kind in newly
added translations, quoting from cloph's Gerrit comment [1]:
> and FYI: if the source-string would end in an Ellipsis, then weblate could
> enforce the translation ending in an ellipsis [...]
>
> ( https://docs.weblate.org/en/latest/user/checks.html#mismatched-ellipsis )
[1] https://gerrit.libreoffice.org/c/core/+/160614/comments/5ef2dc6d_75cde15f
Change-Id: Ic056849dd56d7e6c50615ffd62d470df4ab337bb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160817
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/res/values/strings.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/res/values/strings.xml b/android/source/res/values/strings.xml index 5d280ca5025b..1460b525192f 100644 --- a/android/source/res/values/strings.xml +++ b/android/source/res/values/strings.xml @@ -50,7 +50,7 @@ <string name="action_strikeout">Strike Out</string> <string name="action_keyboard">Show keyboard</string> <string name="action_save">Save</string> - <string name="action_save_as">Save As...</string> + <string name="action_save_as">Save As…</string> <string name="action_fromat">Enable Format</string> <string name="action_search">Search</string> <string name="action_UNO_commands">Send UNO Cmd</string> |