aboutsummaryrefslogtreecommitdiff
path: root/source/bs/starmath/source.po
diff options
context:
space:
mode:
Diffstat (limited to 'source/bs/starmath/source.po')
-rw-r--r--source/bs/starmath/source.po44
1 files changed, 41 insertions, 3 deletions
diff --git a/source/bs/starmath/source.po b/source/bs/starmath/source.po
index ac3fa9f8cd2..7c807579dd8 100644
--- a/source/bs/starmath/source.po
+++ b/source/bs/starmath/source.po
@@ -3,13 +3,15 @@ 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-09-02 22:16+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-12-26 11:14+0100\n"
+"PO-Revision-Date: 2011-04-11 23:08+0200\n"
+"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
@@ -3950,6 +3952,33 @@ msgstr "element"
msgctxt ""
"symbol.src\n"
"RID_UI_SYMBOL_NAMES\n"
+"56\n"
+"itemlist.text"
+msgid "noelement"
+msgstr "bez elementa"
+
+#: symbol.src
+msgctxt ""
+"symbol.src\n"
+"RID_UI_SYMBOL_NAMES\n"
+"57\n"
+"itemlist.text"
+msgid "strictlylessthan"
+msgstr "Striktno manji nego"
+
+#: symbol.src
+msgctxt ""
+"symbol.src\n"
+"RID_UI_SYMBOL_NAMES\n"
+"58\n"
+"itemlist.text"
+msgid "strictlygreaterthan"
+msgstr "Striktno veći nego"
+
+#: symbol.src
+msgctxt ""
+"symbol.src\n"
+"RID_UI_SYMBOL_NAMES\n"
"59\n"
"itemlist.text"
msgid "notequal"
@@ -3968,6 +3997,15 @@ msgstr "jednako"
msgctxt ""
"symbol.src\n"
"RID_UI_SYMBOL_NAMES\n"
+"61\n"
+"itemlist.text"
+msgid "tendto"
+msgstr "teži ka"
+
+#: symbol.src
+msgctxt ""
+"symbol.src\n"
+"RID_UI_SYMBOL_NAMES\n"
"62\n"
"itemlist.text"
msgid "infinite"
>libreoffice-3-6-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/matrixoperators.cxx
AgeCommit message (Collapse)Author
2021-05-15Use less memory for ScMatrix::Collectdante
The old definition would have unused mnCount s. The template has been modified to expand functionality. Redefined operator for sum and sum square. Memory usage change explanation: The old code would use an array of IterateResultMultiple. Then use them to iterate. The count is stored in a last IterateResultMultiple. So if we are inputed N operators we are: Wasting N counters. Wasting 1 accumulator. Solution: We move the array to the accumulator place (inside the structure). Then we use only N accumulators. The structure with the array has only 1 counter. Change-Id: I76de74214d9bcb245f009e1226020bfe4dce40d8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115542 Tested-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-05-13Use double to iterate products in scmatrix.dante
Change-Id: If094c33d396dc5aba31b37a3042add72076f344f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115468 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-04-28tdf#137679 Use Kahan summation for scmatrix operationsdante
May also want implement Kahan sum in there: sc/source/core/tool/arraysumSSE2.cxx sc/source/core/inc/arraysumfunctor.hxx Under some conditions the sum of a pointer type vector may be perforemed by arraysumfunctor on NumericCellAccumulator. arraysumSSE2 implements part of it. This code has been left unmodified. Why the test has been modified: The error was: 238.89000000000001 != 238.89 | 17 th digit IEEE 754 double-precision has 53 log10(2) ≈ 15.955 digits. So it's just noise. Change-Id: I6f84826bf3875be4f444f5eb61854bc1f95769bb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114627 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Jenkins
2020-11-27tdf#42949 Fix new IWYU warnings in directory sc/Gabor Kelemen
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: I217817e2e4a42b096f5a7fb6344568c10d69aab2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106078 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2020-01-15clang-tidy modernize-concat-nested-namespace in scNoel Grandin
Change-Id: I6a9b2b912434c053e20ce06ef03e52451e506693 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86804 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2018-12-18no need to allocate sc::op::Op on the heap hereNoel Grandin
Change-Id: I6a048a51eacaa7063318cdc27d5bc25cc96d557b Reviewed-on: https://gerrit.libreoffice.org/65304 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-10-23loplugin:includeform: scStephan Bergmann
Change-Id: I2ed763e0584a188032c80fde60890de3c6985cbd