summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/draksplash
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-06-14 08:31:12 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-06-14 08:31:12 +0000
commita89308a82a709a44bdcf79ac68c36d3f8155d1d8 (patch)
treec83daf911e365e4cc17f1e0cb89e005ecdc77d4b /perl-install/standalone/draksplash
parent4542b277aca1cbe20cb121fb97e07647f13e49bf (diff)
downloaddrakx-backup-do-not-use-a89308a82a709a44bdcf79ac68c36d3f8155d1d8.tar
drakx-backup-do-not-use-a89308a82a709a44bdcf79ac68c36d3f8155d1d8.tar.gz
drakx-backup-do-not-use-a89308a82a709a44bdcf79ac68c36d3f8155d1d8.tar.bz2
drakx-backup-do-not-use-a89308a82a709a44bdcf79ac68c36d3f8155d1d8.tar.xz
drakx-backup-do-not-use-a89308a82a709a44bdcf79ac68c36d3f8155d1d8.zip
enforce introduction of translators hints into translation catalogs
(perl_checker should have been loudly complain on those!!!! :-(): - add missing coma caracter - move them near translations note that i didn't bother check po comments that already have the proper comma. instead this should be done by perl_checker which should warn about po comments out of translation calls and tags contexts
Diffstat (limited to 'perl-install/standalone/draksplash')
-rwxr-xr-xperl-install/standalone/draksplash5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index 6ca423c54..527631bd6 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -510,8 +510,9 @@ sub show_prev {
my ($txt_tl_xx, $txt_tl_yy, $txt_width, $txt_height, $prog_tl_xx, $prog_tl_yy, $prog_width, $prog_height) = @_;
$prev_window
or $prev_window = Gtk2::Window->new('toplevel');
-#-PO First %s is theme name, second %s (in parenthesis) is resolution
- $prev_window->set_title(N("%s BootSplash (%s) preview", $theme{name}, $theme{res}{res}));
+ $prev_window->set_title(
+ #-PO: First %s is theme name, second %s (in parenthesis) is resolution
+ N("%s BootSplash (%s) preview", $theme{name}, $theme{res}{res}));
$prev_pic = gtkcreate_pixbuf($img_file);
$prev_pic->scale_simple($theme{res}{w}, $theme{res}{h}, 'hyper');
$prev_canvas && $prev_canvas->isa('Gtk2::Widget')