summaryrefslogtreecommitdiff
path: root/src/password.c
diff options
context:
space:
mode:
authorJeremy Bicha <jbicha@ubuntu.com>2018-02-03 23:46:59 -0500
committerJeremy Bicha <jbicha@ubuntu.com>2018-02-03 23:46:59 -0500
commit956173d487684dfb4bf82f9ea0ff4afc9ee49db3 (patch)
treefd70debbc48cff15773f61e57afd5bd29af31b40 /src/password.c
parentgbp.conf: Add upstream-vcs-tag (diff)
parentNew upstream version 3.27.90 (diff)
downloadzenity-956173d487684dfb4bf82f9ea0ff4afc9ee49db3.tar.gz
zenity-956173d487684dfb4bf82f9ea0ff4afc9ee49db3.tar.bz2
zenity-956173d487684dfb4bf82f9ea0ff4afc9ee49db3.zip
Update upstream source from tag 'upstream/3.27.90'
Update to upstream version '3.27.90' with Debian dir e652874c3c973e3fa3d210b95073d864150e81ba
Diffstat (limited to 'src/password.c')
-rw-r--r--src/password.c4
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);
bgstack15