diff options
author | Stefan Siegel <siegel@linux-mandrake.com> | 2002-09-15 22:42:20 +0000 |
---|---|---|
committer | Stefan Siegel <siegel@linux-mandrake.com> | 2002-09-15 22:42:20 +0000 |
commit | 39bc24052e595e69187bc7b62f9e2fcb0b61d4d1 (patch) | |
tree | c46817144e1631b343941936f66bde26967c5c1b | |
parent | 9b96eaeba957a2e9a4202c57dd9c220fee22b2d3 (diff) | |
download | control-center-39bc24052e595e69187bc7b62f9e2fcb0b61d4d1.tar control-center-39bc24052e595e69187bc7b62f9e2fcb0b61d4d1.tar.gz control-center-39bc24052e595e69187bc7b62f9e2fcb0b61d4d1.tar.bz2 control-center-39bc24052e595e69187bc7b62f9e2fcb0b61d4d1.tar.xz control-center-39bc24052e595e69187bc7b62f9e2fcb0b61d4d1.zip |
added strings for our translators to be shown in the about box
-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"); |