diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-07-04 00:25:57 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2012-07-04 00:25:57 -0500 |
commit | a1b4f7af9012865509c1407a76cb53c0c11d2e13 (patch) | |
tree | 2c888e9603bb8c62ced1384515dc9cadb4606e22 /src/dialog.c | |
parent | d2f4e9babc16e7fabe0a46fb956fa0236df11784 (diff) | |
download | ayatana-indicator-session-a1b4f7af9012865509c1407a76cb53c0c11d2e13.tar.gz ayatana-indicator-session-a1b4f7af9012865509c1407a76cb53c0c11d2e13.tar.bz2 ayatana-indicator-session-a1b4f7af9012865509c1407a76cb53c0c11d2e13.zip |
in gtk-logout-helper, rename 'Shut Down' to 'Switch Off' to match the session indicator's text
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 fe93e59..c46ac80 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -34,7 +34,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. static const gchar * title_strings[LOGOUT_DIALOG_TYPE_CNT] = { /* LOGOUT_DIALOG_LOGOUT, */ NC_("title", "Log Out"), /* LOGOUT_DIALOG_RESTART, */ NC_("title", "Restart"), - /* LOGOUT_DIALOG_SHUTDOWN, */ NC_("title", "Shut Down") + /* LOGOUT_DIALOG_SHUTDOWN, */ NC_("title", "Switch Off") }; static const gchar * body_strings[LOGOUT_DIALOG_TYPE_CNT] = { @@ -46,7 +46,7 @@ static const gchar * body_strings[LOGOUT_DIALOG_TYPE_CNT] = { static const gchar * button_strings[LOGOUT_DIALOG_TYPE_CNT] = { /* LOGOUT_DIALOG_LOGOUT, */ NC_("button", "Log Out"), /* LOGOUT_DIALOG_RESTART, */ NC_("button", "Restart"), - /* LOGOUT_DIALOG_SHUTDOWN, */ NC_("button", "Shut Down") + /* LOGOUT_DIALOG_SHUTDOWN, */ NC_("button", "Switch Off") }; /* TRANSLATORS: These strings have an ellipsis so that the user knows @@ -54,7 +54,7 @@ static const gchar * button_strings[LOGOUT_DIALOG_TYPE_CNT] = { 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_SHUTDOWN, */ NC_("button auth", "Switch Off…") }; /* TRANSLATORS: This button appears on the logout dialog when |