aboutsummaryrefslogtreecommitdiff
path: root/source/uz
AgeCommit message (Expand)Author
2021-01-14update translations for 7.1.0 rc2Christian Lohmaier
2020-12-17update translations for 7.1.0 rc1Christian Lohmaier
2020-12-15update translations for master/7.1.0 rc1Christian Lohmaier
2020-12-08update translations for master/7.1Christian Lohmaier
2020-11-22update translations for master/7.1 beta1libreoffice-7-1-branch-pointChristian Lohmaier
2020-11-16update translations for masterChristian Lohmaier
2020-10-27update translations for masterChristian Lohmaier
2020-10-27update translations for master / 7.1.0.0 alpha1Christian Lohmaier
2020-10-23update translations for master/7.1.0 alpha1Christian Lohmaier
2020-10-12update translations for masterChristian Lohmaier
2020-09-28update translations for masterChristian Lohmaier
2020-09-07update translations for masterChristian Lohmaier
2020-08-27update translations for masterChristian Lohmaier
2020-08-21update translations for masterChristian Lohmaier
2020-08-17update translations for masterChristian Lohmaier
2020-08-04update translations for masterChristian Lohmaier
2020-07-27update translations for masterChristian Lohmaier
2020-07-15update translations for 7.0.0 rc2Christian Lohmaier
2020-07-13update translations for master/7.0Christian Lohmaier
2020-07-02update translations for 7.0.0 rc1Christian Lohmaier
2020-06-24update translations for master/7.0 and add ckb (Central Kurdish) filesChristian Lohmaier
2020-06-16update translations for 7.0 beta2Christian Lohmaier
2020-05-27update translations for 7.0.0 beta1libreoffice-7-0-branch-pointChristian Lohmaier
2020-05-06update translations for 7.0.0 Alpha1Christian Lohmaier
2020-04-29update translations for masterChristian Lohmaier
2020-04-15update translations for masterChristian Lohmaier
2020-04-03update translations from weblateChristian Lohmaier
2020-03-16update translations for masterChristian Lohmaier
2020-03-06update translations for masterChristian Lohmaier
2020-02-28update translations for master and add Friulian (fur)Christian Lohmaier
2020-02-11update translations for masterChristian Lohmaier
2020-01-22update translations for masterChristian Lohmaier
2019-11-13update translations for 6.4.0 Beta1libreoffice-6-4-branch-pointChristian Lohmaier
2019-11-08update translations from weblateChristian Lohmaier
2019-10-14update translations for masterChristian Lohmaier
2019-10-02update translations from weblateChristian Lohmaier
2019-10-02update translations for 6.3.1 rc2Christian Lohmaier
2019-07-31update translations for 6.3.0 rc3Christian Lohmaier
2019-07-04update translations for 6.3.0 rc1Christian Lohmaier
2019-06-11update translations for master/6.3Christian Lohmaier
2019-05-31update translations for 6.3.0 beta1libreoffice-6-3-branch-pointChristian Lohmaier
2019-05-13update translationsChristian Lohmaier
2019-04-25update translations for masterChristian Lohmaier
2018-12-19update translations for 6.2.0 rc1Christian Lohmaier
2018-11-17final update of translations for 6.2.0 beta1Christian Lohmaier
2018-11-15update translations for 6.2.0 beta1Christian Lohmaier
2018-11-13update translations for masterChristian Lohmaier
2018-10-22update translations for 6.2.0 alpha1Christian Lohmaier
2018-10-03update translations for masterChristian Lohmaier
2018-08-03update translations for masterChristian Lohmaier
/option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/vcl/inc/units.hrc
AgeCommit message (Collapse)Author
2018-11-17Adapt to C++2a char_tStephan Bergmann
u8 literals incompatibly change their type (as implemented by recent Clang trunk) Change-Id: Ia4f7b91f5d86656a056303d2754981ab2093a739 Reviewed-on: https://gerrit.libreoffice.org/63494 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-11-08Convert FieldUnit to scoped enumMike Kaganski
Change-Id: Id2df31daa596a18c79af5fc6ea162deb6e24d5af Reviewed-on: https://gerrit.libreoffice.org/62958 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
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