mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11:19 +00:00
Fix lint "unused quantity translations" (#1130)
This commit is contained in:
parent
e9da786efa
commit
2125910407
1 changed files with 5 additions and 1 deletions
|
@ -47,12 +47,16 @@
|
||||||
</issue>
|
</issue>
|
||||||
<!-- Ignore lint on ... not being replaced by the ellipsis character -->
|
<!-- Ignore lint on ... not being replaced by the ellipsis character -->
|
||||||
<issue id="TypographyEllipsis" severity="ignore" />
|
<issue id="TypographyEllipsis" severity="ignore" />
|
||||||
<!-- Don't fail lint on translation errors, they have to be resolve on transifex -->
|
<!-- Don't fail lint on translation errors, they have to be resolved on transifex -->
|
||||||
<issue id="ImpliedQuantity" severity="warning">
|
<issue id="ImpliedQuantity" severity="warning">
|
||||||
<ignore path="src/main/res/values-fr" />
|
<ignore path="src/main/res/values-fr" />
|
||||||
<ignore path="src/main/res/values-pt-rBR" />
|
<ignore path="src/main/res/values-pt-rBR" />
|
||||||
<ignore path="src/main/res/values-ru" />
|
<ignore path="src/main/res/values-ru" />
|
||||||
</issue>
|
</issue>
|
||||||
|
<!-- Don't fail lint on unused translations because they don't hurt -->
|
||||||
|
<issue id="UnusedQuantity" severity="ignore">
|
||||||
|
<ignore path="src/main/res/values-cs" />
|
||||||
|
</issue>
|
||||||
<!-- Having an expandable drawer for the menu will always cause overdrawing regions -->
|
<!-- Having an expandable drawer for the menu will always cause overdrawing regions -->
|
||||||
<issue id="Overdraw">
|
<issue id="Overdraw">
|
||||||
<ignore path="src/main/res/layout/widget_toolbar.xml" />
|
<ignore path="src/main/res/layout/widget_toolbar.xml" />
|
||||||
|
|
Loading…
Reference in a new issue