6811816ac0
The percentage sign in strings like ‘%1% charging’ couldn’t be properly translated in the resulting POT file. For example, translating it to ‘%1 % charging’ (some languages use a space before the percentage sign) resulted in an invalid Java printf string (but a valid QML string), which was reject by msgfmt.
4 lines
113 B
Bash
Executable file
4 lines
113 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
#.qml
|
|
$XGETTEXT `find package -name '*.qml'` -o $podir/plasma_applet_org.kde.kdeconnect.pot
|