-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separe gettext messages extraction and merge
- Loading branch information
1 parent
756e2f3
commit 6798666
Showing
3 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
include COPYING | ||
include COPYING LICENCE | ||
include glade-catalog.xml | ||
include l10nextract.sh | ||
include LICENCE | ||
include l10nextract.sh l10nmerge.sh | ||
include locale/virtualbricks/virtualbricks.pot locale/virtualbricks/*.po | ||
recursive-include share * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
# Virtualbricks - a vde/qemu gui written in python and GTK/Glade. | ||
# Copyright (C) 2019 Virtualbricks team | ||
|
||
LANGUAGES="it nl es fr de du" | ||
|
||
for lang in $LANGUAGES; | ||
do | ||
msgmerge \ | ||
--update \ | ||
locale/virtualbricks/${lang}.po \ | ||
--lang=$lang \ | ||
locale/virtualbricks/virtualbricks.pot | ||
done |