summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-02-01 23:45:36 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-02-01 23:45:36 +0100
commit6324c61202fca81c0dae6fab4ce8e9f7e42a2dd6 (patch)
tree2e0c259de33a3fe9fe79f73b1f33b9709775fd70
parente8fa31c7714bfe0d7e5f0b1d149f538b75b9aba8 (diff)
downloaddrakx-6324c61202fca81c0dae6fab4ce8e9f7e42a2dd6.tar
drakx-6324c61202fca81c0dae6fab4ce8e9f7e42a2dd6.tar.gz
drakx-6324c61202fca81c0dae6fab4ce8e9f7e42a2dd6.tar.bz2
drakx-6324c61202fca81c0dae6fab4ce8e9f7e42a2dd6.tar.xz
drakx-6324c61202fca81c0dae6fab4ce8e9f7e42a2dd6.zip
fix untranslated "Help" entry in menu (mga#12497)
one string wasn't tagged as "to be translate" in commit ca6a026a23f723a74dab9a7d3afc11c2a43c01f2
-rw-r--r--perl-install/NEWS3
-rwxr-xr-xperl-install/standalone/harddrake22
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 9d2c7ce30..17ef428cf 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- harddrake:
+ o fix untranslated "Help" entry in menu (mga#12497)
+
Version 16.26.7 - 25 January 2014
- do not exec pkexec but run it so it has a parent process to fix double fork
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2
index 1caabb455..566560643 100755
--- a/perl-install/standalone/harddrake2
+++ b/perl-install/standalone/harddrake2
@@ -191,7 +191,7 @@ my $ui = gtknew('UIManager', actions => [
[ 'FileMenu', undef, N("_File") ],
[ 'Quit', undef, N("_Quit"), N("<control>Q"), undef, \&quit_global ],
[ 'OptionsMenu', undef, '_Options' ],
- [ 'HelpMenu', undef, '_Help' ],
+ [ 'HelpMenu', undef, N("_Help") ],
if_($has_help, [ 'Help', undef, N("_Help"), N("<control>H"), undef, \&run_help ]),
[ 'Fields description', undef, N("_Fields description"), undef, undef, \&fields_help ],
[ 'Report Bug', undef, N("_Report Bug"), undef, undef, \&run_drakbug ],