diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2017-10-30 01:49:35 +0100 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2017-12-04 19:14:06 +0100 |
commit | ab9f2e70e4914a2ca943c2584696ea06da397f11 (patch) | |
tree | 7859dc05be0f07c13e0b8e7660f2d493962ec482 /src | |
parent | Update Turkish translation (diff) | |
download | zenity-ab9f2e70e4914a2ca943c2584696ea06da397f11.tar.gz zenity-ab9f2e70e4914a2ca943c2584696ea06da397f11.tar.bz2 zenity-ab9f2e70e4914a2ca943c2584696ea06da397f11.zip |
password: Replace N_() with regular _()
These two strings show up in English when they should be translated.
https://bugzilla.gnome.org/show_bug.cgi?id=783078
Diffstat (limited to 'src')
-rw-r--r-- | src/password.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/password.c b/src/password.c index 44a2a204..a5490d35 100644 --- a/src/password.c +++ b/src/password.c @@ -67,10 +67,10 @@ zenity_password_dialog (ZenityData *data, ZenityPasswordData *password_data) { gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 12); /* Checks if username has been passed as a parameter */ - gchar *title_text = N_ ("Type your password"); + gchar *title_text = _ ("Type your password"); if (password_data->username) - title_text = N_ ("Type your username and password"); + title_text = _ ("Type your username and password"); label = gtk_label_new (title_text); |