aboutsummaryrefslogtreecommitdiff
path: root/source/tt/setup_native
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-07-12 17:39:22 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-07-12 18:13:23 +0200
commitd317414f8297e51842dc450bfaf5eeff5cb164ff (patch)
tree5babe7bb9637fe737061f1f202bb90fbd1d414f6 /source/tt/setup_native
parent60225a1ba7744aef045da360e5dbbfe3261636c2 (diff)
update translations
and force-fix errors using pocheck also update po files for low-completion-ratio (<10% in UI) langs Change-Id: I5c1d8fc0368c79a8d1d732cc21258214c7a39502
Diffstat (limited to 'source/tt/setup_native')
-rw-r--r--source/tt/setup_native/source/mac.po14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/tt/setup_native/source/mac.po b/source/tt/setup_native/source/mac.po
index 484990f0e59..3c36aa4bdb9 100644
--- a/source/tt/setup_native/source/mac.po
+++ b/source/tt/setup_native/source/mac.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2017-04-12 14:14+0200\n"
+"PO-Revision-Date: 2013-08-01 17:00+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1375376442.000000\n"
#: macinstall.ulf
msgctxt ""
@@ -139,7 +141,7 @@ msgctxt ""
"macinstall.ulf\n"
"IdentifyQText\n"
"LngText.text"
-msgid "Installation failed, most likely your account does not have the necessary privileges."
+msgid "Installation failed; most likely your account does not have the necessary privileges."
msgstr ""
#: macinstall.ulf
> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/dbaccess/AllLangMoTarget_dba.mk
AgeCommit message (Collapse)Author
2017-07-21migrate to boost::gettextCaolán McNamara
* 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::star::resource::OfficeResourceLoader com::sun::star::resource::XResourceBundleLoader com::sun::star::resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a