summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/printerdrake
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2003-09-05 16:29:15 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2003-09-05 16:29:15 +0000
commitb3744cad92fd206ec5236f0ee4093a3750827bbb (patch)
treecff099f45911d0268bf437b681806c1c6d02d035 /perl-install/standalone/printerdrake
parentc3f96765d1b067bbdc8353306ed5f5d1d8b77256 (diff)
downloaddrakx-backup-do-not-use-b3744cad92fd206ec5236f0ee4093a3750827bbb.tar
drakx-backup-do-not-use-b3744cad92fd206ec5236f0ee4093a3750827bbb.tar.gz
drakx-backup-do-not-use-b3744cad92fd206ec5236f0ee4093a3750827bbb.tar.bz2
drakx-backup-do-not-use-b3744cad92fd206ec5236f0ee4093a3750827bbb.tar.xz
drakx-backup-do-not-use-b3744cad92fd206ec5236f0ee4093a3750827bbb.zip
Reverted button texts to not break existing translations, added hints
for translators to make the button texts short.
Diffstat (limited to 'perl-install/standalone/printerdrake')
-rwxr-xr-xperl-install/standalone/printerdrake10
1 files changed, 8 insertions, 2 deletions
diff --git a/perl-install/standalone/printerdrake b/perl-install/standalone/printerdrake
index f6b424389..c392ba991 100755
--- a/perl-install/standalone/printerdrake
+++ b/perl-install/standalone/printerdrake
@@ -213,11 +213,17 @@ map {
my $t = $toolb->append_item($_->[0], $_->[1], $_->[2],
Gtk2::Image->new_from_file($pixdir . $_->[2] . '.png'), $_->[3], $toolb); push(@toolbwg, $t);
# $toolb->append_space;
-} ( [ N("Add"), N("Add a new printer to the system"), 'printer_add', \&AddPrinter ],
- [ N("Default"), N("Set selected printer as the default printer"), 'printer_default', \&SetAsDefault ],
+#-PO "Add Printer" is a button text and the translation has to be AS SHORT AS POSSIBLE
+} ( [ N("Add Printer"), N("Add a new printer to the system"), 'printer_add', \&AddPrinter ],
+#-PO "Set as default" is a button text and the translation has to be AS SHORT AS POSSIBLE
+ [ N("Set as default"), N("Set selected printer as the default printer"), 'printer_default', \&SetAsDefault ],
+#-PO "Edit" is a button text and the translation has to be AS SHORT AS POSSIBLE
[ N("Edit"), N("Edit selected printer"), 'printer_conf', \&Edit ],
+#-PO "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
[ N("Delete"), N("Delete selected printer"), 'printer_del', \&Delete ],
+#-PO "Refresh" is a button text and the translation has to be AS SHORT AS POSSIBLE
[ N("Refresh"), N("Refresh the list"), 'refresh', sub { Refresh($stringsearch) } ],
+#-PO "Configure CUPS" is a button text and the translation has to be AS SHORT AS POSSIBLE
[ N("Configure CUPS"), N("Configure CUPS printing system"), 'cups_config', \&ConfigCUPS ]
);
my ($tbadd, $tbdefault, $tbedit, $tbdel, $tbref, $tbconfig) = @toolbwg;