mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
8 lines
240 B
Bash
Executable File
8 lines
240 B
Bash
Executable File
echo potential errors, if any:
|
|
|
|
# a space after the percent sign
|
|
# results in an IllegalFormatException in getString()
|
|
grep --include='strings.xml' -r '\% ' .
|
|
grep --include='strings.xml' -r '\$ ' .
|
|
grep --include='strings.xml' -r ' \$' .
|