summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpocompile.sh2
-rw-r--r--portato/gui/gtk/wrapper.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/pocompile.sh b/pocompile.sh
index 5fdd98a..865c380 100755
--- a/pocompile.sh
+++ b/pocompile.sh
@@ -6,6 +6,8 @@ cd i18n
for ITEM in *.po; do
LANG=${ITEM/.po/}
+ echo "Creating translation file for ${LANG}."
+
if [ "$1" == "-emerge" ]; then
mkdir mo -p
msgfmt ${ITEM} -o mo/${LANG}.mo
diff --git a/portato/gui/gtk/wrapper.py b/portato/gui/gtk/wrapper.py
index dd06fac..286cffd 100644
--- a/portato/gui/gtk/wrapper.py
+++ b/portato/gui/gtk/wrapper.py
@@ -10,6 +10,7 @@
#
# Written by René 'Necoro' Neumann <necoro@necoro.net>
+from gettext import lgettext as _
from portato.gui.wrapper import Tree, Console
import vte