* Fix glitch in translate function that sometimes left the original string

on the stack.
master
Colin Watson 16 years ago
parent b67b24106d
commit 09fdc12dd8

2
debian/changelog vendored

@ -15,6 +15,8 @@ gfxboot-theme-ubuntu (0.5.3) UNRELEASED; urgency=low
should reduce the bewildering array of top-level menu options, while
still allowing the less usual options to be selected easily. Many
strings have been changed accordingly.
* Fix glitch in translate function that sometimes left the original string
on the stack.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 13 Feb 2008 10:27:59 +0000

@ -138,7 +138,7 @@
0 1 texts.msgid length 1 sub {
texts.msgid over get 2 index eq {
texts.msgstr over get exch pop exit
texts.msgstr over get exch pop exch pop exit
} { pop } ifelse
} for
} def

Loading…
Cancel
Save