diff options
-rwxr-xr-x | control-center | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/control-center b/control-center index d23cafa5..fec8dc67 100755 --- a/control-center +++ b/control-center @@ -1982,7 +1982,8 @@ sub about_mdk_cc() { #-PO Add your E-Mail address here if you want to show it in the about doialog. my $translator_email = N("_: EMAIL OF TRANSLATORS\nYour emails"); if ($translator_name ne "Your names" && 0) { - $tree_model->append_set(undef, [ 0 => $_->[0], 1 => $_->[1] ]) foreach [ '', '' ], [ N("Translator: "), $translator_name, $translator_email ]; + $tree_model->append_set(undef, [ 0 => $_->[0], 1 => $_->[1] ]) foreach [ '', '' ], [ N("Translator: ") ]; + $tree_model->append_set(undef, [ 0 => $_->[0], 1 => $_->[1] ]) foreach [ '', $translator_name, $translator_email ]; } $list->get_selection->set_mode('none'); |