summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in1
-rw-r--r--src/password.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index b457fd9a..10411c5e 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -342,6 +342,7 @@ pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
+runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
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