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
This commit is contained in:
Piotr Drąg 2017-10-30 01:49:35 +01:00
parent 3edfe6bdae
commit ab9f2e70e4
1 changed files with 2 additions and 2 deletions

View File

@ -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);