From 2e2dc9b9e32d104a0f7c3241ea0c11b57a37fd5b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 16 Aug 2015 17:32:01 +1000 Subject: Refactor translation code out of blenfont - Add blentranslation `BLT_*` module. - moved & split `BLF_translation.h` into (`BLT_translation.h`, `BLT_lang.h`). - moved `BLF_*_unifont` functions from `blf_translation.c` to new source file `blf_font_i18n.c`. --- .../blentranslation/intern/blt_translation.c | 185 +++++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 source/blender/blentranslation/intern/blt_translation.c (limited to 'source/blender/blentranslation/intern/blt_translation.c') diff --git a/source/blender/blentranslation/intern/blt_translation.c b/source/blender/blentranslation/intern/blt_translation.c new file mode 100644 index 00000000000..2651fbbe1f0 --- /dev/null +++ b/source/blender/blentranslation/intern/blt_translation.c @@ -0,0 +1,185 @@ +/* + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * 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, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * The Original Code is Copyright (C) 2011 Blender Foundation. + * All rights reserved. + * + * Contributor(s): Blender Foundation, + * Sergey Sharybin + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/blenfont/intern/blt_translation.c + * \ingroup blt + * + * Manages translation files and provides translation functions. + * (which are optional and can be disabled as a preference). + */ + +#include +#include + +#include "BLT_translation.h" + +#include "MEM_guardedalloc.h" + +#include "BLI_fileops.h" +#include "BLI_path_util.h" +#include "BLI_string.h" + +#include "DNA_userdef_types.h" /* For user settings. */ + +#ifdef WITH_PYTHON +#include "BPY_extern.h" +#endif + +#ifdef WITH_INTERNATIONAL +#include "boost_locale_wrapper.h" +#endif /* WITH_INTERNATIONAL */ + +bool BLT_is_default_context(const char *msgctxt) +{ + /* We use the "short" test, a more complete one could be: + * return (!msgctxt || !msgctxt[0] || STREQ(msgctxt, BLT_I18NCONTEXT_DEFAULT_BPYRNA)) + */ + /* Note: trying without the void string check for now, it *should* not be necessary... */ + return (!msgctxt || msgctxt[0] == BLT_I18NCONTEXT_DEFAULT_BPYRNA[0]); +} + +const char *BLT_pgettext(const char *msgctxt, const char *msgid) +{ +#ifdef WITH_INTERNATIONAL + const char *ret = msgid; + + if (msgid && msgid[0]) { + if (BLT_is_default_context(msgctxt)) { + msgctxt = BLT_I18NCONTEXT_DEFAULT; + } + ret = bl_locale_pgettext(msgctxt, msgid); + /* We assume if the returned string is the same (memory level) as the msgid, no translation was found, + * and we can try py scripts' ones! + */ +#ifdef WITH_PYTHON + if (ret == msgid) { + ret = BPY_app_translations_py_pgettext(msgctxt, msgid); + } +#endif + } + + return ret; +#else + (void)msgctxt; + return msgid; +#endif +} + +bool BLT_translate(void) +{ +#ifdef WITH_INTERNATIONAL + return (U.transopts & USER_DOTRANSLATE) != 0; +#else + return false; +#endif +} + +bool BLT_translate_iface(void) +{ +#ifdef WITH_INTERNATIONAL + return (U.transopts & USER_DOTRANSLATE) && (U.transopts & USER_TR_IFACE); +#else + return false; +#endif +} + +bool BLT_translate_tooltips(void) +{ +#ifdef WITH_INTERNATIONAL + return (U.transopts & USER_DOTRANSLATE) && (U.transopts & USER_TR_TOOLTIPS); +#else + return false; +#endif +} + +bool BLT_translate_new_dataname(void) +{ +#ifdef WITH_INTERNATIONAL + return (U.transopts & USER_DOTRANSLATE) && (U.transopts & USER_TR_NEWDATANAME); +#else + return false; +#endif +} + +const char *BLT_translate_do(const char *msgctxt, const char *msgid) +{ +#ifdef WITH_INTERNATIONAL + if (BLT_translate()) { + return BLT_pgettext(msgctxt, msgid); + } + else { + return msgid; + } +#else + (void)msgctxt; + return msgid; +#endif +} + +const char *BLT_translate_do_iface(const char *msgctxt, const char *msgid) +{ +#ifdef WITH_INTERNATIONAL + if (BLT_translate_iface()) { + return BLT_pgettext(msgctxt, msgid); + } + else { + return msgid; + } +#else + (void)msgctxt; + return msgid; +#endif +} + +const char *BLT_translate_do_tooltip(const char *msgctxt, const char *msgid) +{ +#ifdef WITH_INTERNATIONAL + if (BLT_translate_tooltips()) { + return BLT_pgettext(msgctxt, msgid); + } + else { + return msgid; + } +#else + (void)msgctxt; + return msgid; +#endif +} + +const char *BLT_translate_do_new_dataname(const char *msgctxt, const char *msgid) +{ +#ifdef WITH_INTERNATIONAL + if (BLT_translate_new_dataname()) { + return BLT_pgettext(msgctxt, msgid); + } + else { + return msgid; + } +#else + (void)msgctxt; + return msgid; +#endif +} -- cgit v1.2.3