diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2008-02-21 11:57:06 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2008-02-21 12:02:18 +0100 |
| commit | 2cb31da22c0a357a2251aabc660e0cc14b215d97 (patch) | |
| tree | ebc6a113211e56fc5c77840f175f9c6c0781c4c7 /openbox/openbox.c | |
| parent | 4642d896a8a5f7f1d8c6d22e13c07d6ea21f53de (diff) | |
Change all single quotes to double quotes in strings.
Diffstat (limited to 'openbox/openbox.c')
| -rw-r--r-- | openbox/openbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c index 46da8fee..6233ec98 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -131,7 +131,7 @@ gint main(gint argc, gchar **argv) textdomain(PACKAGE_NAME); if (chdir(g_get_home_dir()) == -1) - g_message(_("Unable to change to home directory '%s': %s"), + g_message(_("Unable to change to home directory \"%s\": %s"), g_get_home_dir(), g_strerror(errno)); /* parse the command line args, which can change the argv[0] */ @@ -425,7 +425,7 @@ gint main(gint argc, gchar **argv) g_strfreev(argvp); } else { g_message( - _("Restart failed to execute new executable '%s': %s"), + _("Restart failed to execute new executable \"%s\": %s"), restart_path, err->message); g_error_free(err); } @@ -634,7 +634,7 @@ static void parse_args(gint *argc, gchar **argv) else { /* this is a memleak.. oh well.. heh */ gchar *err = g_strdup_printf - (_("Invalid command line argument '%s'\n"), argv[i]); + (_("Invalid command line argument \"%s\"\n"), argv[i]); ob_exit_with_error(err); } } |
