diff options
author | Christian Persch <chpe@src.gnome.org> | 2005-12-12 01:34:39 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-12-12 01:34:39 +0800 |
commit | 33b7f0572e78df411eb8c6e02182c1397a027089 (patch) | |
tree | 7a943b481e8f8ef216b388c456ec88a10e781f6b /lib | |
parent | 964e14441c3a82e714381f23adc68df5a1831801 (diff) | |
download | gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.tar gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.tar.gz gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.tar.bz2 gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.tar.lz gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.tar.xz gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.tar.zst gsoc2013-epiphany-33b7f0572e78df411eb8c6e02182c1397a027089.zip |
Fix quote character
Diffstat (limited to 'lib')
-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 7a6669ee7..a6de4d79d 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; } } |