2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "claws-features.h"
34 #if !defined(LC_MESSAGES) && defined(G_OS_WIN32)
39 #include "prefs_common.h"
44 static gchar
*get_language()
50 language
= g_win32_getlocale();
52 language
= g_strdup(setlocale(LC_MESSAGES
, NULL
));
55 return g_strdup("en");
57 if((c
= strchr(language
, ',')) != NULL
)
59 if((c
= strchr(language
, '_')) != NULL
)
65 static gchar
*get_local_path_with_locale(gchar
*rootpath
)
67 gchar
*lang_str
, *dir
;
69 lang_str
= get_language();
70 dir
= g_strconcat(rootpath
, G_DIR_SEPARATOR_S
,
73 if(!is_dir_exist(dir
)) {
75 dir
= g_strconcat(rootpath
, G_DIR_SEPARATOR_S
,
77 if(!is_dir_exist(dir
)) {
86 gboolean
manual_available(ManualType type
)
89 gchar
*dir
= NULL
, *uri
= NULL
;
92 case MANUAL_MANUAL_CLAWS
:
93 dir
= get_local_path_with_locale(MANUALDIR
);
95 uri
= g_strconcat(dir
, G_DIR_SEPARATOR_S
, MANUAL_HTML_INDEX
, NULL
);
97 if (is_file_exist(uri
))
111 void manual_open(ManualType type
, gchar
*url_anchor
)
117 case MANUAL_MANUAL_CLAWS
:
118 dir
= get_local_path_with_locale(MANUALDIR
);
120 gchar
*tmp_anchor
= NULL
;
121 if (url_anchor
&& *url_anchor
!= '\0')
122 tmp_anchor
= g_strconcat("#", url_anchor
, NULL
);
123 uri
= g_strconcat("file://",
124 dir
, G_DIR_SEPARATOR_S
, MANUAL_HTML_INDEX
,
130 uri
= g_strconcat(MANUAL_URI
, NULL
);
133 case MANUAL_FAQ_CLAWS
:
134 uri
= g_strconcat(FAQ_URI
, NULL
);
140 open_uri(uri
, prefs_common_get_uri_cmd());
144 void manual_open_with_anchor_cb(GtkWidget
*widget
, gchar
*url_anchor
)
146 manual_open(MANUAL_MANUAL_CLAWS
, url_anchor
);