Summary: Currently, the common config window messages are neither extracted nor used in all 5 widgets. It is not possible to add several translation catalogs for a single QML widget thus the messages are extracted into all 5 widget catalogs. Idea of the fix by Victor Ryzhykh. Test Plan: Extraction tested to work as expected, translation should work too. Reviewers: #localization, #plasma, davidedmundson, ngraham Reviewed By: #plasma, davidedmundson, ngraham Subscribers: plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D26192wilder-5.18
parent
9683865f1b
commit
9f5ed252ba
6 changed files with 6 additions and 6 deletions
@ -1,2 +1,2 @@ |
||||
#! /usr/bin/env bash |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.cpu.pot |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` `find ../common -name \*.qml` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.cpu.pot |
||||
|
||||
@ -1,2 +1,2 @@ |
||||
#! /usr/bin/env bash |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.pot |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` `find ../common -name \*.qml` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.pot |
||||
|
||||
@ -1,2 +1,2 @@ |
||||
#! /usr/bin/env bash |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.diskusage.pot |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` `find ../common -name \*.qml` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.diskusage.pot |
||||
|
||||
@ -1,2 +1,2 @@ |
||||
#! /usr/bin/env bash |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.memory.pot |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` `find ../common -name \*.qml` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.memory.pot |
||||
|
||||
@ -1,2 +1,2 @@ |
||||
#! /usr/bin/env bash |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.net.pot |
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` `find ../common -name \*.qml` -o $podir/plasma_applet_org.kde.plasma.systemmonitor.net.pot |
||||
|
||||
Loading…
Reference in new issue