summaryrefslogtreecommitdiff
path: root/libmate-desktop/mate-languages.h
diff options
context:
space:
mode:
authoryetist <[email protected]>2018-06-16 22:49:57 +0800
committerraveit65 <[email protected]>2018-07-03 10:30:35 +0200
commitecf2fbdb7cbad7f8e7dfef8efcbce82308739c02 (patch)
treea2c78a94d790b5593642fc1c6038c8d468d9e615 /libmate-desktop/mate-languages.h
parent3ee67b32a851ca258bc838a132c25c08c731db21 (diff)
downloadmate-desktop-ecf2fbdb7cbad7f8e7dfef8efcbce82308739c02.tar.bz2
mate-desktop-ecf2fbdb7cbad7f8e7dfef8efcbce82308739c02.tar.xz
add mate-language apis
Diffstat (limited to 'libmate-desktop/mate-languages.h')
-rw-r--r--libmate-desktop/mate-languages.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/libmate-desktop/mate-languages.h b/libmate-desktop/mate-languages.h
new file mode 100644
index 0000000..2a800c4
--- /dev/null
+++ b/libmate-desktop/mate-languages.h
@@ -0,0 +1,51 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright 2008 Red Hat, Inc.
+ * Copyright 2007 William Jon McCann <[email protected]>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Written by: Ray Strode
+ * William Jon McCann
+ */
+
+#ifndef __MATE_LANGUAGES_H
+#define __MATE_LANGUAGES_H
+
+#ifndef MATE_DESKTOP_USE_UNSTABLE_API
+#error This is unstable API. You must define MATE_DESKTOP_USE_UNSTABLE_API before including mate-languages.h
+#endif
+
+G_BEGIN_DECLS
+
+char * mate_get_language_from_locale (const char *locale,
+ const char *translation);
+char * mate_get_country_from_locale (const char *locale,
+ const char *translation);
+char ** mate_get_all_locales (void);
+gboolean mate_parse_locale (const char *locale,
+ char **language_codep,
+ char **country_codep,
+ char **codesetp,
+ char **modifierp);
+char * mate_normalize_locale (const char *locale);
+gboolean mate_language_has_translations (const char *code);
+char * mate_get_language_from_code (const char *code,
+ const char *translation);
+char * mate_get_country_from_code (const char *code,
+ const char *translation);
+
+G_END_DECLS
+
+#endif /* __MATE_LANGUAGES_H */