diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-09-25 18:49:50 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-09-25 18:49:50 -0400 |
commit | 156a99e304247504a486f0911596ab5765ad1add (patch) | |
tree | 109383061cce2015132895e2b8e171a018611997 /src/option.c | |
parent | msg: Add an option to set a custom dialog icon (diff) | |
download | zenity-156a99e304247504a486f0911596ab5765ad1add.tar.gz zenity-156a99e304247504a486f0911596ab5765ad1add.tar.bz2 zenity-156a99e304247504a486f0911596ab5765ad1add.zip |
Don't break the string freeze
I'm out of time waiting for a second string freeze break approval,
so the strings will be untranslated for now.
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/option.c b/src/option.c index 13275d1c..ae2dc080 100644 --- a/src/option.c +++ b/src/option.c @@ -218,7 +218,7 @@ static GOptionEntry general_options[] = { G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_NONE, &zenity_general_modal, - N_("Set the modal hint"), + "Set the modal hint", NULL }, { @@ -354,8 +354,8 @@ static GOptionEntry error_options[] = { G_OPTION_FLAG_NOALIAS, G_OPTION_ARG_STRING, &zenity_general_dialog_icon, - N_("Set the dialog icon"), - N_("ICON-NAME") + "Set the dialog icon", + "ICON-NAME" }, { "no-wrap", |