Skip to content

Commit

Permalink
Some more PPM internationalisation improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mavrothal committed Oct 13, 2015
1 parent 993294e commit ad8c2de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions woof-code/rootfs-skeleton/usr/lib/gtkdialog/box_splash
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#gpl license see: /usr/share/doc/legal/gpl-2.0.txt
#Mar 2014, zigbert

export TEXTDOMAIN=libstardust # even if not gettext!
export OUTPUT_CHARSET=UTF-8 # even if not gettext.

[ ! -f /tmp/yaf-splash ] && ln -s "`which gtkdialog`" /tmp/yaf-splash

ROOTGEOM="`xwininfo -root | grep -o ' \\-geometry .*' | cut -f 3 -d ' '`" #ex: 1280x800+0+0
Expand Down
2 changes: 1 addition & 1 deletion woof-code/rootfs-skeleton/usr/local/petget/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fi
#dependencies and the dependencies of those have to be looked for.

if [ ! -f /tmp/install_quietly ];then
/usr/lib/gtkdialog/box_splash -close never -text "$(gettext 'Please wait, processing package database files...')" &
. /usr/lib/gtkdialog/box_splash -close never -text "$(gettext 'Please wait, processing package database files...')" &
X1PID=$!
fi

Expand Down
2 changes: 1 addition & 1 deletion woof-code/rootfs-skeleton/usr/local/petget/filterpkgs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ esac
xDEFGUIFILTER="$(echo -n "$DEFGUIFILTER" | tr -d ' ' | tr -d '-' | tr -d '+' | tr -d ',')" #ex, translate 'Qt4 GUI apps only' to 'Qt4GUIappsonly'

PKG_FIRST_CHAR='a-z0-9'
/usr/lib/gtkdialog/box_splash -close never -text "$(gettext 'Please wait, processing all entries may take awhile...')" &
. /usr/lib/gtkdialog/box_splash -close never -text "$(gettext 'Please wait, processing all entries may take awhile...')" &
X1PID=$!

#which repo...
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export OUTPUT_CHARSET=UTF-8
. /root/.packages/DISTRO_PKGS_SPECS

if [ ! -f /tmp/install_quietly ]; then
/usr/lib/gtkdialog/box_splash -close never -text "$(gettext 'Please wait, processing package database files...')" &
. /usr/lib/gtkdialog/box_splash -close never -text "$(gettext 'Please wait, processing package database files...')" &
X1PID=$!
fi

Expand Down

0 comments on commit ad8c2de

Please sign in to comment.