* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl * all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string") * ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching MODULE .mo files * UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui goes from l10n target to normal one, so the res/lang.zips of UI files go away * translation via Translation::get(hrc-define-key, imbued-std::locale) * python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there to keep finding the .hrc file uniform) so magic numbers can go away there * java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun:⭐:resource::OfficeResourceLoader com::sun:⭐:resource::XResourceBundleLoader com::sun:⭐:resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_SFX2_INC_STRINGS_HXX
|
|
#define INCLUDED_SFX2_INC_STRINGS_HXX
|
|
|
|
#define STR_HTML_GENERATOR "%PRODUCTNAME %PRODUCTVERSION%PRODUCTEXTENSION (%1)"
|
|
|
|
// Do not translate STR_TEMPLATE_NAME*_DEF names!!
|
|
#define STR_TEMPLATE_NAME1_DEF "Abstract Green"
|
|
#define STR_TEMPLATE_NAME2_DEF "Abstract Red"
|
|
#define STR_TEMPLATE_NAME3_DEF "Abstract Yellow"
|
|
#define STR_TEMPLATE_NAME4_DEF "Bright Blue"
|
|
#define STR_TEMPLATE_NAME5_DEF "DNA"
|
|
#define STR_TEMPLATE_NAME6_DEF "Inspiration"
|
|
#define STR_TEMPLATE_NAME7_DEF "Lush Green"
|
|
#define STR_TEMPLATE_NAME8_DEF "Metropolis"
|
|
#define STR_TEMPLATE_NAME9_DEF "Sunset"
|
|
#define STR_TEMPLATE_NAME10_DEF "Vintage"
|
|
|
|
#define SFX_ST_EDIT "..."
|
|
|
|
#define CMIS_TYPE_STRING "String"
|
|
#define CMIS_TYPE_INTEGER "Integer"
|
|
#define CMIS_TYPE_DECIMAL "Decimal"
|
|
#define CMIS_TYPE_DATETIME "Datetime"
|
|
#define CMIS_TYPE_BOOL "Bool"
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|