diff options
-rwxr-xr-x | control-center | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/control-center b/control-center index aa69de66..073a40ed 100755 --- a/control-center +++ b/control-center @@ -751,6 +751,21 @@ sub about_mdk_cc { _("Helene Durosini"), 'ln@mandrakesoft.com'], [ '', 'Anh-Van Nguyen' ,'avnguyen@mandrakesoft.com'], ); + + # Give our translators the ability to show their family and + # friends that thez participated ... + +#-PO Add your Name here to find it in the About section in your language. + my $translator_name = _('~#*#~'); +#-PO Add your E-Mail address here if you want to show it in the about doialog. + my $translator_email = _('~#@#~'); + if ( "$translator_name" ne '~#*#~' ){ + $i++, $clist->append(@$_) foreach ( + [ '', ''], + [ _("Translator: "), + $translator_name, $translator_email], + ); + } $clist->set_selectable($_, 0) foreach (0..$i); $clist->columns_autosize(); $clist->set_column_justification(0, "right"); |