aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-file-helpers.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2005-12-12 01:44:10 +0800
committerChristian Persch <chpe@src.gnome.org>2005-12-12 01:44:10 +0800
commit7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91 (patch)
treec4f5d04fe2a3c07eb2735b5a3af3a3ca81f38400 /lib/ephy-file-helpers.c
parent33b7f0572e78df411eb8c6e02182c1397a027089 (diff)
downloadgsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.tar
gsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.tar.gz
gsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.tar.bz2
gsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.tar.lz
gsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.tar.xz
gsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.tar.zst
gsoc2013-epiphany-7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91.zip
Fix quote character
Diffstat (limited to 'lib/ephy-file-helpers.c')
-rw-r--r--lib/ephy-file-helpers.c4
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;
}
}