aboutsummaryrefslogtreecommitdiff
path: root/source/lo
AgeCommit message (Expand)Author
2017-11-24another set of translation updates for 6.0 beta1libreoffice-6-0-branch-pointChristian Lohmaier
2017-11-22update translations for 6.0 beta1Christian Lohmaier
2017-10-19update templates for 6.0.0 alpha1Christian Lohmaier
2017-09-15fix translationCaolán McNamara
2017-09-14convert to gettext formatCaolán McNamara
2017-06-21update translations for 5.4.0 rc1Christian Lohmaier
2017-06-07update translations for 5.4.0 Beta2Christian Lohmaier
2017-05-18another update of translations for 5.4.0 beta1libreoffice-5-4-branch-pointChristian Lohmaier
2017-05-16update translations for 5.4.0 beta1Christian Lohmaier
2017-04-28update translations for 5.4.0 alpha1Christian Lohmaier
2017-01-10update translationsChristian Lohmaier
2016-12-10update translations for 5.3.0 beta2Christian Lohmaier
2016-11-23update translations for 5.3.0 beta1libreoffice-5-3-branch-pointChristian Lohmaier
2016-10-11update translations for 5.2.3 rc1Christian Lohmaier
2016-10-09Pootle updatejan Iversen
2016-08-10update translations for 5.2.0 rc4Christian Lohmaier
2016-07-07update translations for 5.2.0 rc2Christian Lohmaier
2016-05-25update translations for 5.2.0 beta1Christian Lohmaier
2016-04-21update translations for 5.2.0 alpha1Christian Lohmaier
2016-02-10update translations for 5.1.1 rc1Christian Lohmaier
2016-01-13update translations for 5.1.0 rc2Christian Lohmaier
2015-12-15update translations for 5.1.0 rc1Christian Lohmaier
2015-11-25Update translations for master and force-fix errors using pochecklibreoffice-5-1-branch-pointRobinson Tryon
2015-09-03update translations for masterChristian Lohmaier
2015-08-12update translationsChristian Lohmaier
2015-05-19update translations for 5.0.0 beta1libreoffice-5-0-branch-pointChristian Lohmaier
2015-04-19update translations for 5.0.0 Alpha1Christian Lohmaier
2014-11-20update translations for 4.4.0 beta1Christian Lohmaier
2014-10-17update translations for 4.4.0.0alpha1Christian Lohmaier
2014-05-21update translations for 4.3.0 beta1libreoffice-4-3-branch-pointChristian Lohmaier
2014-04-20update translations for 4.3.0 alpha1Christian Lohmaier
2013-12-09update translations for 4.2.0 Beta2Christian Lohmaier
2013-11-21sync with po-templates for 4.2libreoffice-4-2-branch-pointChristian Lohmaier
2013-11-17remove Android Impress Remote translationsAndras Timar
2013-06-27update translations for LibreOffice 4.1 rc1Andras Timar
2013-06-12missing | cause Windows installer error 2870Andras Timar
2013-06-05update translations for LibreOffice 4.1 beta2Andras Timar
2013-05-27Compendium Conflicts should be fuzzyAndras Timar
2013-05-25initial import of 4.1 translationsAndras Timar
2013-05-25remove obsoleted .po filesAndras Timar
2013-05-07update translations for LibreOffice 4.0.3 rc1Andras Timar
2013-02-17update translations for LibreOffice 4.0.1 rc1Andras Timar
2013-01-28Kazak -> Kazakh change in translationsAndras Timar
2013-01-28add missing translations for 'Insert' buttonAndras Timar
2013-01-28quick fix for string freeze break in About boxAndras Timar
2013-01-28remove obsolete .po filesAndras Timar
2013-01-28update translations for LibreOffice 4.0 rc2Andras Timar
2013-01-06 update translations for LibreOffice 4.0 rc1Andras Timar
2012-12-16update translations for LibreOffice 4.0 beta2Andras Timar
2012-12-09fix of damaged files from beta1Andras Timar
value='libreoffice-7-0-2'>libreoffice-7-0-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/setup_native/Library_reg4allmsdoc.mk
AgeCommit message (Collapse)Author
2019-04-04Drop UNICODE/_UNICODE definesMike Kaganski
The code is using expicit (mostly W) Windows API, and is independent from the macro. Removing it here allows to catch places where some UNICODE-dependent macro is used unintentionally. Change-Id: I5dff40aecfc3c3dc7fc4cf7271a995a675943a45 Reviewed-on: https://gerrit.libreoffice.org/70237 Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
2018-09-28tdf#120099 Reintroduce .def filesStephan Bergmann
...that had been removed with 28b4f4aeaf160c7721dfecf5bd2445d7dbc6f01c "Get rid of Windows .def files in setup_native, use __declspec(dllexport)". Looks like for 32-bit builds, the .def file EXPORTS are still needed to avoid __stdcall's _...@NN symbol decoration (and for 64-bit builds __stdcall is effectively ignored, so the removed .def files didn't make a difference there). This is only a partial revert of 28b4f4aeaf160c7721dfecf5bd2445d7dbc6f01c, the addition of __declspec(dllexport) for the benefit of loplguin:external should still be fine. Change-Id: I76a1a3f4671824367bab495afeba291c0340108d Reviewed-on: https://gerrit.libreoffice.org/61047 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-09-18Get rid of Windows .def files in setup_native, use __declspec(dllexport)Stephan Bergmann
For one, replacing the dated .def files with equivalent functionality should be a good move all by itself. And for another, it paves the way for using loplugin:external with clang-cl on Windows, which uses the heuristic of not warning about functions that are explicitly marked as __declspec(dllexport). Change-Id: I6efd50a8c5ce2a166ca0dd4e5f472118f3f9a071 Reviewed-on: https://gerrit.libreoffice.org/60691 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
Uwinapi is discontinued. Change-Id: I063b4d0d8fab2d60de168e960a63b8181158ac01 Reviewed-on: https://gerrit.libreoffice.org/23198 Reviewed-by: David Ostrovsky <david@ostrovsky.org> Tested-by: David Ostrovsky <david@ostrovsky.org>
2015-09-03setup_native: Add vcruntime and libucrt on MSVC 14.0David Ostrovsky
Change-Id: If55979b55b4bc8dee785f0940461a01995060682 Reviewed-on: https://gerrit.libreoffice.org/17362 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>