aboutsummaryrefslogtreecommitdiff
path: root/source/mk/uui
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-04-19 10:56:02 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-04-19 12:30:12 +0200
commit9741c39649c0c54cd79b9949d28eca364c087b61 (patch)
tree572ec30c8481c0e04ae07ecd5497ba9af9c40962 /source/mk/uui
parent8514f4f02022d70c8221eb2f2b47a7f18de1475e (diff)
update translations for 5.0.0 Alpha1
and force-fix errors using pocheck Change-Id: I68916e7c0a7af9c3caeba4e86c19e1e9e71d9465
Diffstat (limited to 'source/mk/uui')
-rw-r--r--source/mk/uui/uiconfig/ui.po29
1 files changed, 28 insertions, 1 deletions
diff --git a/source/mk/uui/uiconfig/ui.po b/source/mk/uui/uiconfig/ui.po
index c25143787e3..1695e73a165 100644
--- a/source/mk/uui/uiconfig/ui.po
+++ b/source/mk/uui/uiconfig/ui.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
+"POT-Creation-Date: 2015-01-07 11:08+0100\n"
"PO-Revision-Date: 2013-02-17 21:14+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: none\n"
@@ -16,6 +16,33 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-POOTLE-MTIME: 1361135673.0\n"
+#: authfallback.ui
+msgctxt ""
+"authfallback.ui\n"
+"AuthFallbackDlg\n"
+"title\n"
+"string.text"
+msgid "OneDrive authentication code"
+msgstr ""
+
+#: authfallback.ui
+msgctxt ""
+"authfallback.ui\n"
+"ok\n"
+"label\n"
+"string.text"
+msgid "Ok"
+msgstr ""
+
+#: authfallback.ui
+msgctxt ""
+"authfallback.ui\n"
+"cancel\n"
+"label\n"
+"string.text"
+msgid "Cancel"
+msgstr ""
+
#: filterselect.ui
msgctxt ""
"filterselect.ui\n"
option value='libreoffice-3-5-2'>libreoffice-3-5-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/source/filter/orcus/filterdetect.cxx
AgeCommit message (Collapse)Author
2024-05-17loplugin:ostr in sc/../filterNoel Grandin
Change-Id: I3c986d9e7f9780f08653131205626471ac75896f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167759 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2023-10-25Support conditional loading of Apache Parquet files into CalcKohei Yoshida
Also, use orcus::create_filter() and simplify the logic a bit. This requires orcus 0.19.1 or newer. Note that this change makes it possible to load Apache Parquet files if and only if orcus has been built with the parquet import filter enabled. Using orcus without the parquet import filter enabled will not break the build or run-time behavior; you just can't load parquet files. Change-Id: I9f8820998b7b0667d1e7cd532c32b1c7e55ca999 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158411 Tested-by: Jenkins Reviewed-by: Kohei Yoshida <kohei@libreoffice.org>
2023-04-21Fix OrcusFormatDetect XServiceInfoStephan Bergmann
Change-Id: I7c54ec6de8c6bd3a5ed67809404eee65aa5af695 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150697 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2023-01-26Upgrade mdds and orcus to 2.1.0 and 0.18.0, respectivelyKohei Yoshida
Change-Id: I288b5b54bd07d951bcc68afda7514bde730193dc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146107 Tested-by: Jenkins Reviewed-by: Kohei Yoshida <kohei@libreoffice.org>
2022-06-23Pump XInputStream into an SvMemoryStream rather than an OStringBufferStephan Bergmann
...to avoid overflow with streams >= 2^31 bytes. This should fix <https://crashreport.libreoffice.org/stats/crash_details/d9613c81-de37-4de2-8c64-e36634d10ddc> which I could reproduce with a recent master Linux build with > $ truncate -s 3G test.xml > $ instdir/program/soffice test.xml causing a SIGSEGV at > #0 0x00007ffff7f193a0 in rtl::str::stringbuffer_insert<_rtl_String, char>(_rtl_String**, int*, int, char const*, int) (ppThis=0x7fffffffb330, capacity=<optimized out>, offset=2147479552, pStr=0x20a92e8 "", len=4096) at sal/rtl/strtmpl.hxx:1424 > #1 0x00007fffb6af04e5 in rtl::OStringBuffer::append(char const*, int) (len=4096, str=<optimized out>, this=0x7fffffffb330) at include/rtl/strbuf.hxx:594 > #2 (anonymous namespace)::OrcusFormatDetect::detect(com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>&) (this=<optimized out>, rMediaDescSeq=<optimized out>) at sc/source/filter/orcus/filterdetect.cxx:80 [...] (Ideally, orcus::detect would only need a short prefix of the stream's content, but the implementation in workdir/UnpackedTarball/liborcus/src/liborcus/format_detection.cpp delegates to functions like orcus_ods::detect in workdir/UnpackedTarball/liborcus/src/liborcus/orcus_ods.cpp, which passes the content through some zip_archive that presumably needs the full content.) Change-Id: Ifaa37ee887d8296cbcf971313bde347ddfb17c12 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136297 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2021-11-08use more OUStringLiteral in MediaDescriptorNoel Grandin
Change-Id: I0567d103db8db401c737fed98483912a39352929 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124835 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>