Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-window-title.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-02-01 17:13:46 (GMT)
committer Philip Withnall <philip@tecnocode.co.uk>2010-02-03 15:21:35 (GMT)
commit766adb9bff7a5c8ada0d18cafd3643e647fb6f23 (patch)
treee7073f068913cff28e8f5fa0e99672a80554e869 /shell/ev-window-title.c
parentd098f8e9bc72fb6406b75776c875d486be928e72 (diff)
Assorted string fixes
Assorted string fixes, fixing some missing words, incorrect capitalisation; and converting ellipses and dashes into the appropriate Unicode characters.
Diffstat (limited to 'shell/ev-window-title.c')
-rw-r--r--shell/ev-window-title.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window-title.c b/shell/ev-window-title.c
index ca2429b..2fcb3d9 100644
--- a/shell/ev-window-title.c
+++ b/shell/ev-window-title.c
@@ -159,7 +159,7 @@ ev_window_title_update (EvWindowTitle *window_title)
gtk_window_set_title (window, title);
break;
case EV_WINDOW_TITLE_PASSWORD:
- password_title = g_strdup_printf (_("%s - Password Required"), title);
+ password_title = g_strdup_printf (_("%s — Password Required"), title);
gtk_window_set_title (window, password_title);
g_free (password_title);
break;