aboutsummaryrefslogtreecommitdiff
path: root/source/eu/dictionaries/hr_HR.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/eu/dictionaries/hr_HR.po')
-rw-r--r--source/eu/dictionaries/hr_HR.po15
1 files changed, 10 insertions, 5 deletions
diff --git a/source/eu/dictionaries/hr_HR.po b/source/eu/dictionaries/hr_HR.po
index 2c2f60c0918..401a439ae27 100644
--- a/source/eu/dictionaries/hr_HR.po
+++ b/source/eu/dictionaries/hr_HR.po
@@ -1,9 +1,9 @@
-#. extracted from dictionaries/hr_HR.oo
+#. extracted from dictionaries/hr_HR
msgid ""
msgstr ""
"Project-Id-Version: LibO 350-l10n\n"
-"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?comment=&component=l10n&form_name=enter_issue&short_desc=Localization+issue+in+file%3A+dictionaries%2Fhr_HR.oo&subcomponent=ui\n"
-"POT-Creation-Date: 2012-07-04 16:39+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2012-11-17 19:02+0200\n"
"PO-Revision-Date: 2011-10-07 14:45+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -11,9 +11,14 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.9.0\n"
+"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: description.xml#dispname.dispname.description.text
+#. HRhW
+#: description.xml
+msgctxt ""
+"description.xml\n"
+"dispname\n"
+"description.text"
msgid "Croatian spelling dictionary, and hyphenation rules"
msgstr ""
> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sw/source/writerfilter/ooxml/OOXMLPropertySet.cxx
AgeCommit message (Collapse)Author
2024-08-30cid#1618706 Overflowed constantCaolán McNamara
Change-Id: If9d327c3ca9ea300421adc78e603a85206095add Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172629 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-08-29flatten ooxml::Value hierarchyNoel Grandin
into a std::variant. Since it is always one of a very small set of subclasses. Which means we can pass it around by value and avoid allocating it on the heap, which reduces parsing time. Change-Id: Ic83b48cb3fdec17779a2ad59abbc585156f5ffa6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172451 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-08-26tdf#158556 no need to clone in OOXMLPropertySetValue::getPropertiesNoel Grandin
the callers just want to read the data Change-Id: I037766ac007266ea81765df94021d05528a60c89 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172396 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-08-22tdf#158556 return 'const Value*' from Sprm::getValueNoel Grandin
instead of cloning a fresh object instance, which is not necessary most of the time Change-Id: I3ee1f5952e01a7c6207213522cac9cabb15246d0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172211 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2024-07-17cid#1555694 COPY_INSTEAD_OF_MOVECaolán McNamara
and cid#1555695 COPY_INSTEAD_OF_MOVE cid#1555696 COPY_INSTEAD_OF_MOVE cid#1555705 COPY_INSTEAD_OF_MOVE cid#1555711 COPY_INSTEAD_OF_MOVE cid#1555713 COPY_INSTEAD_OF_MOVE cid#1555727 COPY_INSTEAD_OF_MOVE cid#1555742 COPY_INSTEAD_OF_MOVE cid#1555745 COPY_INSTEAD_OF_MOVE cid#1555749 COPY_INSTEAD_OF_MOVE cid#1555760 COPY_INSTEAD_OF_MOVE cid#1555773 COPY_INSTEAD_OF_MOVE cid#1555774 COPY_INSTEAD_OF_MOVE cid#1555778 COPY_INSTEAD_OF_MOVE cid#1555790 COPY_INSTEAD_OF_MOVE cid#1555831 COPY_INSTEAD_OF_MOVE cid#1555847 COPY_INSTEAD_OF_MOVE cid#1555851 COPY_INSTEAD_OF_MOVE cid#1555853 COPY_INSTEAD_OF_MOVE cid#1607763 COPY_INSTEAD_OF_MOVE cid#1607504 COPY_INSTEAD_OF_MOVE Change-Id: I991f15f12e773d325ed9725498df5725b049a858 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170625 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
2024-04-18move writerfilter inside swNoel Grandin
writerfilter wants to convert incoming RTF and OOXML files into writer's document model. But it currently has to do so by manipulating the limited subset that we expose through the UNO API. This is both slower and less accurate than having access to the full document model. So move it inside, and then we can strip out various hacks, and optimise imports. Change-Id: Ie1114d28130ef5f9a786531bc552cb8ee7768015 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165953 Tested-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>