diff options
author | Ted Gould <ted@gould.cx> | 2011-08-19 21:23:57 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-08-19 21:23:57 -0500 |
commit | 229e92aa9c59c822808bf9e129592247347e22b8 (patch) | |
tree | 3fe0e5da9afb76640628633050d80056d3d77100 /src/dialog.c | |
parent | af742655e42477d3333dc85dadfc3d5df300680d (diff) | |
download | ayatana-indicator-session-229e92aa9c59c822808bf9e129592247347e22b8.tar.gz ayatana-indicator-session-229e92aa9c59c822808bf9e129592247347e22b8.tar.bz2 ayatana-indicator-session-229e92aa9c59c822808bf9e129592247347e22b8.zip |
Fix all the ellipsis
Diffstat (limited to 'src/dialog.c')
-rw-r--r-- | src/dialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dialog.c b/src/dialog.c index 299f954..45cfdcb 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -53,15 +53,15 @@ static const gchar * button_strings[LOGOUT_DIALOG_TYPE_CNT] = { they are also going to get a password dialog to do the action. */ static const gchar * button_auth_strings[LOGOUT_DIALOG_TYPE_CNT] = { /* LOGOUT_DIALOG_LOGOUT, */ NC_("button auth", "Log Out"), - /* LOGOUT_DIALOG_RESTART, */ NC_("button auth", "Restart..."), - /* LOGOUT_DIALOG_SHUTDOWN, */ NC_("button auth", "Shut Down...") + /* LOGOUT_DIALOG_RESTART, */ NC_("button auth", "Restart…"), + /* LOGOUT_DIALOG_SHUTDOWN, */ NC_("button auth", "Shut Down…") }; /* TRANSLATORS: This button appears on the logout dialog when there are updates that require restart. It will do a restart in place of a log out. */ static const gchar * restart_updates = N_("Restart Instead"); -static const gchar * restart_auth = N_("Restart Instead..."); +static const gchar * restart_auth = N_("Restart Instead…"); static const gchar * body_logout_update = N_("Some software updates won't apply until the computer next restarts."); static const gchar * icon_strings[LOGOUT_DIALOG_TYPE_CNT] = { |