diff options
-rw-r--r-- | lib/ephy-file-helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index a6de4d79d..29a3d9957 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -309,13 +309,13 @@ ephy_ensure_dir_exists (const char *dir) { if (g_file_test (dir, G_FILE_TEST_EXISTS) == TRUE) { - g_warning (_("ā%sā exists, please move it out of the way."), dir); + g_warning (_("\"%s\" exists, please move it out of the way."), dir); return FALSE; } if (mkdir (dir, 488) != 0) { - g_warning (_("Failed to create directory ā%sā."), dir); + g_warning (_("Failed to create directory \"%s\"."), dir); return FALSE; } } |