aboutsummaryrefslogtreecommitdiff
path: root/source/cs
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-01-24 13:15:09 +0100
committerAndras Timar <atimar@suse.com>2013-01-28 12:21:10 +0100
commit5880fb803b3b8b321583f061f70b1d13baca283a (patch)
treea0e91de8c8bbb5069668810fc7055d3c8f12ee45 /source/cs
parent9ad3d762311c9bcdcba2f354d16a74bb50090ea0 (diff)
quick fix for string freeze break in About box
Change-Id: I2ccdafc0bdbdac51aec33da594900116f1d4dbb5
Diffstat (limited to 'source/cs')
-rw-r--r--source/cs/cui/source/dialogs.po4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cs/cui/source/dialogs.po b/source/cs/cui/source/dialogs.po
index 080ccb1c29f..04ddc9441f0 100644
--- a/source/cs/cui/source/dialogs.po
+++ b/source/cs/cui/source/dialogs.po
@@ -871,8 +871,8 @@ msgctxt ""
"RID_DEFAULTABOUT\n"
"ABOUT_STR_VERSION\n"
"string.text"
-msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
-msgstr "Verze %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX %PRODUCTEXTENSION"
+msgid "Version %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
+msgstr "Verze %ABOUTBOXPRODUCTVERSION%ABOUTBOXPRODUCTVERSIONSUFFIX"
#: about.src
msgctxt ""
feature/windows-cross-build LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/svx/qa/unit/data/tdf148000_CurvedTextWidth.pptx
AgeCommit message (Collapse)Author
2023-11-22tdf#148000 impress: improve fontwork text placement.Attila Szűcs
Improved the calculation of positions of text characters for multi-line texts. The previous version only fitted the text to the basic outline (curve), and then scale them to the appropriate text line. This means that the text will be wider or shorter, depending on the shape of the curve, and which line it is on Now it calculates a curve for each paragraph and fits text on it. Text will be approximately the same width on each line. Except if the text is wider as the curve. Because then it shrinks the text to fit on the curve. (this can only happens on inner curves) Reused the same compat flag that was used in bug148000, now it serves as a Powerpoint compatible mode for FontWork, so no need to create new compat flag every time FontWork has improve. That means that the Fontwork in old documents has remains the same Refactored horizontal/vertical alignment, but had to keep the old hacks as well. Note: if there are too many lines of text, and the vertical alignment causes internal curves, then curves can shrink to 0 length (center point of a circle) or even to negative length, These cases are impossible to display normally, so it will be glitchy similar to how it was before this patch. MS PowerPoint avoid these cases by not allowing vertical alignments that would result internal (smaller) curves. Added unittest to check legacy-odb / new-odp / pptx file. It change the display of fontwork, so in some cases it may feel like a regression. Change-Id: Iac2d9bc751bbc2b6f747c33958f969cb3543fae5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159776 Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com> Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>