diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-13 04:08:25 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-13 04:08:25 +0800 |
commit | daf9595797776944cc11626c7ac0c444a0602090 (patch) | |
tree | e28958cb51da73f2c8d41de7fc1087f3c82946c8 /src | |
parent | fe1419fe5d8f024214f008cf7cf2af61cf7b241f (diff) | |
download | gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.tar gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.tar.gz gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.tar.bz2 gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.tar.lz gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.tar.xz gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.tar.zst gsoc2013-epiphany-daf9595797776944cc11626c7ac0c444a0602090.zip |
Unify fallback downloads dir to get the home directory.
2004-02-12 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/MozDownload.cpp:
* src/prefs-dialog.c: (get_download_button_label):
Unify fallback downloads dir to get the home directory.
Diffstat (limited to 'src')
-rw-r--r-- | src/prefs-dialog.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 9b0a228a4..398b90a89 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1093,17 +1093,7 @@ get_download_button_label () downloads_path = ephy_file_downloads_dir (); converted_dp = g_filename_to_utf8 (downloads_path, -1, NULL, NULL, NULL); - if (key == NULL || - g_utf8_collate (key, converted_dp) == 0 || - g_utf8_collate (key, "Downloads") == 0) - { - label = g_strdup (_("Downloads")); - } - else if (g_utf8_collate (key, "~/Desktop") == 0) - { - label = g_strdup (_("Desktop")); - } - else if (g_utf8_collate (key, "~") == 0) + if (key == NULL || g_utf8_collate (key, "~") == 0) { /* Note that this does NOT refer to the home page but to a * user's home folder. It should be translated by the same @@ -1111,6 +1101,15 @@ get_download_button_label () * filechooser */ label = g_strdup (_("Home")); } + else if ((converted_dp != NULL && g_utf8_collate (key, converted_dp) == 0) || + g_utf8_collate (key, "Downloads") == 0) + { + label = g_strdup (_("Downloads")); + } + else if (g_utf8_collate (key, "~/Desktop") == 0) + { + label = g_strdup (_("Desktop")); + } else { label = g_strdup (key); |