diff options
author | Torsten Grote <t@grobox.de> | 2020-05-07 11:39:26 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-05-07 11:39:26 -0300 |
commit | cf0f245817bb3a0fa5fe6ba4defd4ee6a4f63b99 (patch) | |
tree | ae86e34309c301473b343c7f3590a8625ecc208e /cashier | |
parent | 41ae49ace0774fa1eded3461113ff9f3e1098a32 (diff) | |
download | taler-android-cf0f245817bb3a0fa5fe6ba4defd4ee6a4f63b99.tar.gz taler-android-cf0f245817bb3a0fa5fe6ba4defd4ee6a4f63b99.tar.bz2 taler-android-cf0f245817bb3a0fa5fe6ba4defd4ee6a4f63b99.zip |
Fix translation related lint errors
Diffstat (limited to 'cashier')
-rw-r--r-- | cashier/lint.xml | 5 | ||||
-rw-r--r-- | cashier/src/main/res/values/strings.xml | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/cashier/lint.xml b/cashier/lint.xml index 164e244..5ea4914 100644 --- a/cashier/lint.xml +++ b/cashier/lint.xml @@ -1,4 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <lint> - + <issue id="MissingTranslation" severity="ignore" /> + <issue id="StringFormatInvalid"> + <ignore regexp="config_demo_hint" /> + </issue> </lint> diff --git a/cashier/src/main/res/values/strings.xml b/cashier/src/main/res/values/strings.xml index b4964d8..0400f82 100644 --- a/cashier/src/main/res/values/strings.xml +++ b/cashier/src/main/res/values/strings.xml @@ -10,7 +10,7 @@ <string name="config_error">Error retrieving configuration: %s</string> <string name="config_error_auth">Invalid username or password!</string> <string name="config_error_offline" translatable="false">@string/balance_offline</string> - <string name="config_demo_hint" tools:ignore="StringFormatInvalid">For testing, you can <![CDATA[<a href="%s">create a test account at the demo bank</a>]]>.</string> + <string name="config_demo_hint">For testing, you can <![CDATA[<a href="%s">create a test account at the demo bank</a>]]>.</string> <string name="balance_current_label">Current balance</string> <string name="balance_error">ERROR: %s</string> |