aboutsummaryrefslogtreecommitdiff
path: root/source/sah/starmath/messages.po
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-10-03 15:26:20 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-10-03 15:37:48 +0200
commit1972d9c3c26f6064e42870aeae397db7ea3423a6 (patch)
treede364824cd08a182a223439982bed9daabf4d235 /source/sah/starmath/messages.po
parent54cc0de67b3c948411cef3a0405c8992d80f34f3 (diff)
update translations for master
and force-fix errors using pocheck Change-Id: I2a1fd1969ac1b5f197b1554050e2bb971149f25a
Diffstat (limited to 'source/sah/starmath/messages.po')
-rw-r--r--source/sah/starmath/messages.po28
1 files changed, 14 insertions, 14 deletions
diff --git a/source/sah/starmath/messages.po b/source/sah/starmath/messages.po
index ab56e6738d8..2471d5f3a10 100644
--- a/source/sah/starmath/messages.po
+++ b/source/sah/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-10-02 17:56+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1969,27 +1969,27 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr ""
-#: starmath/uiconfig/smath/ui/fontdialog.ui:9
+#: starmath/uiconfig/smath/ui/fontdialog.ui:25
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
msgstr ""
-#: starmath/uiconfig/smath/ui/fontdialog.ui:115
+#: starmath/uiconfig/smath/ui/fontdialog.ui:179
msgctxt "fontdialog|formulaL"
msgid "Font"
msgstr ""
-#: starmath/uiconfig/smath/ui/fontdialog.ui:151
+#: starmath/uiconfig/smath/ui/fontdialog.ui:215
msgctxt "fontdialog|bold"
msgid "_Bold"
msgstr ""
-#: starmath/uiconfig/smath/ui/fontdialog.ui:166
+#: starmath/uiconfig/smath/ui/fontdialog.ui:230
msgctxt "fontdialog|italic"
msgid "_Italic"
msgstr ""
-#: starmath/uiconfig/smath/ui/fontdialog.ui:187
+#: starmath/uiconfig/smath/ui/fontdialog.ui:251
msgctxt "fontdialog|formulaL1"
msgid "Attributes"
msgstr ""
@@ -2499,42 +2499,42 @@ msgctxt "symdefinedialog|EditSymbols"
msgid "Edit Symbols"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:103
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:102
msgctxt "symdefinedialog|oldSymbolSetText"
msgid "O_ld symbol set:"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:148
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:147
msgctxt "symdefinedialog|oldSymbolText"
msgid "_Old symbol:"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:246
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:245
msgctxt "symdefinedialog|modify"
msgid "_Modify"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:301
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:300
msgctxt "symdefinedialog|symbolText"
msgid "_Symbol:"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:315
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:314
msgctxt "symdefinedialog|symbolSetText"
msgid "Symbol s_et:"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:329
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:328
msgctxt "symdefinedialog|fontText"
msgid "_Font:"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:343
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:342
msgctxt "symdefinedialog|styleText"
msgid "S_tyle:"
msgstr ""
-#: starmath/uiconfig/smath/ui/symdefinedialog.ui:357
+#: starmath/uiconfig/smath/ui/symdefinedialog.ui:356
msgctxt "symdefinedialog|fontsSubsetFT"
msgid "S_ubset:"
msgstr ""
ice-4-4-5 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/source/filter/ftools/sharedformulagroups.cxx
AgeCommit message (Collapse)Author
2019-11-22tdf#128894: xlsx-import : Do not share tokens between cells...Dennis Francis
which are part of a xlsx-shared-formula along a *row*. If we do, any reference-updates on these cells while editing will mess things up. For example a shared formula "=A30+1" used for a few cells in the first row (say, A1, B1, C1 and D1) and on deleting a row, say row#5, the reference update operation will decrement the row index of all tokens in A1, B1, C1 and D1. But if they share tokens, they all end up pointing to row#26 instead of row#29 as each cell is updated which amounts to decrementing 4 times instead of once. However shared formulas along columns are not affected by this bug, when tokens are shared since we use formula-groups which only keeps one copy of token array for the entire group and reference-update code is designed to correctly work with formula-groups. Change-Id: Ic0fe84d12fef18fbf21658664e2b2b86409bca27 Reviewed-on: https://gerrit.libreoffice.org/83361 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com> Reviewed-by: Eike Rathke <erack@redhat.com>