diff options
author | bubulle@debian.org <> | 2008-05-04 09:59:15 +0200 |
---|---|---|
committer | bubulle@debian.org <> | 2008-05-04 09:59:15 +0200 |
commit | 8f30b47801a036adacff19f75175d16dbb167f48 (patch) | |
tree | b678ce6d712c1ee17c2ecaa7bf26d415648b9ba4 /dselect/install | |
parent | 85a40516e6373085aa8cbd202d3d02951d428458 (diff) |
Mark a new string as translatable. Update PO(T) files
Diffstat (limited to 'dselect/install')
-rwxr-xr-x | dselect/install | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dselect/install b/dselect/install index d9d665192..61d13208e 100755 --- a/dselect/install +++ b/dselect/install @@ -88,7 +88,8 @@ if [ $RES -eq 0 ]; then ;; prompt) exec 3>&1 - if [ `yesno $"Do you want to erase any previously downloaded .deb files?" y` = y ]; then + echo -n $"Do you want to erase any previously downloaded .deb files?" + if [ `yesno "" y` = y ]; then $APTGET "$APT_OPT0" "$APT_OPT1" clean && echo $"Press enter to continue." && read RES && exit 0; fi |