diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-02-02 04:22:45 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-02-02 07:56:47 +0800 |
commit | 24f9ae66d93292f4f54472a44aabd67e0eff8bad (patch) | |
tree | 74863b57b772ab2f07af3aab0f38b0c165863b49 /lib | |
parent | 2818ee11aa0c6eb49ec2ce8aba3cc20f76a44940 (diff) | |
download | gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.tar gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.tar.gz gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.tar.bz2 gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.tar.lz gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.tar.xz gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.tar.zst gsoc2013-epiphany-24f9ae66d93292f4f54472a44aabd67e0eff8bad.zip |
ephy-file-helpers: use localized folder names
Bug #608749
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 7ea371632..c26584921 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -156,12 +156,12 @@ ephy_file_get_downloads_dir (void) download_dir = eel_gconf_get_string (CONF_STATE_DOWNLOAD_DIR); - if (download_dir && strcmp (download_dir, "Downloads") == 0) + if (download_dir && strcmp (download_dir, _("Downloads")) == 0) { g_free (download_dir); download_dir = ephy_file_downloads_dir (); } - else if (download_dir && strcmp (download_dir, "Desktop") == 0) + else if (download_dir && strcmp (download_dir, _("Desktop")) == 0) { g_free (download_dir); download_dir = ephy_file_desktop_dir (); |