summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-16rtl::Static->thread-safe staticNoel Grandin
Change-Id: I0f39dea1392eb2ba11881615aedbe386870282ee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125324 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-16Drop redundant 'using rtl::OUString'Mike Kaganski
obsoleted by 6080259862ee9886d1dabcb7c06132268a398cc6 Change-Id: I246dc6050fe7adf60ab3c836db3cfa781578d483 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125142 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-16tdf#139922: sw_uiwriter3: Add unittestXisco Fauli
Change-Id: I4401ba7d00dae654a6e3c897719e5f1a112a9abb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125318 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2021-11-16fix drawBitmap() unittests with Skia/HiDPILuboš Luňák
Force non-smooth scaling to get exact pixel values. Introduced in 6792e6e5e49d11a54256b75c4c5a476bb2f10b4a. Change-Id: Iec2633e9ef8e930688c95ceb1037696456f344f5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125312 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16try to avoid scaling bitmaps twice in Skia when drawingLuboš Luňák
The scenario is that something scales a bitmap and then asks for it to be drawn (possibly drawn scaled again). One example is OutputDevice::DrawBitmap() subsampling the bitmap that according to c0ce7ca4884f7f6d1 is supposed to improve quality with headless(?) backend, but with Skia it's pointless and it breaks things like caching during repeated drawing, because then GetSkImage() will need to generate a new SkImage each time. Since Skia backend uses delayed scaling, these cases can be sorted out by checking the stored SkImage and using it if suitable, as the original image is as good as the rescaled one, but often it's better - it may be cached, sometimes the scaling operations cancel each other out (often the case in HiDPI mode). Change-Id: I0af32f7abdf057a3bdda75247d2dc374eaf1bc4b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125311 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16make SkiaHelper::dump() available also in non-dbgutil buildsLuboš Luňák
They are just a set of small functions, and I sometimes need to debug optimized builds too. Change-Id: I6350476e8c7fef85460a88b9e3d56d02213764ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125310 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16do not rebuild PCHs on icecream/ccache change, take #2Luboš Luňák
It turns out $(gb_SPACE) is not just one space. Change-Id: I8f5cd13d14d71f0a6dd7d8b89ee857f983d27d20 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125309 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16postgresql: upgrade to release 13.5Michael Stahl
Fixes CVE-2021-23222. Change-Id: I4e16fcc60c634382a864f66b211d0e0170a06db0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125308 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16svtools: HTMLParser: don't insert EOF into stringsMichael Stahl
It's not a valid Unicode code point. Change-Id: I96103f4c505047bdf0451619937b8e1b2efb127f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125307 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16ofz#40766 svtools, sw: HTMLParser: really stop inserting control charsMichael Stahl
35d248cab1f0d4800f72abb5cb6afb56f40d9083 forgot to fix one place where control characters were in a presumed XML declaration. Another place looks missing where comments are handled, but it's not clear if these can be passed on to Writer. Revert the previous fix from commit b3325ef8cdfc2c82eec34e747106f75a9fccb7e4. Change-Id: I11ad13de9122533626e512ce0384051e3e5bd97f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125306 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16Related: tdf#142719 first time undo adds an exception it gets lostCaolán McNamara
Change-Id: Ie963e92a15ddd45316f999e950fff359d7dd6f5d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125314 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16tdf#142781 - Calculate width/height keeping aspect ratioAndreas Heinisch
Importing an HTML file including an image conserves the aspect ratio in Writer. Change-Id: Ia31b36884daf2728b0989ae7c1e6ece683543d7b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125170 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
2021-11-16tdf#116640: sw_uiwriter4: Add unittestXisco Fauli
Change-Id: If201d0825dc9ad6f6ed15d2367f1f717ec9dd1c4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125297 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2021-11-16svl: fix misleading commentMichael Stahl
Change-Id: I41406200aa953081c2e2a6ab9cbe8c404d8b5d86 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125305 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16tdf#139922 sw autocorr: don't return GetPrevPara if isEmptyJustin Luth
This fixes a LO 6.2 regression caused by commit 4cf5a46f16dec8ce16c6662ce5c17903e28b8fa3. Change-Id: I4aee8f4e79a40a8b8f82faa3e62dead80a952510 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125037 Tested-by: Jenkins Reviewed-by: Justin Luth <jluth@mail.com> Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
2021-11-16Use basegfx::deg2rad instead of *0.01745329251994Hossein
* Replaced multiplying by magic number 0.01745329251994 with basegfx::deg2rad() which is equal to M_PI/180.0 * Instances of this could be found using: git grep 0.01745329251994 *.cxx *.hxx Change-Id: Ib813251f6223e4218fe977c0211732c22199295d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125294 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-11-16Support reading back theme color from an ooxml documentTomaž Vajngerl
ooxml supports theme colors and tint/shade value that additionally changed the theme color. Read back which theme color + tint/shade value was applied in the resulting color and add this attributes as properties to be used by writer. In sidebar theme panel the changing the theme colors now doesn't takes this into account and changes the colors correctly. [ Miklos: left out the Wrtier bits for now, focusing on Impress first. ] (cherry picked from commit 16a0a2089e8572a35a36a7e649703893ecd06299, from the feature/themesupport2 branch) Change-Id: I8e0d62ec8c0534e603fb1e5fb000dcf84aea5da2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125304 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-11-16Related tdf#139031: add missing colonsIlmari Lauhakangas
Reporter mentioned a bunch of missing colons across the UI. Change-Id: I278d0ad7073fb399c979f0fc52adc306f51ae49d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125147 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
2021-11-16add a vcl backend test that draws a sheared bitmapLuboš Luňák
Change-Id: I06838e01ed41ac41c8b578fd6c7d984f1c073e31 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125298 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16Theme color and tint/shade attribute for SvxColorItemTomaž Vajngerl
To support theme colors the SvxColorItem must be extended with an optional attribute theme index to define the index to which theme color current color belongs and an optional tint/shade attribute define how much the color ha been additionally tinted or shaded. [ Miklos: left out the potentially breaking svx/sdi/svxitems.sdi changes. ] (cherry picked from commit ccdbf815e00dbe2ba21f7e86b6743df100b7401f, from the feature/themesupport2 branch) Change-Id: Ifb0481770be675181dafa94cd2778f374fcf3c7e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125296 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2021-11-16Update git submodulesAlain Romedenne
* Update helpcontent2 from branch 'master' to eb45e7df8aeeab7791876038c16345d5321e49b1 - tdf#141474 Asc, AscW function signatures Change-Id: Ia85bf08bb1e5cb0e7db5717caec01e7e50c3b106 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/124853 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Related: tdf#142706 mask with GDK_MODIFIER_MASK to ignore unwanted bitsCaolán McNamara
Change-Id: I6d3f6fb6e9385b8077c23d5b7f78c43d9fb7b9d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125295 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16avoid using always-show-arrow in gtk4 < 4.4Caolán McNamara
Change-Id: Ie2df9cd91a5ea857965d24dc669a6c1d94c965a4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125293 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16Update git submodulesChristian Lohmaier
* Update translations from branch 'master' to a692f49808bffb7f402cd88cbf48e32b2044d111 - update translations for master and force-fix errors using pocheck Change-Id: I93c02cdd542eb2c42765f65e9e78f2dc8f339005
2021-11-16hard-require Clang for Skia also on MacLuboš Luňák
Since Skia is now the default on Mac too. Clang on Mac should be the given, but check for consistency. Change-Id: I490d5434374d98b1d7a219c2bca48747e31eecac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122337 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16make Skia the default now on Mac too (again)Luboš Luňák
This is a re-land of commit 2489edcbe0f5dc77649fc2e801c1bbffb71692b8, now that HiDPI support (tdf#144214) has been implemented properly. Originally coming from the ESC decision from Aug 26th. Change-Id: I4d397282adeeac50ff19ba651b920c73080d3dfd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125273 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16rtl::Static->thread-safe static in jvmfwkNoel Grandin
Change-Id: I049148d82eb306e8ba7fdc9f0cc650f45b05da0c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125257 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-16rtl::Static->thread-safe static in ooxNoel Grandin
Change-Id: I4436188aa52766a07dadc1accb52c524666ae2f4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125258 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-11-16Resolves: tdf#143511 SysObj is clipped out if the widget is out of viewCaolán McNamara
so the sizes and relative positions are invalid under gtk, unclip the SysObj when using get_extents_relative_to Change-Id: Ibdaff20531a2a40b3b9b7dc9ac880d014db07d5a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125272 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2021-11-16tdf#135033: Make undo of adding and editing animations possibleKatarina Behrens
weird this somehow sneaked out when converting custom animation pane to sidebar when undoing other operations (delete etc.) stayed in place Change-Id: I6287682839d0e0401cc60bf82257d86765f3a858 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125110 Tested-by: Jenkins Reviewed-by: Katarina Behrens <bubli@bubli.org>
2021-11-16tdf#145694 sidebar: add glow and soft edge panel for fontworkSzymon Kłos
Change-Id: Ia501a0f1084e4b6d5ca2052a0241ee7675cd2f12 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125270 Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> Tested-by: Szymon Kłos <szymon.klos@collabora.com>
2021-11-16optimize Skia's copyArea() to copy less dataLuboš Luňák
Change-Id: Ia1cd0522643b58ea1be3ad974c1fc5f7fed657d4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125268 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16log also whether SkiaSalBitmap has any pending scalingLuboš Luňák
Change-Id: I09a1921e203e1088577abf75350c8b41e4c78381 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125265 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16don't bother caching bitmaps that prefer shadersLuboš Luňák
Change-Id: Ibc78371f9e2ba92470714847bb6a5b8b96d1037f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125264 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16when caching bitmaps in skia, take into account HiDPILuboš Luňák
Since the image will be actually eventually drawn twice as big, cache an image that is twice as big. Change-Id: Iea0340cd92c102e453330723c797659c742feb63 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125263 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16apply SAL_FORCE_HIDPI_SCALING on X11 even while drawingLuboš Luňák
It'll draw double-sized 1/4 of the content in the topleft corner of windows, but it's still useful for some tests. Change-Id: I20c6d2382d704ddcd67b8cb81eb7abf37b57a92f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125262 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16implement HiDPI support for Skia/Mac (tdf#144214)Luboš Luňák
The basic idea is the same as the 'aqua' backend, simply set up a scaling matrix for all drawing. That will take care of the basic drawing everything twice as large, which is twice the resolution. And then blit this data to the window, which expects data this way. Converting back from backing surface needs explicit coordinate conversions, and when converting to a bitmap the bitmap needs to be scaled down in order to appear normally sized. Fortunately I've already implemented delayed scaling, which means that if the bitmap is drawn later again without any modifications, no data would be lost (to be done in a follow-up commit). Unittests occassionally need special handling, as such scaling down to bitmap not being smoothed, because they expect exact color values. Change-Id: Ieadf2c3693f7c9676c31c7394d46299addf7880c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125060 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to bcc3ccc059f426ef2d79295338e50bb7b7a6642a - tdf#132643 Translate German section IDs Change-Id: I19a2a9073c17b4785f1d76bdd073ef1248c567ad Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125192 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 6ecaae4914ab0d7cea926c64407637ea6b05723d - tdf#132643 Translate German section IDs Change-Id: I0bfd3e56449f87f90b20d083b15b885d18a889e8 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125190 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 88f6c6a5b87012345a2b5a06cfce640513a57106 - tdf#132643 Translate German section IDs Change-Id: I77e097bc550945e9f55d0b14b028261b503301aa Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125191 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 1aa8bf640c894799bfd3c1ece4df34cbb5c29a6d - tdf#132643 Translate German section IDs Change-Id: I9e03d674b96a857255f6f34c87a4ceff2b16969c Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125189 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to e713d1e606f3e87692bcbe629a6427a706859152 - tdf#132643 Translate German section IDs Change-Id: I2371a142bd3f7c088acc402ebb3d3f21d376e485 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125187 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 2ee280bfb365d3cee940f96a93957360a6025eec - tdf#132643 Translate German section IDs Remove unused. Change-Id: Ic6458663921fa886780b84180ad1239fe9ee3896 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125188 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 940b048a9561b5919348a98dabbc3335119557a2 - tdf#132643 Translate German section IDs Change-Id: I61eb8c27657cbacfac50d446bffd5715ac36ee53 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125186 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 2d633cea28e9f266cd9c9a712c97eb9e2b83c8eb - tdf#132643 Translate German section IDs Change-Id: Idd605a7b145e5cd0428ebcf84214b3f2907d6c71 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125185 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to f78f0eda70965f9d7e146bac44bee2d3ad634b5a - tdf#132643 Translate German section IDs Change-Id: I5189b5de232eafaa1a12fff0be358ebcdeda8a70 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125181 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 1cae9563ec5539c55f82562adb4971a5dba93535 - tdf#132643 Translate German section IDs Change-Id: Ic1dbe2444c17b9440a39dae8a95b7b5d11df5f4f Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125183 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to e775ecf573c86ea404f68466a3ac748c5f8988c3 - tdf#132643 Translate German section IDs Change-Id: I793fc7e9be89985c700ef39cab72f651b1468e01 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125184 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to 5ca7212f47d3a3a457556db80a9c7da48a714853 - tdf#132643 Translate German section IDs Change-Id: I780358fcc99a9f59c6ba0f5eacbc65fd39c16b14 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125182 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
2021-11-16Update git submodulesJohnny_M
* Update helpcontent2 from branch 'master' to fd8a89b227489f8f8d005025b6984b952a4b57aa - tdf#132643 Translate German section IDs Change-Id: I761bd3bff8d8094f1fac6dee0c2a9cb5bac85cbd Reviewed-on: https://gerrit.libreoffice.org/c/help/+/125166 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
essages.po131
-rw-r--r--source/as/xmlsecurity/messages.po118
-rw-r--r--source/ast/cui/messages.po1220
-rw-r--r--source/ast/dbaccess/messages.po180
-rw-r--r--source/ast/desktop/messages.po48
-rw-r--r--source/ast/filter/source/config/fragments/filters.po24
-rw-r--r--source/ast/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po2512
-rw-r--r--source/ast/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ast/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/ast/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ast/helpcontent2/source/text/shared.po542
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po2529
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po2618
-rw-r--r--source/ast/helpcontent2/source/text/shared/02.po825
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po225
-rw-r--r--source/ast/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/ast/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ast/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ast/helpcontent2/source/text/swriter.po860
-rw-r--r--source/ast/helpcontent2/source/text/swriter/00.po1648
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po1871
-rw-r--r--source/ast/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/ast/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/ast/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po143
-rw-r--r--source/ast/sc/messages.po364
-rw-r--r--source/ast/sd/messages.po330
-rw-r--r--source/ast/sfx2/messages.po500
-rw-r--r--source/ast/starmath/messages.po106
-rw-r--r--source/ast/svtools/messages.po12
-rw-r--r--source/ast/svx/messages.po1485
-rw-r--r--source/ast/sw/messages.po2768
-rw-r--r--source/ast/uui/messages.po10
-rw-r--r--source/ast/vcl/messages.po130
-rw-r--r--source/ast/xmlsecurity/messages.po118
-rw-r--r--source/az/cui/messages.po1207
-rw-r--r--source/az/dbaccess/messages.po178
-rw-r--r--source/az/desktop/messages.po46
-rw-r--r--source/az/filter/source/config/fragments/filters.po22
-rw-r--r--source/az/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/az/sc/messages.po364
-rw-r--r--source/az/sd/messages.po330
-rw-r--r--source/az/sfx2/messages.po496
-rw-r--r--source/az/starmath/messages.po104
-rw-r--r--source/az/svtools/messages.po12
-rw-r--r--source/az/svx/messages.po1483
-rw-r--r--source/az/sw/messages.po2766
-rw-r--r--source/az/uui/messages.po8
-rw-r--r--source/az/vcl/messages.po128
-rw-r--r--source/az/xmlsecurity/messages.po114
-rw-r--r--source/be/cui/messages.po1214
-rw-r--r--source/be/dbaccess/messages.po178
-rw-r--r--source/be/desktop/messages.po46
-rw-r--r--source/be/filter/source/config/fragments/filters.po22
-rw-r--r--source/be/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/be/sc/messages.po364
-rw-r--r--source/be/sd/messages.po330
-rw-r--r--source/be/sfx2/messages.po498
-rw-r--r--source/be/starmath/messages.po104
-rw-r--r--source/be/svtools/messages.po12
-rw-r--r--source/be/svx/messages.po1483
-rw-r--r--source/be/sw/messages.po2764
-rw-r--r--source/be/uui/messages.po8
-rw-r--r--source/be/vcl/messages.po128
-rw-r--r--source/be/xmlsecurity/messages.po116
-rw-r--r--source/bg/cui/messages.po1224
-rw-r--r--source/bg/dbaccess/messages.po184
-rw-r--r--source/bg/desktop/messages.po48
-rw-r--r--source/bg/filter/source/config/fragments/filters.po24
-rw-r--r--source/bg/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po2516
-rw-r--r--source/bg/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bg/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/bg/helpcontent2/source/text/shared.po542
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po2841
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po2684
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po221
-rw-r--r--source/bg/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/bg/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/bg/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/bg/helpcontent2/source/text/swriter.po862
-rw-r--r--source/bg/helpcontent2/source/text/swriter/00.po1716
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po1957
-rw-r--r--source/bg/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/bg/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po368
-rw-r--r--source/bg/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/bg/sc/messages.po366
-rw-r--r--source/bg/sd/messages.po332
-rw-r--r--source/bg/sfx2/messages.po500
-rw-r--r--source/bg/starmath/messages.po106
-rw-r--r--source/bg/svtools/messages.po14
-rw-r--r--source/bg/svx/messages.po1487
-rw-r--r--source/bg/sw/messages.po2778
-rw-r--r--source/bg/uui/messages.po13
-rw-r--r--source/bg/vcl/messages.po130
-rw-r--r--source/bg/xmlsecurity/messages.po118
-rw-r--r--source/bn-IN/cui/messages.po1216
-rw-r--r--source/bn-IN/dbaccess/messages.po178
-rw-r--r--source/bn-IN/desktop/messages.po46
-rw-r--r--source/bn-IN/filter/source/config/fragments/filters.po22
-rw-r--r--source/bn-IN/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared.po542
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter.po858
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/bn-IN/sc/messages.po364
-rw-r--r--source/bn-IN/sd/messages.po330
-rw-r--r--source/bn-IN/sfx2/messages.po498
-rw-r--r--source/bn-IN/starmath/messages.po104
-rw-r--r--source/bn-IN/svtools/messages.po12
-rw-r--r--source/bn-IN/svx/messages.po1483
-rw-r--r--source/bn-IN/sw/messages.po2763
-rw-r--r--source/bn-IN/uui/messages.po8
-rw-r--r--source/bn-IN/vcl/messages.po130
-rw-r--r--source/bn-IN/xmlsecurity/messages.po116
-rw-r--r--source/bn/cui/messages.po1220
-rw-r--r--source/bn/dbaccess/messages.po178
-rw-r--r--source/bn/desktop/messages.po46
-rw-r--r--source/bn/filter/source/config/fragments/filters.po22
-rw-r--r--source/bn/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/bn/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bn/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/bn/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/bn/helpcontent2/source/text/shared.po542
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/bn/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/bn/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/bn/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/bn/helpcontent2/source/text/swriter.po858
-rw-r--r--source/bn/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/bn/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/bn/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/bn/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/bn/sc/messages.po364
-rw-r--r--source/bn/sd/messages.po330
-rw-r--r--source/bn/sfx2/messages.po496
-rw-r--r--source/bn/starmath/messages.po104
-rw-r--r--source/bn/svtools/messages.po12
-rw-r--r--source/bn/svx/messages.po1483
-rw-r--r--source/bn/sw/messages.po2762
-rw-r--r--source/bn/uui/messages.po8
-rw-r--r--source/bn/vcl/messages.po130
-rw-r--r--source/bn/xmlsecurity/messages.po115
-rw-r--r--source/bo/cui/messages.po1217
-rw-r--r--source/bo/dbaccess/messages.po178
-rw-r--r--source/bo/desktop/messages.po46
-rw-r--r--source/bo/filter/source/config/fragments/filters.po22
-rw-r--r--source/bo/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/bo/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bo/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/bo/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/bo/helpcontent2/source/text/shared.po542
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po821
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/bo/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/bo/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/bo/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/bo/helpcontent2/source/text/swriter.po858
-rw-r--r--source/bo/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/bo/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/bo/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po358
-rw-r--r--source/bo/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/bo/sc/messages.po364
-rw-r--r--source/bo/sd/messages.po330
-rw-r--r--source/bo/sfx2/messages.po496
-rw-r--r--source/bo/starmath/messages.po104
-rw-r--r--source/bo/svtools/messages.po12
-rw-r--r--source/bo/svx/messages.po1483
-rw-r--r--source/bo/sw/messages.po2762
-rw-r--r--source/bo/uui/messages.po8
-rw-r--r--source/bo/vcl/messages.po130
-rw-r--r--source/bo/xmlsecurity/messages.po115
-rw-r--r--source/br/cui/messages.po1214
-rw-r--r--source/br/dbaccess/messages.po178
-rw-r--r--source/br/desktop/messages.po46
-rw-r--r--source/br/filter/source/config/fragments/filters.po22
-rw-r--r--source/br/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/br/sc/messages.po364
-rw-r--r--source/br/sd/messages.po330
-rw-r--r--source/br/sfx2/messages.po498
-rw-r--r--source/br/starmath/messages.po104
-rw-r--r--source/br/svtools/messages.po12
-rw-r--r--source/br/svx/messages.po1483
-rw-r--r--source/br/sw/messages.po2762
-rw-r--r--source/br/uui/messages.po8
-rw-r--r--source/br/vcl/messages.po130
-rw-r--r--source/br/xmlsecurity/messages.po116
-rw-r--r--source/brx/cui/messages.po1213
-rw-r--r--source/brx/dbaccess/messages.po178
-rw-r--r--source/brx/desktop/messages.po46
-rw-r--r--source/brx/filter/source/config/fragments/filters.po22
-rw-r--r--source/brx/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/brx/sc/messages.po364
-rw-r--r--source/brx/sd/messages.po330
-rw-r--r--source/brx/sfx2/messages.po496
-rw-r--r--source/brx/starmath/messages.po104
-rw-r--r--source/brx/svtools/messages.po12
-rw-r--r--source/brx/svx/messages.po1483
-rw-r--r--source/brx/sw/messages.po2762
-rw-r--r--source/brx/uui/messages.po8
-rw-r--r--source/brx/vcl/messages.po130
-rw-r--r--source/brx/xmlsecurity/messages.po114
-rw-r--r--source/bs/cui/messages.po1215
-rw-r--r--source/bs/dbaccess/messages.po178
-rw-r--r--source/bs/desktop/messages.po46
-rw-r--r--source/bs/filter/source/config/fragments/filters.po22
-rw-r--r--source/bs/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/bs/helpcontent2/source/text/scalc.po8
-rw-r--r--source/bs/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po1284
-rw-r--r--source/bs/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/bs/helpcontent2/source/text/shared.po542
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po2519
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po811
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/bs/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po163
-rw-r--r--source/bs/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/bs/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/bs/helpcontent2/source/text/swriter.po854
-rw-r--r--source/bs/helpcontent2/source/text/swriter/00.po1618
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po1859
-rw-r--r--source/bs/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/bs/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po356
-rw-r--r--source/bs/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/bs/sc/messages.po364
-rw-r--r--source/bs/sd/messages.po330
-rw-r--r--source/bs/sfx2/messages.po498
-rw-r--r--source/bs/starmath/messages.po104
-rw-r--r--source/bs/svtools/messages.po12
-rw-r--r--source/bs/svx/messages.po1483
-rw-r--r--source/bs/sw/messages.po2767
-rw-r--r--source/bs/uui/messages.po8
-rw-r--r--source/bs/vcl/messages.po130
-rw-r--r--source/bs/xmlsecurity/messages.po118
-rw-r--r--source/ca-valencia/cui/messages.po1224
-rw-r--r--source/ca-valencia/dbaccess/messages.po184
-rw-r--r--source/ca-valencia/desktop/messages.po48
-rw-r--r--source/ca-valencia/filter/source/config/fragments/filters.po24
-rw-r--r--source/ca-valencia/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po40
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po2516
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po1306
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared.po544
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po2617
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po2636
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po827
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po229
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/00.po46
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter.po862
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/00.po1694
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po1919
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po368
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/ca-valencia/sc/messages.po366
-rw-r--r--source/ca-valencia/sd/messages.po332
-rw-r--r--source/ca-valencia/sfx2/messages.po500
-rw-r--r--source/ca-valencia/starmath/messages.po106
-rw-r--r--source/ca-valencia/svtools/messages.po14
-rw-r--r--source/ca-valencia/svx/messages.po1489
-rw-r--r--source/ca-valencia/sw/messages.po2778
-rw-r--r--source/ca-valencia/uui/messages.po13
-rw-r--r--source/ca-valencia/vcl/messages.po130
-rw-r--r--source/ca-valencia/xmlsecurity/messages.po120
-rw-r--r--source/ca/cui/messages.po1224
-rw-r--r--source/ca/dbaccess/messages.po184
-rw-r--r--source/ca/desktop/messages.po48
-rw-r--r--source/ca/filter/source/config/fragments/filters.po24
-rw-r--r--source/ca/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po41
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po2516
-rw-r--r--source/ca/helpcontent2/source/text/scalc.po10
-rw-r--r--source/ca/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po1315
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/ca/helpcontent2/source/text/shared.po542
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po2865
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po2654
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po834
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po230
-rw-r--r--source/ca/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/ca/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po862
-rw-r--r--source/ca/helpcontent2/source/text/swriter/00.po1706
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po1978
-rw-r--r--source/ca/helpcontent2/source/text/swriter/02.po497
-rw-r--r--source/ca/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/ca/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/ca/sc/messages.po366
-rw-r--r--source/ca/sd/messages.po332
-rw-r--r--source/ca/sfx2/messages.po500
-rw-r--r--source/ca/starmath/messages.po106
-rw-r--r--source/ca/svtools/messages.po14
-rw-r--r--source/ca/svx/messages.po1489
-rw-r--r--source/ca/sw/messages.po2778
-rw-r--r--source/ca/uui/messages.po13
-rw-r--r--source/ca/vcl/messages.po130
-rw-r--r--source/ca/xmlsecurity/messages.po118
-rw-r--r--source/ckb/cui/messages.po1210
-rw-r--r--source/ckb/dbaccess/messages.po178
-rw-r--r--source/ckb/desktop/messages.po46
-rw-r--r--source/ckb/filter/source/config/fragments/filters.po22
-rw-r--r--source/ckb/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ckb/officecfg/registry/data/org/openoffice/Office/UI.po146
-rw-r--r--source/ckb/sc/messages.po364
-rw-r--r--source/ckb/sd/messages.po330
-rw-r--r--source/ckb/sfx2/messages.po496
-rw-r--r--source/ckb/starmath/messages.po104
-rw-r--r--source/ckb/svtools/messages.po12
-rw-r--r--source/ckb/svx/messages.po1483
-rw-r--r--source/ckb/sw/messages.po2762
-rw-r--r--source/ckb/uui/messages.po8
-rw-r--r--source/ckb/vcl/messages.po128
-rw-r--r--source/ckb/xmlsecurity/messages.po116
-rw-r--r--source/cs/cui/messages.po1224
-rw-r--r--source/cs/dbaccess/messages.po184
-rw-r--r--source/cs/desktop/messages.po48
-rw-r--r--source/cs/filter/source/config/fragments/filters.po24
-rw-r--r--source/cs/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po44
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po2546
-rw-r--r--source/cs/helpcontent2/source/text/scalc.po8
-rw-r--r--source/cs/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po1310
-rw-r--r--source/cs/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/cs/helpcontent2/source/text/shared.po542
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po2841
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po2684
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po835
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/cs/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/cs/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/cs/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/cs/helpcontent2/source/text/swriter.po860
-rw-r--r--source/cs/helpcontent2/source/text/swriter/00.po1716
-rw-r--r--source/cs/helpcontent2/source/text/swriter/01.po1957
-rw-r--r--source/cs/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/cs/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po368
-rw-r--r--source/cs/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/cs/sc/messages.po366
-rw-r--r--source/cs/sd/messages.po332
-rw-r--r--source/cs/sfx2/messages.po500
-rw-r--r--source/cs/starmath/messages.po106
-rw-r--r--source/cs/svtools/messages.po14
-rw-r--r--source/cs/svx/messages.po1489
-rw-r--r--source/cs/sw/messages.po2776
-rw-r--r--source/cs/uui/messages.po13
-rw-r--r--source/cs/vcl/messages.po130
-rw-r--r--source/cs/xmlsecurity/messages.po118
-rw-r--r--source/cy/cui/messages.po1224
-rw-r--r--source/cy/dbaccess/messages.po184
-rw-r--r--source/cy/desktop/messages.po48
-rw-r--r--source/cy/filter/source/config/fragments/filters.po24
-rw-r--r--source/cy/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/cy/sc/messages.po366
-rw-r--r--source/cy/sd/messages.po332
-rw-r--r--source/cy/sfx2/messages.po500
-rw-r--r--source/cy/starmath/messages.po106
-rw-r--r--source/cy/svtools/messages.po14
-rw-r--r--source/cy/svx/messages.po1487
-rw-r--r--source/cy/sw/messages.po2778
-rw-r--r--source/cy/uui/messages.po13
-rw-r--r--source/cy/vcl/messages.po130
-rw-r--r--source/cy/xmlsecurity/messages.po118
-rw-r--r--source/da/cui/messages.po1224
-rw-r--r--source/da/dbaccess/messages.po178
-rw-r--r--source/da/desktop/messages.po48
-rw-r--r--source/da/filter/source/config/fragments/filters.po24
-rw-r--r--source/da/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po42
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po2546
-rw-r--r--source/da/helpcontent2/source/text/scalc.po8
-rw-r--r--source/da/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po1314
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/da/helpcontent2/source/text/shared.po542
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po2803
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po2678
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po835
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/da/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/da/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/da/helpcontent2/source/text/swriter.po860
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po1714
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po1957
-rw-r--r--source/da/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/da/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po368
-rw-r--r--source/da/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/da/sc/messages.po366
-rw-r--r--source/da/sd/messages.po332
-rw-r--r--source/da/sfx2/messages.po500
-rw-r--r--source/da/starmath/messages.po106
-rw-r--r--source/da/svtools/messages.po14
-rw-r--r--source/da/svx/messages.po1487
-rw-r--r--source/da/sw/messages.po2776
-rw-r--r--source/da/uui/messages.po13
-rw-r--r--source/da/vcl/messages.po130
-rw-r--r--source/da/xmlsecurity/messages.po118
-rw-r--r--source/de/cui/messages.po1228
-rw-r--r--source/de/dbaccess/messages.po184
-rw-r--r--source/de/desktop/messages.po48
-rw-r--r--source/de/filter/source/config/fragments/filters.po24
-rw-r--r--source/de/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po2550
-rw-r--r--source/de/helpcontent2/source/text/scalc.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/de/helpcontent2/source/text/shared.po544
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po2694
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po235
-rw-r--r--source/de/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/de/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/de/helpcontent2/source/text/swriter.po860
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po1975
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/de/helpcontent2/source/text/swriter/04.po40
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/de/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/de/sc/messages.po366
-rw-r--r--source/de/sd/messages.po332
-rw-r--r--source/de/sfx2/messages.po500
-rw-r--r--source/de/starmath/messages.po106
-rw-r--r--source/de/svtools/messages.po14
-rw-r--r--source/de/svx/messages.po1489
-rw-r--r--source/de/sw/messages.po2778
-rw-r--r--source/de/uui/messages.po13
-rw-r--r--source/de/vcl/messages.po130
-rw-r--r--source/de/xmlsecurity/messages.po120
-rw-r--r--source/dgo/cui/messages.po1222
-rw-r--r--source/dgo/dbaccess/messages.po178
-rw-r--r--source/dgo/desktop/messages.po46
-rw-r--r--source/dgo/filter/source/config/fragments/filters.po22
-rw-r--r--source/dgo/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/dgo/sc/messages.po364
-rw-r--r--source/dgo/sd/messages.po330
-rw-r--r--source/dgo/sfx2/messages.po496
-rw-r--r--source/dgo/starmath/messages.po104
-rw-r--r--source/dgo/svtools/messages.po12
-rw-r--r--source/dgo/svx/messages.po1483
-rw-r--r--source/dgo/sw/messages.po2766
-rw-r--r--source/dgo/uui/messages.po8
-rw-r--r--source/dgo/vcl/messages.po130
-rw-r--r--source/dgo/xmlsecurity/messages.po116
-rw-r--r--source/dsb/cui/messages.po1224
-rw-r--r--source/dsb/dbaccess/messages.po184
-rw-r--r--source/dsb/desktop/messages.po48
-rw-r--r--source/dsb/filter/source/config/fragments/filters.po24
-rw-r--r--source/dsb/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/dsb/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/dsb/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/dsb/helpcontent2/source/text/scalc.po8
-rw-r--r--source/dsb/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/dsb/helpcontent2/source/text/scalc/01.po1282
-rw-r--r--source/dsb/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/dsb/helpcontent2/source/text/shared.po542
-rw-r--r--source/dsb/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/dsb/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/dsb/helpcontent2/source/text/shared/02.po793
-rw-r--r--source/dsb/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/dsb/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/dsb/helpcontent2/source/text/shared/optionen.po157
-rw-r--r--source/dsb/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/dsb/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/dsb/helpcontent2/source/text/swriter.po860
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/01.po1845
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/dsb/sc/messages.po366
-rw-r--r--source/dsb/sd/messages.po332
-rw-r--r--source/dsb/sfx2/messages.po500
-rw-r--r--source/dsb/starmath/messages.po106
-rw-r--r--source/dsb/svtools/messages.po14
-rw-r--r--source/dsb/svx/messages.po1489
-rw-r--r--source/dsb/sw/messages.po2778
-rw-r--r--source/dsb/uui/messages.po13
-rw-r--r--source/dsb/vcl/messages.po130
-rw-r--r--source/dsb/xmlsecurity/messages.po120
-rw-r--r--source/dz/cui/messages.po1214
-rw-r--r--source/dz/dbaccess/messages.po178
-rw-r--r--source/dz/desktop/messages.po46
-rw-r--r--source/dz/filter/source/config/fragments/filters.po22
-rw-r--r--source/dz/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/dz/helpcontent2/source/text/scalc.po8
-rw-r--r--source/dz/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/dz/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/dz/helpcontent2/source/text/shared.po542
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/dz/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/dz/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/dz/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/dz/helpcontent2/source/text/swriter.po858
-rw-r--r--source/dz/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po1867
-rw-r--r--source/dz/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/dz/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po358
-rw-r--r--source/dz/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/dz/sc/messages.po364
-rw-r--r--source/dz/sd/messages.po330
-rw-r--r--source/dz/sfx2/messages.po496
-rw-r--r--source/dz/starmath/messages.po104
-rw-r--r--source/dz/svtools/messages.po12
-rw-r--r--source/dz/svx/messages.po1483
-rw-r--r--source/dz/sw/messages.po2762
-rw-r--r--source/dz/uui/messages.po8
-rw-r--r--source/dz/vcl/messages.po130
-rw-r--r--source/dz/xmlsecurity/messages.po115
-rw-r--r--source/el/cui/messages.po1224
-rw-r--r--source/el/dbaccess/messages.po184
-rw-r--r--source/el/desktop/messages.po48
-rw-r--r--source/el/filter/source/config/fragments/filters.po24
-rw-r--r--source/el/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po44
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po2546
-rw-r--r--source/el/helpcontent2/source/text/scalc.po8
-rw-r--r--source/el/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po1310
-rw-r--r--source/el/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/el/helpcontent2/source/text/shared.po542
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po2919
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po2806
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po235
-rw-r--r--source/el/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/el/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/el/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/el/helpcontent2/source/text/swriter.po862
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/el/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/el/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/el/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/el/sc/messages.po366
-rw-r--r--source/el/sd/messages.po332
-rw-r--r--source/el/sfx2/messages.po500
-rw-r--r--source/el/starmath/messages.po106
-rw-r--r--source/el/svtools/messages.po14
-rw-r--r--source/el/svx/messages.po1487
-rw-r--r--source/el/sw/messages.po2778
-rw-r--r--source/el/uui/messages.po13
-rw-r--r--source/el/vcl/messages.po130
-rw-r--r--source/el/xmlsecurity/messages.po118
-rw-r--r--source/en-GB/cui/messages.po1222
-rw-r--r--source/en-GB/dbaccess/messages.po178
-rw-r--r--source/en-GB/desktop/messages.po46
-rw-r--r--source/en-GB/filter/source/config/fragments/filters.po22
-rw-r--r--source/en-GB/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po2518
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po1302
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/shared.po542
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po2677
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po2638
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po831
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po860
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po1688
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po1951
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/en-GB/sc/messages.po364
-rw-r--r--source/en-GB/sd/messages.po330
-rw-r--r--source/en-GB/sfx2/messages.po498
-rw-r--r--source/en-GB/starmath/messages.po106
-rw-r--r--source/en-GB/svtools/messages.po12
-rw-r--r--source/en-GB/svx/messages.po1485
-rw-r--r--source/en-GB/sw/messages.po2772
-rw-r--r--source/en-GB/uui/messages.po13
-rw-r--r--source/en-GB/vcl/messages.po128
-rw-r--r--source/en-GB/xmlsecurity/messages.po118
-rw-r--r--source/en-ZA/cui/messages.po1222
-rw-r--r--source/en-ZA/dbaccess/messages.po178
-rw-r--r--source/en-ZA/desktop/messages.po46
-rw-r--r--source/en-ZA/filter/source/config/fragments/filters.po22
-rw-r--r--source/en-ZA/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc.po8
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared.po542
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter.po858
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/00.po1644
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/en-ZA/sc/messages.po364
-rw-r--r--source/en-ZA/sd/messages.po330
-rw-r--r--source/en-ZA/sfx2/messages.po496
-rw-r--r--source/en-ZA/starmath/messages.po104
-rw-r--r--source/en-ZA/svtools/messages.po12
-rw-r--r--source/en-ZA/svx/messages.po1483
-rw-r--r--source/en-ZA/sw/messages.po2762
-rw-r--r--source/en-ZA/uui/messages.po8
-rw-r--r--source/en-ZA/vcl/messages.po130
-rw-r--r--source/en-ZA/xmlsecurity/messages.po114
-rw-r--r--source/eo/cui/messages.po1224
-rw-r--r--source/eo/dbaccess/messages.po184
-rw-r--r--source/eo/desktop/messages.po48
-rw-r--r--source/eo/filter/source/config/fragments/filters.po24
-rw-r--r--source/eo/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/eo/helpcontent2/source/text/scalc.po8
-rw-r--r--source/eo/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/eo/helpcontent2/source/text/shared.po542
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po2705
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po803
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/eo/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po159
-rw-r--r--source/eo/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/eo/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po858
-rw-r--r--source/eo/helpcontent2/source/text/swriter/00.po1704
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po1955
-rw-r--r--source/eo/helpcontent2/source/text/swriter/02.po487
-rw-r--r--source/eo/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/eo/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/eo/sc/messages.po364
-rw-r--r--source/eo/sd/messages.po332
-rw-r--r--source/eo/sfx2/messages.po500
-rw-r--r--source/eo/starmath/messages.po106
-rw-r--r--source/eo/svtools/messages.po14
-rw-r--r--source/eo/svx/messages.po1487
-rw-r--r--source/eo/sw/messages.po2776
-rw-r--r--source/eo/uui/messages.po13
-rw-r--r--source/eo/vcl/messages.po130
-rw-r--r--source/eo/xmlsecurity/messages.po118
-rw-r--r--source/es/basctl/messages.po8
-rw-r--r--source/es/cui/messages.po1224
-rw-r--r--source/es/dbaccess/messages.po192
-rw-r--r--source/es/desktop/messages.po48
-rw-r--r--source/es/extensions/messages.po6
-rw-r--r--source/es/filter/source/config/fragments/filters.po24
-rw-r--r--source/es/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/es/forms/messages.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po126
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po44
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po2530
-rw-r--r--source/es/helpcontent2/source/text/scalc.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po390
-rw-r--r--source/es/helpcontent2/source/text/shared.po542
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po2673
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po2668
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po839
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po229
-rw-r--r--source/es/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/es/helpcontent2/source/text/swriter.po860
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po1708
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po1953
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/es/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po158
-rw-r--r--source/es/reportdesign/messages.po10
-rw-r--r--source/es/sc/messages.po412
-rw-r--r--source/es/sd/messages.po332
-rw-r--r--source/es/sfx2/messages.po500
-rw-r--r--source/es/starmath/messages.po106
-rw-r--r--source/es/svtools/messages.po14
-rw-r--r--source/es/svx/messages.po1493
-rw-r--r--source/es/sw/messages.po2812
-rw-r--r--source/es/uui/messages.po13
-rw-r--r--source/es/vcl/messages.po130
-rw-r--r--source/es/xmlsecurity/messages.po118
-rw-r--r--source/et/cui/messages.po1222
-rw-r--r--source/et/dbaccess/messages.po178
-rw-r--r--source/et/desktop/messages.po46
-rw-r--r--source/et/filter/source/config/fragments/filters.po22
-rw-r--r--source/et/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/et/helpcontent2/source/text/scalc.po8
-rw-r--r--source/et/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po1298
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/et/helpcontent2/source/text/shared.po542
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po2724
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po2630
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po825
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/et/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/et/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/et/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/et/helpcontent2/source/text/swriter.po858
-rw-r--r--source/et/helpcontent2/source/text/swriter/00.po1686
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po1887
-rw-r--r--source/et/helpcontent2/source/text/swriter/02.po487
-rw-r--r--source/et/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/et/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/et/sc/messages.po364
-rw-r--r--source/et/sd/messages.po330
-rw-r--r--source/et/sfx2/messages.po498
-rw-r--r--source/et/starmath/messages.po104
-rw-r--r--source/et/svtools/messages.po12
-rw-r--r--source/et/svx/messages.po1485
-rw-r--r--source/et/sw/messages.po2772
-rw-r--r--source/et/uui/messages.po8
-rw-r--r--source/et/vcl/messages.po128
-rw-r--r--source/et/xmlsecurity/messages.po118
-rw-r--r--source/eu/cui/messages.po1222
-rw-r--r--source/eu/dbaccess/messages.po178
-rw-r--r--source/eu/desktop/messages.po48
-rw-r--r--source/eu/filter/source/config/fragments/filters.po24
-rw-r--r--source/eu/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po2546
-rw-r--r--source/eu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/eu/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po1310
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/eu/helpcontent2/source/text/shared.po542
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po2841
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po2685
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po835
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/eu/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/eu/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po860
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po1716
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po1957
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/eu/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po368
-rw-r--r--source/eu/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/eu/sc/messages.po364
-rw-r--r--source/eu/sd/messages.po330
-rw-r--r--source/eu/sfx2/messages.po498
-rw-r--r--source/eu/starmath/messages.po106
-rw-r--r--source/eu/svtools/messages.po12
-rw-r--r--source/eu/svx/messages.po1485
-rw-r--r--source/eu/sw/messages.po2772
-rw-r--r--source/eu/uui/messages.po13
-rw-r--r--source/eu/vcl/messages.po128
-rw-r--r--source/eu/xmlsecurity/messages.po118
-rw-r--r--source/fa/cui/messages.po1215
-rw-r--r--source/fa/dbaccess/messages.po180
-rw-r--r--source/fa/desktop/messages.po48
-rw-r--r--source/fa/filter/source/config/fragments/filters.po24
-rw-r--r--source/fa/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/fa/sc/messages.po364
-rw-r--r--source/fa/sd/messages.po332
-rw-r--r--source/fa/sfx2/messages.po498
-rw-r--r--source/fa/starmath/messages.po106
-rw-r--r--source/fa/svtools/messages.po14
-rw-r--r--source/fa/svx/messages.po1483
-rw-r--r--source/fa/sw/messages.po2766
-rw-r--r--source/fa/uui/messages.po13
-rw-r--r--source/fa/vcl/messages.po130
-rw-r--r--source/fa/xmlsecurity/messages.po114
-rw-r--r--source/fi/cui/messages.po1223
-rw-r--r--source/fi/dbaccess/messages.po180
-rw-r--r--source/fi/desktop/messages.po48
-rw-r--r--source/fi/filter/source/config/fragments/filters.po24
-rw-r--r--source/fi/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/fi/helpcontent2/source/text/scalc.po8
-rw-r--r--source/fi/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po1282
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/fi/helpcontent2/source/text/shared.po542
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po2525
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/fi/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po193
-rw-r--r--source/fi/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/fi/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/fi/helpcontent2/source/text/swriter.po858
-rw-r--r--source/fi/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/fi/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/fi/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/fi/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/fi/sc/messages.po366
-rw-r--r--source/fi/sd/messages.po332
-rw-r--r--source/fi/sfx2/messages.po500
-rw-r--r--source/fi/starmath/messages.po106
-rw-r--r--source/fi/svtools/messages.po12
-rw-r--r--source/fi/svx/messages.po1489
-rw-r--r--source/fi/sw/messages.po2772
-rw-r--r--source/fi/uui/messages.po13
-rw-r--r--source/fi/vcl/messages.po130
-rw-r--r--source/fi/xmlsecurity/messages.po116
-rw-r--r--source/fr/cui/messages.po1222
-rw-r--r--source/fr/dbaccess/messages.po184
-rw-r--r--source/fr/desktop/messages.po48
-rw-r--r--source/fr/filter/source/config/fragments/filters.po24
-rw-r--r--source/fr/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po2870
-rw-r--r--source/fr/helpcontent2/source/text/scalc.po8
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po1310
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/fr/helpcontent2/source/text/shared.po542
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po233
-rw-r--r--source/fr/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/fr/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/fr/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/fr/helpcontent2/source/text/swriter.po860
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/fr/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/fr/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/fr/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/fr/sc/messages.po366
-rw-r--r--source/fr/sd/messages.po332
-rw-r--r--source/fr/sfx2/messages.po500
-rw-r--r--source/fr/starmath/messages.po106
-rw-r--r--source/fr/svtools/messages.po14
-rw-r--r--source/fr/svx/messages.po1485
-rw-r--r--source/fr/sw/messages.po2778
-rw-r--r--source/fr/uui/messages.po13
-rw-r--r--source/fr/vcl/messages.po130
-rw-r--r--source/fr/xmlsecurity/messages.po118
-rw-r--r--source/fur/cui/messages.po1208
-rw-r--r--source/fur/dbaccess/messages.po178
-rw-r--r--source/fur/desktop/messages.po46
-rw-r--r--source/fur/filter/source/config/fragments/filters.po22
-rw-r--r--source/fur/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/fur/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/fur/sc/messages.po364
-rw-r--r--source/fur/sd/messages.po330
-rw-r--r--source/fur/sfx2/messages.po496
-rw-r--r--source/fur/starmath/messages.po104
-rw-r--r--source/fur/svtools/messages.po12
-rw-r--r--source/fur/svx/messages.po1483
-rw-r--r--source/fur/sw/messages.po2762
-rw-r--r--source/fur/uui/messages.po8
-rw-r--r--source/fur/vcl/messages.po128
-rw-r--r--source/fur/xmlsecurity/messages.po116
-rw-r--r--source/fy/cui/messages.po1220
-rw-r--r--source/fy/dbaccess/messages.po178
-rw-r--r--source/fy/desktop/messages.po46
-rw-r--r--source/fy/filter/source/config/fragments/filters.po22
-rw-r--r--source/fy/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/fy/sc/messages.po364
-rw-r--r--source/fy/sd/messages.po330
-rw-r--r--source/fy/sfx2/messages.po498
-rw-r--r--source/fy/starmath/messages.po104
-rw-r--r--source/fy/svtools/messages.po12
-rw-r--r--source/fy/svx/messages.po1485
-rw-r--r--source/fy/sw/messages.po2774
-rw-r--r--source/fy/uui/messages.po8
-rw-r--r--source/fy/vcl/messages.po128
-rw-r--r--source/fy/xmlsecurity/messages.po118
-rw-r--r--source/ga/cui/messages.po1214
-rw-r--r--source/ga/dbaccess/messages.po178
-rw-r--r--source/ga/desktop/messages.po46
-rw-r--r--source/ga/filter/source/config/fragments/filters.po22
-rw-r--r--source/ga/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po148
-rw-r--r--source/ga/sc/messages.po364
-rw-r--r--source/ga/sd/messages.po330
-rw-r--r--source/ga/sfx2/messages.po498
-rw-r--r--source/ga/starmath/messages.po104
-rw-r--r--source/ga/svtools/messages.po12
-rw-r--r--source/ga/svx/messages.po1483
-rw-r--r--source/ga/sw/messages.po2764
-rw-r--r--source/ga/uui/messages.po8
-rw-r--r--source/ga/vcl/messages.po128
-rw-r--r--source/ga/xmlsecurity/messages.po116
-rw-r--r--source/gd/cui/messages.po1214
-rw-r--r--source/gd/dbaccess/messages.po178
-rw-r--r--source/gd/desktop/messages.po46
-rw-r--r--source/gd/filter/source/config/fragments/filters.po22
-rw-r--r--source/gd/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po148
-rw-r--r--source/gd/sc/messages.po364
-rw-r--r--source/gd/sd/messages.po330
-rw-r--r--source/gd/sfx2/messages.po498
-rw-r--r--source/gd/starmath/messages.po104
-rw-r--r--source/gd/svtools/messages.po12
-rw-r--r--source/gd/svx/messages.po1483
-rw-r--r--source/gd/sw/messages.po2764
-rw-r--r--source/gd/uui/messages.po8
-rw-r--r--source/gd/vcl/messages.po128
-rw-r--r--source/gd/xmlsecurity/messages.po116
-rw-r--r--source/gl/cui/messages.po1224
-rw-r--r--source/gl/dbaccess/messages.po184
-rw-r--r--source/gl/desktop/messages.po48
-rw-r--r--source/gl/filter/source/config/fragments/filters.po24
-rw-r--r--source/gl/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po2508
-rw-r--r--source/gl/helpcontent2/source/text/scalc.po10
-rw-r--r--source/gl/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po1302
-rw-r--r--source/gl/helpcontent2/source/text/scalc/02.po12
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po32
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/00.po10
-rw-r--r--source/gl/helpcontent2/source/text/sdraw/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/shared.po544
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po2557
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po2628
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po821
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po217
-rw-r--r--source/gl/helpcontent2/source/text/shared/help.po12
-rw-r--r--source/gl/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po195
-rw-r--r--source/gl/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/gl/helpcontent2/source/text/smath.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter.po860
-rw-r--r--source/gl/helpcontent2/source/text/swriter/00.po1682
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po1951
-rw-r--r--source/gl/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/gl/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po364
-rw-r--r--source/gl/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/gl/sc/messages.po366
-rw-r--r--source/gl/sd/messages.po332
-rw-r--r--source/gl/sfx2/messages.po500
-rw-r--r--source/gl/starmath/messages.po106
-rw-r--r--source/gl/svtools/messages.po14
-rw-r--r--source/gl/svx/messages.po1489
-rw-r--r--source/gl/sw/messages.po2778
-rw-r--r--source/gl/uui/messages.po13
-rw-r--r--source/gl/vcl/messages.po130
-rw-r--r--source/gl/xmlsecurity/messages.po118
-rw-r--r--source/gu/cui/messages.po1217
-rw-r--r--source/gu/dbaccess/messages.po178
-rw-r--r--source/gu/desktop/messages.po46
-rw-r--r--source/gu/filter/source/config/fragments/filters.po22
-rw-r--r--source/gu/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/gu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/gu/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/gu/helpcontent2/source/text/shared.po542
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po817
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/gu/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/gu/helpcontent2/source/text/simpress/00.po42
-rw-r--r--source/gu/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/gu/helpcontent2/source/text/swriter.po858
-rw-r--r--source/gu/helpcontent2/source/text/swriter/00.po1634
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po1863
-rw-r--r--source/gu/helpcontent2/source/text/swriter/02.po481
-rw-r--r--source/gu/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po356
-rw-r--r--source/gu/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/gu/sc/messages.po364
-rw-r--r--source/gu/sd/messages.po330
-rw-r--r--source/gu/sfx2/messages.po498
-rw-r--r--source/gu/starmath/messages.po104
-rw-r--r--source/gu/svtools/messages.po12
-rw-r--r--source/gu/svx/messages.po1483
-rw-r--r--source/gu/sw/messages.po2764
-rw-r--r--source/gu/uui/messages.po8
-rw-r--r--source/gu/vcl/messages.po130
-rw-r--r--source/gu/xmlsecurity/messages.po117
-rw-r--r--source/gug/cui/messages.po1214
-rw-r--r--source/gug/dbaccess/messages.po178
-rw-r--r--source/gug/desktop/messages.po46
-rw-r--r--source/gug/filter/source/config/fragments/filters.po22
-rw-r--r--source/gug/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po126
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po44
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po2530
-rw-r--r--source/gug/helpcontent2/source/text/scalc.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po390
-rw-r--r--source/gug/helpcontent2/source/text/shared.po542
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po2673
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po2668
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po839
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po229
-rw-r--r--source/gug/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po201
-rw-r--r--source/gug/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po860
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po1708
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po1953
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/gug/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/gug/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po143
-rw-r--r--source/gug/sc/messages.po364
-rw-r--r--source/gug/sd/messages.po330
-rw-r--r--source/gug/sfx2/messages.po498
-rw-r--r--source/gug/starmath/messages.po104
-rw-r--r--source/gug/svtools/messages.po12
-rw-r--r--source/gug/svx/messages.po1483
-rw-r--r--source/gug/sw/messages.po2762
-rw-r--r--source/gug/uui/messages.po8
-rw-r--r--source/gug/vcl/messages.po128
-rw-r--r--source/gug/xmlsecurity/messages.po116
-rw-r--r--source/he/cui/messages.po1218
-rw-r--r--source/he/dbaccess/messages.po180
-rw-r--r--source/he/desktop/messages.po48
-rw-r--r--source/he/filter/source/config/fragments/filters.po24
-rw-r--r--source/he/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/he/helpcontent2/source/text/scalc.po10
-rw-r--r--source/he/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/he/helpcontent2/source/text/shared.po542
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po2517
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po803
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/he/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po181
-rw-r--r--source/he/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/he/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/he/helpcontent2/source/text/swriter.po854
-rw-r--r--source/he/helpcontent2/source/text/swriter/00.po1638
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po1859
-rw-r--r--source/he/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/he/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po358
-rw-r--r--source/he/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/he/sc/messages.po411
-rw-r--r--source/he/sd/messages.po338
-rw-r--r--source/he/sfx2/messages.po500
-rw-r--r--source/he/starmath/messages.po106
-rw-r--r--source/he/svtools/messages.po12
-rw-r--r--source/he/svx/messages.po1537
-rw-r--r--source/he/sw/messages.po2767
-rw-r--r--source/he/uui/messages.po13
-rw-r--r--source/he/vcl/messages.po130
-rw-r--r--source/he/xmlsecurity/messages.po120
-rw-r--r--source/hi/cui/messages.po1215
-rw-r--r--source/hi/dbaccess/messages.po178
-rw-r--r--source/hi/desktop/messages.po46
-rw-r--r--source/hi/filter/source/config/fragments/filters.po22
-rw-r--r--source/hi/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/hi/helpcontent2/source/text/scalc.po6
-rw-r--r--source/hi/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po1286
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/hi/helpcontent2/source/text/shared.po542
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po2515
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po2620
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po797
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/hi/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po169
-rw-r--r--source/hi/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/hi/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/hi/helpcontent2/source/text/swriter.po850
-rw-r--r--source/hi/helpcontent2/source/text/swriter/00.po1614
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po1853
-rw-r--r--source/hi/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/hi/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/hi/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/hi/sc/messages.po364
-rw-r--r--source/hi/sd/messages.po330
-rw-r--r--source/hi/sfx2/messages.po498
-rw-r--r--source/hi/starmath/messages.po104
-rw-r--r--source/hi/svtools/messages.po12
-rw-r--r--source/hi/svx/messages.po1483
-rw-r--r--source/hi/sw/messages.po2763
-rw-r--r--source/hi/uui/messages.po8
-rw-r--r--source/hi/vcl/messages.po130
-rw-r--r--source/hi/xmlsecurity/messages.po118
-rw-r--r--source/hr/cui/messages.po1214
-rw-r--r--source/hr/dbaccess/messages.po178
-rw-r--r--source/hr/desktop/messages.po48
-rw-r--r--source/hr/filter/source/config/fragments/filters.po24
-rw-r--r--source/hr/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/hr/helpcontent2/source/text/scalc.po6
-rw-r--r--source/hr/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po1282
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/hr/helpcontent2/source/text/shared.po542
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po2515
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po2620
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po803
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/hr/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po167
-rw-r--r--source/hr/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/hr/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/hr/helpcontent2/source/text/swriter.po854
-rw-r--r--source/hr/helpcontent2/source/text/swriter/00.po1616
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po1859
-rw-r--r--source/hr/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/hr/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/hr/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po148
-rw-r--r--source/hr/sc/messages.po364
-rw-r--r--source/hr/sd/messages.po330
-rw-r--r--source/hr/sfx2/messages.po498
-rw-r--r--source/hr/starmath/messages.po104
-rw-r--r--source/hr/svtools/messages.po12
-rw-r--r--source/hr/svx/messages.po1483
-rw-r--r--source/hr/sw/messages.po2768
-rw-r--r--source/hr/uui/messages.po13
-rw-r--r--source/hr/vcl/messages.po128
-rw-r--r--source/hr/xmlsecurity/messages.po118
-rw-r--r--source/hsb/cui/messages.po1224
-rw-r--r--source/hsb/dbaccess/messages.po184
-rw-r--r--source/hsb/desktop/messages.po48
-rw-r--r--source/hsb/filter/source/config/fragments/filters.po24
-rw-r--r--source/hsb/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/hsb/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/hsb/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/hsb/helpcontent2/source/text/scalc.po8
-rw-r--r--source/hsb/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/hsb/helpcontent2/source/text/scalc/01.po1282
-rw-r--r--source/hsb/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/hsb/helpcontent2/source/text/shared.po542
-rw-r--r--source/hsb/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/hsb/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/hsb/helpcontent2/source/text/shared/02.po793
-rw-r--r--source/hsb/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/hsb/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/hsb/helpcontent2/source/text/shared/optionen.po549
-rw-r--r--source/hsb/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/hsb/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/hsb/helpcontent2/source/text/swriter.po860
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/01.po1845
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/hsb/sc/messages.po366
-rw-r--r--source/hsb/sd/messages.po332
-rw-r--r--source/hsb/sfx2/messages.po500
-rw-r--r--source/hsb/starmath/messages.po106
-rw-r--r--source/hsb/svtools/messages.po14
-rw-r--r--source/hsb/svx/messages.po1489
-rw-r--r--source/hsb/sw/messages.po2778
-rw-r--r--source/hsb/uui/messages.po13
-rw-r--r--source/hsb/vcl/messages.po130
-rw-r--r--source/hsb/xmlsecurity/messages.po120
-rw-r--r--source/hu/cui/messages.po1224
-rw-r--r--source/hu/dbaccess/messages.po184
-rw-r--r--source/hu/desktop/messages.po48
-rw-r--r--source/hu/filter/source/config/fragments/filters.po24
-rw-r--r--source/hu/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po2536
-rw-r--r--source/hu/helpcontent2/source/text/scalc.po8
-rw-r--r--source/hu/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po26
-rw-r--r--source/hu/helpcontent2/source/text/shared.po542
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po2674
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po831
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/hu/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po193
-rw-r--r--source/hu/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/hu/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/hu/helpcontent2/source/text/swriter.po860
-rw-r--r--source/hu/helpcontent2/source/text/swriter/00.po1656
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po1913
-rw-r--r--source/hu/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/hu/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/hu/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/hu/sc/messages.po366
-rw-r--r--source/hu/sd/messages.po332
-rw-r--r--source/hu/sfx2/messages.po500
-rw-r--r--source/hu/starmath/messages.po106
-rw-r--r--source/hu/svtools/messages.po14
-rw-r--r--source/hu/svx/messages.po1489
-rw-r--r--source/hu/sw/messages.po2802
-rw-r--r--source/hu/uui/messages.po13
-rw-r--r--source/hu/vcl/messages.po130
-rw-r--r--source/hu/xmlsecurity/messages.po118
-rw-r--r--source/id/cui/messages.po1224
-rw-r--r--source/id/dbaccess/messages.po184
-rw-r--r--source/id/desktop/messages.po48
-rw-r--r--source/id/filter/source/config/fragments/filters.po24
-rw-r--r--source/id/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/id/helpcontent2/source/text/scalc.po8
-rw-r--r--source/id/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po1300
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/id/helpcontent2/source/text/shared.po542
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po2659
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po2634
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po825
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/id/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/id/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/id/helpcontent2/source/text/swriter.po860
-rw-r--r--source/id/helpcontent2/source/text/swriter/00.po1716
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po1953
-rw-r--r--source/id/helpcontent2/source/text/swriter/02.po503
-rw-r--r--source/id/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/id/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/id/sc/messages.po366
-rw-r--r--source/id/sd/messages.po332
-rw-r--r--source/id/sfx2/messages.po500
-rw-r--r--source/id/starmath/messages.po106
-rw-r--r--source/id/svtools/messages.po14
-rw-r--r--source/id/svx/messages.po1489
-rw-r--r--source/id/sw/messages.po2778
-rw-r--r--source/id/uui/messages.po13
-rw-r--r--source/id/vcl/messages.po130
-rw-r--r--source/id/xmlsecurity/messages.po120
-rw-r--r--source/is/cui/messages.po1214
-rw-r--r--source/is/dbaccess/messages.po178
-rw-r--r--source/is/desktop/messages.po46
-rw-r--r--source/is/filter/source/config/fragments/filters.po22
-rw-r--r--source/is/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/is/helpcontent2/source/text/scalc.po8
-rw-r--r--source/is/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po1288
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/is/helpcontent2/source/text/shared.po542
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po2511
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po815
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/is/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po175
-rw-r--r--source/is/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/is/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/is/helpcontent2/source/text/swriter.po858
-rw-r--r--source/is/helpcontent2/source/text/swriter/00.po1622
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po1859
-rw-r--r--source/is/helpcontent2/source/text/swriter/02.po481
-rw-r--r--source/is/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/is/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/is/sc/messages.po364
-rw-r--r--source/is/sd/messages.po330
-rw-r--r--source/is/sfx2/messages.po498
-rw-r--r--source/is/starmath/messages.po106
-rw-r--r--source/is/svtools/messages.po12
-rw-r--r--source/is/svx/messages.po1485
-rw-r--r--source/is/sw/messages.po2772
-rw-r--r--source/is/uui/messages.po12
-rw-r--r--source/is/vcl/messages.po128
-rw-r--r--source/is/xmlsecurity/messages.po118
-rw-r--r--source/it/cui/messages.po1224
-rw-r--r--source/it/dbaccess/messages.po184
-rw-r--r--source/it/desktop/messages.po50
-rw-r--r--source/it/filter/source/config/fragments/filters.po24
-rw-r--r--source/it/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po2550
-rw-r--r--source/it/helpcontent2/source/text/scalc.po8
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/it/helpcontent2/source/text/shared.po542
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po235
-rw-r--r--source/it/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/it/helpcontent2/source/text/swriter.po862
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/it/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/it/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/it/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/it/sc/messages.po366
-rw-r--r--source/it/sd/messages.po332
-rw-r--r--source/it/sfx2/messages.po500
-rw-r--r--source/it/starmath/messages.po108
-rw-r--r--source/it/svtools/messages.po14
-rw-r--r--source/it/svx/messages.po1489
-rw-r--r--source/it/sw/messages.po2778
-rw-r--r--source/it/uui/messages.po17
-rw-r--r--source/it/vcl/messages.po130
-rw-r--r--source/it/xmlsecurity/messages.po120
-rw-r--r--source/ja/cui/messages.po1232
-rw-r--r--source/ja/dbaccess/messages.po180
-rw-r--r--source/ja/desktop/messages.po48
-rw-r--r--source/ja/filter/source/config/fragments/filters.po22
-rw-r--r--source/ja/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ja/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ja/helpcontent2/source/text/shared.po542
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po2533
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/ja/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po191
-rw-r--r--source/ja/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ja/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ja/helpcontent2/source/text/swriter.po858
-rw-r--r--source/ja/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/ja/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/ja/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/ja/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po166
-rw-r--r--source/ja/sc/messages.po366
-rw-r--r--source/ja/sd/messages.po332
-rw-r--r--source/ja/sfx2/messages.po500
-rw-r--r--source/ja/starmath/messages.po104
-rw-r--r--source/ja/svtools/messages.po14
-rw-r--r--source/ja/svx/messages.po1489
-rw-r--r--source/ja/sw/messages.po2786
-rw-r--r--source/ja/uui/messages.po8
-rw-r--r--source/ja/vcl/messages.po130
-rw-r--r--source/ja/xmlsecurity/messages.po118
-rw-r--r--source/jv/cui/messages.po1208
-rw-r--r--source/jv/dbaccess/messages.po178
-rw-r--r--source/jv/desktop/messages.po46
-rw-r--r--source/jv/filter/source/config/fragments/filters.po22
-rw-r--r--source/jv/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/jv/sc/messages.po364
-rw-r--r--source/jv/sd/messages.po330
-rw-r--r--source/jv/sfx2/messages.po496
-rw-r--r--source/jv/starmath/messages.po104
-rw-r--r--source/jv/svtools/messages.po12
-rw-r--r--source/jv/svx/messages.po1483
-rw-r--r--source/jv/sw/messages.po2769
-rw-r--r--source/jv/uui/messages.po8
-rw-r--r--source/jv/vcl/messages.po128
-rw-r--r--source/jv/xmlsecurity/messages.po114
-rw-r--r--source/ka/cui/messages.po1215
-rw-r--r--source/ka/dbaccess/messages.po178
-rw-r--r--source/ka/desktop/messages.po46
-rw-r--r--source/ka/filter/source/config/fragments/filters.po22
-rw-r--r--source/ka/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ka/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ka/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/ka/helpcontent2/source/text/shared.po542
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po2509
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po2622
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po797
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/ka/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po183
-rw-r--r--source/ka/helpcontent2/source/text/simpress/00.po42
-rw-r--r--source/ka/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/ka/helpcontent2/source/text/swriter.po858
-rw-r--r--source/ka/helpcontent2/source/text/swriter/00.po1620
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po1867
-rw-r--r--source/ka/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/ka/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/ka/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/ka/sc/messages.po364
-rw-r--r--source/ka/sd/messages.po330
-rw-r--r--source/ka/sfx2/messages.po498
-rw-r--r--source/ka/starmath/messages.po104
-rw-r--r--source/ka/svtools/messages.po12
-rw-r--r--source/ka/svx/messages.po1483
-rw-r--r--source/ka/sw/messages.po2764
-rw-r--r--source/ka/uui/messages.po8
-rw-r--r--source/ka/vcl/messages.po130
-rw-r--r--source/ka/xmlsecurity/messages.po114
-rw-r--r--source/kab/cui/messages.po1214
-rw-r--r--source/kab/dbaccess/messages.po178
-rw-r--r--source/kab/desktop/messages.po46
-rw-r--r--source/kab/filter/source/config/fragments/filters.po22
-rw-r--r--source/kab/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/kab/sc/messages.po364
-rw-r--r--source/kab/sd/messages.po330
-rw-r--r--source/kab/sfx2/messages.po498
-rw-r--r--source/kab/starmath/messages.po104
-rw-r--r--source/kab/svtools/messages.po12
-rw-r--r--source/kab/svx/messages.po1483
-rw-r--r--source/kab/sw/messages.po2764
-rw-r--r--source/kab/uui/messages.po8
-rw-r--r--source/kab/vcl/messages.po128
-rw-r--r--source/kab/xmlsecurity/messages.po116
-rw-r--r--source/kk/cui/messages.po1220
-rw-r--r--source/kk/dbaccess/messages.po184
-rw-r--r--source/kk/desktop/messages.po48
-rw-r--r--source/kk/filter/source/config/fragments/filters.po24
-rw-r--r--source/kk/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/kk/sc/messages.po366
-rw-r--r--source/kk/sd/messages.po332
-rw-r--r--source/kk/sfx2/messages.po500
-rw-r--r--source/kk/starmath/messages.po106
-rw-r--r--source/kk/svtools/messages.po14
-rw-r--r--source/kk/svx/messages.po1487
-rw-r--r--source/kk/sw/messages.po2776
-rw-r--r--source/kk/uui/messages.po13
-rw-r--r--source/kk/vcl/messages.po130
-rw-r--r--source/kk/xmlsecurity/messages.po118
-rw-r--r--source/kl/cui/messages.po1206
-rw-r--r--source/kl/dbaccess/messages.po178
-rw-r--r--source/kl/desktop/messages.po46
-rw-r--r--source/kl/filter/source/config/fragments/filters.po22
-rw-r--r--source/kl/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/kl/sc/messages.po364
-rw-r--r--source/kl/sd/messages.po330
-rw-r--r--source/kl/sfx2/messages.po496
-rw-r--r--source/kl/starmath/messages.po104
-rw-r--r--source/kl/svtools/messages.po12
-rw-r--r--source/kl/svx/messages.po1483
-rw-r--r--source/kl/sw/messages.po2767
-rw-r--r--source/kl/uui/messages.po8
-rw-r--r--source/kl/vcl/messages.po129
-rw-r--r--source/kl/xmlsecurity/messages.po116
-rw-r--r--source/km/cui/messages.po1219
-rw-r--r--source/km/dbaccess/messages.po178
-rw-r--r--source/km/desktop/messages.po46
-rw-r--r--source/km/filter/source/config/fragments/filters.po22
-rw-r--r--source/km/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/km/helpcontent2/source/text/scalc.po8
-rw-r--r--source/km/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/km/helpcontent2/source/text/shared.po542
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/km/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po193
-rw-r--r--source/km/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/km/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/km/helpcontent2/source/text/swriter.po858
-rw-r--r--source/km/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/km/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/km/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/km/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/km/sc/messages.po364
-rw-r--r--source/km/sd/messages.po330
-rw-r--r--source/km/sfx2/messages.po498
-rw-r--r--source/km/starmath/messages.po104
-rw-r--r--source/km/svtools/messages.po12
-rw-r--r--source/km/svx/messages.po1483
-rw-r--r--source/km/sw/messages.po2762
-rw-r--r--source/km/uui/messages.po8
-rw-r--r--source/km/vcl/messages.po131
-rw-r--r--source/km/xmlsecurity/messages.po117
-rw-r--r--source/kmr-Latn/cui/messages.po1218
-rw-r--r--source/kmr-Latn/dbaccess/messages.po178
-rw-r--r--source/kmr-Latn/desktop/messages.po46
-rw-r--r--source/kmr-Latn/filter/source/config/fragments/filters.po22
-rw-r--r--source/kmr-Latn/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/kmr-Latn/sc/messages.po364
-rw-r--r--source/kmr-Latn/sd/messages.po330
-rw-r--r--source/kmr-Latn/sfx2/messages.po496
-rw-r--r--source/kmr-Latn/starmath/messages.po104
-rw-r--r--source/kmr-Latn/svtools/messages.po12
-rw-r--r--source/kmr-Latn/svx/messages.po1483
-rw-r--r--source/kmr-Latn/sw/messages.po2763
-rw-r--r--source/kmr-Latn/uui/messages.po8
-rw-r--r--source/kmr-Latn/vcl/messages.po130
-rw-r--r--source/kmr-Latn/xmlsecurity/messages.po114
-rw-r--r--source/kn/cui/messages.po1215
-rw-r--r--source/kn/dbaccess/messages.po178
-rw-r--r--source/kn/desktop/messages.po46
-rw-r--r--source/kn/filter/source/config/fragments/filters.po22
-rw-r--r--source/kn/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/kn/sc/messages.po364
-rw-r--r--source/kn/sd/messages.po330
-rw-r--r--source/kn/sfx2/messages.po498
-rw-r--r--source/kn/starmath/messages.po104
-rw-r--r--source/kn/svtools/messages.po12
-rw-r--r--source/kn/svx/messages.po1483
-rw-r--r--source/kn/sw/messages.po2762
-rw-r--r--source/kn/uui/messages.po8
-rw-r--r--source/kn/vcl/messages.po131
-rw-r--r--source/kn/xmlsecurity/messages.po118
-rw-r--r--source/ko/cui/messages.po1218
-rw-r--r--source/ko/dbaccess/messages.po180
-rw-r--r--source/ko/desktop/messages.po48
-rw-r--r--source/ko/filter/source/config/fragments/filters.po22
-rw-r--r--source/ko/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ko/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ko/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ko/helpcontent2/source/text/shared.po542
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/ko/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/ko/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ko/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ko/helpcontent2/source/text/swriter.po858
-rw-r--r--source/ko/helpcontent2/source/text/swriter/00.po1660
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/ko/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/ko/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/ko/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po144
-rw-r--r--source/ko/sc/messages.po364
-rw-r--r--source/ko/sd/messages.po332
-rw-r--r--source/ko/sfx2/messages.po500
-rw-r--r--source/ko/starmath/messages.po106
-rw-r--r--source/ko/svtools/messages.po14
-rw-r--r--source/ko/svx/messages.po1483
-rw-r--r--source/ko/sw/messages.po2766
-rw-r--r--source/ko/uui/messages.po10
-rw-r--r--source/ko/vcl/messages.po130
-rw-r--r--source/ko/xmlsecurity/messages.po118
-rw-r--r--source/kok/cui/messages.po1219
-rw-r--r--source/kok/dbaccess/messages.po178
-rw-r--r--source/kok/desktop/messages.po46
-rw-r--r--source/kok/filter/source/config/fragments/filters.po22
-rw-r--r--source/kok/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/kok/sc/messages.po364
-rw-r--r--source/kok/sd/messages.po330
-rw-r--r--source/kok/sfx2/messages.po496
-rw-r--r--source/kok/starmath/messages.po104
-rw-r--r--source/kok/svtools/messages.po12
-rw-r--r--source/kok/svx/messages.po1483
-rw-r--r--source/kok/sw/messages.po2763
-rw-r--r--source/kok/uui/messages.po8
-rw-r--r--source/kok/vcl/messages.po130
-rw-r--r--source/kok/xmlsecurity/messages.po114
-rw-r--r--source/ks/cui/messages.po1214
-rw-r--r--source/ks/dbaccess/messages.po178
-rw-r--r--source/ks/desktop/messages.po46
-rw-r--r--source/ks/filter/source/config/fragments/filters.po22
-rw-r--r--source/ks/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/ks/sc/messages.po364
-rw-r--r--source/ks/sd/messages.po330
-rw-r--r--source/ks/sfx2/messages.po496
-rw-r--r--source/ks/starmath/messages.po104
-rw-r--r--source/ks/svtools/messages.po12
-rw-r--r--source/ks/svx/messages.po1483
-rw-r--r--source/ks/sw/messages.po2765
-rw-r--r--source/ks/uui/messages.po8
-rw-r--r--source/ks/vcl/messages.po130
-rw-r--r--source/ks/xmlsecurity/messages.po115
-rw-r--r--source/ky/cui/messages.po1204
-rw-r--r--source/ky/dbaccess/messages.po178
-rw-r--r--source/ky/desktop/messages.po46
-rw-r--r--source/ky/filter/source/config/fragments/filters.po22
-rw-r--r--source/ky/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/ky/sc/messages.po364
-rw-r--r--source/ky/sd/messages.po330
-rw-r--r--source/ky/sfx2/messages.po496
-rw-r--r--source/ky/starmath/messages.po104
-rw-r--r--source/ky/svtools/messages.po12
-rw-r--r--source/ky/svx/messages.po1483
-rw-r--r--source/ky/sw/messages.po2762
-rw-r--r--source/ky/uui/messages.po8
-rw-r--r--source/ky/vcl/messages.po128
-rw-r--r--source/ky/xmlsecurity/messages.po110
-rw-r--r--source/lb/cui/messages.po1210
-rw-r--r--source/lb/dbaccess/messages.po178
-rw-r--r--source/lb/desktop/messages.po46
-rw-r--r--source/lb/filter/source/config/fragments/filters.po22
-rw-r--r--source/lb/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/lb/sc/messages.po364
-rw-r--r--source/lb/sd/messages.po330
-rw-r--r--source/lb/sfx2/messages.po496
-rw-r--r--source/lb/starmath/messages.po104
-rw-r--r--source/lb/svtools/messages.po12
-rw-r--r--source/lb/svx/messages.po1483
-rw-r--r--source/lb/sw/messages.po2766
-rw-r--r--source/lb/uui/messages.po8
-rw-r--r--source/lb/vcl/messages.po128
-rw-r--r--source/lb/xmlsecurity/messages.po114
-rw-r--r--source/lo/cui/messages.po1211
-rw-r--r--source/lo/dbaccess/messages.po178
-rw-r--r--source/lo/desktop/messages.po46
-rw-r--r--source/lo/filter/source/config/fragments/filters.po22
-rw-r--r--source/lo/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/lo/helpcontent2/source/text/scalc.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po1282
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/lo/helpcontent2/source/text/shared.po542
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po2499
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po793
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/lo/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po157
-rw-r--r--source/lo/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/lo/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/lo/helpcontent2/source/text/swriter.po850
-rw-r--r--source/lo/helpcontent2/source/text/swriter/00.po1602
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po1845
-rw-r--r--source/lo/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/lo/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/lo/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/lo/sc/messages.po364
-rw-r--r--source/lo/sd/messages.po330
-rw-r--r--source/lo/sfx2/messages.po496
-rw-r--r--source/lo/starmath/messages.po104
-rw-r--r--source/lo/svtools/messages.po12
-rw-r--r--source/lo/svx/messages.po1483
-rw-r--r--source/lo/sw/messages.po2764
-rw-r--r--source/lo/uui/messages.po8
-rw-r--r--source/lo/vcl/messages.po130
-rw-r--r--source/lo/xmlsecurity/messages.po116
-rw-r--r--source/lt/cui/messages.po1224
-rw-r--r--source/lt/dbaccess/messages.po178
-rw-r--r--source/lt/desktop/messages.po48
-rw-r--r--source/lt/filter/source/config/fragments/filters.po22
-rw-r--r--source/lt/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po40
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/lt/helpcontent2/source/text/scalc.po8
-rw-r--r--source/lt/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po1304
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/lt/helpcontent2/source/text/shared.po542
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po2711
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po2614
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po819
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/lt/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/lt/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/lt/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/lt/helpcontent2/source/text/swriter.po860
-rw-r--r--source/lt/helpcontent2/source/text/swriter/00.po1704
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po1955
-rw-r--r--source/lt/helpcontent2/source/text/swriter/02.po487
-rw-r--r--source/lt/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po368
-rw-r--r--source/lt/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/lt/sc/messages.po364
-rw-r--r--source/lt/sd/messages.po332
-rw-r--r--source/lt/sfx2/messages.po500
-rw-r--r--source/lt/starmath/messages.po106
-rw-r--r--source/lt/svtools/messages.po12
-rw-r--r--source/lt/svx/messages.po1483
-rw-r--r--source/lt/sw/messages.po2764
-rw-r--r--source/lt/uui/messages.po13
-rw-r--r--source/lt/vcl/messages.po128
-rw-r--r--source/lt/xmlsecurity/messages.po118
-rw-r--r--source/lv/cui/messages.po1216
-rw-r--r--source/lv/dbaccess/messages.po178
-rw-r--r--source/lv/desktop/messages.po46
-rw-r--r--source/lv/filter/source/config/fragments/filters.po22
-rw-r--r--source/lv/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/lv/helpcontent2/source/text/scalc.po8
-rw-r--r--source/lv/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po1288
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/lv/helpcontent2/source/text/shared.po542
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po2511
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po815
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/lv/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po177
-rw-r--r--source/lv/helpcontent2/source/text/simpress/00.po42
-rw-r--r--source/lv/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/lv/helpcontent2/source/text/swriter.po856
-rw-r--r--source/lv/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po1859
-rw-r--r--source/lv/helpcontent2/source/text/swriter/02.po481
-rw-r--r--source/lv/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/lv/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po148
-rw-r--r--source/lv/sc/messages.po364
-rw-r--r--source/lv/sd/messages.po330
-rw-r--r--source/lv/sfx2/messages.po498
-rw-r--r--source/lv/starmath/messages.po106
-rw-r--r--source/lv/svtools/messages.po12
-rw-r--r--source/lv/svx/messages.po1485
-rw-r--r--source/lv/sw/messages.po2768
-rw-r--r--source/lv/uui/messages.po10
-rw-r--r--source/lv/vcl/messages.po128
-rw-r--r--source/lv/xmlsecurity/messages.po116
-rw-r--r--source/mai/cui/messages.po1215
-rw-r--r--source/mai/dbaccess/messages.po178
-rw-r--r--source/mai/desktop/messages.po46
-rw-r--r--source/mai/filter/source/config/fragments/filters.po22
-rw-r--r--source/mai/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/mai/sc/messages.po364
-rw-r--r--source/mai/sd/messages.po330
-rw-r--r--source/mai/sfx2/messages.po496
-rw-r--r--source/mai/starmath/messages.po104
-rw-r--r--source/mai/svtools/messages.po12
-rw-r--r--source/mai/svx/messages.po1483
-rw-r--r--source/mai/sw/messages.po2763
-rw-r--r--source/mai/uui/messages.po8
-rw-r--r--source/mai/vcl/messages.po130
-rw-r--r--source/mai/xmlsecurity/messages.po115
-rw-r--r--source/mk/cui/messages.po1217
-rw-r--r--source/mk/dbaccess/messages.po178
-rw-r--r--source/mk/desktop/messages.po46
-rw-r--r--source/mk/filter/source/config/fragments/filters.po22
-rw-r--r--source/mk/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/mk/helpcontent2/source/text/scalc.po8
-rw-r--r--source/mk/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/mk/helpcontent2/source/text/shared.po542
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/mk/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/mk/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/mk/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/mk/helpcontent2/source/text/swriter.po858
-rw-r--r--source/mk/helpcontent2/source/text/swriter/00.po1644
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/mk/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/mk/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po358
-rw-r--r--source/mk/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/mk/sc/messages.po364
-rw-r--r--source/mk/sd/messages.po330
-rw-r--r--source/mk/sfx2/messages.po496
-rw-r--r--source/mk/starmath/messages.po104
-rw-r--r--source/mk/svtools/messages.po12
-rw-r--r--source/mk/svx/messages.po1483
-rw-r--r--source/mk/sw/messages.po2762
-rw-r--r--source/mk/uui/messages.po8
-rw-r--r--source/mk/vcl/messages.po130
-rw-r--r--source/mk/xmlsecurity/messages.po114
-rw-r--r--source/ml/cui/messages.po1215
-rw-r--r--source/ml/dbaccess/messages.po180
-rw-r--r--source/ml/desktop/messages.po46
-rw-r--r--source/ml/filter/source/config/fragments/filters.po22
-rw-r--r--source/ml/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/ml/sc/messages.po364
-rw-r--r--source/ml/sd/messages.po330
-rw-r--r--source/ml/sfx2/messages.po498
-rw-r--r--source/ml/starmath/messages.po104
-rw-r--r--source/ml/svtools/messages.po12
-rw-r--r--source/ml/svx/messages.po1483
-rw-r--r--source/ml/sw/messages.po2763
-rw-r--r--source/ml/uui/messages.po8
-rw-r--r--source/ml/vcl/messages.po130
-rw-r--r--source/ml/xmlsecurity/messages.po118
-rw-r--r--source/mn/cui/messages.po1218
-rw-r--r--source/mn/dbaccess/messages.po178
-rw-r--r--source/mn/desktop/messages.po46
-rw-r--r--source/mn/filter/source/config/fragments/filters.po22
-rw-r--r--source/mn/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/mn/sc/messages.po364
-rw-r--r--source/mn/sd/messages.po330
-rw-r--r--source/mn/sfx2/messages.po498
-rw-r--r--source/mn/starmath/messages.po104
-rw-r--r--source/mn/svtools/messages.po12
-rw-r--r--source/mn/svx/messages.po1483
-rw-r--r--source/mn/sw/messages.po2772
-rw-r--r--source/mn/uui/messages.po8
-rw-r--r--source/mn/vcl/messages.po128
-rw-r--r--source/mn/xmlsecurity/messages.po118
-rw-r--r--source/mni/cui/messages.po1220
-rw-r--r--source/mni/dbaccess/messages.po178
-rw-r--r--source/mni/desktop/messages.po46
-rw-r--r--source/mni/filter/source/config/fragments/filters.po22
-rw-r--r--source/mni/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/mni/sc/messages.po364
-rw-r--r--source/mni/sd/messages.po330
-rw-r--r--source/mni/sfx2/messages.po496
-rw-r--r--source/mni/starmath/messages.po104
-rw-r--r--source/mni/svtools/messages.po12
-rw-r--r--source/mni/svx/messages.po1483
-rw-r--r--source/mni/sw/messages.po2764
-rw-r--r--source/mni/uui/messages.po8
-rw-r--r--source/mni/vcl/messages.po130
-rw-r--r--source/mni/xmlsecurity/messages.po115
-rw-r--r--source/mr/cui/messages.po1215
-rw-r--r--source/mr/dbaccess/messages.po178
-rw-r--r--source/mr/desktop/messages.po46
-rw-r--r--source/mr/filter/source/config/fragments/filters.po22
-rw-r--r--source/mr/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/mr/sc/messages.po364
-rw-r--r--source/mr/sd/messages.po330
-rw-r--r--source/mr/sfx2/messages.po498
-rw-r--r--source/mr/starmath/messages.po104
-rw-r--r--source/mr/svtools/messages.po12
-rw-r--r--source/mr/svx/messages.po1483
-rw-r--r--source/mr/sw/messages.po2768
-rw-r--r--source/mr/uui/messages.po8
-rw-r--r--source/mr/vcl/messages.po131
-rw-r--r--source/mr/xmlsecurity/messages.po117
-rw-r--r--source/my/cui/messages.po1215
-rw-r--r--source/my/dbaccess/messages.po178
-rw-r--r--source/my/desktop/messages.po46
-rw-r--r--source/my/filter/source/config/fragments/filters.po22
-rw-r--r--source/my/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/my/sc/messages.po364
-rw-r--r--source/my/sd/messages.po330
-rw-r--r--source/my/sfx2/messages.po498
-rw-r--r--source/my/starmath/messages.po104
-rw-r--r--source/my/svtools/messages.po12
-rw-r--r--source/my/svx/messages.po1483
-rw-r--r--source/my/sw/messages.po2762
-rw-r--r--source/my/uui/messages.po8
-rw-r--r--source/my/vcl/messages.po130
-rw-r--r--source/my/xmlsecurity/messages.po115
-rw-r--r--source/nb/cui/messages.po1224
-rw-r--r--source/nb/dbaccess/messages.po184
-rw-r--r--source/nb/desktop/messages.po48
-rw-r--r--source/nb/filter/source/config/fragments/filters.po24
-rw-r--r--source/nb/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po2550
-rw-r--r--source/nb/helpcontent2/source/text/scalc.po8
-rw-r--r--source/nb/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po1310
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/nb/helpcontent2/source/text/shared.po542
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po233
-rw-r--r--source/nb/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/nb/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/nb/helpcontent2/source/text/swriter.po860
-rw-r--r--source/nb/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/nb/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/nb/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/nb/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/nb/sc/messages.po366
-rw-r--r--source/nb/sd/messages.po332
-rw-r--r--source/nb/sfx2/messages.po500
-rw-r--r--source/nb/starmath/messages.po106
-rw-r--r--source/nb/svtools/messages.po14
-rw-r--r--source/nb/svx/messages.po1487
-rw-r--r--source/nb/sw/messages.po2778
-rw-r--r--source/nb/uui/messages.po13
-rw-r--r--source/nb/vcl/messages.po130
-rw-r--r--source/nb/xmlsecurity/messages.po118
-rw-r--r--source/ne/cui/messages.po1216
-rw-r--r--source/ne/dbaccess/messages.po178
-rw-r--r--source/ne/desktop/messages.po46
-rw-r--r--source/ne/filter/source/config/fragments/filters.po22
-rw-r--r--source/ne/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ne/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ne/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ne/helpcontent2/source/text/shared.po542
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po821
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/ne/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/ne/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ne/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ne/helpcontent2/source/text/swriter.po858
-rw-r--r--source/ne/helpcontent2/source/text/swriter/00.po1644
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po1865
-rw-r--r--source/ne/helpcontent2/source/text/swriter/02.po481
-rw-r--r--source/ne/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po356
-rw-r--r--source/ne/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/ne/sc/messages.po364
-rw-r--r--source/ne/sd/messages.po330
-rw-r--r--source/ne/sfx2/messages.po498
-rw-r--r--source/ne/starmath/messages.po104
-rw-r--r--source/ne/svtools/messages.po12
-rw-r--r--source/ne/svx/messages.po1483
-rw-r--r--source/ne/sw/messages.po2763
-rw-r--r--source/ne/uui/messages.po8
-rw-r--r--source/ne/vcl/messages.po130
-rw-r--r--source/ne/xmlsecurity/messages.po114
-rw-r--r--source/nl/cui/messages.po1224
-rw-r--r--source/nl/dbaccess/messages.po184
-rw-r--r--source/nl/desktop/messages.po48
-rw-r--r--source/nl/filter/source/config/fragments/filters.po24
-rw-r--r--source/nl/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po16
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po2550
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po1310
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/nl/helpcontent2/source/text/shared.po542
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po233
-rw-r--r--source/nl/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/nl/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po860
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/nl/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/nl/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/nl/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/nl/sc/messages.po366
-rw-r--r--source/nl/sd/messages.po332
-rw-r--r--source/nl/sfx2/messages.po500
-rw-r--r--source/nl/starmath/messages.po106
-rw-r--r--source/nl/svtools/messages.po14
-rw-r--r--source/nl/svx/messages.po1489
-rw-r--r--source/nl/sw/messages.po2778
-rw-r--r--source/nl/uui/messages.po13
-rw-r--r--source/nl/vcl/messages.po130
-rw-r--r--source/nl/xmlsecurity/messages.po118
-rw-r--r--source/nn/cui/messages.po1224
-rw-r--r--source/nn/dbaccess/messages.po184
-rw-r--r--source/nn/desktop/messages.po48
-rw-r--r--source/nn/filter/source/config/fragments/filters.po24
-rw-r--r--source/nn/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po2550
-rw-r--r--source/nn/helpcontent2/source/text/scalc.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/nn/helpcontent2/source/text/shared.po542
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po233
-rw-r--r--source/nn/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/nn/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/nn/helpcontent2/source/text/swriter.po862
-rw-r--r--source/nn/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/nn/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/nn/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/nn/sc/messages.po366
-rw-r--r--source/nn/sd/messages.po332
-rw-r--r--source/nn/sfx2/messages.po500
-rw-r--r--source/nn/starmath/messages.po106
-rw-r--r--source/nn/svtools/messages.po14
-rw-r--r--source/nn/svx/messages.po1487
-rw-r--r--source/nn/sw/messages.po2778
-rw-r--r--source/nn/uui/messages.po13
-rw-r--r--source/nn/vcl/messages.po130
-rw-r--r--source/nn/xmlsecurity/messages.po118
-rw-r--r--source/nr/cui/messages.po1214
-rw-r--r--source/nr/dbaccess/messages.po178
-rw-r--r--source/nr/desktop/messages.po46
-rw-r--r--source/nr/filter/source/config/fragments/filters.po22
-rw-r--r--source/nr/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/nr/sc/messages.po364
-rw-r--r--source/nr/sd/messages.po330
-rw-r--r--source/nr/sfx2/messages.po496
-rw-r--r--source/nr/starmath/messages.po104
-rw-r--r--source/nr/svtools/messages.po12
-rw-r--r--source/nr/svx/messages.po1483
-rw-r--r--source/nr/sw/messages.po2766
-rw-r--r--source/nr/uui/messages.po8
-rw-r--r--source/nr/vcl/messages.po130
-rw-r--r--source/nr/xmlsecurity/messages.po114
-rw-r--r--source/nso/cui/messages.po1218
-rw-r--r--source/nso/dbaccess/messages.po178
-rw-r--r--source/nso/desktop/messages.po46
-rw-r--r--source/nso/filter/source/config/fragments/filters.po22
-rw-r--r--source/nso/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/nso/sc/messages.po364
-rw-r--r--source/nso/sd/messages.po330
-rw-r--r--source/nso/sfx2/messages.po496
-rw-r--r--source/nso/starmath/messages.po104
-rw-r--r--source/nso/svtools/messages.po12
-rw-r--r--source/nso/svx/messages.po1483
-rw-r--r--source/nso/sw/messages.po2762
-rw-r--r--source/nso/uui/messages.po8
-rw-r--r--source/nso/vcl/messages.po130
-rw-r--r--source/nso/xmlsecurity/messages.po114
-rw-r--r--source/oc/cui/messages.po1216
-rw-r--r--source/oc/dbaccess/messages.po178
-rw-r--r--source/oc/desktop/messages.po46
-rw-r--r--source/oc/filter/source/config/fragments/filters.po22
-rw-r--r--source/oc/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po146
-rw-r--r--source/oc/sc/messages.po364
-rw-r--r--source/oc/sd/messages.po330
-rw-r--r--source/oc/sfx2/messages.po500
-rw-r--r--source/oc/starmath/messages.po106
-rw-r--r--source/oc/svtools/messages.po12
-rw-r--r--source/oc/svx/messages.po1483
-rw-r--r--source/oc/sw/messages.po2770
-rw-r--r--source/oc/uui/messages.po10
-rw-r--r--source/oc/vcl/messages.po128
-rw-r--r--source/oc/xmlsecurity/messages.po118
-rw-r--r--source/om/cui/messages.po1214
-rw-r--r--source/om/dbaccess/messages.po178
-rw-r--r--source/om/desktop/messages.po46
-rw-r--r--source/om/filter/source/config/fragments/filters.po22
-rw-r--r--source/om/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/om/helpcontent2/source/text/scalc.po8
-rw-r--r--source/om/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/om/helpcontent2/source/text/shared.po542
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/om/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/om/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/om/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/om/helpcontent2/source/text/swriter.po858
-rw-r--r--source/om/helpcontent2/source/text/swriter/00.po1644
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po1867
-rw-r--r--source/om/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/om/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/om/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/om/sc/messages.po364
-rw-r--r--source/om/sd/messages.po330
-rw-r--r--source/om/sfx2/messages.po496
-rw-r--r--source/om/starmath/messages.po104
-rw-r--r--source/om/svtools/messages.po12
-rw-r--r--source/om/svx/messages.po1483
-rw-r--r--source/om/sw/messages.po2763
-rw-r--r--source/om/uui/messages.po8
-rw-r--r--source/om/vcl/messages.po130
-rw-r--r--source/om/xmlsecurity/messages.po115
-rw-r--r--source/or/cui/messages.po1214
-rw-r--r--source/or/dbaccess/messages.po178
-rw-r--r--source/or/desktop/messages.po46
-rw-r--r--source/or/filter/source/config/fragments/filters.po22
-rw-r--r--source/or/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/or/sc/messages.po364
-rw-r--r--source/or/sd/messages.po330
-rw-r--r--source/or/sfx2/messages.po498
-rw-r--r--source/or/starmath/messages.po104
-rw-r--r--source/or/svtools/messages.po12
-rw-r--r--source/or/svx/messages.po1483
-rw-r--r--source/or/sw/messages.po2766
-rw-r--r--source/or/uui/messages.po8
-rw-r--r--source/or/vcl/messages.po130
-rw-r--r--source/or/xmlsecurity/messages.po117
-rw-r--r--source/pa-IN/cui/messages.po1215
-rw-r--r--source/pa-IN/dbaccess/messages.po178
-rw-r--r--source/pa-IN/desktop/messages.po46
-rw-r--r--source/pa-IN/filter/source/config/fragments/filters.po22
-rw-r--r--source/pa-IN/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/pa-IN/sc/messages.po364
-rw-r--r--source/pa-IN/sd/messages.po330
-rw-r--r--source/pa-IN/sfx2/messages.po498
-rw-r--r--source/pa-IN/starmath/messages.po104
-rw-r--r--source/pa-IN/svtools/messages.po12
-rw-r--r--source/pa-IN/svx/messages.po1483
-rw-r--r--source/pa-IN/sw/messages.po2768
-rw-r--r--source/pa-IN/uui/messages.po8
-rw-r--r--source/pa-IN/vcl/messages.po131
-rw-r--r--source/pa-IN/xmlsecurity/messages.po116
-rw-r--r--source/pl/cui/messages.po1224
-rw-r--r--source/pl/dbaccess/messages.po184
-rw-r--r--source/pl/desktop/messages.po48
-rw-r--r--source/pl/filter/source/config/fragments/filters.po24
-rw-r--r--source/pl/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po3184
-rw-r--r--source/pl/helpcontent2/source/text/scalc.po8
-rw-r--r--source/pl/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/pl/helpcontent2/source/text/shared.po542
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po235
-rw-r--r--source/pl/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/pl/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/pl/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/pl/helpcontent2/source/text/swriter.po862
-rw-r--r--source/pl/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/pl/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/pl/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/pl/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/pl/sc/messages.po366
-rw-r--r--source/pl/sd/messages.po332
-rw-r--r--source/pl/sfx2/messages.po500
-rw-r--r--source/pl/starmath/messages.po106
-rw-r--r--source/pl/svtools/messages.po14
-rw-r--r--source/pl/svx/messages.po1487
-rw-r--r--source/pl/sw/messages.po2778
-rw-r--r--source/pl/uui/messages.po13
-rw-r--r--source/pl/vcl/messages.po130
-rw-r--r--source/pl/xmlsecurity/messages.po120
-rw-r--r--source/pt-BR/cui/messages.po1224
-rw-r--r--source/pt-BR/dbaccess/messages.po184
-rw-r--r--source/pt-BR/desktop/messages.po48
-rw-r--r--source/pt-BR/filter/source/config/fragments/filters.po24
-rw-r--r--source/pt-BR/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po2554
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/00.po40
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po1312
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared.po542
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po2851
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po2688
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po841
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po235
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po203
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/00.po56
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/01.po37
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter.po860
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po1728
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po1973
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/02.po509
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po370
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/menu.po28
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/pt-BR/sc/messages.po366
-rw-r--r--source/pt-BR/sd/messages.po332
-rw-r--r--source/pt-BR/sfx2/messages.po500
-rw-r--r--source/pt-BR/starmath/messages.po106
-rw-r--r--source/pt-BR/svtools/messages.po14
-rw-r--r--source/pt-BR/svx/messages.po1489
-rw-r--r--source/pt-BR/sw/messages.po2778
-rw-r--r--source/pt-BR/uui/messages.po13
-rw-r--r--source/pt-BR/vcl/messages.po130
-rw-r--r--source/pt-BR/xmlsecurity/messages.po118
-rw-r--r--source/pt/cui/messages.po1224
-rw-r--r--source/pt/dbaccess/messages.po184
-rw-r--r--source/pt/desktop/messages.po48
-rw-r--r--source/pt/filter/source/config/fragments/filters.po24
-rw-r--r--source/pt/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/pt/helpcontent2/source/text/scalc.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/pt/helpcontent2/source/text/shared.po542
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po2671
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po217
-rw-r--r--source/pt/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po195
-rw-r--r--source/pt/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/pt/helpcontent2/source/text/swriter.po860
-rw-r--r--source/pt/helpcontent2/source/text/swriter/00.po1688
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po1951
-rw-r--r--source/pt/helpcontent2/source/text/swriter/02.po495
-rw-r--r--source/pt/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/pt/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/pt/sc/messages.po366
-rw-r--r--source/pt/sd/messages.po330
-rw-r--r--source/pt/sfx2/messages.po500
-rw-r--r--source/pt/starmath/messages.po106
-rw-r--r--source/pt/svtools/messages.po14
-rw-r--r--source/pt/svx/messages.po1485
-rw-r--r--source/pt/sw/messages.po2772
-rw-r--r--source/pt/uui/messages.po13
-rw-r--r--source/pt/vcl/messages.po130
-rw-r--r--source/pt/xmlsecurity/messages.po118
-rw-r--r--source/ro/cui/messages.po1216
-rw-r--r--source/ro/dbaccess/messages.po178
-rw-r--r--source/ro/desktop/messages.po46
-rw-r--r--source/ro/filter/source/config/fragments/filters.po22
-rw-r--r--source/ro/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ro/helpcontent2/source/text/scalc.po6
-rw-r--r--source/ro/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po1282
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/ro/helpcontent2/source/text/shared.po542
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po2499
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po2612
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po793
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/ro/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po157
-rw-r--r--source/ro/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/ro/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/ro/helpcontent2/source/text/swriter.po850
-rw-r--r--source/ro/helpcontent2/source/text/swriter/00.po1602
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po1845
-rw-r--r--source/ro/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/ro/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/ro/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/ro/sc/messages.po364
-rw-r--r--source/ro/sd/messages.po330
-rw-r--r--source/ro/sfx2/messages.po498
-rw-r--r--source/ro/starmath/messages.po106
-rw-r--r--source/ro/svtools/messages.po12
-rw-r--r--source/ro/svx/messages.po1483
-rw-r--r--source/ro/sw/messages.po2766
-rw-r--r--source/ro/uui/messages.po13
-rw-r--r--source/ro/vcl/messages.po128
-rw-r--r--source/ro/xmlsecurity/messages.po118
-rw-r--r--source/ru/cui/messages.po1224
-rw-r--r--source/ru/dbaccess/messages.po184
-rw-r--r--source/ru/desktop/messages.po48
-rw-r--r--source/ru/filter/source/config/fragments/filters.po24
-rw-r--r--source/ru/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po2510
-rw-r--r--source/ru/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ru/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po1302
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/ru/helpcontent2/source/text/shared.po542
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po2661
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po2646
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po825
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/ru/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po193
-rw-r--r--source/ru/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ru/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ru/helpcontent2/source/text/swriter.po862
-rw-r--r--source/ru/helpcontent2/source/text/swriter/00.po1716
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po1889
-rw-r--r--source/ru/helpcontent2/source/text/swriter/02.po499
-rw-r--r--source/ru/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/ru/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/ru/sc/messages.po366
-rw-r--r--source/ru/sd/messages.po332
-rw-r--r--source/ru/sfx2/messages.po500
-rw-r--r--source/ru/starmath/messages.po106
-rw-r--r--source/ru/svtools/messages.po14
-rw-r--r--source/ru/svx/messages.po1485
-rw-r--r--source/ru/sw/messages.po2774
-rw-r--r--source/ru/uui/messages.po14
-rw-r--r--source/ru/vcl/messages.po128
-rw-r--r--source/ru/xmlsecurity/messages.po118
-rw-r--r--source/rw/cui/messages.po1213
-rw-r--r--source/rw/dbaccess/messages.po178
-rw-r--r--source/rw/desktop/messages.po46
-rw-r--r--source/rw/filter/source/config/fragments/filters.po22
-rw-r--r--source/rw/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/rw/sc/messages.po364
-rw-r--r--source/rw/sd/messages.po330
-rw-r--r--source/rw/sfx2/messages.po496
-rw-r--r--source/rw/starmath/messages.po104
-rw-r--r--source/rw/svtools/messages.po12
-rw-r--r--source/rw/svx/messages.po1483
-rw-r--r--source/rw/sw/messages.po2762
-rw-r--r--source/rw/uui/messages.po8
-rw-r--r--source/rw/vcl/messages.po130
-rw-r--r--source/rw/xmlsecurity/messages.po114
-rw-r--r--source/sa-IN/cui/messages.po1220
-rw-r--r--source/sa-IN/dbaccess/messages.po178
-rw-r--r--source/sa-IN/desktop/messages.po46
-rw-r--r--source/sa-IN/filter/source/config/fragments/filters.po22
-rw-r--r--source/sa-IN/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/sa-IN/sc/messages.po364
-rw-r--r--source/sa-IN/sd/messages.po330
-rw-r--r--source/sa-IN/sfx2/messages.po496
-rw-r--r--source/sa-IN/starmath/messages.po104
-rw-r--r--source/sa-IN/svtools/messages.po12
-rw-r--r--source/sa-IN/svx/messages.po1483
-rw-r--r--source/sa-IN/sw/messages.po2763
-rw-r--r--source/sa-IN/uui/messages.po8
-rw-r--r--source/sa-IN/vcl/messages.po130
-rw-r--r--source/sa-IN/xmlsecurity/messages.po116
-rw-r--r--source/sah/cui/messages.po1204
-rw-r--r--source/sah/dbaccess/messages.po178
-rw-r--r--source/sah/desktop/messages.po46
-rw-r--r--source/sah/filter/source/config/fragments/filters.po22
-rw-r--r--source/sah/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/sah/sc/messages.po364
-rw-r--r--source/sah/sd/messages.po330
-rw-r--r--source/sah/sfx2/messages.po496
-rw-r--r--source/sah/starmath/messages.po104
-rw-r--r--source/sah/svtools/messages.po12
-rw-r--r--source/sah/svx/messages.po1483
-rw-r--r--source/sah/sw/messages.po2763
-rw-r--r--source/sah/uui/messages.po8
-rw-r--r--source/sah/vcl/messages.po128
-rw-r--r--source/sah/xmlsecurity/messages.po110
-rw-r--r--source/sat/cui/messages.po1220
-rw-r--r--source/sat/dbaccess/messages.po178
-rw-r--r--source/sat/desktop/messages.po46
-rw-r--r--source/sat/filter/source/config/fragments/filters.po22
-rw-r--r--source/sat/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/sat/sc/messages.po364
-rw-r--r--source/sat/sd/messages.po330
-rw-r--r--source/sat/sfx2/messages.po498
-rw-r--r--source/sat/starmath/messages.po104
-rw-r--r--source/sat/svtools/messages.po12
-rw-r--r--source/sat/svx/messages.po1483
-rw-r--r--source/sat/sw/messages.po2769
-rw-r--r--source/sat/uui/messages.po8
-rw-r--r--source/sat/vcl/messages.po131
-rw-r--r--source/sat/xmlsecurity/messages.po120
-rw-r--r--source/sd/cui/messages.po1222
-rw-r--r--source/sd/dbaccess/messages.po178
-rw-r--r--source/sd/desktop/messages.po46
-rw-r--r--source/sd/filter/source/config/fragments/filters.po22
-rw-r--r--source/sd/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/sd/sc/messages.po364
-rw-r--r--source/sd/sd/messages.po330
-rw-r--r--source/sd/sfx2/messages.po496
-rw-r--r--source/sd/starmath/messages.po104
-rw-r--r--source/sd/svtools/messages.po12
-rw-r--r--source/sd/svx/messages.po1483
-rw-r--r--source/sd/sw/messages.po2767
-rw-r--r--source/sd/uui/messages.po8
-rw-r--r--source/sd/vcl/messages.po130
-rw-r--r--source/sd/xmlsecurity/messages.po116
-rw-r--r--source/si/cui/messages.po1215
-rw-r--r--source/si/dbaccess/messages.po178
-rw-r--r--source/si/desktop/messages.po46
-rw-r--r--source/si/filter/source/config/fragments/filters.po22
-rw-r--r--source/si/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/si/helpcontent2/source/text/scalc.po8
-rw-r--r--source/si/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po1284
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/si/helpcontent2/source/text/shared.po542
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po2509
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po2622
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po807
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/si/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po157
-rw-r--r--source/si/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/si/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/si/helpcontent2/source/text/swriter.po858
-rw-r--r--source/si/helpcontent2/source/text/swriter/00.po1642
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po1857
-rw-r--r--source/si/helpcontent2/source/text/swriter/02.po481
-rw-r--r--source/si/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po356
-rw-r--r--source/si/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/si/sc/messages.po364
-rw-r--r--source/si/sd/messages.po330
-rw-r--r--source/si/sfx2/messages.po498
-rw-r--r--source/si/starmath/messages.po104
-rw-r--r--source/si/svtools/messages.po12
-rw-r--r--source/si/svx/messages.po1483
-rw-r--r--source/si/sw/messages.po2763
-rw-r--r--source/si/uui/messages.po8
-rw-r--r--source/si/vcl/messages.po130
-rw-r--r--source/si/xmlsecurity/messages.po115
-rw-r--r--source/sid/cui/messages.po1219
-rw-r--r--source/sid/dbaccess/messages.po178
-rw-r--r--source/sid/desktop/messages.po46
-rw-r--r--source/sid/filter/source/config/fragments/filters.po22
-rw-r--r--source/sid/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/sid/helpcontent2/source/text/scalc.po8
-rw-r--r--source/sid/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/sid/helpcontent2/source/text/shared.po542
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po2622
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/sid/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po161
-rw-r--r--source/sid/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/sid/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/sid/helpcontent2/source/text/swriter.po858
-rw-r--r--source/sid/helpcontent2/source/text/swriter/00.po1638
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/sid/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/sid/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po360
-rw-r--r--source/sid/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/sid/sc/messages.po364
-rw-r--r--source/sid/sd/messages.po330
-rw-r--r--source/sid/sfx2/messages.po498
-rw-r--r--source/sid/starmath/messages.po104
-rw-r--r--source/sid/svtools/messages.po12
-rw-r--r--source/sid/svx/messages.po1483
-rw-r--r--source/sid/sw/messages.po2764
-rw-r--r--source/sid/uui/messages.po8
-rw-r--r--source/sid/vcl/messages.po130
-rw-r--r--source/sid/xmlsecurity/messages.po118
-rw-r--r--source/sk/cui/messages.po1224
-rw-r--r--source/sk/dbaccess/messages.po184
-rw-r--r--source/sk/desktop/messages.po48
-rw-r--r--source/sk/filter/source/config/fragments/filters.po24
-rw-r--r--source/sk/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/sk/helpcontent2/source/text/scalc.po8
-rw-r--r--source/sk/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/sk/helpcontent2/source/text/shared.po542
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po2517
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po815
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/sk/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po169
-rw-r--r--source/sk/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/sk/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/sk/helpcontent2/source/text/swriter.po858
-rw-r--r--source/sk/helpcontent2/source/text/swriter/00.po1646
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/sk/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/sk/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po360
-rw-r--r--source/sk/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/sk/sc/messages.po366
-rw-r--r--source/sk/sd/messages.po332
-rw-r--r--source/sk/sfx2/messages.po500
-rw-r--r--source/sk/starmath/messages.po106
-rw-r--r--source/sk/svtools/messages.po14
-rw-r--r--source/sk/svx/messages.po1489
-rw-r--r--source/sk/sw/messages.po2776
-rw-r--r--source/sk/uui/messages.po13
-rw-r--r--source/sk/vcl/messages.po130
-rw-r--r--source/sk/xmlsecurity/messages.po118
-rw-r--r--source/sq/cui/messages.po1218
-rw-r--r--source/sq/dbaccess/messages.po178
-rw-r--r--source/sq/desktop/messages.po48
-rw-r--r--source/sq/filter/source/config/fragments/filters.po22
-rw-r--r--source/sq/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/sq/helpcontent2/source/text/scalc.po6
-rw-r--r--source/sq/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po1284
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/sq/helpcontent2/source/text/shared.po542
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po2511
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po2620
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po803
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/sq/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po173
-rw-r--r--source/sq/helpcontent2/source/text/simpress/00.po38
-rw-r--r--source/sq/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/sq/helpcontent2/source/text/swriter.po854
-rw-r--r--source/sq/helpcontent2/source/text/swriter/00.po1614
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po1855
-rw-r--r--source/sq/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/sq/helpcontent2/source/text/swriter/04.po22
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/sq/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/sq/sc/messages.po364
-rw-r--r--source/sq/sd/messages.po330
-rw-r--r--source/sq/sfx2/messages.po498
-rw-r--r--source/sq/starmath/messages.po106
-rw-r--r--source/sq/svtools/messages.po12
-rw-r--r--source/sq/svx/messages.po1483
-rw-r--r--source/sq/sw/messages.po2764
-rw-r--r--source/sq/uui/messages.po10
-rw-r--r--source/sq/vcl/messages.po128
-rw-r--r--source/sq/xmlsecurity/messages.po116
-rw-r--r--source/sr-Latn/cui/messages.po1217
-rw-r--r--source/sr-Latn/dbaccess/messages.po178
-rw-r--r--source/sr-Latn/desktop/messages.po46
-rw-r--r--source/sr-Latn/filter/source/config/fragments/filters.po22
-rw-r--r--source/sr-Latn/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/sr-Latn/sc/messages.po364
-rw-r--r--source/sr-Latn/sd/messages.po330
-rw-r--r--source/sr-Latn/sfx2/messages.po496
-rw-r--r--source/sr-Latn/starmath/messages.po104
-rw-r--r--source/sr-Latn/svtools/messages.po12
-rw-r--r--source/sr-Latn/svx/messages.po1483
-rw-r--r--source/sr-Latn/sw/messages.po2772
-rw-r--r--source/sr-Latn/uui/messages.po8
-rw-r--r--source/sr-Latn/vcl/messages.po130
-rw-r--r--source/sr-Latn/xmlsecurity/messages.po117
-rw-r--r--source/sr/cui/messages.po1222
-rw-r--r--source/sr/dbaccess/messages.po178
-rw-r--r--source/sr/desktop/messages.po46
-rw-r--r--source/sr/filter/source/config/fragments/filters.po22
-rw-r--r--source/sr/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sr/officecfg/registry/data/org/openoffice/Office/UI.po150
-rw-r--r--source/sr/sc/messages.po364
-rw-r--r--source/sr/sd/messages.po330
-rw-r--r--source/sr/sfx2/messages.po499
-rw-r--r--source/sr/starmath/messages.po104
-rw-r--r--source/sr/svtools/messages.po12
-rw-r--r--source/sr/svx/messages.po1483
-rw-r--r--source/sr/sw/messages.po2768
-rw-r--r--source/sr/uui/messages.po8
-rw-r--r--source/sr/vcl/messages.po130
-rw-r--r--source/sr/xmlsecurity/messages.po117
-rw-r--r--source/ss/cui/messages.po1214
-rw-r--r--source/ss/dbaccess/messages.po178
-rw-r--r--source/ss/desktop/messages.po46
-rw-r--r--source/ss/filter/source/config/fragments/filters.po22
-rw-r--r--source/ss/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/ss/sc/messages.po364
-rw-r--r--source/ss/sd/messages.po330
-rw-r--r--source/ss/sfx2/messages.po496
-rw-r--r--source/ss/starmath/messages.po104
-rw-r--r--source/ss/svtools/messages.po12
-rw-r--r--source/ss/svx/messages.po1483
-rw-r--r--source/ss/sw/messages.po2767
-rw-r--r--source/ss/uui/messages.po8
-rw-r--r--source/ss/vcl/messages.po130
-rw-r--r--source/ss/xmlsecurity/messages.po115
-rw-r--r--source/st/cui/messages.po1214
-rw-r--r--source/st/dbaccess/messages.po178
-rw-r--r--source/st/desktop/messages.po46
-rw-r--r--source/st/filter/source/config/fragments/filters.po22
-rw-r--r--source/st/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/st/sc/messages.po364
-rw-r--r--source/st/sd/messages.po330
-rw-r--r--source/st/sfx2/messages.po496
-rw-r--r--source/st/starmath/messages.po104
-rw-r--r--source/st/svtools/messages.po12
-rw-r--r--source/st/svx/messages.po1483
-rw-r--r--source/st/sw/messages.po2767
-rw-r--r--source/st/uui/messages.po8
-rw-r--r--source/st/vcl/messages.po130
-rw-r--r--source/st/xmlsecurity/messages.po114
-rw-r--r--source/sv/cui/messages.po1224
-rw-r--r--source/sv/dbaccess/messages.po184
-rw-r--r--source/sv/desktop/messages.po48
-rw-r--r--source/sv/filter/source/config/fragments/filters.po24
-rw-r--r--source/sv/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/sv/helpcontent2/source/text/scalc.po8
-rw-r--r--source/sv/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/sv/helpcontent2/source/text/shared.po542
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/sv/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po193
-rw-r--r--source/sv/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/sv/helpcontent2/source/text/swriter.po858
-rw-r--r--source/sv/helpcontent2/source/text/swriter/00.po1650
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/sv/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/sv/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/sv/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/sv/sc/messages.po366
-rw-r--r--source/sv/sd/messages.po332
-rw-r--r--source/sv/sfx2/messages.po500
-rw-r--r--source/sv/starmath/messages.po106
-rw-r--r--source/sv/svtools/messages.po14
-rw-r--r--source/sv/svx/messages.po1487
-rw-r--r--source/sv/sw/messages.po2778
-rw-r--r--source/sv/uui/messages.po13
-rw-r--r--source/sv/vcl/messages.po130
-rw-r--r--source/sv/xmlsecurity/messages.po118
-rw-r--r--source/sw-TZ/cui/messages.po1213
-rw-r--r--source/sw-TZ/dbaccess/messages.po178
-rw-r--r--source/sw-TZ/desktop/messages.po46
-rw-r--r--source/sw-TZ/filter/source/config/fragments/filters.po22
-rw-r--r--source/sw-TZ/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/sw-TZ/sc/messages.po364
-rw-r--r--source/sw-TZ/sd/messages.po330
-rw-r--r--source/sw-TZ/sfx2/messages.po496
-rw-r--r--source/sw-TZ/starmath/messages.po104
-rw-r--r--source/sw-TZ/svtools/messages.po12
-rw-r--r--source/sw-TZ/svx/messages.po1483
-rw-r--r--source/sw-TZ/sw/messages.po2762
-rw-r--r--source/sw-TZ/uui/messages.po8
-rw-r--r--source/sw-TZ/vcl/messages.po130
-rw-r--r--source/sw-TZ/xmlsecurity/messages.po114
-rw-r--r--source/szl/cui/messages.po1214
-rw-r--r--source/szl/dbaccess/messages.po178
-rw-r--r--source/szl/desktop/messages.po46
-rw-r--r--source/szl/filter/source/config/fragments/filters.po22
-rw-r--r--source/szl/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po148
-rw-r--r--source/szl/sc/messages.po364
-rw-r--r--source/szl/sd/messages.po330
-rw-r--r--source/szl/sfx2/messages.po498
-rw-r--r--source/szl/starmath/messages.po104
-rw-r--r--source/szl/svtools/messages.po12
-rw-r--r--source/szl/svx/messages.po1483
-rw-r--r--source/szl/sw/messages.po2766
-rw-r--r--source/szl/uui/messages.po8
-rw-r--r--source/szl/vcl/messages.po128
-rw-r--r--source/szl/xmlsecurity/messages.po116
-rw-r--r--source/ta/cui/messages.po1214
-rw-r--r--source/ta/dbaccess/messages.po178
-rw-r--r--source/ta/desktop/messages.po46
-rw-r--r--source/ta/filter/source/config/fragments/filters.po22
-rw-r--r--source/ta/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ta/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ta/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po1284
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/ta/helpcontent2/source/text/shared.po542
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po2503
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po2620
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po809
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/ta/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/ta/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ta/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/ta/helpcontent2/source/text/swriter.po858
-rw-r--r--source/ta/helpcontent2/source/text/swriter/00.po1654
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po1853
-rw-r--r--source/ta/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/ta/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/ta/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/ta/sc/messages.po364
-rw-r--r--source/ta/sd/messages.po330
-rw-r--r--source/ta/sfx2/messages.po498
-rw-r--r--source/ta/starmath/messages.po104
-rw-r--r--source/ta/svtools/messages.po12
-rw-r--r--source/ta/svx/messages.po1483
-rw-r--r--source/ta/sw/messages.po2762
-rw-r--r--source/ta/uui/messages.po8
-rw-r--r--source/ta/vcl/messages.po130
-rw-r--r--source/ta/xmlsecurity/messages.po116
-rw-r--r--source/te/cui/messages.po1215
-rw-r--r--source/te/dbaccess/messages.po178
-rw-r--r--source/te/desktop/messages.po46
-rw-r--r--source/te/filter/source/config/fragments/filters.po22
-rw-r--r--source/te/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/te/sc/messages.po364
-rw-r--r--source/te/sd/messages.po330
-rw-r--r--source/te/sfx2/messages.po498
-rw-r--r--source/te/starmath/messages.po104
-rw-r--r--source/te/svtools/messages.po12
-rw-r--r--source/te/svx/messages.po1483
-rw-r--r--source/te/sw/messages.po2763
-rw-r--r--source/te/uui/messages.po8
-rw-r--r--source/te/vcl/messages.po130
-rw-r--r--source/te/xmlsecurity/messages.po117
-rw-r--r--source/tg/cui/messages.po1217
-rw-r--r--source/tg/dbaccess/messages.po178
-rw-r--r--source/tg/desktop/messages.po46
-rw-r--r--source/tg/filter/source/config/fragments/filters.po22
-rw-r--r--source/tg/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/tg/helpcontent2/source/text/scalc.po8
-rw-r--r--source/tg/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/tg/helpcontent2/source/text/shared.po542
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po2511
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po815
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/tg/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/tg/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/tg/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/tg/helpcontent2/source/text/swriter.po858
-rw-r--r--source/tg/helpcontent2/source/text/swriter/00.po1614
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po1857
-rw-r--r--source/tg/helpcontent2/source/text/swriter/02.po477
-rw-r--r--source/tg/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/tg/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/tg/sc/messages.po364
-rw-r--r--source/tg/sd/messages.po330
-rw-r--r--source/tg/sfx2/messages.po496
-rw-r--r--source/tg/starmath/messages.po104
-rw-r--r--source/tg/svtools/messages.po12
-rw-r--r--source/tg/svx/messages.po1483
-rw-r--r--source/tg/sw/messages.po2762
-rw-r--r--source/tg/uui/messages.po8
-rw-r--r--source/tg/vcl/messages.po130
-rw-r--r--source/tg/xmlsecurity/messages.po114
-rw-r--r--source/th/cui/messages.po1242
-rw-r--r--source/th/dbaccess/messages.po184
-rw-r--r--source/th/desktop/messages.po46
-rw-r--r--source/th/filter/source/config/fragments/filters.po22
-rw-r--r--source/th/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/th/sc/messages.po366
-rw-r--r--source/th/sd/messages.po332
-rw-r--r--source/th/sfx2/messages.po496
-rw-r--r--source/th/starmath/messages.po106
-rw-r--r--source/th/svtools/messages.po12
-rw-r--r--source/th/svx/messages.po1489
-rw-r--r--source/th/sw/messages.po2794
-rw-r--r--source/th/uui/messages.po11
-rw-r--r--source/th/vcl/messages.po130
-rw-r--r--source/th/xmlsecurity/messages.po116
-rw-r--r--source/ti/cui/messages.po1207
-rw-r--r--source/ti/dbaccess/messages.po178
-rw-r--r--source/ti/desktop/messages.po46
-rw-r--r--source/ti/filter/source/config/fragments/filters.po22
-rw-r--r--source/ti/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/ti/sc/messages.po364
-rw-r--r--source/ti/sd/messages.po330
-rw-r--r--source/ti/sfx2/messages.po496
-rw-r--r--source/ti/starmath/messages.po104
-rw-r--r--source/ti/svtools/messages.po12
-rw-r--r--source/ti/svx/messages.po1483
-rw-r--r--source/ti/sw/messages.po2762
-rw-r--r--source/ti/uui/messages.po8
-rw-r--r--source/ti/vcl/messages.po128
-rw-r--r--source/ti/xmlsecurity/messages.po112
-rw-r--r--source/tn/cui/messages.po1214
-rw-r--r--source/tn/dbaccess/messages.po178
-rw-r--r--source/tn/desktop/messages.po46
-rw-r--r--source/tn/filter/source/config/fragments/filters.po22
-rw-r--r--source/tn/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/tn/sc/messages.po364
-rw-r--r--source/tn/sd/messages.po330
-rw-r--r--source/tn/sfx2/messages.po496
-rw-r--r--source/tn/starmath/messages.po104
-rw-r--r--source/tn/svtools/messages.po12
-rw-r--r--source/tn/svx/messages.po1483
-rw-r--r--source/tn/sw/messages.po2766
-rw-r--r--source/tn/uui/messages.po8
-rw-r--r--source/tn/vcl/messages.po130
-rw-r--r--source/tn/xmlsecurity/messages.po114
-rw-r--r--source/tr/cui/messages.po1224
-rw-r--r--source/tr/dbaccess/messages.po184
-rw-r--r--source/tr/desktop/messages.po48
-rw-r--r--source/tr/filter/source/config/fragments/filters.po24
-rw-r--r--source/tr/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po2508
-rw-r--r--source/tr/helpcontent2/source/text/scalc.po8
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/tr/helpcontent2/source/text/shared.po542
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po2525
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/tr/helpcontent2/source/text/shared/menu.po916
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po195
-rw-r--r--source/tr/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/tr/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/tr/helpcontent2/source/text/swriter.po860
-rw-r--r--source/tr/helpcontent2/source/text/swriter/00.po1686
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po1953
-rw-r--r--source/tr/helpcontent2/source/text/swriter/02.po493
-rw-r--r--source/tr/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po364
-rw-r--r--source/tr/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/tr/sc/messages.po366
-rw-r--r--source/tr/sd/messages.po332
-rw-r--r--source/tr/sfx2/messages.po500
-rw-r--r--source/tr/starmath/messages.po106
-rw-r--r--source/tr/svtools/messages.po14
-rw-r--r--source/tr/svx/messages.po1487
-rw-r--r--source/tr/sw/messages.po2774
-rw-r--r--source/tr/uui/messages.po13
-rw-r--r--source/tr/vcl/messages.po130
-rw-r--r--source/tr/xmlsecurity/messages.po120
-rw-r--r--source/ts/cui/messages.po1214
-rw-r--r--source/ts/dbaccess/messages.po178
-rw-r--r--source/ts/desktop/messages.po46
-rw-r--r--source/ts/filter/source/config/fragments/filters.po22
-rw-r--r--source/ts/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/ts/sc/messages.po364
-rw-r--r--source/ts/sd/messages.po330
-rw-r--r--source/ts/sfx2/messages.po496
-rw-r--r--source/ts/starmath/messages.po104
-rw-r--r--source/ts/svtools/messages.po12
-rw-r--r--source/ts/svx/messages.po1483
-rw-r--r--source/ts/sw/messages.po2766
-rw-r--r--source/ts/uui/messages.po8
-rw-r--r--source/ts/vcl/messages.po130
-rw-r--r--source/ts/xmlsecurity/messages.po115
-rw-r--r--source/tt/cui/messages.po1207
-rw-r--r--source/tt/dbaccess/messages.po178
-rw-r--r--source/tt/desktop/messages.po46
-rw-r--r--source/tt/filter/source/config/fragments/filters.po22
-rw-r--r--source/tt/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/tt/sc/messages.po364
-rw-r--r--source/tt/sd/messages.po330
-rw-r--r--source/tt/sfx2/messages.po496
-rw-r--r--source/tt/starmath/messages.po104
-rw-r--r--source/tt/svtools/messages.po12
-rw-r--r--source/tt/svx/messages.po1483
-rw-r--r--source/tt/sw/messages.po2765
-rw-r--r--source/tt/uui/messages.po8
-rw-r--r--source/tt/vcl/messages.po128
-rw-r--r--source/tt/xmlsecurity/messages.po115
-rw-r--r--source/ug/cui/messages.po1214
-rw-r--r--source/ug/dbaccess/messages.po178
-rw-r--r--source/ug/desktop/messages.po46
-rw-r--r--source/ug/filter/source/config/fragments/filters.po22
-rw-r--r--source/ug/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po36
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/ug/helpcontent2/source/text/scalc.po8
-rw-r--r--source/ug/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po1284
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/ug/helpcontent2/source/text/shared.po542
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po2511
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po803
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/ug/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po163
-rw-r--r--source/ug/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/ug/helpcontent2/source/text/simpress/01.po33
-rw-r--r--source/ug/helpcontent2/source/text/swriter.po858
-rw-r--r--source/ug/helpcontent2/source/text/swriter/00.po1644
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po1859
-rw-r--r--source/ug/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/ug/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po354
-rw-r--r--source/ug/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/ug/sc/messages.po364
-rw-r--r--source/ug/sd/messages.po330
-rw-r--r--source/ug/sfx2/messages.po498
-rw-r--r--source/ug/starmath/messages.po106
-rw-r--r--source/ug/svtools/messages.po12
-rw-r--r--source/ug/svx/messages.po1483
-rw-r--r--source/ug/sw/messages.po2762
-rw-r--r--source/ug/uui/messages.po13
-rw-r--r--source/ug/vcl/messages.po128
-rw-r--r--source/ug/xmlsecurity/messages.po116
-rw-r--r--source/uk/cui/messages.po1224
-rw-r--r--source/uk/dbaccess/messages.po178
-rw-r--r--source/uk/desktop/messages.po48
-rw-r--r--source/uk/filter/source/config/fragments/filters.po24
-rw-r--r--source/uk/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/uk/helpcontent2/source/text/scalc.po8
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po1294
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/uk/helpcontent2/source/text/shared.po542
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po2659
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po2636
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po807
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/uk/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/uk/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/uk/helpcontent2/source/text/swriter.po860
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po1698
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po1951
-rw-r--r--source/uk/helpcontent2/source/text/swriter/02.po491
-rw-r--r--source/uk/helpcontent2/source/text/swriter/04.po34
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po366
-rw-r--r--source/uk/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/uk/sc/messages.po366
-rw-r--r--source/uk/sd/messages.po332
-rw-r--r--source/uk/sfx2/messages.po500
-rw-r--r--source/uk/starmath/messages.po106
-rw-r--r--source/uk/svtools/messages.po12
-rw-r--r--source/uk/svx/messages.po1493
-rw-r--r--source/uk/sw/messages.po2776
-rw-r--r--source/uk/uui/messages.po13
-rw-r--r--source/uk/vcl/messages.po130
-rw-r--r--source/uk/xmlsecurity/messages.po118
-rw-r--r--source/ur/cui/messages.po1204
-rw-r--r--source/ur/dbaccess/messages.po178
-rw-r--r--source/ur/desktop/messages.po46
-rw-r--r--source/ur/filter/source/config/fragments/filters.po22
-rw-r--r--source/ur/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po138
-rw-r--r--source/ur/sc/messages.po364
-rw-r--r--source/ur/sd/messages.po330
-rw-r--r--source/ur/sfx2/messages.po496
-rw-r--r--source/ur/starmath/messages.po104
-rw-r--r--source/ur/svtools/messages.po12
-rw-r--r--source/ur/svx/messages.po1483
-rw-r--r--source/ur/sw/messages.po2762
-rw-r--r--source/ur/uui/messages.po8
-rw-r--r--source/ur/vcl/messages.po128
-rw-r--r--source/ur/xmlsecurity/messages.po114
-rw-r--r--source/uz/cui/messages.po1212
-rw-r--r--source/uz/dbaccess/messages.po178
-rw-r--r--source/uz/desktop/messages.po46
-rw-r--r--source/uz/filter/source/config/fragments/filters.po22
-rw-r--r--source/uz/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/uz/sc/messages.po364
-rw-r--r--source/uz/sd/messages.po330
-rw-r--r--source/uz/sfx2/messages.po496
-rw-r--r--source/uz/starmath/messages.po104
-rw-r--r--source/uz/svtools/messages.po12
-rw-r--r--source/uz/svx/messages.po1483
-rw-r--r--source/uz/sw/messages.po2763
-rw-r--r--source/uz/uui/messages.po8
-rw-r--r--source/uz/vcl/messages.po130
-rw-r--r--source/uz/xmlsecurity/messages.po114
-rw-r--r--source/ve/cui/messages.po1214
-rw-r--r--source/ve/dbaccess/messages.po178
-rw-r--r--source/ve/desktop/messages.po46
-rw-r--r--source/ve/filter/source/config/fragments/filters.po22
-rw-r--r--source/ve/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/ve/sc/messages.po364
-rw-r--r--source/ve/sd/messages.po330
-rw-r--r--source/ve/sfx2/messages.po496
-rw-r--r--source/ve/starmath/messages.po104
-rw-r--r--source/ve/svtools/messages.po12
-rw-r--r--source/ve/svx/messages.po1483
-rw-r--r--source/ve/sw/messages.po2764
-rw-r--r--source/ve/uui/messages.po8
-rw-r--r--source/ve/vcl/messages.po130
-rw-r--r--source/ve/xmlsecurity/messages.po114
-rw-r--r--source/vec/cui/messages.po1214
-rw-r--r--source/vec/dbaccess/messages.po178
-rw-r--r--source/vec/desktop/messages.po46
-rw-r--r--source/vec/filter/source/config/fragments/filters.po22
-rw-r--r--source/vec/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po148
-rw-r--r--source/vec/sc/messages.po364
-rw-r--r--source/vec/sd/messages.po330
-rw-r--r--source/vec/sfx2/messages.po498
-rw-r--r--source/vec/starmath/messages.po104
-rw-r--r--source/vec/svtools/messages.po12
-rw-r--r--source/vec/svx/messages.po1485
-rw-r--r--source/vec/sw/messages.po2768
-rw-r--r--source/vec/uui/messages.po8
-rw-r--r--source/vec/vcl/messages.po128
-rw-r--r--source/vec/xmlsecurity/messages.po116
-rw-r--r--source/vi/cui/messages.po1224
-rw-r--r--source/vi/dbaccess/messages.po180
-rw-r--r--source/vi/desktop/messages.po48
-rw-r--r--source/vi/filter/source/config/fragments/filters.po24
-rw-r--r--source/vi/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/vi/helpcontent2/source/text/scalc.po8
-rw-r--r--source/vi/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/vi/helpcontent2/source/text/shared.po542
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po213
-rw-r--r--source/vi/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po187
-rw-r--r--source/vi/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/vi/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/vi/helpcontent2/source/text/swriter.po858
-rw-r--r--source/vi/helpcontent2/source/text/swriter/00.po1644
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/vi/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/vi/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/vi/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po141
-rw-r--r--source/vi/sc/messages.po366
-rw-r--r--source/vi/sd/messages.po332
-rw-r--r--source/vi/sfx2/messages.po500
-rw-r--r--source/vi/starmath/messages.po106
-rw-r--r--source/vi/svtools/messages.po14
-rw-r--r--source/vi/svx/messages.po1483
-rw-r--r--source/vi/sw/messages.po2770
-rw-r--r--source/vi/uui/messages.po13
-rw-r--r--source/vi/vcl/messages.po130
-rw-r--r--source/vi/xmlsecurity/messages.po120
-rw-r--r--source/xh/cui/messages.po1214
-rw-r--r--source/xh/dbaccess/messages.po178
-rw-r--r--source/xh/desktop/messages.po46
-rw-r--r--source/xh/filter/source/config/fragments/filters.po22
-rw-r--r--source/xh/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po139
-rw-r--r--source/xh/sc/messages.po364
-rw-r--r--source/xh/sd/messages.po330
-rw-r--r--source/xh/sfx2/messages.po496
-rw-r--r--source/xh/starmath/messages.po104
-rw-r--r--source/xh/svtools/messages.po12
-rw-r--r--source/xh/svx/messages.po1483
-rw-r--r--source/xh/sw/messages.po2767
-rw-r--r--source/xh/uui/messages.po8
-rw-r--r--source/xh/vcl/messages.po130
-rw-r--r--source/xh/xmlsecurity/messages.po114
-rw-r--r--source/zh-CN/chart2/messages.po30
-rw-r--r--source/zh-CN/cui/messages.po1224
-rw-r--r--source/zh-CN/dbaccess/messages.po178
-rw-r--r--source/zh-CN/desktop/messages.po46
-rw-r--r--source/zh-CN/filter/source/config/fragments/filters.po24
-rw-r--r--source/zh-CN/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po542
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po2659
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po2628
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po825
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po219
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/menu.po914
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po197
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po858
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/00.po1682
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po1951
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po364
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/menu.po26
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po158
-rw-r--r--source/zh-CN/sc/messages.po366
-rw-r--r--source/zh-CN/sd/messages.po332
-rw-r--r--source/zh-CN/sfx2/messages.po504
-rw-r--r--source/zh-CN/starmath/messages.po106
-rw-r--r--source/zh-CN/svtools/messages.po12
-rw-r--r--source/zh-CN/svx/messages.po1487
-rw-r--r--source/zh-CN/sw/messages.po2812
-rw-r--r--source/zh-CN/uui/messages.po13
-rw-r--r--source/zh-CN/vcl/messages.po130
-rw-r--r--source/zh-CN/xmlsecurity/messages.po118
-rw-r--r--source/zh-TW/cui/messages.po1224
-rw-r--r--source/zh-TW/dbaccess/messages.po184
-rw-r--r--source/zh-TW/desktop/messages.po48
-rw-r--r--source/zh-TW/filter/source/config/fragments/filters.po24
-rw-r--r--source/zh-TW/filter/source/config/fragments/internalgraphicfilters.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po38
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po2506
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/00.po38
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po1296
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared.po542
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po2523
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po2624
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po823
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po215
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/menu.po910
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po189
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/00.po44
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/01.po35
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter.po858
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/00.po1648
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po1869
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/02.po483
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/04.po32
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po362
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/menu.po24
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po152
-rw-r--r--source/zh-TW/sc/messages.po366
-rw-r--r--source/zh-TW/sd/messages.po332
-rw-r--r--source/zh-TW/sfx2/messages.po500
-rw-r--r--source/zh-TW/starmath/messages.po106
-rw-r--r--source/zh-TW/svtools/messages.po14
-rw-r--r--source/zh-TW/svx/messages.po1487
-rw-r--r--source/zh-TW/sw/messages.po2778
-rw-r--r--source/zh-TW/uui/messages.po13
-rw-r--r--source/zh-TW/vcl/messages.po130
-rw-r--r--source/zh-TW/xmlsecurity/messages.po118
-rw-r--r--source/zu/cui/messages.po1213
-rw-r--r--source/zu/dbaccess/messages.po178
-rw-r--r--source/zu/desktop/messages.po46
-rw-r--r--source/zu/filter/source/config/fragments/filters.po22
-rw-r--r--source/zu/filter/source/config/fragments/internalgraphicfilters.po12
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po142
-rw-r--r--source/zu/sc/messages.po364
-rw-r--r--source/zu/sd/messages.po330
-rw-r--r--source/zu/sfx2/messages.po496
-rw-r--r--source/zu/starmath/messages.po104
-rw-r--r--source/zu/svtools/messages.po12
-rw-r--r--source/zu/svx/messages.po1483
-rw-r--r--source/zu/sw/messages.po2765
-rw-r--r--source/zu/uui/messages.po8
-rw-r--r--source/zu/vcl/messages.po130
-rw-r--r--source/zu/xmlsecurity/messages.po114
3486 files changed, 1321117 insertions, 761143 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index c467fd4f95f..2b84995d03a 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/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: 2023-07-06 10:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-08-28 07:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195162.000000\n"
#. GyY9M
@@ -147,184 +147,118 @@ msgctxt "stock"
msgid "_Yes"
msgstr "Ааи"
-#. E6GDh
-#: cui/inc/strings.hrc:23
-msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
-msgid "Configuration"
-msgstr "Архиара"
-
#. z7dmW
-#: cui/inc/strings.hrc:24
+#: cui/inc/strings.hrc:23
msgctxt "RID_SVXSTR_KEY_WORK_PATH"
msgid "My Documents"
msgstr "Сара сдокументқәа"
#. wnMWp
-#: cui/inc/strings.hrc:25
+#: cui/inc/strings.hrc:24
msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
msgid "Images"
msgstr "Асахьақәа"
-#. AnM4M
-#: cui/inc/strings.hrc:26
-msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
-msgid "Icons"
-msgstr "Адыргаҷқәа"
-
-#. bpvbo
-#: cui/inc/strings.hrc:27
-msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
-msgid "Palettes"
-msgstr "Апалитра"
-
#. shiKT
-#: cui/inc/strings.hrc:28
+#: cui/inc/strings.hrc:25
msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
msgid "Backups"
msgstr "Арезервтә копиақәа"
-#. ai8eF
-#: cui/inc/strings.hrc:29
-msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
-msgid "Modules"
-msgstr "Амодульқәа"
-
#. WyhJD
-#: cui/inc/strings.hrc:30
+#: cui/inc/strings.hrc:26
msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
msgid "Templates"
msgstr "Ашаблонқәа"
#. mNj9y
-#: cui/inc/strings.hrc:31
+#: cui/inc/strings.hrc:27
msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
msgid "AutoText"
msgstr "Автотекст"
#. co7GJ
-#: cui/inc/strings.hrc:32
+#: cui/inc/strings.hrc:28
msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
msgid "Dictionaries"
msgstr "Ажәарқәа"
#. MbjWM
-#: cui/inc/strings.hrc:33
+#: cui/inc/strings.hrc:29
msgctxt "RID_SVXSTR_KEY_HELP_DIR"
msgid "Help"
msgstr "Аилыркаага"
#. u2bQB
-#: cui/inc/strings.hrc:34
+#: cui/inc/strings.hrc:30
msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
msgid "Gallery"
msgstr "Агалереиа"
-#. 2umbs
-#: cui/inc/strings.hrc:35
-msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
-msgid "Message Storage"
-msgstr "Ацҳамҭақәа рыҵәахырҭа"
-
#. oMdF8
-#: cui/inc/strings.hrc:36
+#: cui/inc/strings.hrc:31
msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
msgid "Temporary files"
msgstr "Аамҭалатәи афаилқәа"
-#. 4DDzW
-#: cui/inc/strings.hrc:37
-msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
-msgid "Plug-ins"
-msgstr "Аплагин аҿакра"
-
-#. v5YHp
-#: cui/inc/strings.hrc:38
-msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
-msgid "Folder Bookmarks"
-msgstr "Акаталог агәылаҵақәа"
-
-#. AJkga
-#: cui/inc/strings.hrc:39
-msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
-msgid "Filters"
-msgstr "Афильтрқәа"
-
-#. 2DKUC
-#: cui/inc/strings.hrc:40
-msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
-msgid "Add-ins"
-msgstr "Ахагылақәа"
-
-#. Tm2DM
-#: cui/inc/strings.hrc:41
-msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
-msgid "User Configuration"
-msgstr "Ахархәаҩ иконфигурациа"
-
-#. ATuL4
-#: cui/inc/strings.hrc:42
-msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
-msgid "User-defined dictionaries"
-msgstr "Ахархәаҩ ижәарқәа"
-
#. qxBAu
-#: cui/inc/strings.hrc:43
+#: cui/inc/strings.hrc:32
msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
msgid "Classification"
msgstr "Аклассификациа"
#. FrDws
-#: cui/inc/strings.hrc:44
+#: cui/inc/strings.hrc:33
msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
msgid "AutoCorrect"
msgstr "Автоԥсахра"
#. jD48Q
-#: cui/inc/strings.hrc:45
+#: cui/inc/strings.hrc:34
msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
msgid "Writing aids"
msgstr "Алингвистика"
#. VNK5b
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:47
+#: cui/inc/strings.hrc:36
msgctxt "RID_SVXSTR_NEW_MENU"
msgid "New Menu %n"
msgstr "Ахкынҵа ҿыц %n"
#. dJXBJ
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:49
+#: cui/inc/strings.hrc:38
msgctxt "RID_SVXSTR_NEW_TOOLBAR"
msgid "New Toolbar %n"
msgstr "Амаругақәа рпанель ҿыц %n"
#. PCa2G
-#: cui/inc/strings.hrc:50
+#: cui/inc/strings.hrc:39
msgctxt "RID_SVXSTR_MOVE_MENU"
msgid "Move Menu"
msgstr "Ииагатәуп Ахкынҵа"
#. KbZFf
-#: cui/inc/strings.hrc:51
+#: cui/inc/strings.hrc:40
msgctxt "RID_SVXSTR_ADD_SUBMENU"
msgid "Add Submenu"
msgstr "Иацҵатәуп амениугәыла"
#. w2qNv
-#: cui/inc/strings.hrc:52
+#: cui/inc/strings.hrc:41
msgctxt "RID_SVXSTR_SUBMENU_NAME"
msgid "Submenu name"
msgstr "Амениугәыла ахьӡ"
#. qJgZw
-#: cui/inc/strings.hrc:53
+#: cui/inc/strings.hrc:42
msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
msgid "Are you sure to delete the image?"
msgstr "Ианыхтәума асахьа?"
#. d6e9K
-#: cui/inc/strings.hrc:54
+#: cui/inc/strings.hrc:43
msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
msgid ""
"The icon %ICONNAME is already contained in the image list.\n"
@@ -332,19 +266,19 @@ msgid ""
msgstr ""
#. FRvQe
-#: cui/inc/strings.hrc:55
+#: cui/inc/strings.hrc:44
msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
msgid "Confirm Icon Replacement"
msgstr "Ишьақәшәырӷәӷәа адыргаҷ аԥсахра"
#. xC2Wc
-#: cui/inc/strings.hrc:56
+#: cui/inc/strings.hrc:45
msgctxt "RID_SVXSTR_YESTOALL"
msgid "Yes to All"
msgstr "Ааи, зегьы рзы"
#. jCwDZ
-#: cui/inc/strings.hrc:57
+#: cui/inc/strings.hrc:46
msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "Амаругақәа рпанель аҟны инымхаӡеит акомандақәа. Иныхтәума амаругақәа рпанель?"
@@ -353,935 +287,935 @@ msgstr "Амаругақәа рпанель аҟны инымхаӡеит ако
#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
#. and will be replaced at runtime by the name of the selected application
#. or document.
-#: cui/inc/strings.hrc:62
+#: cui/inc/strings.hrc:51
msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "Еиҭашьақәыргылахоит амениу %SAVE IN SELECTION% истандарту архиарақәа. Иацҵатәума?"
#. RYeCk
-#: cui/inc/strings.hrc:63
+#: cui/inc/strings.hrc:52
msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr ""
#. JgGvm
-#: cui/inc/strings.hrc:64
+#: cui/inc/strings.hrc:53
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "Ари амаругақәа рпанель аҟны аԥсахрақәа зегьы ықәгахоит. Иацҵатәума?"
#. 4s9MJ
-#: cui/inc/strings.hrc:65
+#: cui/inc/strings.hrc:54
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
msgstr "Ари аконтексттә мениу аҟны аԥсахрақәа зегьы ықәгахоит. Иацҵатәума?"
#. G2mu7
-#: cui/inc/strings.hrc:66
+#: cui/inc/strings.hrc:55
msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
msgid "~New name"
msgstr "Ахьӡ ҿыц"
#. Ahhg9
-#: cui/inc/strings.hrc:67
+#: cui/inc/strings.hrc:56
msgctxt "RID_SVXSTR_RENAME_MENU"
msgid "Rename Menu"
msgstr "Ахкынҵа ахьӡ ԥсахтәуп"
#. CmDaN
-#: cui/inc/strings.hrc:68
+#: cui/inc/strings.hrc:57
msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "Апанель ахьӡ ԥсахтәуп"
#. GsaZE
-#: cui/inc/strings.hrc:69
+#: cui/inc/strings.hrc:58
msgctxt "RID_SVXSTR_ALL_COMMANDS"
msgid "All Commands"
msgstr "Акомандақәа зегьы"
#. A7cUy
-#: cui/inc/strings.hrc:70
+#: cui/inc/strings.hrc:59
msgctxt "RID_SVXSTR_TABBED"
msgid "Tabbed"
msgstr "Агәылаҵақәа"
#. xqrfE
-#: cui/inc/strings.hrc:71
+#: cui/inc/strings.hrc:60
msgctxt "RID_SVXSTR_TABBED_COMPACT"
msgid "Tabbed Compact"
msgstr "Икомпакту агәылаҵақәа"
#. fLLH2
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:61
msgctxt "RID_SVXSTR_GROUPEDBAR"
msgid "Groupedbar"
msgstr "Иргәыԥу алента"
#. AnFxX
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:62
msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
msgid "Groupedbar Compact"
msgstr ""
#. GN45E
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:64
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "Иарктәуп"
#. dkH9d
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:65
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "Аҳәынаԥ аобиект аҩадахьы"
#. 4QYHe
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:66
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "Агиперзхьарԥш ала аиасра"
#. WMQPj
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:67
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Аҳәынаԥ аобиект ннажьуеит"
#. ES4Pj
-#: cui/inc/strings.hrc:79
+#: cui/inc/strings.hrc:68
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Акнопка"
#. MPHHF
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:69
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Атекст"
#. 9nkb2
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:70
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?"
#. smWax
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:72
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Иалхтәуп афаил афреим азы"
#. F74rR
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:73
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Акомандақәа зегьы"
#. EeB6i
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:74
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Амакросқәа"
#. mkEjQ
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:75
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "Сара смакросқәа"
#. nn7Gm
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "Application Macros"
msgstr "Апрограмма амакросқәа"
#. RGCGW
-#: cui/inc/strings.hrc:88
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Ахҳәаа ыҟам."
#. AFniE
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Инагӡатәуп"
#. whwAN
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Иҭаргылатәуп ацәаҳәақәа"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Иалкаау аҩадахьы"
#. oBHui
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Иалкаау аҵаҟа"
#. c8nou
-#: cui/inc/strings.hrc:94
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Ианыхтәкп иалкаау аҟынтәи"
#. XpjRm
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:84
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Иҟам асимвол"
#. 7tBGT
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Иацҵатәуп иалкаақәоу рахь"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Иҭаргылатәуп аиҵагылақәа"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Алкаара аԥхьа"
#. nXnb3
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Алкаара ашьҭахь"
#. QrFJZ
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Автоматикала"
#. X9CWA
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Аимадара"
#. QCgnw
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Иҭагалатәуп аклавиатура архиарақәа"
#. eWQoY
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Еиқырхатәуп аклавиатура архиарақәа"
#. ggFZE
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Архиарақәа (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Адокумент аҟны иҟам азхьарԥш азы аелементқәа."
#. pCbRV
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Адокумент аартра ауам."
#. zAUfq
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Иҭажәгал атекст]"
#. ResDx
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Хангыль"
#. 3t3AC
-#: cui/inc/strings.hrc:112
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Ханча"
#. XKYHn
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Астильқәа"
#. 3Qq2E
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
msgstr "Аганахьтәи апанельқәа"
#. hFEBv
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Апрограмма адәықәҵара"
#. 6tUvx
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Апрограмма аркра"
#. 6NsQz
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Адокумент аԥҵара"
#. G6b2e
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Адокумент аркуп"
#. yvsTa
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Адокумент аркхоит"
#. DKpfj
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Адокумент аартра"
#. DTDDm
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Адокумент аиқәырхара"
#. Trc82
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Адокумент аиқәырхара иаба(ишԥа)"
#. GCbZt
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Адокумент аиқәырхара ашьҭахь"
#. mYtMa
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Адокумент аиқәырхара иаба(ишԥа) ашьҭахь"
#. t8F8W
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Адокумент активтәра"
#. T7QE3
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Адокумент адеактивациа"
#. AQXyC
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Адокумент акьыԥхьра"
#. 8uXuz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "«Иԥсахуп» аҭагылазаашьа аԥсахра"
#. 5CKDG
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr ""
#. AZ2io
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr ""
#. dHtbz
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Аформа аҭакырақәа реидҵара иалагоуп"
#. uGCdD
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Аформа аҭакырақәа реидҵара хыркәшоуп"
#. srLLa
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Адаҟьақәа рхыԥхьаӡара аԥсахра"
#. AsuQF
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "Акомпонент ҭагалоуп"
#. Gf22f
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "Акомпонент аркуп"
#. QayEb
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Апараметрқәа рхарҭәаара"
#. mL59X
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Иазалху аҟаҵара"
#. KtHBE
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Арҿыцра ашьҭахь"
#. b6CCj
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Арҿыцра аԥхьа"
#. KTBcp
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Аиқәырхара аԥхьа"
#. Fhyio
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Аиқәырхара ашьҭахь"
#. PmJgM
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Аныхра ашьақәырӷәӷәара"
#. gcREA
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Агха аҟалараан"
#. oAwDt
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Аиҟаратәра аан"
#. AyfwP
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Афокус аиураан"
#. BD96B
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Афокус ацәыӡраан"
#. wEhfE
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Аелемент аҭагылазаашьа аԥсахра"
#. FRW7b
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Аклавиша ақәыӷәӷәара"
#. 4kZCD
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Аклавиша аушьҭра"
#. ZiS2D
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Аҭагалараан"
#. vEjAG
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Аиҭадәықәҵара аԥхьа"
#. 5FvrE
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Аиҭаҭагалараан"
#. CDcYt
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Аҳәынаԥ акнопка иақәыӷәӷәаны аиҭагара"
#. CPpyk
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Аҳәынаԥ аҩныҵҟа"
#. 4hGfp
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Аҳәынаԥ адәныҟа"
#. QEuWr
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Аҳәынаԥ аиҭаҵра"
#. 8YA3S
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Аҳәынаԥ аклавиша ақәыӷәӷәара"
#. RMuJe
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Аҳәынаԥ акнопка аушьҭра"
#. 5iPHQ
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Анҵамҭа алаԥсахра аԥхьа"
#. yrBiz
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Анҵамҭа алаԥсахра ашьҭахь"
#. bdBH4
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Аиҭашьақәыргылара ашьҭахь"
#. eVsFk
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Аиҭашьақәыргылара аԥхьа"
#. 2oAoV
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Ишьақәырӷәӷәатәуп аҟаҵара"
#. hQAzK
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Ашақәырӷәӷәара аԥхьа"
#. CFPSo
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Атекст аԥсахра"
#. 2ADMH
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Аҭыгара аԥхьа"
#. F8BL3
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Аҭыгараан"
#. M6fPe
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Аԥсахра"
#. gZyVB
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Адокумент аԥҵоуп"
#. BcPDW
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Адокумент ҭагалоуп"
#. ir7AQ
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Адокумент аиқәырхараан аиԥҟьара"
#. BFtTF
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "Еиқәырхатәуп адокумент абас аиԥҟьара"
#. N9e6u
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Адокумент акопиа аиқәырхара ма аекспорт"
#. okb9H
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Адокумент акопиа аиқәырхара ашьҭахь"
#. DrYTY
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Адокумент акопиа аԥҵараан аиԥҟьара"
#. BBJJQ
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Ахәаԥшра аԥҵоуп"
#. XN9Az
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Ахәаԥшра аркхоит"
#. a9qty
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Ахәаԥшра аркуп"
#. dDunN
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Адокумент ахы ԥсахуп"
#. 6D6BS
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Иалкаау аҵакыра ԥсахуп"
#. XArW3
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Ҩынтә ақәыӷәӷәара"
#. oDkyz
-#: cui/inc/strings.hrc:183
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Арӷьа кнопка ақәыӷәӷәара"
#. tVSz9
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Аформулақәа еилкаауп"
#. ESxTQ
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Аҵакы ԥсахуп"
#. Zimeo
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:176
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "аҭакыра аҟны џьара"
#. qCKMY
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:177
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "аҭакыра агагамҭаҿ"
#. CKVTF
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:178
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "Аҭакыра анҵәамҭаҿ"
#. FZwxu
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:179
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "аҭакыра зегьы"
#. AFUFs
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:180
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Хыхьла"
#. FBDbX
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:181
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Ҵаҟала"
#. brdgV
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:182
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Иԥшаам анҵамҭақәа, азыҳәара иашьашәалоу."
#. VkTjA
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:183
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "Идырым агха. Аԥшаара ахыркәшара ауам."
#. jiQdw
-#: cui/inc/strings.hrc:195
+#: cui/inc/strings.hrc:184
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Аҭәцәара, аԥшаара иацҵахоит алагамҭа аҟынтәи"
#. EzK3y
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:185
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Аҭәцәара, аԥшаара иацҵахоит анҵәамҭа аҟынтәи"
#. zwiat
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:186
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "анҵамҭақәа рыԥхьаӡара"
#. 7cVWa
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:188
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<фаилда>"
#. AnJUu
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:189
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Аобиект;Аобиектқәа"
#. GQXSM
-#: cui/inc/strings.hrc:201
+#: cui/inc/strings.hrc:190
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(аԥхьара мацара)"
#. sAwgA
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:191
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Афаилқәа зегьы>"
#. YkCky
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:192
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Ари ID ыҟоуп..."
#. w3AUk
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:194
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Амҩа %1 ыҟоуп."
#. 54BsS
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:195
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Архивқәа ралхра"
#. NDB5V
-#: cui/inc/strings.hrc:207
+#: cui/inc/strings.hrc:196
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Архивқәа"
#. ffPAq
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:197
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Афаил %1 ыҟоуп."
#. 5FyxP
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:198
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Иацҵатәуп асахьа"
#. eUzGk
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Ажәамаӡеи иара ашьақәырӷәӷәареи еиқәшәом. Аҭакырақәа рыҩбагь рҿы иҭажәгал еиԥшу ажәамаӡақәа."
#. mN9jE
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Ишьақәзырӷәӷәо ажәамаӡақәа аоригинал иақәшәаӡом. Иҭажәгал ажәамаӡақәа ҿыц."
#. 48ez3
-#: cui/inc/strings.hrc:213
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Ацҵаразы иҭажәгал аартразы ма аԥсахразы ажәамаӡамамзаргьы иалышәх «аԥхьара мацараз»."
#. aAbAN
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "Иҭажәгал ажәамаӡа, аҭакырақәа рыҩбагь рҟны."
#. ZXcFw
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "Ажәамаӡа %1 аура аҳәаа аҟынӡа инаӡоуп"
#. Fko49
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:206
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Автоматикала"
#. WYHFb
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:207
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Напыла"
#. PFN4j
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:208
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Иԥшааӡам"
#. 5ymS3
-#: cui/inc/strings.hrc:220
+#: cui/inc/strings.hrc:209
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Ианыхтәума иалкаау аимадарақәа?"
#. wyMwT
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:210
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Ианыхтәума иалкаау аимадарақәа?"
#. CN74h
-#: cui/inc/strings.hrc:222
+#: cui/inc/strings.hrc:211
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Азыԥшра"
#. QJKgF
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "Еиқәырхатәуп аекран ақәҭыхымҭа..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Адырқәа реишьҭагыла $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:218
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Ааи"
#. RuQiB
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:219
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Мап"
#. irLeD
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:221
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1293,7 +1227,7 @@ msgstr ""
"ԥшааӡам."
#. iQYnX
-#: cui/inc/strings.hrc:233
+#: cui/inc/strings.hrc:222
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1305,7 +1239,7 @@ msgstr ""
"ԥшаам илокалу афаил система аҟны."
#. 4PaJ2
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:223
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1315,163 +1249,163 @@ msgstr ""
"Иалышәх даҽа хьӡык."
#. KFB7q
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:224
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Ианыхтәума абри аелемент?"
#. gg9gD
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Ишәҭахума ари аобиект аныхра?"
#. 42ivC
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:227
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Аныхра шьақәырӷәӷәатәуп"
#. kn5KE
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:228
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Иалху аобиект аныхра ауам."
#. T7T8x
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:229
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Аобиект аныхраан иҟалеит агха"
#. SCgXy
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:230
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Аобиект аԥҵара ауам."
#. TmiCU
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " Аобиект, ари аҩыза ахьӡ змоу ыҟоуп."
#. ffc5M
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Аобиект аԥҵараан агха"
#. hpB8B
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:233
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Аобиект ахьӡ аԥсахра ауам."
#. eevjm
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:234
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Аобиект ахьӡ аԥсахраан агха."
#. fTHFY
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:235
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME Амакросқәа"
#. e6BgS
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Асценари %LANGUAGENAME абызшәа аднакылаӡом."
#. EUek9
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Асценари %LANGUAGENAME %SCRIPTNAME анагӡараан агха."
#. KVQAh
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr ""
#. 5bFCQ
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "Асценари %LANGUAGENAME %SCRIPTNAME анагӡараан, ацәаҳәа: %LINENUMBER аҟны агха."
#. KTptU
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr ""
#. BZDbp
-#: cui/inc/strings.hrc:252
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "Асценарии агха, асценарии %LANGUAGENAME %SCRIPTNAME анагӡараан."
#. AAghx
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Атип:"
#. GAsca
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Ацҳамҭа:"
#. ZcxRY
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType %PRODUCTNAME Math ахь ма шьҭахьла"
#. Ttggs
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord %PRODUCTNAME Writer ма шьҭахьла"
#. ZJRKY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel %PRODUCTNAME Calc ахь ма шьҭахьла"
#. VmuND
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint %PRODUCTNAME Impress ахь ма шьҭахьла"
#. sE8as
-#: cui/inc/strings.hrc:260
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt аобиектқәа афигурақәа %PRODUCTNAME рахь ма шьҭахьҟа"
#. AEgXY
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio %PRODUCTNAME Draw ахь ма шьҭахьҟа"
#. Zarkq
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF %PRODUCTNAME Draw ахь ма шьҭахьҟа"
#. dDtDU
-#: cui/inc/strings.hrc:264
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1481,7 +1415,7 @@ msgstr ""
"Иҭажәгал даҽа хьӡык."
#. kzhkA
-#: cui/inc/strings.hrc:265
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1501,145 +1435,145 @@ msgstr "Иазалхуп ииашам ахьӡ. Иҭажәгал ахьӡ ҿыц
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:280
+#: cui/inc/strings.hrc:269
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "Аграмматика абас"
#. LPb5d
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:270
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "Иԥсахтәуп"
#. anivV
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:271
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Иԥсахтәума ажәар «%1» абызшәа?"
#. XEFrB
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:273
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Ианыхтәума аԥштәы асхема?"
#. ybdED
-#: cui/inc/strings.hrc:285
+#: cui/inc/strings.hrc:274
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Аԥштәқәа рсхема аныхра"
#. DoNBE
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:275
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Еиқырхатәуп асхема"
#. tFrki
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:276
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Аԥштәы асхема ахьӡ"
#. BAGbe
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:278
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Аорфографиа агәаҭара"
#. uBohu
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:279
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Аиагагақәа рыргылара"
#. XGkt6
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:280
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Атезаурус"
#. EFrDA
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:281
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Аграмматика"
#. zbEv9
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Игәаҭалатәуп нбан хәыҷыла иҩу ажәақәа"
#. BbDNe
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Игәаҭалатәуп ацифра зцу ажәақәа "
#. bPDyB
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Игәаҭалатәуп испециалу аобластқәа"
#. BQxwc
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:285
msgctxt "RID_SVXSTR_SPELL_CLOSED_COMPOUND"
msgid "Accept possible closed compound words"
msgstr ""
#. WLmfd
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_SPELL_HYPHENATED_COMPOUND"
msgid "Accept possible hyphenated compound words"
msgstr ""
#. XjifG
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Аорфографиа автоматикала игәаҭалатәуп"
#. J3ENq
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Аграмматика автоматикала игәаҭалатәуп"
#. f6v3L
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Аиагаразы ажәа имаксималу аура "
#. BCrEf
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Ацәаҳәа аимҟьарсҭа аԥхьатәи асимволқәа: "
#. Kgioh
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Ацәаҳәа аимҟьарсҭа ашьҭахьатәи асимволқәа: "
#. AewrH
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Аиагарақәа автоматикала рынагӡара"
#. qCKn9
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Аиагара испециалу аобластқәа рҟны"
#. weKUF
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1649,7 +1583,7 @@ msgstr ""
"Иалышәх егьи акаталог."
#. jFLdB
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1659,13 +1593,13 @@ msgstr ""
"Иалышәх даҽа каталогк."
#. 79uiz
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Иԥсахтәуп апрараметр"
#. fsbAN
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1677,37 +1611,37 @@ msgstr ""
"Апорт аномер имаксималу аҵакы— 65535."
#. UCFD6
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Иҭажәгал аградиент ахьӡ:"
#. UDvKR
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Иҭажәгал арастр ахьӡ:"
#. QXqJD
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Иҭажәгал адәныҟатәи арастртә сахьа ахьӡ:"
#. SrS6X
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Иҭажәгал аузор ахьӡ:"
#. yD7AW
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:305
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Иҭажәгал аҵәаӷәа астиль ахьӡ:"
#. FQDrh
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1715,484 +1649,496 @@ msgid ""
msgstr "Аҵәаӷәа астиль ԥсахын еиқәырхарада."
#. Z5Dkg
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:307
#, fuzzy
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Иҭажәгал иҿыцу аԥштәы ахьӡ:"
#. rvyBi
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Иԥсахтәуп"
#. ZDhBm
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Иацҵатәуп"
#. QgAFH
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Иҭажәгал иҿыцу аԥштәы ахьӡ:"
#. GKnJR
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Атаблица"
#. s9ED3
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrow style:"
msgstr "Иҭажәгал ахыц астиль ахьӡ ҿыц:"
#. xD9BU
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "%1 акәӡам"
#. GVkFG
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Аҭаацәара:"
#. 6uDkp
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Агарнитура:"
#. KFXAV
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Астиль:"
#. gDu75
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr ""
#. BcWHA
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Ихархәатәуп аиҭныԥсахлара атаблица"
#. L8BEE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Ириашалатәуп анбан ДУқәа ҨБа ажәа алагамҭаҿ"
#. p5h3s
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Аҳәоу иалагатәуп анбан ду ала"
#. prrWd
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Ихархәалатәуп *ижәпоу*, /акурсив/, -аҵәаӷәареи- _аҵшьреи_"
#. a89xT
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ибжьажьлатәуп иҩбатәу абжьажьқәа"
#. qEA6h
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "Еилкаалатәуп URL-адресқәа"
#. ErZiP
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_DETECT_DOI"
msgid "DOI citation recognition"
msgstr ""
#. JfySE
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr ""
#. u2BuA
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Ириашалатәуп машәырлатәи СAPS LOCK ақәыӷәӷәара"
#. GZqG9
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr ""
#. NDmW9
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr ""
#. 6oHuF
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr ""
#. CNtDd
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr ""
#. Rc6Zg
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Ианыхлатәуп иҭацәу абзацқәа"
#. F6HCc
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Иԥсахлатәуп ахархәаҩ истильқәа"
#. itDJG
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "Иԥсахлатәуп асиа амаркерқәа: %1 ала"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "Еидҵалатәуп ицәаҳәактәу абзацқәа, аура %1 аасҭа иеиҳазар"
#. M9kNQ
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "Асиақәа. Амаркер асимвол: %1"
+#. BAEej
+#: cui/inc/strings.hrc:337
+msgctxt "RID_SVXSTR_NUM_FORMAT_AFTER_SPACE"
+msgid "Bulleted and numbered lists immediate after pressing space"
+msgstr ""
+
#. BJVGT
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr ""
#. bXpcq
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Иаԥҵатәуп атаблица"
#. RvEBo
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Ихархәатәуп астильқәа"
#. 6MGUe
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Ианыхлатәуп абжьажьқәеи атабулиациа адыргақәеи абзац алагамҭаҿи анҵәамҭаҿи"
#. R9Kke
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Ианыхлатәуп абжьажьқәеи атабулиациақәеи ацәаҳәа алагамҭаҿи анҵәамҭаҿи"
#. GFpkR
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Аиԥшьыгатә ҵәаӷәа"
#. XDp8d
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Ишәагаатәу аҵәаӷәа"
#. Mxt3D
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "Иаатуа арҵәиқәа"
#. o8nY6
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "Иакуа арҵәиқәа"
#. cZX7G
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Агага ада"
#. bzAHG
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Агага ахырхарҭа: арӷьарахь ҵаҟа"
#. FjBGC
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Агага ахырхарҭа: арӷьарахь хыхь"
#. 5BkoC
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Агага ахырхарҭа: армарахь ҵаҟа"
#. GYB8M
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Агага ахырхарҭа: армарахь хыхь"
#. xTvak
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Иаҵаҩуп: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. 8bnrf
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Арегистрациа зызу адырқәа рбазақәа"
#. xySty
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "URL <%1> афаилтә системахь аконвертациа ауам."
#. YfSb4
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2023 LibreOffice contributors."
msgstr "Copyright © 2000–2023 LibreOffice ахеилак алахәылацәа."
#. WCnhx
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:362
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
#. Lz9nx
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:363
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice базас иамоуп OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:364
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr ""
#. q5Myk
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr ""
#. 3vXzF
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:367
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Иԥсахтәуп амҩақәа: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Аҭыԥдырга"
#. GceL6
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:370
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Акоманда"
#. dRqYc
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Ицәырҵуа аҵаҳәара"
#. NBDBv
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL"
msgid "Experimental"
msgstr "Иексперименталтәу"
#. 3FZFt
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr ""
#. AD8QJ
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "Аныхра руеит ахархәаҩ иациҵаз аԥштәқәа мацара"
#. 4LWGV
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Аныхразы иалышәх аԥштәы"
#. FjQQ5
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Иқәыргылатәуп"
#. 2GUFq
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "Иқәыргылоуп"
#. TmK5f
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "Ақәыргылара"
#. izdAK
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Аԥшаара..."
#. HYT6K
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Аҭагалара..."
#. 88Ect
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Арҭбаарақәа"
#. LWw9B
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY"
msgid "Extensions: Dictionary"
msgstr "Арҭбаара: Ажәар"
#. MEZpu
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_GALLERY"
msgid "Extensions: Gallery"
msgstr "Арҭбаара: Агалереиа"
#. R8obE
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_ICONS"
msgid "Extensions: Icons"
msgstr "Арҭбаара: Адыргаҷқәа"
#. AqGWn
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_PALETTES"
msgid "Extensions: Color Palette"
msgstr "Арҭбаара: Апалитра"
#. mncuJ
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES"
msgid "Extensions: Templates"
msgstr "Арҭбаара: Ашаблонқәа"
#. KTtQE
-#: cui/inc/strings.hrc:400
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "Ихархәатәуп %MODULE азы"
#. Xr3W9
-#: cui/inc/strings.hrc:402
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
msgstr "OLE аобиект аҭаргылара..."
#. QMiCF
-#: cui/inc/strings.hrc:404
+#: cui/inc/strings.hrc:394
msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr "(Атекст шәақәыӷәӷәа асахьа ахәаԥшразы)"
#. BT9KG
-#: cui/inc/strings.hrc:405
+#: cui/inc/strings.hrc:395
msgctxt "RID_CUISTR_ZIPFAIL"
msgid "Creation of ZIP file failed."
msgstr "ZIP афаил аԥҵараан аиԥҟьара."
#. 9QSQr
-#: cui/inc/strings.hrc:406
+#: cui/inc/strings.hrc:396
msgctxt "RID_CUISTR_SAVED"
msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
msgstr "Алҵшәақәа қәҿиарала еиқәырхоуп афаил «GraphicTestResults.zip» аҟны!"
#. vsprc
-#: cui/inc/strings.hrc:407
+#: cui/inc/strings.hrc:397
msgctxt "RID_CUISTR_OPT_READONLY"
msgid "This property is locked for editing."
msgstr "Ари аҷыдаҟазшьа ариашара мҩаркуп."
#. RAA72
-#: cui/inc/strings.hrc:409
+#: cui/inc/strings.hrc:399
msgctxt "RID_LANGUAGETOOL_LEAVE_EMPTY"
msgid "Leave this field empty to use the free version"
msgstr "Иааншәыжь аҭакыра ҭацәны, ихәыда-ԥсадоу аверсиа ахархәаразы"
#. SJCiC
-#: cui/inc/strings.hrc:410
+#: cui/inc/strings.hrc:400
msgctxt "RID_LANGUAGETOOL_REST_LEAVE_EMPTY"
msgid "Leave this field empty to use LanguageTool protocol"
msgstr "Иааншәыжь ишҭацәу апротокол LanguageTool ахархәаразы"
+#. GeMAG
+#: cui/inc/strings.hrc:402
+msgctxt "RID_CUISTR_A11Y_DESC_BACKUP"
+msgid "Specifies if the backup copy should be stored in the same folder as the original document. If not selected, the backup copy is stored in the folder specified in Tools - Options - %PRODUCTNAME - Paths - Backups."
+msgstr ""
+
#. FoBUc
#. Translatable names of color schemes
-#: cui/inc/strings.hrc:413
+#: cui/inc/strings.hrc:405
msgctxt "RID_COLOR_SCHEME_LIBREOFFICE_AUTOMATIC"
msgid "Automatic"
msgstr "Автоматикала"
@@ -2603,10 +2549,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
-#. TD8Ux
+#. yv67G
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
+msgid "Customize footnote appearance with Tools ▸ Footnote/Endnote Settings…"
msgstr ""
#. muc5F
@@ -2826,10 +2772,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
-#. GSVYQ
+#. zkswJ
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
+msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnote/Endnote Settings ▸ Footnotes tab ▸ Counting."
msgstr ""
#. gpVRV
@@ -3579,51 +3525,57 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don’t like the position of some icons on your toolbar? Change it with Tools ▸ Customize ▸ Toolbars tab ▸ Target."
msgstr ""
+#. jFitB
+#: cui/inc/tipoftheday.hrc:280
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Can’t find a command in the menus? Try Shift+ESC."
+msgstr ""
+
#. hsZPg
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr ""
#. NG4jW
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:284
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr ""
#. sCREc
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:285
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr ""
#. P6JME
-#: cui/inc/tipoftheday.hrc:285
+#: cui/inc/tipoftheday.hrc:286
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr ""
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:286
+#: cui/inc/tipoftheday.hrc:287
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr ""
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:287
+#: cui/inc/tipoftheday.hrc:288
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr ""
#. mZWSR
-#: cui/inc/tipoftheday.hrc:288
+#: cui/inc/tipoftheday.hrc:289
msgctxt "STR_CMD"
msgid "Alt"
msgstr ""
#. QtEGa
-#: cui/inc/tipoftheday.hrc:289
+#: cui/inc/tipoftheday.hrc:290
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr ""
@@ -5212,116 +5164,116 @@ msgid "Sets the fill properties of the selected drawing object."
msgstr ""
#. as89H
-#: cui/uiconfig/ui/areatabpage.ui:34
+#: cui/uiconfig/ui/areatabpage.ui:33
msgctxt "areatabpage|tablelb"
msgid "Cell"
msgstr ""
#. yowxv
-#: cui/uiconfig/ui/areatabpage.ui:35
+#: cui/uiconfig/ui/areatabpage.ui:34
msgctxt "areatabpage|tablelb"
msgid "Row"
msgstr ""
#. sEdWf
-#: cui/uiconfig/ui/areatabpage.ui:36
+#: cui/uiconfig/ui/areatabpage.ui:35
msgctxt "areatabpage|tablelb"
msgid "Table"
msgstr ""
#. WxC4H
-#: cui/uiconfig/ui/areatabpage.ui:40
+#: cui/uiconfig/ui/areatabpage.ui:39
msgctxt "areatabpage|extended_tip|tablelb"
msgid "Set the fill options for the selected drawing object or document element."
msgstr ""
#. 2kC9i
-#: cui/uiconfig/ui/areatabpage.ui:52
+#: cui/uiconfig/ui/areatabpage.ui:51
msgctxt "areatabpage|btnnone"
msgid "None"
msgstr "Мап"
#. kTpV7
-#: cui/uiconfig/ui/areatabpage.ui:58
+#: cui/uiconfig/ui/areatabpage.ui:57
msgctxt "areatabpage|extended_tip|btnnone"
msgid "Do not fill the selected object."
msgstr ""
#. AiEuM
-#: cui/uiconfig/ui/areatabpage.ui:70
+#: cui/uiconfig/ui/areatabpage.ui:69
msgctxt "areatabpage|btncolor"
msgid "Color"
msgstr "Аԥштәы"
#. xhtbg
-#: cui/uiconfig/ui/areatabpage.ui:76
+#: cui/uiconfig/ui/areatabpage.ui:75
msgctxt "areatabpage|extended_tip|btncolor"
msgid "Fills the object with a color selected on this page."
msgstr ""
#. zXDcA
-#: cui/uiconfig/ui/areatabpage.ui:88
+#: cui/uiconfig/ui/areatabpage.ui:87
msgctxt "areatabpage|btngradient"
msgid "Gradient"
msgstr "Аградиент"
#. AGYbc
-#: cui/uiconfig/ui/areatabpage.ui:94
+#: cui/uiconfig/ui/areatabpage.ui:93
msgctxt "areatabpage|extended_tip|btngradient"
msgid "Fills the object with a gradient selected on this page."
msgstr ""
#. q5cAU
-#: cui/uiconfig/ui/areatabpage.ui:106
+#: cui/uiconfig/ui/areatabpage.ui:105
msgctxt "areatabpage|btnbitmap"
msgid "Image"
msgstr ""
#. ELAno
-#: cui/uiconfig/ui/areatabpage.ui:112
+#: cui/uiconfig/ui/areatabpage.ui:111
msgctxt "areatabpage|extended_tip|btnbitmap"
msgid "Fills the object with a bitmap image selected on this page."
msgstr ""
#. 9q7GD
-#: cui/uiconfig/ui/areatabpage.ui:124
+#: cui/uiconfig/ui/areatabpage.ui:123
msgctxt "areatabpage|btnpattern"
msgid "Pattern"
msgstr "Аорнамент"
#. 2mrDx
-#: cui/uiconfig/ui/areatabpage.ui:130
+#: cui/uiconfig/ui/areatabpage.ui:129
msgctxt "areatabpage|extended_tip|btnpattern"
msgid "Fills the object with a dot pattern selected on this page."
msgstr ""
#. 5y6vj
-#: cui/uiconfig/ui/areatabpage.ui:142
+#: cui/uiconfig/ui/areatabpage.ui:141
#, fuzzy
msgctxt "areatabpage|btnhatch"
msgid "Hatch"
msgstr "асааҭ"
#. irCyE
-#: cui/uiconfig/ui/areatabpage.ui:148
+#: cui/uiconfig/ui/areatabpage.ui:147
msgctxt "areatabpage|extended_tip|btnhatch"
msgid "Fills the object with a hatching pattern selected on this page."
msgstr ""
#. Tap6L
-#: cui/uiconfig/ui/areatabpage.ui:160
+#: cui/uiconfig/ui/areatabpage.ui:159
msgctxt "areatabpage|btnusebackground"
msgid "Use Background"
msgstr ""
#. BEBkY
-#: cui/uiconfig/ui/areatabpage.ui:166
+#: cui/uiconfig/ui/areatabpage.ui:165
msgctxt "areatabpage|extended_tip|btnusebackground"
msgid "Displays the underlying slide background."
msgstr ""
#. TFDzi
-#: cui/uiconfig/ui/areatabpage.ui:220
+#: cui/uiconfig/ui/areatabpage.ui:219
msgctxt "areatabpage|extended_tip|AreaTabPage"
msgid "Set the fill options for the selected drawing object or document element."
msgstr ""
@@ -7942,85 +7894,91 @@ msgid "Connection Pool"
msgstr "Аимадара ырӡуп"
#. XfFi7
-#: cui/uiconfig/ui/croppage.ui:82
+#: cui/uiconfig/ui/croppage.ui:80
msgctxt "croppage|keepscale"
msgid "Keep _scale"
msgstr "Eиқәырхатәуп амасштаб"
#. fCWwt
-#: cui/uiconfig/ui/croppage.ui:97
+#: cui/uiconfig/ui/croppage.ui:95
msgctxt "croppage|keepsize"
msgid "Keep image si_ze"
msgstr ""
#. JcdEh
-#: cui/uiconfig/ui/croppage.ui:121
+#: cui/uiconfig/ui/croppage.ui:118
msgctxt "croppage|label2"
msgid "_Left:"
msgstr "Арымарахь:"
#. J8z8h
-#: cui/uiconfig/ui/croppage.ui:149
+#: cui/uiconfig/ui/croppage.ui:146
msgctxt "croppage|label3"
msgid "_Right:"
msgstr "Арыӷьарахь"
#. GxnM4
-#: cui/uiconfig/ui/croppage.ui:190
+#: cui/uiconfig/ui/croppage.ui:186
msgctxt "croppage|label4"
msgid "_Top:"
msgstr "Хыхьла:"
#. VAUDo
-#: cui/uiconfig/ui/croppage.ui:204
+#: cui/uiconfig/ui/croppage.ui:200
msgctxt "croppage|label5"
msgid "_Bottom:"
msgstr "Ҵаҟала:"
#. BSBCG
-#: cui/uiconfig/ui/croppage.ui:303
+#: cui/uiconfig/ui/croppage.ui:298
msgctxt "croppage|origsize"
msgid "_Original Size"
msgstr "_Ахалагаратә шәагаа"
+#. dZqd5
+#: cui/uiconfig/ui/croppage.ui:319
+msgctxt "croppage|uncrop"
+msgid "Reset Crop"
+msgstr ""
+
#. 8CoGW
-#: cui/uiconfig/ui/croppage.ui:331
+#: cui/uiconfig/ui/croppage.ui:335
msgctxt "croppage|label1"
msgid "Crop"
msgstr ""
#. VG8gn
-#: cui/uiconfig/ui/croppage.ui:363
+#: cui/uiconfig/ui/croppage.ui:366
msgctxt "croppage|label6"
msgid "_Width:"
msgstr "_Аҭбаара:"
#. bcKhi
-#: cui/uiconfig/ui/croppage.ui:390
+#: cui/uiconfig/ui/croppage.ui:393
msgctxt "croppage|label7"
msgid "_Height:"
msgstr "Аҳаракыра:"
#. JVnvr
-#: cui/uiconfig/ui/croppage.ui:419
+#: cui/uiconfig/ui/croppage.ui:422
msgctxt "croppage|label10"
msgid "Scale"
msgstr "Амасштаб"
#. Brcxv
-#: cui/uiconfig/ui/croppage.ui:450
+#: cui/uiconfig/ui/croppage.ui:452
msgctxt "croppage|label8"
msgid "_Width:"
msgstr "_Аҭбаара:"
#. tacwF
-#: cui/uiconfig/ui/croppage.ui:478
+#: cui/uiconfig/ui/croppage.ui:480
msgctxt "croppage|label9"
msgid "_Height:"
msgstr "Аҳаракыра:"
#. aBkuE
-#: cui/uiconfig/ui/croppage.ui:508
+#: cui/uiconfig/ui/croppage.ui:510
msgctxt "croppage|label11"
msgid "Image Size"
msgstr "Асахьа ашәагаа"
@@ -13401,254 +13359,266 @@ msgctxt "numberingoptionspage|extended_tip|sublevels"
msgid "Enter the number of previous levels to include in the numbering scheme. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering, the numbering scheme for the current level becomes: \"A.1\"."
msgstr ""
+#. oUMJp
+#: cui/uiconfig/ui/numberingoptionspage.ui:213
+msgctxt "numberingoptionspage|islegal"
+msgid "All sublevels Arabic"
+msgstr ""
+
+#. 7Hy8g
+#: cui/uiconfig/ui/numberingoptionspage.ui:221
+msgctxt "numberingoptionspage|extended_tip|islegal"
+msgid "Use Arabic numerals for all sublevels (\"Legal\" numbering)."
+msgstr ""
+
#. ST2Co
-#: cui/uiconfig/ui/numberingoptionspage.ui:220
+#: cui/uiconfig/ui/numberingoptionspage.ui:239
msgctxt "numberingoptionspage|extended_tip|startat"
msgid "Enter a new starting number for the current level."
msgstr ""
#. xWX3x
-#: cui/uiconfig/ui/numberingoptionspage.ui:233
+#: cui/uiconfig/ui/numberingoptionspage.ui:252
msgctxt "numberingoptionspage|startatft"
msgid "Start at:"
msgstr "Иалагатәуп аҟынтәи:"
#. PuJvD
-#: cui/uiconfig/ui/numberingoptionspage.ui:249
+#: cui/uiconfig/ui/numberingoptionspage.ui:268
msgctxt "numberingoptionspage|extended_tip|numfmtlb"
msgid "Select a numbering scheme for the selected levels."
msgstr ""
#. EDSiA
-#: cui/uiconfig/ui/numberingoptionspage.ui:262
+#: cui/uiconfig/ui/numberingoptionspage.ui:281
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
msgstr "Асахьақәа:"
#. Hooqo
-#: cui/uiconfig/ui/numberingoptionspage.ui:276
+#: cui/uiconfig/ui/numberingoptionspage.ui:295
msgctxt "numberingoptionspage|widthft"
msgid "Width:"
msgstr "Аҭбаара:"
#. EetAa
-#: cui/uiconfig/ui/numberingoptionspage.ui:296
+#: cui/uiconfig/ui/numberingoptionspage.ui:315
msgctxt "numberingoptionspage|extended_tip|widthmf"
msgid "Enter a width for the graphic."
msgstr ""
#. PBvy6
-#: cui/uiconfig/ui/numberingoptionspage.ui:309
+#: cui/uiconfig/ui/numberingoptionspage.ui:328
msgctxt "numberingoptionspage|heightft"
msgid "Height:"
msgstr "Аҳаракыра:"
#. prqMN
-#: cui/uiconfig/ui/numberingoptionspage.ui:330
+#: cui/uiconfig/ui/numberingoptionspage.ui:349
msgctxt "numberingoptionspage|extended_tip|heightmf"
msgid "Enter a height for the graphic."
msgstr ""
#. bRHQn
-#: cui/uiconfig/ui/numberingoptionspage.ui:341
+#: cui/uiconfig/ui/numberingoptionspage.ui:360
msgctxt "numberingoptionspage|keepratio"
msgid "Keep ratio"
msgstr ""
#. aeFQE
-#: cui/uiconfig/ui/numberingoptionspage.ui:349
+#: cui/uiconfig/ui/numberingoptionspage.ui:368
msgctxt "numberingoptionspage|extended_tip|keepratio"
msgid "Maintains the size proportions of the graphic."
msgstr ""
#. 7Wuu8
-#: cui/uiconfig/ui/numberingoptionspage.ui:362
+#: cui/uiconfig/ui/numberingoptionspage.ui:381
msgctxt "numberingoptionspage|orientft"
msgid "Alignment:"
msgstr "Аиҟаратәра:"
#. BJjDU
-#: cui/uiconfig/ui/numberingoptionspage.ui:378
+#: cui/uiconfig/ui/numberingoptionspage.ui:397
msgctxt "numberingoptionspage|orientlb"
msgid "Top of baseline"
msgstr "Ихадоу аҵәаӷәа хыхьла"
#. YgzFa
-#: cui/uiconfig/ui/numberingoptionspage.ui:379
+#: cui/uiconfig/ui/numberingoptionspage.ui:398
msgctxt "numberingoptionspage|orientlb"
msgid "Center of baseline"
msgstr "Ихадоу аҵәаӷәа ацентр аҟны"
#. rRWyY
-#: cui/uiconfig/ui/numberingoptionspage.ui:380
+#: cui/uiconfig/ui/numberingoptionspage.ui:399
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of baseline"
msgstr "Ихадоу аҵәаӷәа ҵаҟала"
#. GRqAC
-#: cui/uiconfig/ui/numberingoptionspage.ui:381
+#: cui/uiconfig/ui/numberingoptionspage.ui:400
msgctxt "numberingoptionspage|orientlb"
msgid "Top of character"
msgstr "Асимвол хыхьла"
#. 5z7jX
-#: cui/uiconfig/ui/numberingoptionspage.ui:382
+#: cui/uiconfig/ui/numberingoptionspage.ui:401
msgctxt "numberingoptionspage|orientlb"
msgid "Center of character"
msgstr "Асимвол ацентр аҟны"
#. MsKwk
-#: cui/uiconfig/ui/numberingoptionspage.ui:383
+#: cui/uiconfig/ui/numberingoptionspage.ui:402
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of character"
msgstr "Асимвол ҵаҟала"
#. JJEdP
-#: cui/uiconfig/ui/numberingoptionspage.ui:384
+#: cui/uiconfig/ui/numberingoptionspage.ui:403
msgctxt "numberingoptionspage|orientlb"
msgid "Top of line"
msgstr "Хыхьтәи ацәаҳәа"
#. UoEug
-#: cui/uiconfig/ui/numberingoptionspage.ui:385
+#: cui/uiconfig/ui/numberingoptionspage.ui:404
msgctxt "numberingoptionspage|orientlb"
msgid "Center of line"
msgstr "Ацәаҳәа ацентр аҟны"
#. 7dPkC
-#: cui/uiconfig/ui/numberingoptionspage.ui:386
+#: cui/uiconfig/ui/numberingoptionspage.ui:405
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of line"
msgstr "Ацәаҳәа ҵаҟала"
#. Quwne
-#: cui/uiconfig/ui/numberingoptionspage.ui:390
+#: cui/uiconfig/ui/numberingoptionspage.ui:409
msgctxt "numberingoptionspage|extended_tip|orientlb"
msgid "Select the alignment option for the graphic."
msgstr ""
#. CoAAt
-#: cui/uiconfig/ui/numberingoptionspage.ui:401
+#: cui/uiconfig/ui/numberingoptionspage.ui:420
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "Алхра..."
#. Eqa4C
-#: cui/uiconfig/ui/numberingoptionspage.ui:413
+#: cui/uiconfig/ui/numberingoptionspage.ui:432
msgctxt "numberingoptionspage|extended_tip|bitmap"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
msgstr ""
#. nSL3K
-#: cui/uiconfig/ui/numberingoptionspage.ui:435
+#: cui/uiconfig/ui/numberingoptionspage.ui:454
msgctxt "numberingoptionspage|extended_tip|color"
msgid "Select a color for the current numbering scheme."
msgstr ""
#. hJgCL
-#: cui/uiconfig/ui/numberingoptionspage.ui:453
+#: cui/uiconfig/ui/numberingoptionspage.ui:472
msgctxt "numberingoptionspage|extended_tip|relsize"
msgid "Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph."
msgstr ""
#. M4aPS
-#: cui/uiconfig/ui/numberingoptionspage.ui:464
+#: cui/uiconfig/ui/numberingoptionspage.ui:483
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "Алхра..."
#. vfKmd
-#: cui/uiconfig/ui/numberingoptionspage.ui:470
+#: cui/uiconfig/ui/numberingoptionspage.ui:489
msgctxt "numberingoptionspage|extended_tip|bullet"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
msgstr ""
#. RJa39
-#: cui/uiconfig/ui/numberingoptionspage.ui:483
+#: cui/uiconfig/ui/numberingoptionspage.ui:502
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Аԥхьа:"
#. EzDC5
-#: cui/uiconfig/ui/numberingoptionspage.ui:498
+#: cui/uiconfig/ui/numberingoptionspage.ui:517
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Аиҟәшага"
#. GCjCU
-#: cui/uiconfig/ui/numberingoptionspage.ui:515
+#: cui/uiconfig/ui/numberingoptionspage.ui:534
msgctxt "numberingoptionspage|extended_tip|suffix"
msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
-#: cui/uiconfig/ui/numberingoptionspage.ui:532
+#: cui/uiconfig/ui/numberingoptionspage.ui:551
msgctxt "numberingoptionspage|extended_tip|prefix"
msgid "Enter a character or the text to display in front of the number in the list."
msgstr ""
#. FLJWG
-#: cui/uiconfig/ui/numberingoptionspage.ui:545
+#: cui/uiconfig/ui/numberingoptionspage.ui:564
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "Ашьҭахь:"
#. TZVTJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:559
+#: cui/uiconfig/ui/numberingoptionspage.ui:578
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "Аҩаӡарақәа зегьы:"
#. FaDZX
-#: cui/uiconfig/ui/numberingoptionspage.ui:574
+#: cui/uiconfig/ui/numberingoptionspage.ui:593
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Асимволқәа:"
#. 6jTGa
-#: cui/uiconfig/ui/numberingoptionspage.ui:588
+#: cui/uiconfig/ui/numberingoptionspage.ui:607
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "Амасштаб:"
#. 6r484
-#: cui/uiconfig/ui/numberingoptionspage.ui:602
+#: cui/uiconfig/ui/numberingoptionspage.ui:621
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "Аԥштәы:"
#. ksG2M
-#: cui/uiconfig/ui/numberingoptionspage.ui:616
+#: cui/uiconfig/ui/numberingoptionspage.ui:635
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "Асимвол астиль:"
#. S9jNu
-#: cui/uiconfig/ui/numberingoptionspage.ui:651
+#: cui/uiconfig/ui/numberingoptionspage.ui:670
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "Аномерркра"
#. kcgWM
-#: cui/uiconfig/ui/numberingoptionspage.ui:672
+#: cui/uiconfig/ui/numberingoptionspage.ui:691
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr ""
#. 48AhR
-#: cui/uiconfig/ui/numberingoptionspage.ui:682
+#: cui/uiconfig/ui/numberingoptionspage.ui:701
msgctxt "numberingoptionspage|extended_tip|allsame"
msgid "Increases the numbering by one as you go down each level in the list hierarchy."
msgstr ""
#. 9VSpp
-#: cui/uiconfig/ui/numberingoptionspage.ui:691
+#: cui/uiconfig/ui/numberingoptionspage.ui:710
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr ""
#. DJptx
-#: cui/uiconfig/ui/numberingoptionspage.ui:746
+#: cui/uiconfig/ui/numberingoptionspage.ui:765
msgctxt "numberingoptionspage|previewlabel"
msgid "Preview"
msgstr ""
@@ -15794,11 +15764,11 @@ msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr "Алокалтә рхиарақәа:"
-#. Zyao3
+#. Tns7H
#: cui/uiconfig/ui/optlanguagespage.ui:399
msgctxt "optlanguagespage|label6"
-msgid "Decimal separator key:"
-msgstr "Ижәабатәу аиҟәшага:"
+msgid "Decimal key on the numpad:"
+msgstr ""
#. cuqUB
#: cui/uiconfig/ui/optlanguagespage.ui:413
@@ -15836,10 +15806,10 @@ msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr ""
-#. G5VXy
+#. jDbZT
#: cui/uiconfig/ui/optlanguagespage.ui:500
msgctxt "extended_tip|decimalseparator"
-msgid "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
+msgid "Specifies to use the numeric keypad decimal key that is set in your system when you press the respective key on the number pad."
msgstr ""
#. BGtpx
@@ -16486,164 +16456,170 @@ msgid "Automatically save the document too"
msgstr ""
#. mKGDm
-#: cui/uiconfig/ui/optsavepage.ui:192
+#: cui/uiconfig/ui/optsavepage.ui:193
msgctxt "userautosave"
msgid "Specifies that the office suite saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
msgstr ""
#. kwFtx
-#: cui/uiconfig/ui/optsavepage.ui:203
+#: cui/uiconfig/ui/optsavepage.ui:204
msgctxt "optsavepage|relative_fsys"
msgid "Save URLs relative to file system"
msgstr "Афаилқәа рахь ихьыԥшу амҩақәа"
#. jDKxF
-#: cui/uiconfig/ui/optsavepage.ui:211
+#: cui/uiconfig/ui/optsavepage.ui:212
msgctxt "relative_fsys"
msgid "Select this box for relative saving of URLs in the file system."
msgstr ""
#. 8xmX3
-#: cui/uiconfig/ui/optsavepage.ui:222
+#: cui/uiconfig/ui/optsavepage.ui:223
msgctxt "optsavepage|docinfo"
msgid "_Edit document properties before saving"
msgstr ""
#. LSD3v
-#: cui/uiconfig/ui/optsavepage.ui:230
+#: cui/uiconfig/ui/optsavepage.ui:231
msgctxt "docinfo"
msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
msgstr ""
#. ctAxA
-#: cui/uiconfig/ui/optsavepage.ui:241
+#: cui/uiconfig/ui/optsavepage.ui:242
msgctxt "optsavepage|relative_inet"
msgid "Save URLs relative to internet"
msgstr ""
#. WYrQB
-#: cui/uiconfig/ui/optsavepage.ui:249
+#: cui/uiconfig/ui/optsavepage.ui:250
msgctxt "relative_inet"
msgid "Select this box for relative saving of URLs to the Internet."
msgstr ""
#. YsjVX
-#: cui/uiconfig/ui/optsavepage.ui:260
+#: cui/uiconfig/ui/optsavepage.ui:261
msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr ""
#. vhCe5
-#: cui/uiconfig/ui/optsavepage.ui:268
+#: cui/uiconfig/ui/optsavepage.ui:269
msgctxt "backup"
msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time the office suite creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
msgstr ""
+#. ijsoS
+#: cui/uiconfig/ui/optsavepage.ui:280
+msgctxt "optsavepage|backupintodocumentfolder"
+msgid "Place backup in same folder as document"
+msgstr ""
+
#. NaGCU
-#: cui/uiconfig/ui/optsavepage.ui:283
+#: cui/uiconfig/ui/optsavepage.ui:299
msgctxt "optsavepage|label2"
msgid "Save"
msgstr "Аиқәырхара"
#. TDBAs
-#: cui/uiconfig/ui/optsavepage.ui:312
+#: cui/uiconfig/ui/optsavepage.ui:328
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
msgstr ""
#. zGBEu
-#: cui/uiconfig/ui/optsavepage.ui:320
+#: cui/uiconfig/ui/optsavepage.ui:336
msgctxt "warnalienformat"
msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
msgstr ""
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
-#: cui/uiconfig/ui/optsavepage.ui:341
+#: cui/uiconfig/ui/optsavepage.ui:357
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.3 Extended may cause information to be lost."
msgstr ""
#. 6Tfns
-#: cui/uiconfig/ui/optsavepage.ui:371
+#: cui/uiconfig/ui/optsavepage.ui:387
msgctxt "optsavepage|odfversion"
msgid "1.0/1.1"
msgstr "1.0/1.1"
#. BJSfi
-#: cui/uiconfig/ui/optsavepage.ui:372
+#: cui/uiconfig/ui/optsavepage.ui:388
msgctxt "optsavepage|odfversion"
msgid "1.2"
msgstr "1.2"
#. k3jkA
-#: cui/uiconfig/ui/optsavepage.ui:373
+#: cui/uiconfig/ui/optsavepage.ui:389
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
msgstr ""
#. G826f
-#: cui/uiconfig/ui/optsavepage.ui:374
+#: cui/uiconfig/ui/optsavepage.ui:390
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
msgstr ""
#. vLmeZ
-#: cui/uiconfig/ui/optsavepage.ui:375
+#: cui/uiconfig/ui/optsavepage.ui:391
msgctxt "optsavepage|odfversion"
msgid "1.3"
msgstr ""
#. e6EP2
-#: cui/uiconfig/ui/optsavepage.ui:376
+#: cui/uiconfig/ui/optsavepage.ui:392
msgctxt "optsavepage|odfversion"
msgid "1.3 Extended (recommended)"
msgstr ""
#. w2urA
-#: cui/uiconfig/ui/optsavepage.ui:380
+#: cui/uiconfig/ui/optsavepage.ui:396
msgctxt "odfversion"
msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
msgstr ""
#. cxPqV
-#: cui/uiconfig/ui/optsavepage.ui:393
+#: cui/uiconfig/ui/optsavepage.ui:409
msgctxt "optsavepage|label5"
msgid "ODF format version:"
msgstr "ODF аформат аверсиа:"
#. bF5dA
-#: cui/uiconfig/ui/optsavepage.ui:407
+#: cui/uiconfig/ui/optsavepage.ui:423
msgctxt "optsavepage|saveas_label"
msgid "Always sa_ve as:"
msgstr ""
#. iCZX2
-#: cui/uiconfig/ui/optsavepage.ui:423
+#: cui/uiconfig/ui/optsavepage.ui:439
msgctxt "doctype"
msgid "Specifies the document type for which you want to define the default file format."
msgstr ""
#. 69GMF
-#: cui/uiconfig/ui/optsavepage.ui:438
+#: cui/uiconfig/ui/optsavepage.ui:454
msgctxt "saveas"
msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog."
msgstr ""
#. 29FUf
-#: cui/uiconfig/ui/optsavepage.ui:451
+#: cui/uiconfig/ui/optsavepage.ui:467
msgctxt "optsavepage|label6"
msgid "D_ocument type:"
msgstr "Адокумент атип:"
#. CgCxr
-#: cui/uiconfig/ui/optsavepage.ui:467
+#: cui/uiconfig/ui/optsavepage.ui:483
msgctxt "optsavepage|label3"
msgid "Default File Format and ODF Settings"
msgstr ""
#. G7BAM
-#: cui/uiconfig/ui/optsavepage.ui:481
+#: cui/uiconfig/ui/optsavepage.ui:497
msgctxt "OptSavePage"
msgid "In the General section, you can select default settings for saving documents, and can select default file formats."
msgstr ""
@@ -16807,10 +16783,28 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
-#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:492
-msgctxt "extended_tip|OptSecurityPage"
-msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
+#. M4Y8V
+#: cui/uiconfig/ui/optsecuritypage.ui:511
+msgctxt "optsecuritypage|label11"
+msgid "Select custom certificate manager executable. Note that LibreOffice tries to locate installed ones automatically."
+msgstr ""
+
+#. Ufp5e
+#: cui/uiconfig/ui/optsecuritypage.ui:524
+msgctxt "optsecuritypage|browse"
+msgid "_Browse..."
+msgstr ""
+
+#. dBKW5
+#: cui/uiconfig/ui/optsecuritypage.ui:545
+msgctxt "extended_tip|parameterfield"
+msgid "Enter the executable of the certificate manager path."
+msgstr ""
+
+#. HVFTB
+#: cui/uiconfig/ui/optsecuritypage.ui:563
+msgctxt "optsecuritypage|label10"
+msgid "Certificate Manager"
msgstr ""
#. FPuvb
@@ -20404,151 +20398,151 @@ msgid "_Not in Dictionary"
msgstr ""
#. R7k8J
-#: cui/uiconfig/ui/spellingdialog.ui:294
+#: cui/uiconfig/ui/spellingdialog.ui:295
msgctxt "spellingdialog|paste"
msgid "Paste"
msgstr "Иҭаргылатәуп"
#. vTAkA
-#: cui/uiconfig/ui/spellingdialog.ui:306
+#: cui/uiconfig/ui/spellingdialog.ui:308
msgctxt "spellingdialog|insert"
msgid "Special Character"
msgstr "Асимвол алхра"
#. qLx9c
-#: cui/uiconfig/ui/spellingdialog.ui:338
+#: cui/uiconfig/ui/spellingdialog.ui:340
msgctxt "spellingdialog|languageft"
msgid "Text languag_e:"
msgstr "Атекст абызшәа:"
#. g7zja
-#: cui/uiconfig/ui/spellingdialog.ui:370
+#: cui/uiconfig/ui/spellingdialog.ui:372
msgctxt "spellingdialog|extended_tip|languagelb"
msgid "Specifies the language to use to check the spelling."
msgstr ""
#. bxC8G
-#: cui/uiconfig/ui/spellingdialog.ui:395
+#: cui/uiconfig/ui/spellingdialog.ui:397
msgctxt "spellingdialog|resumeft"
msgid "Res_ume"
msgstr "Иацҵатәуп"
#. D2E4f
-#: cui/uiconfig/ui/spellingdialog.ui:407
+#: cui/uiconfig/ui/spellingdialog.ui:409
msgctxt "spellingdialog|nosuggestionsft"
msgid "(no suggestions)"
msgstr "(авариантқәа ыҟам)"
#. dCCnN
-#: cui/uiconfig/ui/spellingdialog.ui:419
+#: cui/uiconfig/ui/spellingdialog.ui:421
msgctxt "spellingdialog|alttitleft"
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Аорфографиа агәаҭара: $LANGUAGE ($LOCATION)"
#. 5LDdh
-#: cui/uiconfig/ui/spellingdialog.ui:443
+#: cui/uiconfig/ui/spellingdialog.ui:445
msgctxt "spellingdialog|change"
msgid "Co_rrect"
msgstr ""
#. m7FFp
-#: cui/uiconfig/ui/spellingdialog.ui:452
+#: cui/uiconfig/ui/spellingdialog.ui:454
msgctxt "spellingdialog|extended_tip|change"
msgid "Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced."
msgstr ""
#. dZvFo
-#: cui/uiconfig/ui/spellingdialog.ui:463
+#: cui/uiconfig/ui/spellingdialog.ui:465
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
msgstr ""
#. 9kjPB
-#: cui/uiconfig/ui/spellingdialog.ui:472
+#: cui/uiconfig/ui/spellingdialog.ui:474
msgctxt "spellingdialog|extended_tip|changeall"
msgid "Replaces all occurrences of the unknown word with the current suggestion."
msgstr ""
#. VmUBw
-#: cui/uiconfig/ui/spellingdialog.ui:483
+#: cui/uiconfig/ui/spellingdialog.ui:485
msgctxt "spellingdialog|autocorrect"
msgid "Add to _AutoCorrect"
msgstr ""
#. xpvWk
-#: cui/uiconfig/ui/spellingdialog.ui:487
+#: cui/uiconfig/ui/spellingdialog.ui:489
msgctxt "spellingdialog|autocorrect|tooltip_text"
msgid "Add selected suggestion as replacement for incorrect word in AutoCorrect replacement table."
msgstr ""
#. DGBWv
-#: cui/uiconfig/ui/spellingdialog.ui:493
+#: cui/uiconfig/ui/spellingdialog.ui:495
msgctxt "spellingdialog|extended_tip|autocorrect"
msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacement table."
msgstr ""
#. DoqLo
-#: cui/uiconfig/ui/spellingdialog.ui:517
+#: cui/uiconfig/ui/spellingdialog.ui:519
msgctxt "spellingdialog|ignore"
msgid "_Ignore Once"
msgstr "Ибжьажьтәуп"
#. M5qZF
-#: cui/uiconfig/ui/spellingdialog.ui:526
+#: cui/uiconfig/ui/spellingdialog.ui:528
msgctxt "spellingdialog|extended_tip|ignore"
msgid "Skips the unknown word and continues with the spellcheck."
msgstr ""
#. 32F96
-#: cui/uiconfig/ui/spellingdialog.ui:537
+#: cui/uiconfig/ui/spellingdialog.ui:539
msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "Ибжьажьтәуп зегьы"
#. zS3Wm
-#: cui/uiconfig/ui/spellingdialog.ui:546
+#: cui/uiconfig/ui/spellingdialog.ui:548
msgctxt "spellingdialog|extended_tip|ignoreall"
msgid "Skips all occurrences of the unknown word until the end of the current office suite session and continues with the spellcheck."
msgstr ""
#. ZZNQM
-#: cui/uiconfig/ui/spellingdialog.ui:557
+#: cui/uiconfig/ui/spellingdialog.ui:559
msgctxt "spellingdialog|ignorerule"
msgid "I_gnore Rule"
msgstr "Ибжьажьтәуп аԥҟара"
#. E63nm
-#: cui/uiconfig/ui/spellingdialog.ui:566
+#: cui/uiconfig/ui/spellingdialog.ui:568
msgctxt "spellingdialog|extended_tip|ignorerule"
msgid "While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error."
msgstr ""
#. xcDLh
-#: cui/uiconfig/ui/spellingdialog.ui:577
+#: cui/uiconfig/ui/spellingdialog.ui:579
msgctxt "spellingdialog|add"
msgid "Add to _Dictionary"
msgstr ""
#. JAsBm
-#: cui/uiconfig/ui/spellingdialog.ui:586
+#: cui/uiconfig/ui/spellingdialog.ui:588
msgctxt "spellingdialog|extended_tip|add"
msgid "Adds the unknown word to a user-defined dictionary."
msgstr ""
#. z3TLh
-#: cui/uiconfig/ui/spellingdialog.ui:597
+#: cui/uiconfig/ui/spellingdialog.ui:599
msgctxt "spellingdialog|addmb"
msgid "Add to _Dictionary"
msgstr ""
#. YFz8g
-#: cui/uiconfig/ui/spellingdialog.ui:612
+#: cui/uiconfig/ui/spellingdialog.ui:614
msgctxt "spellingdialog|extended_tip|addmb"
msgid "Adds the unknown word to a user-defined dictionary."
msgstr ""
#. GSZVa
-#: cui/uiconfig/ui/spellingdialog.ui:653
+#: cui/uiconfig/ui/spellingdialog.ui:652
msgctxt "spellingdialog|extended_tip|SpellingDialog"
msgid "Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors."
msgstr ""
@@ -21507,10 +21501,10 @@ msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr ""
-#. MEpn4
+#. B4ZyD
#: cui/uiconfig/ui/textflowpage.ui:548
msgctxt "textflowpage|checkSplitPara"
-msgid "_Do not split paragraph"
+msgid "_Allow to split paragraph"
msgstr ""
#. XLpSD
@@ -21531,162 +21525,78 @@ msgctxt "textflowpage|extended_tip|checkKeepPara"
msgid "Keeps the current paragraph and the following paragraph together when a break or column break is inserted."
msgstr ""
-#. dQZQ7
+#. DDzY9
#: cui/uiconfig/ui/textflowpage.ui:590
msgctxt "textflowpage|checkOrphan"
-msgid "_Orphan control"
+msgid "No split at _beginning of paragraph"
+msgstr ""
+
+#. NgQD5
+#: cui/uiconfig/ui/textflowpage.ui:594
+msgctxt "textflowpage|checkOrphan"
+msgid "Number of lines, that will be kept together at the beginning of the paragraph (orphan control)."
msgstr ""
#. zADSo
-#: cui/uiconfig/ui/textflowpage.ui:602
+#: cui/uiconfig/ui/textflowpage.ui:604
msgctxt "textflowpage|extended_tip|checkOrphan"
msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
msgstr ""
-#. pnW52
-#: cui/uiconfig/ui/textflowpage.ui:613
+#. 2EpT4
+#: cui/uiconfig/ui/textflowpage.ui:615
msgctxt "textflowpage|checkWidow"
-msgid "_Widow control"
+msgid "No split at _end of paragraph"
+msgstr ""
+
+#. rjBWx
+#: cui/uiconfig/ui/textflowpage.ui:619
+msgctxt "textflowpage|checkOrphan"
+msgid "Number of lines, that will be kept together at the end of the paragraph (widow control)."
msgstr ""
#. SmFT5
-#: cui/uiconfig/ui/textflowpage.ui:625
+#: cui/uiconfig/ui/textflowpage.ui:629
msgctxt "textflowpage|extended_tip|checkWidow"
msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
msgstr ""
#. mb9LZ
-#: cui/uiconfig/ui/textflowpage.ui:646
+#: cui/uiconfig/ui/textflowpage.ui:650
msgctxt "textflowpage|extended_tip|spinOrphan"
msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
msgstr ""
#. 3cNEP
-#: cui/uiconfig/ui/textflowpage.ui:668
+#: cui/uiconfig/ui/textflowpage.ui:672
msgctxt "textflowpage|extended_tip|spinWidow"
msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
msgstr ""
#. dcEiB
-#: cui/uiconfig/ui/textflowpage.ui:681
+#: cui/uiconfig/ui/textflowpage.ui:685
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "Аҵәаӷәа(қәа)"
#. 6swWD
-#: cui/uiconfig/ui/textflowpage.ui:693
+#: cui/uiconfig/ui/textflowpage.ui:697
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "Аҵәаӷәа(қәа)"
-#. nXryi
-#: cui/uiconfig/ui/textflowpage.ui:707
+#. MGewb
+#: cui/uiconfig/ui/textflowpage.ui:711
msgctxt "textflowpage|labelOptions"
-msgid "Options"
-msgstr "Апараметрқәа"
+msgid "Split Options"
+msgstr ""
#. qrhEF
-#: cui/uiconfig/ui/textflowpage.ui:724
+#: cui/uiconfig/ui/textflowpage.ui:728
msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
msgstr ""
-#. K58BF
-#: cui/uiconfig/ui/themetabpage.ui:30
-msgctxt "themetabpage|lbThemeName"
-msgid "Name:"
-msgstr ""
-
-#. GxAud
-#: cui/uiconfig/ui/themetabpage.ui:60
-msgctxt "themetabpage|general"
-msgid "General"
-msgstr ""
-
-#. PFDEf
-#: cui/uiconfig/ui/themetabpage.ui:92
-msgctxt "themetabpage|lbColorSetName"
-msgid "Name:"
-msgstr ""
-
-#. 4GfYQ
-#: cui/uiconfig/ui/themetabpage.ui:121
-msgctxt "themetabpage|lbDk1"
-msgid "Background - Dark 1:"
-msgstr ""
-
-#. J3qNF
-#: cui/uiconfig/ui/themetabpage.ui:136
-msgctxt "themetabpage|lbLt1"
-msgid "Text - Light 1:"
-msgstr ""
-
-#. zFCDe
-#: cui/uiconfig/ui/themetabpage.ui:151
-msgctxt "themetabpage|lbDk2"
-msgid "Background - Dark 2:"
-msgstr ""
-
-#. RVZjG
-#: cui/uiconfig/ui/themetabpage.ui:166
-msgctxt "themetabpage|lbLt2"
-msgid "Text - Light 2:"
-msgstr ""
-
-#. kwdwQ
-#: cui/uiconfig/ui/themetabpage.ui:181
-msgctxt "themetabpage|lbAccent1"
-msgid "Accent 1:"
-msgstr ""
-
-#. iBrgD
-#: cui/uiconfig/ui/themetabpage.ui:196
-msgctxt "themetabpage|lbAccent2"
-msgid "Accent 2:"
-msgstr ""
-
-#. jA7Cn
-#: cui/uiconfig/ui/themetabpage.ui:211
-msgctxt "themetabpage|lbAccent3"
-msgid "Accent 3:"
-msgstr ""
-
-#. oPgoC
-#: cui/uiconfig/ui/themetabpage.ui:226
-msgctxt "themetabpage|lbAccent4"
-msgid "Accent 4:"
-msgstr ""
-
-#. n8AAc
-#: cui/uiconfig/ui/themetabpage.ui:241
-msgctxt "themetabpage|lbAccent5"
-msgid "Accent 5:"
-msgstr ""
-
-#. pi44r
-#: cui/uiconfig/ui/themetabpage.ui:256
-msgctxt "themetabpage|lbAccent6"
-msgid "Accent 6:"
-msgstr ""
-
-#. CeB9H
-#: cui/uiconfig/ui/themetabpage.ui:271
-msgctxt "themetabpage|lbHlink"
-msgid "Hyperlink:"
-msgstr ""
-
-#. B722M
-#: cui/uiconfig/ui/themetabpage.ui:286
-msgctxt "themetabpage|lbFolHlink"
-msgid "Followed Hyperlink:"
-msgstr ""
-
-#. jRFtE
-#: cui/uiconfig/ui/themetabpage.ui:543
-msgctxt "themetabpage|colorSet"
-msgid "Color Set"
-msgstr ""
-
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
diff --git a/source/ab/dbaccess/messages.po b/source/ab/dbaccess/messages.po
index 1e2fd960c65..37d6e895d06 100644
--- a/source/ab/dbaccess/messages.po
+++ b/source/ab/dbaccess/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: 2023-05-10 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-08-25 20:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559900980.000000\n"
#. BiN6g
@@ -2265,310 +2265,290 @@ msgctxt "STR_SPREADSHEETPATH"
msgid "~Location and file name"
msgstr "~Афаил ахьыҟоу аҭыԥи иахьӡуи"
-#. GmNij
-#: dbaccess/inc/strings.hrc:401
-msgctxt "STR_POSTGRES_HEADERTEXT"
-msgid "Set up a connection to a PostgreSQL database"
-msgstr ""
-
-#. 3AEhs
-#: dbaccess/inc/strings.hrc:402
-msgctxt "STR_POSTGRES_HELPTEXT"
-msgid ""
-"Please enter the required information to connect to a PostgreSQL database, either by entering the host name, port number and server, or by entering the connection string.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. CHYCA
-#: dbaccess/inc/strings.hrc:403
-msgctxt "STR_POSTGRES_DEFAULT"
-msgid "Default: 5432"
-msgstr "Ишыҟоу еиԥш: 5432"
-
#. og5kg
-#: dbaccess/inc/strings.hrc:404
+#: dbaccess/inc/strings.hrc:401
msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
msgid "Command successfully executed."
msgstr "Акоманда қәҿиарала инагӡоуп."
#. BhFXv
-#: dbaccess/inc/strings.hrc:405
+#: dbaccess/inc/strings.hrc:402
msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr ""
#. WTysM
-#: dbaccess/inc/strings.hrc:407
+#: dbaccess/inc/strings.hrc:404
msgctxt "STR_TAB_INDEX_SORTORDER"
msgid "Sort order"
msgstr "Асортра ахырхарҭа"
#. 67TCR
-#: dbaccess/inc/strings.hrc:408
+#: dbaccess/inc/strings.hrc:405
msgctxt "STR_TAB_INDEX_FIELD"
msgid "Index field"
msgstr "Аиндекс аҭакыра"
#. rCZbG
-#: dbaccess/inc/strings.hrc:409
+#: dbaccess/inc/strings.hrc:406
msgctxt "STR_ORDER_ASCENDING"
msgid "Ascending"
msgstr "Еиҵоу-еиҳаула"
#. zUeEN
-#: dbaccess/inc/strings.hrc:410
+#: dbaccess/inc/strings.hrc:407
msgctxt "STR_ORDER_DESCENDING"
msgid "Descending"
msgstr "Еиҳау-еиҵоула"
#. DpB67
-#: dbaccess/inc/strings.hrc:411
+#: dbaccess/inc/strings.hrc:408
msgctxt "STR_CONFIRM_DROP_INDEX"
msgid "Do you really want to delete the index '$name$'?"
msgstr "Ианыхтәума аиндекс «$name$»?"
#. 3sTLe
-#: dbaccess/inc/strings.hrc:412
+#: dbaccess/inc/strings.hrc:409
msgctxt "STR_LOGICAL_INDEX_NAME"
msgid "index"
msgstr "аиндекс"
#. HFaXn
-#: dbaccess/inc/strings.hrc:413
+#: dbaccess/inc/strings.hrc:410
msgctxt "STR_NEED_INDEX_FIELDS"
msgid "The index must contain at least one field."
msgstr ""
#. LRDDD
-#: dbaccess/inc/strings.hrc:414
+#: dbaccess/inc/strings.hrc:411
msgctxt "STR_INDEX_NAME_ALREADY_USED"
msgid "There is already another index named \"$name$\"."
msgstr "Аиндекс хьӡыс «$name$» измоу ыҟоуп."
#. 9C3mx
-#: dbaccess/inc/strings.hrc:415
+#: dbaccess/inc/strings.hrc:412
msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr ""
#. XANpc
-#: dbaccess/inc/strings.hrc:417
+#: dbaccess/inc/strings.hrc:414
msgctxt "STR_COULD_NOT_CONVERT_PARAM"
msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
msgstr ""
#. FCnE3
-#: dbaccess/inc/strings.hrc:419
+#: dbaccess/inc/strings.hrc:416
msgctxt "STR_EXCEPTION_STATUS"
msgid "SQL Status"
msgstr "SQL аҭагылазаашьа"
#. ha64T
-#: dbaccess/inc/strings.hrc:420
+#: dbaccess/inc/strings.hrc:417
msgctxt "STR_EXCEPTION_ERRORCODE"
msgid "Error code"
msgstr "Агха акод"
#. 9A2cX
-#: dbaccess/inc/strings.hrc:421
+#: dbaccess/inc/strings.hrc:418
msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
msgstr ""
#. itnjJ
-#: dbaccess/inc/strings.hrc:422
+#: dbaccess/inc/strings.hrc:419
msgctxt "STR_EXCEPTION_ERROR"
msgid "Error"
msgstr "Агха"
#. Q4A2Y
-#: dbaccess/inc/strings.hrc:423
+#: dbaccess/inc/strings.hrc:420
msgctxt "STR_EXCEPTION_WARNING"
msgid "Warning"
msgstr "Агәаҽанҵара"
#. LSBpE
-#: dbaccess/inc/strings.hrc:424
+#: dbaccess/inc/strings.hrc:421
msgctxt "STR_EXCEPTION_INFO"
msgid "Information"
msgstr "Аинформациа"
#. DKRwR
-#: dbaccess/inc/strings.hrc:425
+#: dbaccess/inc/strings.hrc:422
msgctxt "STR_EXCEPTION_DETAILS"
msgid "Details"
msgstr "Хәҭа-хәҭала"
#. CXpeS
-#: dbaccess/inc/strings.hrc:427
+#: dbaccess/inc/strings.hrc:424
msgctxt "STR_ADD_USER"
msgid "Add User"
msgstr "Дацҵатәуп ахархәаҩ"
#. YG5iB
-#: dbaccess/inc/strings.hrc:428
+#: dbaccess/inc/strings.hrc:425
msgctxt "STR_DELETE_USER"
msgid "Delete User"
msgstr "Даныхтәуп ахархәаҩ"
#. mDe9f
-#: dbaccess/inc/strings.hrc:429
+#: dbaccess/inc/strings.hrc:426
msgctxt "STR_CHANGE_PASSWORD"
msgid "Change Password"
msgstr "Иԥсахтәуп ажәамаӡа"
#. Avmtu
-#: dbaccess/inc/strings.hrc:430
+#: dbaccess/inc/strings.hrc:427
msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
msgid "Do you really want to delete the user?"
msgstr "Даныхтәума ари ахархәаҩ?"
#. yeKZF
-#: dbaccess/inc/strings.hrc:431
+#: dbaccess/inc/strings.hrc:428
msgctxt "STR_USERADMIN_NOT_AVAILABLE"
msgid "The database does not support user administration."
msgstr ""
#. 4CVtX
-#: dbaccess/inc/strings.hrc:432
+#: dbaccess/inc/strings.hrc:429
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The passwords do not match. Please enter the password again."
msgstr "Ажәамаӡақәа еиқәшәаӡом. Даҽазнык иҭажәгал ажәамаӡа."
#. iu64w
-#: dbaccess/inc/strings.hrc:434
+#: dbaccess/inc/strings.hrc:431
msgctxt "STR_JOIN_TYPE_HINT"
msgid "Please note that some databases may not support this join type."
msgstr ""
#. Khmn9
-#: dbaccess/inc/strings.hrc:435
+#: dbaccess/inc/strings.hrc:432
msgctxt "STR_QUERY_INNER_JOIN"
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr ""
#. JUyyK
-#: dbaccess/inc/strings.hrc:436
+#: dbaccess/inc/strings.hrc:433
msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr ""
#. EdhCU
-#: dbaccess/inc/strings.hrc:437
+#: dbaccess/inc/strings.hrc:434
msgctxt "STR_QUERY_FULL_JOIN"
msgid "Contains ALL records from '%1' and from '%2'."
msgstr ""
#. c9PsZ
-#: dbaccess/inc/strings.hrc:438
+#: dbaccess/inc/strings.hrc:435
msgctxt "STR_QUERY_CROSS_JOIN"
msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
msgstr ""
#. KyLuN
-#: dbaccess/inc/strings.hrc:440
+#: dbaccess/inc/strings.hrc:437
msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
msgid "The destination database does not support views."
msgstr ""
#. RaJQd
-#: dbaccess/inc/strings.hrc:441
+#: dbaccess/inc/strings.hrc:438
msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
msgid "The destination database does not support primary keys."
msgstr ""
#. JBBmY
-#: dbaccess/inc/strings.hrc:442
+#: dbaccess/inc/strings.hrc:439
msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr ""
#. Z4JFe
-#: dbaccess/inc/strings.hrc:443
+#: dbaccess/inc/strings.hrc:440
msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
msgid "Only tables and queries are supported at the moment."
msgstr "Иахьатәи аамҭазы иаднакылоит атаблицақәеи азыҳәарақәеи мацара."
#. KvUFb
-#: dbaccess/inc/strings.hrc:444
+#: dbaccess/inc/strings.hrc:441
msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
msgid "The copy source's result set must support bookmarks."
msgstr ""
#. XVb6E
-#: dbaccess/inc/strings.hrc:445
+#: dbaccess/inc/strings.hrc:442
msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr ""
#. 7pnvE
-#: dbaccess/inc/strings.hrc:446
+#: dbaccess/inc/strings.hrc:443
msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
msgid "Illegal number of initialization parameters."
msgstr ""
#. z3h9J
-#: dbaccess/inc/strings.hrc:447
+#: dbaccess/inc/strings.hrc:444
msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
msgid "An error occurred during initialization."
msgstr ""
#. Qpda7
-#: dbaccess/inc/strings.hrc:448
+#: dbaccess/inc/strings.hrc:445
msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr ""
#. BsP8j
-#: dbaccess/inc/strings.hrc:449
+#: dbaccess/inc/strings.hrc:446
msgctxt "STR_CTW_ERROR_NO_QUERY"
msgid "To copy a query, your connection must be able to provide queries."
msgstr ""
#. QYh2y
-#: dbaccess/inc/strings.hrc:450
+#: dbaccess/inc/strings.hrc:447
msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
msgid "The given interaction handler is invalid."
msgstr ""
#. ixrDD
-#: dbaccess/inc/strings.hrc:452
+#: dbaccess/inc/strings.hrc:449
msgctxt "STR_QUERY_REL_EDIT_RELATION"
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr ""
#. nFRsS
-#: dbaccess/inc/strings.hrc:453
+#: dbaccess/inc/strings.hrc:450
msgctxt "STR_QUERY_REL_EDIT"
msgid "Edit..."
msgstr "Ариашара..."
#. yRkFG
-#: dbaccess/inc/strings.hrc:454
+#: dbaccess/inc/strings.hrc:451
msgctxt "STR_QUERY_REL_CREATE"
msgid "Create..."
msgstr "Иаԥҵатәуп..."
#. VWBJF
-#: dbaccess/inc/strings.hrc:455
+#: dbaccess/inc/strings.hrc:452
msgctxt "STR_RELATIONDESIGN"
msgid " - %PRODUCTNAME Base: Relation design"
msgstr ""
#. ZCd5X
-#: dbaccess/inc/strings.hrc:456
+#: dbaccess/inc/strings.hrc:453
msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
msgid "The database does not support relations."
msgstr ""
#. CG2Pd
-#: dbaccess/inc/strings.hrc:457
+#: dbaccess/inc/strings.hrc:454
msgctxt "STR_QUERY_REL_DELETE_WINDOW"
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr ""
#. Wzf9T
-#: dbaccess/inc/strings.hrc:458
+#: dbaccess/inc/strings.hrc:455
msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
msgid ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
@@ -4047,46 +4027,88 @@ msgctxt "password|label1"
msgid "User “$name$: $”"
msgstr "Ахархәаҩ «$name$: $»"
+#. 4E7F9
+#: dbaccess/uiconfig/ui/postgrespage.ui:24
+msgctxt "postgrespage|header"
+msgid "Set up a connection to a PostgreSQL database"
+msgstr ""
+
#. o8BnM
-#: dbaccess/uiconfig/ui/postgrespage.ui:26
+#: dbaccess/uiconfig/ui/postgrespage.ui:30
msgctxt "specialpostgrespage|header"
msgid "Set up connection to a PostgreSQL database"
msgstr ""
+#. ux2MJ
+#: dbaccess/uiconfig/ui/postgrespage.ui:45
+msgctxt "postgrespage|helpLabel"
+msgid "Please enter the required information to connect to a PostgreSQL database, either by entering the host name, port number and server, or by entering the connection string."
+msgstr ""
+
#. cwtYL
-#: dbaccess/uiconfig/ui/postgrespage.ui:46
+#: dbaccess/uiconfig/ui/postgrespage.ui:52
msgctxt "specialpostgrespage|helpLabel"
msgid "Please enter the required information to connect to a PostgreSQL database. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
+#. XWvWU
+#: dbaccess/uiconfig/ui/postgrespage.ui:67
+msgctxt "postgrespage|helpSupport"
+msgid "Please contact your system administrator if you are unsure"
+msgstr ""
+
#. EJzdP
-#: dbaccess/uiconfig/ui/postgrespage.ui:74
+#: dbaccess/uiconfig/ui/postgrespage.ui:89
msgctxt "specialpostgrespage|dbNameLabel"
msgid "_Database name:"
msgstr "Адырқәа рбаза ахьӡ:"
#. P2FVr
-#: dbaccess/uiconfig/ui/postgrespage.ui:88
+#: dbaccess/uiconfig/ui/postgrespage.ui:103
msgctxt "specialpostgrespage|hostNameLabel"
msgid "_Server:"
msgstr "Асервер:"
#. MgpLR
-#: dbaccess/uiconfig/ui/postgrespage.ui:102
+#: dbaccess/uiconfig/ui/postgrespage.ui:117
msgctxt "specialpostgrespage|portNumLabel"
msgid "_Port number:"
msgstr "Апорт:"
+#. D6Ey2
+#: dbaccess/uiconfig/ui/postgrespage.ui:136
+msgctxt "postgrespage|extended_tip|dbNameEntry"
+msgid "Enter the name of the database."
+msgstr ""
+
+#. LC4Q7
+#: dbaccess/uiconfig/ui/postgrespage.ui:154
+msgctxt "postgrespage|extended_tip|hostNameEntry"
+msgid "Enter the server url of the database. "
+msgstr ""
+
+#. DT5z8
+#: dbaccess/uiconfig/ui/postgrespage.ui:179
+msgctxt "postgrespage|extended_tip|portNumEntry"
+msgid "Enter the port number of the DBMS service. Default for PostgreSQL is 5432."
+msgstr ""
+
#. oa9jC
-#: dbaccess/uiconfig/ui/postgrespage.ui:163
+#: dbaccess/uiconfig/ui/postgrespage.ui:193
msgctxt "specialpostgrespage|portNumDefLabel"
msgid "Default: 5432"
msgstr "Ишыҟоу еиԥш: 5432"
-#. KvN6B
-#: dbaccess/uiconfig/ui/postgrespage.ui:198
+#. 7hasQ
+#: dbaccess/uiconfig/ui/postgrespage.ui:228
msgctxt "specialpostgrespage|connectionStringLabel"
-msgid "And/OR Enter the DBMS/driver-specific connection string here"
+msgid "Alternatively, enter the driver-specific connection string here"
+msgstr ""
+
+#. EoCp5
+#: dbaccess/uiconfig/ui/postgrespage.ui:252
+msgctxt "postgrespage|extended_tip|browseurl"
+msgid "Enter the complete connector URL to access the PostGreSQL DBMS service. The connector URL is in the form \"postgresql://myHost:port/MyDatabase\"."
msgstr ""
#. 9sAsA
diff --git a/source/ab/desktop/messages.po b/source/ab/desktop/messages.po
index f4a3e1a1ec4..60402c58ba7 100644
--- a/source/ab/desktop/messages.po
+++ b/source/ab/desktop/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: 2023-03-02 11:50+0100\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-07-19 00:34+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1535974803.000000\n"
#. v2iwK
@@ -622,26 +622,32 @@ msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
msgid "The configuration service is not available."
msgstr ""
-#. wbj4W
+#. BYShb
#: desktop/inc/strings.hrc:166
+msgctxt "STR_BOOTSTRAP_ERR_2NDOFFICE_WITHCAT"
+msgid "There is already another %PRODUCTNAME instance running. Please close all %PRODUCTNAME processes before running with the '--cat' or '--script-cat' option."
+msgstr ""
+
+#. wbj4W
+#: desktop/inc/strings.hrc:167
msgctxt "STR_ASK_START_SETUP_MANUALLY"
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr ""
#. d3or5
-#: desktop/inc/strings.hrc:167
+#: desktop/inc/strings.hrc:168
msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
msgid "A general error occurred while accessing your central configuration. "
msgstr ""
#. zBSDM
-#: desktop/inc/strings.hrc:168
+#: desktop/inc/strings.hrc:169
msgctxt "STR_LO_MUST_BE_RESTARTED"
msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
msgstr ""
#. NBTfi
-#: desktop/inc/strings.hrc:169
+#: desktop/inc/strings.hrc:170
msgctxt "STR_QUERY_USERDATALOCKED"
msgid ""
"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
@@ -651,25 +657,25 @@ msgid ""
msgstr ""
#. EB6Yf
-#: desktop/inc/strings.hrc:170
+#: desktop/inc/strings.hrc:171
msgctxt "STR_TITLE_USERDATALOCKED"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. GiCJZ
-#: desktop/inc/strings.hrc:171
+#: desktop/inc/strings.hrc:172
msgctxt "STR_ERR_PRINTDISABLED"
msgid "Printing is disabled. No documents can be printed."
msgstr "Акьыԥхьра аҿыхуп. Адокументқәа ркьыԥхьра залшом."
#. VxBTE
-#: desktop/inc/strings.hrc:172
+#: desktop/inc/strings.hrc:173
msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
msgid "The path manager is not available.\n"
msgstr ""
#. Cy4Wz
-#: desktop/inc/strings.hrc:173
+#: desktop/inc/strings.hrc:174
msgctxt "STR_BOOTSTRAP_ERR_NOTENOUGHDISKSPACE"
msgid ""
"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
@@ -677,7 +683,7 @@ msgid ""
msgstr ""
#. 2o5XG
-#: desktop/inc/strings.hrc:174
+#: desktop/inc/strings.hrc:175
msgctxt "STR_BOOTSTRAP_ERR_NOACCESSRIGHTS"
msgid ""
"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
@@ -685,61 +691,61 @@ msgid ""
msgstr ""
#. uigQN
-#: desktop/inc/strings.hrc:176
+#: desktop/inc/strings.hrc:177
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
msgid "Extension Software License Agreement of $NAME:"
msgstr ""
#. DEkAo
-#: desktop/inc/strings.hrc:177
+#: desktop/inc/strings.hrc:178
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
msgstr ""
#. wANiC
-#: desktop/inc/strings.hrc:181
+#: desktop/inc/strings.hrc:182
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[Иҭажәгал «yes» ма «no»]:"
#. wEFn2
-#: desktop/inc/strings.hrc:182
+#: desktop/inc/strings.hrc:183
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr ""
#. A9CdG
-#: desktop/inc/strings.hrc:183
+#: desktop/inc/strings.hrc:184
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
msgid "YES"
msgstr "YES"
#. HLETc
-#: desktop/inc/strings.hrc:184
+#: desktop/inc/strings.hrc:185
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
msgid "Y"
msgstr "Y"
#. SQ6jd
-#: desktop/inc/strings.hrc:185
+#: desktop/inc/strings.hrc:186
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
msgid "NO"
msgstr "NO"
#. 6LgGA
-#: desktop/inc/strings.hrc:186
+#: desktop/inc/strings.hrc:187
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
msgid "N"
msgstr "N"
#. aCY73
-#: desktop/inc/strings.hrc:187
+#: desktop/inc/strings.hrc:188
msgctxt "RID_STR_CONCURRENTINSTANCE"
msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:"
msgstr ""
#. MLhHo
-#: desktop/inc/strings.hrc:189
+#: desktop/inc/strings.hrc:190
msgctxt "RID_STR_UNOPKG_ERROR"
msgid "ERROR: "
msgstr "ERROR: "
diff --git a/source/ab/filter/messages.po b/source/ab/filter/messages.po
index 8e09e31ab41..8f5904ae458 100644
--- a/source/ab/filter/messages.po
+++ b/source/ab/filter/messages.po
@@ -4,7 +4,7 @@ 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: 2023-05-10 12:32+0200\n"
-"PO-Revision-Date: 2023-07-17 05:35+0000\n"
+"PO-Revision-Date: 2023-09-09 01:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: Weblate 4.18.2\n"
"X-POOTLE-MTIME: 1516028971.000000\n"
#. 5AQgJ
@@ -301,15 +301,15 @@ msgstr[1] ""
#: filter/inc/strings.hrc:80
msgctxt "STR_PDFUA_IGNORE"
msgid "Continue"
-msgstr ""
+msgstr "Иацҵатәуп"
#. PcZQn
#: filter/inc/strings.hrc:81
msgctxt "STR_PDFUA_INVESTIGATE"
msgid "Investigate issue"
msgid_plural "Investigate issues"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Апроблема ҭҵаатәуп"
+msgstr[1] "Апроблемақәа ҭҵаатәуп"
#. eNaMA
#. Progress bar status indicator when importing or exporting
@@ -585,7 +585,7 @@ msgstr "Атекст:"
#: filter/uiconfig/ui/pdfgeneralpage.ui:458
msgctxt "pdfgeneralpage|label3"
msgid "Watermark"
-msgstr ""
+msgstr "Аӡтәы дырга"
#. 2hSjJ
#: filter/uiconfig/ui/pdfgeneralpage.ui:500
@@ -633,7 +633,7 @@ msgstr "Иаԥҵатәуп PDF аформа"
#: filter/uiconfig/ui/pdfgeneralpage.ui:546
msgctxt "pdfgeneralpage|forms|tooltip_text"
msgid "Creates a PDF with fields that can be filled out"
-msgstr ""
+msgstr "Ахарҭәааразы аҭакырақәа зҵазкуа PDF аԥнаҵоит"
#. hmxuq
#: filter/uiconfig/ui/pdfgeneralpage.ui:552
@@ -693,7 +693,7 @@ msgstr "Ашьҭра аформат:"
#: filter/uiconfig/ui/pdfgeneralpage.ui:657
msgctxt "pdfgeneralpage|pdfa"
msgid "Archival (P_DF/A, ISO 19005)"
-msgstr ""
+msgstr "Архивтә (P_DF/A, ISO 19005)"
#. qQjPA
#: filter/uiconfig/ui/pdfgeneralpage.ui:661
@@ -1155,7 +1155,7 @@ msgstr "Адаҟьақәа рҭаргылареи, раныхреи рыргье
#: filter/uiconfig/ui/pdfsecuritypage.ui:416
msgctxt "pdfsecuritypage|extended_tip|changeinsdel"
msgid "Only inserting, deleting, and rotating pages is permitted."
-msgstr ""
+msgstr "Изинуп аҭаргылара, аныхра, адаҟьақәа рыргьежьра мацара."
#. dAmDo
#: filter/uiconfig/ui/pdfsecuritypage.ui:427
@@ -1317,7 +1317,7 @@ msgstr "Амзыз:"
#: filter/uiconfig/ui/pdfsignpage.ui:268
msgctxt "pdfsignpage|label15"
msgid "Time Stamp Authority:"
-msgstr ""
+msgstr "Аамҭа азгәаҭарақәа рхыҵхырҭа:"
#. YeAiB
#: filter/uiconfig/ui/pdfsignpage.ui:290
@@ -1437,7 +1437,7 @@ msgstr ""
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:262
msgctxt "pdfuserinterfacepage|label3"
msgid "Transitions"
-msgstr ""
+msgstr "Амҩахыҵырҭақәа"
#. sUC8i
#: filter/uiconfig/ui/pdfuserinterfacepage.ui:291
@@ -1569,7 +1569,7 @@ msgstr ""
#: filter/uiconfig/ui/pdfviewpage.ui:245
msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
-msgstr ""
+msgstr "Иҭагӡатәуп иаабо"
#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
@@ -2001,7 +2001,7 @@ msgstr "Иҭажәгал азгәаҭа (ихымԥадатәиӡам)."
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:206
msgctxt "xmlfiltertabpagegeneral|extended_tip|XmlFilterTabPageGeneral"
msgid "Enter or edit general information for an XML filter."
-msgstr ""
+msgstr "Иҭажәгал ма ишәыԥсах XMLафильтр иазку азеиԥш информациа."
#. FhD2n
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:24
@@ -2097,7 +2097,7 @@ msgstr ""
#: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:244
msgctxt "xmlfiltertabpagetransformation|extended_tip|XmlFilterTabPageTransformation"
msgid "Enter or edit file information for an XML filter."
-msgstr ""
+msgstr "Иҭажәгал ма ишәыԥсах XML афильтр афаил иазку аинформациа."
#. MCfGg
#: filter/uiconfig/ui/xsltfilterdialog.ui:8
diff --git a/source/ab/filter/source/config/fragments/filters.po b/source/ab/filter/source/config/fragments/filters.po
index 8a9fe058248..36946d26285 100644
--- a/source/ab/filter/source/config/fragments/filters.po
+++ b/source/ab/filter/source/config/fragments/filters.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: 2023-03-06 17:53+0100\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-05-31 06:34+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1532251331.000000\n"
#. FR4Ff
@@ -26,6 +26,16 @@ msgctxt ""
msgid "ADO Rowset XML"
msgstr "Ацәаҳәақәа реизак ADO XML"
+#. zFQ4r
+#: APNG___Animated_Portable_Network_Graphic.xcu
+msgctxt ""
+"APNG___Animated_Portable_Network_Graphic.xcu\n"
+"APNG - Animated Portable Network Graphic\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. bjvBT
#: AbiWord.xcu
msgctxt ""
@@ -1656,6 +1666,16 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 асахьа ашаблон"
+#. mZCVu
+#: draw_apng_Export.xcu
+msgctxt ""
+"draw_apng_Export.xcu\n"
+"draw_apng_Export\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. m4Wdq
#: draw_bmp_Export.xcu
msgctxt ""
diff --git a/source/ab/filter/source/config/fragments/internalgraphicfilters.po b/source/ab/filter/source/config/fragments/internalgraphicfilters.po
index 9dba383c0f7..99aa06aaa6e 100644
--- a/source/ab/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ab/filter/source/config/fragments/internalgraphicfilters.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: 2022-10-10 13:35+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-06-18 14:27+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsinternalgraphicfilters/ab/>\n"
@@ -13,9 +13,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1514139166.000000\n"
+#. V9faX
+#: apng_Export.xcu
+msgctxt ""
+"apng_Export.xcu\n"
+"apng_Export\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. s5fY3
#: bmp_Export.xcu
msgctxt ""
diff --git a/source/ab/framework/messages.po b/source/ab/framework/messages.po
index 04605b4706b..aacaaad2ce7 100644
--- a/source/ab/framework/messages.po
+++ b/source/ab/framework/messages.po
@@ -4,7 +4,7 @@ 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: 2023-03-02 11:50+0100\n"
-"PO-Revision-Date: 2023-07-17 05:35+0000\n"
+"PO-Revision-Date: 2023-09-11 04:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: Weblate 4.18.2\n"
"X-POOTLE-MTIME: 1514827617.000000\n"
#. 5dTDC
@@ -110,7 +110,7 @@ msgstr " (инахараны)"
#: framework/inc/strings.hrc:39
msgctxt "STR_EMDASH_SEPARATOR"
msgid " — "
-msgstr ""
+msgstr " — "
#. JFH6k
#: framework/inc/strings.hrc:40
@@ -226,49 +226,49 @@ msgstr ""
#: framework/inc/strings.hrc:58
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
-msgstr ""
+msgstr "Атксттә ҭакыра"
#. CBmAL
#: framework/inc/strings.hrc:59
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
-msgstr ""
+msgstr "Азгәаҭага"
#. xwuJF
#: framework/inc/strings.hrc:60
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
-msgstr ""
+msgstr "Асиа зцу аҭакыра"
#. WiNUf
#: framework/inc/strings.hrc:61
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
-msgstr ""
+msgstr "Асиа"
#. a7gAj
#: framework/inc/strings.hrc:62
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
-msgstr ""
+msgstr "Арыцхә аҭакыра"
#. EaBTj
#: framework/inc/strings.hrc:63
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
-msgstr ""
+msgstr "Аамҭа аҭакыра"
#. DWfsm
#: framework/inc/strings.hrc:64
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
-msgstr ""
+msgstr "Ахыԥхьаӡаратә ҭакыра"
#. TYjnr
#: framework/inc/strings.hrc:65
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
-msgstr ""
+msgstr "Авалиута аҭакыра"
#. B6MEP
#: framework/inc/strings.hrc:66
@@ -280,37 +280,37 @@ msgstr ""
#: framework/inc/strings.hrc:67
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
-msgstr ""
+msgstr "Иформатрку аҭакыра"
#. V4iMu
#: framework/inc/strings.hrc:69
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
-msgstr ""
+msgstr "Акнопка"
#. TreFC
#: framework/inc/strings.hrc:70
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
-msgstr ""
+msgstr "Аиҭарсга"
#. NFysA
#: framework/inc/strings.hrc:71
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
-msgstr ""
+msgstr "Аҭыԥдырга"
#. E5mMK
#: framework/inc/strings.hrc:72
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
-msgstr ""
+msgstr "Агәыԥ"
#. 5474w
#: framework/inc/strings.hrc:73
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
-msgstr ""
+msgstr "Аграфикатә кнопка"
#. qT2Ed
#: framework/inc/strings.hrc:74
@@ -322,7 +322,7 @@ msgstr ""
#: framework/inc/strings.hrc:75
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
-msgstr ""
+msgstr "Афаил алхра"
#. 3SUEn
#: framework/inc/strings.hrc:76
@@ -334,13 +334,13 @@ msgstr ""
#: framework/inc/strings.hrc:77
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
-msgstr ""
+msgstr "Аԥхьаӡага"
#. eGgm4
#: framework/inc/strings.hrc:78
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
-msgstr ""
+msgstr "Анавигациа апанель"
#. wH3TZ
msgctxt "stock"
diff --git a/source/ab/nlpsolver/src/locale.po b/source/ab/nlpsolver/src/locale.po
index 356bf73fbb7..e578190dd2c 100644
--- a/source/ab/nlpsolver/src/locale.po
+++ b/source/ab/nlpsolver/src/locale.po
@@ -4,7 +4,7 @@ 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: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2023-05-09 15:34+0000\n"
+"PO-Revision-Date: 2023-09-09 01:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/nlpsolversrclocale/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: Weblate 4.18.2\n"
"X-POOTLE-MTIME: 1514749176.000000\n"
#. sv3GB
@@ -77,7 +77,7 @@ msgctxt ""
"NLPSolverCommon.Properties.UseACRComparator\n"
"property.text"
msgid "Use ACR Comparator (instead of BCH)"
-msgstr ""
+msgstr "Ихархәатәуп аиҿырԥшра ACR (BCH аҭыԥан)"
#. h9GSv
#: NLPSolverCommon_en_US.properties
@@ -86,7 +86,7 @@ msgctxt ""
"NLPSolverCommon.Properties.UseRandomStartingPoint\n"
"property.text"
msgid "Use Random starting point"
-msgstr ""
+msgstr "Ихархәатәуп иарбанзаалакь ахлагаратә кәаԥ"
#. r8nEN
#: NLPSolverCommon_en_US.properties
@@ -122,7 +122,7 @@ msgctxt ""
"NLPSolverCommon.Properties.EnhancedSolverStatus\n"
"property.text"
msgid "Show enhanced solver status"
-msgstr ""
+msgstr "Иаарԥшлатәуп ирҭбаау аҭагылазаашьа"
#. BERoy
#: NLPSolverCommon_en_US.properties
@@ -140,7 +140,7 @@ msgctxt ""
"NLPSolverCommon.Properties.DEFactorMin\n"
"property.text"
msgid "DE: Min Scaling Factor (0-1.2)"
-msgstr ""
+msgstr "DE: Амасштабркра акоеффициент min (0-1,2)"
#. 3DGzp
#: NLPSolverCommon_en_US.properties
@@ -149,7 +149,7 @@ msgctxt ""
"NLPSolverCommon.Properties.DEFactorMax\n"
"property.text"
msgid "DE: Max Scaling Factor (0-1.2)"
-msgstr ""
+msgstr "DE: Амасштабркра акоеффициент max (0-1,2)"
#. VF6Xw
#: NLPSolverCommon_en_US.properties
@@ -275,7 +275,7 @@ msgctxt ""
"NLPSolverStatusDialog.Message.StopIteration\n"
"property.text"
msgid "Maximum iterations reached."
-msgstr ""
+msgstr "Инаӡоуп аитерациа амаксимум аҟынӡа."
#. LgEvY
#: NLPSolverStatusDialog_en_US.properties
@@ -293,7 +293,7 @@ msgctxt ""
"NLPSolverStatusDialog.Message.StopUser\n"
"property.text"
msgid "Process stopped due to user interruption."
-msgstr ""
+msgstr "Апроцесс еиԥырҟьоуп ахархәаҩ ибзоурала."
#. 9fQ2d
#: NLPSolverStatusDialog_en_US.properties
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 47739924f8e..e94649c0f83 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.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: 2023-06-19 12:46+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-17 05:35+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022330.000000\n"
#. W5ukN
@@ -24910,16 +24910,6 @@ msgctxt ""
msgid "Toggle Print Preview"
msgstr "Еиҭарстәуп акьыԥхьра ахәаԥшра"
-#. RmzBC
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:PrintPreview\n"
-"PopupLabel\n"
-"value.text"
-msgid "Close Preview"
-msgstr "Иарктәуп ахәаԥшра"
-
#. F4kBv
#: GenericCommands.xcu
msgctxt ""
@@ -26550,6 +26540,16 @@ msgctxt ""
msgid "Insert Non-br~eaking Hyphen"
msgstr ""
+#. vZYBF
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertHardHyphen\n"
+"ContextLabel\n"
+"value.text"
+msgid "Non-br~eaking Hyphen"
+msgstr ""
+
#. EGU5u
#: GenericCommands.xcu
msgctxt ""
@@ -26560,14 +26560,34 @@ msgctxt ""
msgid "Insert S~oft Hyphen"
msgstr ""
-#. Qnw5x
+#. zBUbq
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertSoftHyphen\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~oft Hyphen"
+msgstr ""
+
+#. YjRxG
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertNonBreakingSpace\n"
"Label\n"
"value.text"
-msgid "Insert ~Non-breaking Space"
+msgid "Insert ~No-break Space"
+msgstr ""
+
+#. fvM74
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertNonBreakingSpace\n"
+"ContextLabel\n"
+"value.text"
+msgid "~No-break Space"
msgstr ""
#. KZXXb
@@ -26580,44 +26600,94 @@ msgctxt ""
msgid "Insert N~arrow No-break Space"
msgstr ""
-#. txaEk
+#. A2bbg
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertNarrowNobreakSpace\n"
+"ContextLabel\n"
+"value.text"
+msgid "N~arrow No-break Space"
+msgstr ""
+
+#. dzpbk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertZWSP\n"
"Label\n"
"value.text"
-msgid "No-~width Optional Break"
+msgid "Insert Zero ~Width Space"
+msgstr ""
+
+#. hctRg
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertZWSP\n"
+"ContextLabel\n"
+"value.text"
+msgid "Zero ~Width Space"
msgstr ""
-#. Gjgjy
+#. jzvxv
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
+msgid "Insert Word ~Joiner"
+msgstr ""
+
+#. v8vDi
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
+"ContextLabel\n"
+"value.text"
msgid "Word ~Joiner"
-msgstr "Ажәақәа реиԥшьыга"
+msgstr ""
-#. UvwGS
+#. vqFmk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertLRM\n"
"Label\n"
"value.text"
-msgid "~Left-to-right Mark"
+msgid "Insert ~Left-to-Right Mark"
msgstr ""
-#. prtF2
+#. XPw5G
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertLRM\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Left-to-Right Mark"
+msgstr ""
+
+#. JPsHK
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertRLM\n"
"Label\n"
"value.text"
-msgid "~Right-to-left Mark"
+msgid "Insert ~Right-to-Left Mark"
+msgstr ""
+
+#. 2qBSw
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertRLM\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Right-to-Left Mark"
msgstr ""
#. o6CJp
@@ -30300,14 +30370,14 @@ msgctxt ""
msgid "Insert Table of Contents, Index or Bibliography"
msgstr ""
-#. uTYnH
+#. UEm4k
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertMultiIndex\n"
"ContextLabel\n"
"value.text"
-msgid "Table of Contents, ~Index or Bibliography..."
+msgid "Table of Contents, Index or Bibliography..."
msgstr ""
#. TuWK6
@@ -30980,6 +31050,16 @@ msgctxt ""
msgid "Properties"
msgstr "Аҷыдаҟазшьақәа"
+#. ADmHG
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ContentControlProperties\n"
+"PopupLabel\n"
+"value.text"
+msgid "Content Control Properties"
+msgstr ""
+
#. npNpZ
#: WriterCommands.xcu
msgctxt ""
@@ -32613,15 +32693,15 @@ msgctxt ""
msgid "~Table Properties..."
msgstr "Атаблица аҷыдаҟазшьақәа..."
-#. bBVxV
+#. mmpui
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FootnoteDialog\n"
"Label\n"
"value.text"
-msgid "~Footnotes and Endnotes..."
-msgstr "Албаагақәа..."
+msgid "~Footnote/Endnote Settings..."
+msgstr ""
#. eE5gP
#: WriterCommands.xcu
@@ -36837,6 +36917,16 @@ msgctxt ""
msgid "Open the Style Inspector Deck"
msgstr "Иаарттәуп апанель «Астильқәа ринспектор»"
+#. BChtS
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SidebarDeck.SwManageChangesDeck\n"
+"Label\n"
+"value.text"
+msgid "Open the Manage Changes Deck"
+msgstr ""
+
#. nDjPh
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index fe6b4b81eef..18fe7b9c0a4 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-09-02 20:22+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022333.000000\n"
#. kBovX
@@ -25315,904 +25315,904 @@ msgid "No solution was found."
msgstr ""
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2991
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2970
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr ""
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2989
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3065
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3044
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4697
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4803
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5371
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5350
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5832
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5958
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5937
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7030
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7009
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7114
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7093
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8391
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8370
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr ""
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8421
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8548
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8527
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9351
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9330
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9436
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9415
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10246
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10225
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10331
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10310
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11441
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11420
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11562
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11541
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12744
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12723
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12851
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12830
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13309
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13288
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13600
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13579
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13707
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13686
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14267
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14246
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14372
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14351
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14754
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14733
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14837
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14816
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15645
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15624
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15729
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15708
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15786
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15765
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15839
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17049
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17028
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17133
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17112
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
#. AJr3Y
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3025
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3004
msgctxt "notebookbar_compact|FileLabel"
msgid "_File"
msgstr ""
#. PU9ct
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3074
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3053
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
#. UWfVg
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3538
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6106
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3517
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6085
msgctxt "notebookbar_compact|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
#. JDRKC
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4580
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4559
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
msgstr ""
#. Svdz9
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4632
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4611
msgctxt "notebookbar_compact|CalcLabel"
msgid "~Home"
msgstr ""
#. ecBqZ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5128
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5107
msgctxt "notebookbar_compact|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
#. zveKA
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5591
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5570
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
#. CDXv3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5646
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5625
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
#. EvytN
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6266
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6245
msgctxt "notebookbar_compact|PageMenuButton"
msgid "_Layout"
msgstr ""
#. TbQMa
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6318
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6297
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
#. QqjZP
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7153
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7132
msgctxt "notebookbar_compact|Statistics"
msgid "_Statistics"
msgstr ""
#. GFZNz
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7218
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7197
msgctxt "notebookbar_compact|DataMenuButton"
msgid "_Data"
msgstr ""
#. TCt7E
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7269
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7248
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
msgstr ""
#. jYD7j
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7951
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7930
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
#. Lbj5B
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7982
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
#. 35kA2
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8670
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8649
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
#. ZGh8C
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8722
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8701
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10036
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10015
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10088
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10067
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11458
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11437
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11510
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11489
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12461
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12440
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12513
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12492
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13213
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13192
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13266
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13245
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13825
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13804
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13877
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13856
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15191
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15170
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15243
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15222
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15322
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15301
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15380
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15359
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16381
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16360
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16433
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16412
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
#. LL2dj
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3298
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3277
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_Афаил"
#. MR7ZB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3406
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3385
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Ариашара"
#. AXNcR
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3522
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5063
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3501
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5042
msgctxt "notebookbar_groupedbar_compact|paragraphstyleb"
msgid "St_yles"
msgstr "Астильқәа"
#. scY66
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3673
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3652
msgctxt "notebookbar_groupedbar_compact|formatb"
msgid "F_ont"
msgstr "Ашрифт"
#. LFB3L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3899
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3878
msgctxt "notebookbar_groupedbar_compact|paragraphb"
msgid "_Paragraph"
msgstr ""
#. UnsAB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4297
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4276
msgctxt "notebookbar_groupedbar_compact|numberb"
msgid "_Number"
msgstr "Ахыԥхьаӡара"
#. hBvBa
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4408
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4387
#, fuzzy
msgctxt "notebookbar_groupedbar_compact|datab"
msgid "_Data"
msgstr "Адырқәа"
#. CMGpS
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4519
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4498
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
msgstr "Иҭаргылатәуп"
#. 5wZbP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4630
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4609
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr ""
#. Uyv2y
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4741
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4720
#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
msgstr "Ахәаԥшра"
#. bgPuY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4850
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11195
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4829
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11174
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. 5fAr4
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4942
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4921
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. T2jYU
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5214
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5193
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
msgstr ""
#. jZETF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5438
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5417
msgctxt "notebookbar_groupedbar_compact|paragraphS"
msgid "_Paragraph"
msgstr "Абзац"
#. 5Wp5j
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5687
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5666
#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewS"
msgid "_View"
msgstr "Ахәаԥшра"
#. DC7Hv
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5822
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5801
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr ""
#. ncAKi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6247
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7786
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8827
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9430
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10239
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6226
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7765
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8806
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9409
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10218
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr ""
#. 8pLR3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6522
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6501
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr ""
#. NM63T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6769
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10487
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6748
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10466
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Агәыԥ"
#. cbMTW
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6892
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6871
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr ""
#. BTzDn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7120
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7099
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr ""
#. PLqyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7231
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8277
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9075
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9679
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10599
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7210
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8256
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9054
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9658
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10578
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr ""
#. K6izG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7361
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7340
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
msgstr ""
#. SEFWn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8013
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7992
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
msgstr ""
#. 5a4zV
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8402
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8381
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr ""
#. Ghwp6
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9201
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9180
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr ""
#. nyHDP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9814
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9793
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Edit"
msgstr ""
#. PhCFL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11066
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11045
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
msgstr ""
#. RC7F3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11950
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11929
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
msgstr ""
#. mBSfG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2601
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2580
msgctxt "notebookbar_groupedbar_full|defaultD"
msgid "Default"
msgstr "Астандарт"
#. Z7t2R
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2615
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2594
msgctxt "notebookbar_groupedbar_full|Accent1"
msgid "Accent 1"
msgstr "Акцент 1"
#. xeEFE
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2623
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2602
msgctxt "notebookbar_groupedbar_full|Accent2"
msgid "Accent 2"
msgstr "Акцент 2"
#. G3TRo
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2631
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2610
msgctxt "notebookbar_groupedbar_full|Accent3"
msgid "Accent 3"
msgstr "Акцент 3"
#. QcUKG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2645
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2624
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
msgstr ""
#. 6Ej4G
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2632
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
msgstr ""
#. sqE94
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2667
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2646
msgctxt "notebookbar_groupedbar_full|bad"
msgid "Bad"
msgstr ""
#. 3ibZN
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2654
msgctxt "notebookbar_groupedbar_full|good"
msgid "Good"
msgstr ""
#. DGBbw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2683
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2662
msgctxt "notebookbar_groupedbar_full|neutral"
msgid "Neutral"
msgstr ""
#. keb9M
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2691
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2670
msgctxt "notebookbar_groupedbar_full|error"
msgid "Error"
msgstr "Агха"
#. WtFbH
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2699
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2678
msgctxt "notebookbar_groupedbar_full|warning"
msgid "Warning"
msgstr "Агәаҽанҵара"
#. t9EbD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2713
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2692
msgctxt "notebookbar_groupedbar_full|footnote"
msgid "Footnote"
msgstr ""
#. FFrSw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2721
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2700
msgctxt "notebookbar_groupedbar_full|note"
msgid "Note"
msgstr "Азгәаҭа"
#. EsADr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3211
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3190
msgctxt "notebookbar_groupedbar_full|menub"
msgid "_Menu"
msgstr ""
#. Ch63h
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3264
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3243
msgctxt "notebookbar_groupedbar_full|toolsb"
msgid "_Tools"
msgstr ""
#. kdH4L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3318
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3297
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
msgstr "Аилыркаага"
#. bkg23
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3425
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3404
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr "_Афаил"
#. aqbEs
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3658
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3637
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr "_Ариашара"
#. HFC9U
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3851
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3830
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr "Астильқәа"
#. VFtWK
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4115
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4094
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ont"
msgstr "Ашрифт"
#. 9HzEG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4352
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4331
msgctxt "notebookbar_groupedbar_full|numberb"
msgid "_Number"
msgstr "Ахыԥхьаӡара"
#. F7vQ2
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4560
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4539
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Alignment"
msgstr "Аиҟаратәра"
#. QnhiG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4788
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4767
msgctxt "notebookbar_groupedbar_full|cellb"
msgid "_Cells"
msgstr "Абларҭақәа"
#. rrpkZ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4946
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4925
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr "Иҭаргылатәуп"
#. NsDSM
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5124
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5103
#, fuzzy
msgctxt "notebookbar_groupedbar_full|datab"
msgid "_Data"
msgstr "Адырқәа"
#. gQQfL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5292
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5271
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr ""
#. BHDdD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5460
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5439
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr "Ахәаԥшра"
#. ZJufp
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5680
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5659
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5995
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5974
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr ""
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6143
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6122
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Аԥштәы"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6386
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6365
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr ""
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6521
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6500
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Абызшәа"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6745
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6724
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6953
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6932
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Акомментариқәа"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7152
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7131
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7350
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7329
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Ахәаԥшра"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7779
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7758
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8136
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8115
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Ариашара"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8464
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8443
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8627
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8606
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Ахәаԥшра"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8825
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8804
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Агәыԥ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8971
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8950
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9270
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9249
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Ашрифт"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9523
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9502
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Аиҟаратәра"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9721
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9700
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Ахәаԥшра"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9872
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9851
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Иҭаргылатәуп"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10015
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9994
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Амедиа"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10245
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10224
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Афреим"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10659
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10638
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr ""
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10821
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10800
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr ""
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11019
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10998
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
@@ -26970,31 +26970,55 @@ msgid "The Changes dialog specifies various options for highlighting recorded ch
msgstr ""
#. CrAWh
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:36
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:33
msgctxt "optcompatibilitypage|label2"
msgid "Select desired _key binding type. Changing the key binding type may overwrite some of the existing key bindings."
msgstr ""
#. CER9u
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:56
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:53
msgctxt "optcompatibilitypage|keybindings"
msgid "Default"
msgstr "Астандарт"
#. 3mLBb
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:57
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:54
msgctxt "optcompatibilitypage|keybindings"
msgid "OpenOffice.org legacy"
msgstr "OpenOffice.org аҟнеиԥш"
#. g9ysB
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:71
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:68
msgctxt "optcompatibilitypage|label1"
msgid "Key Bindings"
msgstr ""
+#. S4zkN
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:101
+msgctxt "optcompatibilitypage|cellLinkCB"
+msgid "Insert _hyperlink for the cell, not for the text in the cell."
+msgstr ""
+
+#. EwAmb
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:105
+msgctxt "optcompatibilitypage|cellLinkCB|tooltip_text"
+msgid "By default, Excel allows only one hyperlink per cell. (Works only if Excel file format is used.)"
+msgstr ""
+
+#. EiGMR
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:110
+msgctxt "extended_tip|cellLinkCB"
+msgid "%PRODUCTNAME can insert multiple hyperlinks in a cell as text fields, but multiple hyperlinks in a cell cannot be saved to Excel file formats. This option prevents inserting multiple hyperlinks in a cell when Excel files are edited, in order to be interoperable with Excel."
+msgstr ""
+
+#. BJuZV
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:126
+msgctxt "optcompatibilitypage|label3"
+msgid "Hyperlinks"
+msgstr ""
+
#. XXuHE
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:86
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:141
msgctxt "extended_tip|OptCompatibilityPage"
msgid "Defines compatibility options for Calc."
msgstr ""
@@ -32519,13 +32543,19 @@ msgid "Select the Locale to Use for Import"
msgstr ""
#. iRYr7
-#: sc/uiconfig/scalc/ui/textimportoptions.ui:169
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:176
msgctxt "textimportoptions|convertdata"
msgid "Detect special numbers (such as dates)"
msgstr ""
+#. y2ucV
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:192
+msgctxt "textimportoptions|convertdata"
+msgid "Detect numbers with _scientific notation"
+msgstr ""
+
#. 6aP7U
-#: sc/uiconfig/scalc/ui/textimportoptions.ui:183
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:212
msgctxt "textimportoptions|label3"
msgid "Options"
msgstr "Апараметрқәа"
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index ae43aee053d..6cb7deffaa6 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,8 +3,8 @@ 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: 2023-05-31 16:29+0200\n"
-"PO-Revision-Date: 2023-07-19 00:34+0000\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
+"PO-Revision-Date: 2023-09-09 01:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561456140.000000\n"
#. WDjkB
@@ -437,242 +437,224 @@ msgctxt "STR_UNDO_REPLACE"
msgid "Replace"
msgstr "Иԥсахтәуп"
-#. AHC3G
-#: sd/inc/strings.hrc:32
-msgctxt "STR_NEXT_SLIDE"
-msgid "Next slide"
-msgstr "Анаҩстәи аслаид"
-
-#. 8cA5i
-#: sd/inc/strings.hrc:33
-msgctxt "STR_PREV_SLIDE"
-msgid "Previous slide"
-msgstr "Аԥхьатәи аслаид"
-
-#. A8tmu
-#: sd/inc/strings.hrc:34
-msgctxt "STR_MENU_SLIDE"
-msgid "Menu slide"
-msgstr "Аслаид амениу"
-
#. eh6CM
-#: sd/inc/strings.hrc:35
+#: sd/inc/strings.hrc:32
msgctxt "STR_UNDO_DRAGDROP"
msgid "Drag and Drop"
msgstr "Аиагара"
#. 3FHKw
-#: sd/inc/strings.hrc:36
+#: sd/inc/strings.hrc:33
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Иҭаргылатәуп асахьа"
#. 47BGD
-#: sd/inc/strings.hrc:37
+#: sd/inc/strings.hrc:34
msgctxt "STR_UNDO_BEZCLOSE"
msgid "Close Polygon"
msgstr "Еимагалатәуп акәакьрацәа"
#. ARAxt
-#: sd/inc/strings.hrc:38
+#: sd/inc/strings.hrc:35
msgctxt "STR_SLIDE_SORTER_MODE"
msgid "Slide Sorter"
msgstr "Аслаидқәа рсортга"
#. xpwgF
-#: sd/inc/strings.hrc:39
+#: sd/inc/strings.hrc:36
msgctxt "STR_NORMAL_MODE"
msgid "Normal"
msgstr "Инормалтәу"
#. DFBoe
-#: sd/inc/strings.hrc:40
+#: sd/inc/strings.hrc:37
msgctxt "STR_SLIDE_MASTER_MODE"
msgid "Master Slide"
msgstr "Аслаид-азҟаза"
#. qBuHh
-#: sd/inc/strings.hrc:41
+#: sd/inc/strings.hrc:38
msgctxt "STR_OUTLINE_MODE"
msgid "Outline"
msgstr "Аструктура"
#. kYbwc
-#: sd/inc/strings.hrc:42
+#: sd/inc/strings.hrc:39
msgctxt "STR_NOTES_MODE"
msgid "Notes"
msgstr "Азгәаҭақәа"
#. NJEio
-#: sd/inc/strings.hrc:43
+#: sd/inc/strings.hrc:40
msgctxt "STR_NOTES_MASTER_MODE"
msgid "Master Notes"
msgstr "Азгәаҭақәа рызҟаза"
#. tGt9g
-#: sd/inc/strings.hrc:44
+#: sd/inc/strings.hrc:41
msgctxt "STR_HANDOUT_MASTER_MODE"
msgid "Master Handout"
msgstr "Атезисқәа рызҟаза"
#. GtVe6
-#: sd/inc/strings.hrc:45
+#: sd/inc/strings.hrc:42
msgctxt "STR_AUTOLAYOUT_NONE"
msgid "Blank Slide"
msgstr "Иҭацәу аслаид"
#. o4jkH
-#: sd/inc/strings.hrc:46
+#: sd/inc/strings.hrc:43
msgctxt "STR_AUTOLAYOUT_ONLY_TITLE"
msgid "Title Only"
msgstr "Ахы амацара"
#. yEaXc
-#: sd/inc/strings.hrc:47
+#: sd/inc/strings.hrc:44
msgctxt "STR_AUTOLAYOUT_ONLY_TEXT"
msgid "Centered Text"
msgstr "Атекст ацентр ала"
#. vC7LB
-#: sd/inc/strings.hrc:48
+#: sd/inc/strings.hrc:45
msgctxt "STR_AUTOLAYOUT_TITLE"
msgid "Title Slide"
msgstr "Ахалагаратәи аслаид"
#. CZCWE
-#: sd/inc/strings.hrc:49
+#: sd/inc/strings.hrc:46
msgctxt "STR_AUTOLAYOUT_CONTENT"
msgid "Title, Content"
msgstr "Ахы, атекст"
#. D2n4r
-#: sd/inc/strings.hrc:50
+#: sd/inc/strings.hrc:47
msgctxt "STR_AUTOLAYOUT_2CONTENT"
msgid "Title and 2 Content"
msgstr "Ахы, атекст аблокқәа 2"
#. gJvEw
-#: sd/inc/strings.hrc:51
+#: sd/inc/strings.hrc:48
msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT"
msgid "Title, Content and 2 Content"
msgstr ""
#. BygEm
-#: sd/inc/strings.hrc:52
+#: sd/inc/strings.hrc:49
msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT"
msgid "Title, 2 Content and Content"
msgstr ""
#. e3iAd
-#: sd/inc/strings.hrc:53
+#: sd/inc/strings.hrc:50
msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT"
msgid "Title, 2 Content over Content"
msgstr ""
#. D9Ra9
-#: sd/inc/strings.hrc:54
+#: sd/inc/strings.hrc:51
msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT"
msgid "Title, Content over Content"
msgstr "Ахы, атекст атекст аҵаҟа"
#. jnnLj
-#: sd/inc/strings.hrc:55
+#: sd/inc/strings.hrc:52
msgctxt "STR_AUTOLAYOUT_4CONTENT"
msgid "Title, 4 Content"
msgstr "Ахы, атекст аблокқәа 4"
#. Bhnxh
-#: sd/inc/strings.hrc:56
+#: sd/inc/strings.hrc:53
msgctxt "STR_AUTOLAYOUT_6CONTENT"
msgid "Title, 6 Content"
msgstr "Ахы, атекст аблокқәа 6"
#. G9mLN
-#: sd/inc/strings.hrc:57
+#: sd/inc/strings.hrc:54
msgctxt "STR_AL_TITLE_VERT_OUTLINE"
msgid "Title, Vertical Text"
msgstr "Ахы, ивертикалу атекст"
#. GsGaq
-#: sd/inc/strings.hrc:58
+#: sd/inc/strings.hrc:55
msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART"
msgid "Title, Vertical Text, Clipart"
msgstr ""
#. QvDtk
-#: sd/inc/strings.hrc:59
+#: sd/inc/strings.hrc:56
msgctxt "STR_AL_VERT_TITLE_TEXT_CHART"
msgid "Vertical Title, Text, Chart"
msgstr "Ивертикалу ахы, атекст, адиаграмма"
#. bEiKk
-#: sd/inc/strings.hrc:60
+#: sd/inc/strings.hrc:57
msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE"
msgid "Vertical Title, Vertical Text"
msgstr "Ивертикалу ахы, ивертикалу атекст"
#. CAeFA
-#: sd/inc/strings.hrc:61
+#: sd/inc/strings.hrc:58
msgctxt "STR_AUTOLAYOUT_HANDOUT1"
msgid "One Slide"
msgstr "Аслаидқәа акы"
#. kGsfV
-#: sd/inc/strings.hrc:62
+#: sd/inc/strings.hrc:59
msgctxt "STR_AUTOLAYOUT_HANDOUT2"
msgid "Two Slides"
msgstr "Аслаидқәа ҩба"
#. P3K6D
-#: sd/inc/strings.hrc:63
+#: sd/inc/strings.hrc:60
msgctxt "STR_AUTOLAYOUT_HANDOUT3"
msgid "Three Slides"
msgstr "Аслаидқәа хԥа"
#. eMsDY
-#: sd/inc/strings.hrc:64
+#: sd/inc/strings.hrc:61
msgctxt "STR_AUTOLAYOUT_HANDOUT4"
msgid "Four Slides"
msgstr "Аслаидқәа ԥшьба"
#. 69B5i
-#: sd/inc/strings.hrc:65
+#: sd/inc/strings.hrc:62
msgctxt "STR_AUTOLAYOUT_HANDOUT6"
msgid "Six Slides"
msgstr "Аслаидқәа фба"
#. FeJFF
-#: sd/inc/strings.hrc:66
+#: sd/inc/strings.hrc:63
msgctxt "STR_AUTOLAYOUT_HANDOUT9"
msgid "Nine Slides"
msgstr "Аслаидқәа жәба"
#. khJZE
-#: sd/inc/strings.hrc:67
+#: sd/inc/strings.hrc:64
msgctxt "STR_AUTOLAYOUT_NOTES"
msgid "Notes"
msgstr "Азгәаҭақәа"
#. 4sRi2
-#: sd/inc/strings.hrc:68
+#: sd/inc/strings.hrc:65
msgctxt "STR_TRANSFORM"
msgid "Transform"
msgstr "Еиҭактәуп"
#. 3rF5y
-#: sd/inc/strings.hrc:69
+#: sd/inc/strings.hrc:66
msgctxt "STR_LINEEND"
msgid "Line Ends"
msgstr "Аҵәаӷәа анҵәамҭа"
#. qJLT9
-#: sd/inc/strings.hrc:70
+#: sd/inc/strings.hrc:67
msgctxt "STR_DESC_LINEEND"
msgid "Please enter a name for the new arrow style:"
msgstr "Иҭажәгал ахыц астиль ҿыц ахьӡ:"
#. 7y2Si
-#: sd/inc/strings.hrc:71
+#: sd/inc/strings.hrc:68
msgctxt "STR_WARN_NAME_DUPLICATE"
msgid ""
"The name chosen already exists. \n"
@@ -682,109 +664,109 @@ msgstr ""
"Иалышәх даҽа хьӡык."
#. arAaK
-#: sd/inc/strings.hrc:72
+#: sd/inc/strings.hrc:69
msgctxt "STR_UNDO_ANIMATION"
msgid "Animation parameters"
msgstr "Анимациа апараметрқәа"
#. DCRRn
-#: sd/inc/strings.hrc:73
+#: sd/inc/strings.hrc:70
msgctxt "STR_UNDO_COPYOBJECTS"
msgid "Duplicate"
msgstr "Адубликатқәа"
#. NaQdx
-#: sd/inc/strings.hrc:74
+#: sd/inc/strings.hrc:71
msgctxt "STR_TITLE_NAMEGROUP"
msgid "Name Object"
msgstr "Аобиект ахьӡ"
#. hBgQg
-#: sd/inc/strings.hrc:75
+#: sd/inc/strings.hrc:72
msgctxt "STR_DESC_NAMEGROUP"
msgid "Name"
msgstr "Иҭажәгал аобиект ахьӡ"
#. YSZad
-#: sd/inc/strings.hrc:76
+#: sd/inc/strings.hrc:73
msgctxt "STR_WARN_PAGE_EXISTS"
msgid "The slide name already exists or is invalid. Please enter another name."
msgstr "Аслаид ари аҩыза ахьӡ змоу ыҟоуп, ма ахьӡ иашаӡам. Иҭажәгал даҽа хьӡык."
#. P4bHX
-#: sd/inc/strings.hrc:77
+#: sd/inc/strings.hrc:74
msgctxt "STR_WARN_PAGE_EXISTS_DRAW"
msgid "The page name already exists or is invalid. Please enter another name."
msgstr "Ари аҩыза ахьӡ змоу адаҟьа ыҟоуп ма ахьӡ иашаӡам. Иҭажәгал даҽа хьӡык."
#. ryfEt
-#: sd/inc/strings.hrc:78
+#: sd/inc/strings.hrc:75
msgctxt "STR_SNAPDLG_SETLINE"
msgid "Edit Snap Line"
msgstr "Имҩақәызҵо"
#. 3c3Hh
-#: sd/inc/strings.hrc:79
+#: sd/inc/strings.hrc:76
msgctxt "STR_SNAPDLG_SETPOINT"
msgid "Edit Snap Point"
msgstr "Акра акәаԥ"
#. FWWHm
-#: sd/inc/strings.hrc:80
+#: sd/inc/strings.hrc:77
msgctxt "STR_POPUP_EDIT_SNAPLINE"
msgid "Edit Snap Line..."
msgstr "Иԥсахтәуп имҩақәызҵо..."
#. njFAd
-#: sd/inc/strings.hrc:81
+#: sd/inc/strings.hrc:78
msgctxt "STR_POPUP_EDIT_SNAPPOINT"
msgid "Edit Snap Point..."
msgstr "Иԥсахтәуп акра акәаԥ..."
#. UwBFu
-#: sd/inc/strings.hrc:82
+#: sd/inc/strings.hrc:79
msgctxt "STR_POPUP_DELETE_SNAPLINE"
msgid "Delete Snap Line"
msgstr "Ианыхтәуп амҩақәҵага"
#. BBU6u
-#: sd/inc/strings.hrc:83
+#: sd/inc/strings.hrc:80
msgctxt "STR_POPUP_DELETE_SNAPPOINT"
msgid "Delete Snap Point"
msgstr "Ианыхтәуп акра акәаԥ"
#. BmRfY
-#: sd/inc/strings.hrc:84
+#: sd/inc/strings.hrc:81
msgctxt "STR_IMPRESS"
msgid "StarImpress 4.0"
msgstr "StarImpress 4.0"
#. aAbqr
-#: sd/inc/strings.hrc:85
+#: sd/inc/strings.hrc:82
msgctxt "STR_LAYER"
msgid "Layer"
msgstr "Аҿыгҳара"
#. Lwrnm
-#: sd/inc/strings.hrc:86
+#: sd/inc/strings.hrc:83
msgctxt "STR_UNDO_DELETEPAGES"
msgid "Delete slides"
msgstr "Ианыхтәуп аслаид"
#. F7ZZF
-#: sd/inc/strings.hrc:87
+#: sd/inc/strings.hrc:84
msgctxt "STR_UNDO_DELETEPAGES_DRAW"
msgid "Delete pages"
msgstr "Ианыхтәуп адаҟьақәа"
#. EQUBZ
-#: sd/inc/strings.hrc:88
+#: sd/inc/strings.hrc:85
msgctxt "STR_UNDO_INSERTPAGES"
msgid "Insert slides"
msgstr "Иҭаргылатәуп аслаидқәа"
#. 4hGAF
-#: sd/inc/strings.hrc:89
+#: sd/inc/strings.hrc:86
msgctxt "STR_ASK_DELETE_LAYER"
msgid ""
"Are you sure you want to delete the layer \"$\"?\n"
@@ -792,97 +774,103 @@ msgid ""
msgstr ""
#. EcYBg
-#: sd/inc/strings.hrc:90
+#: sd/inc/strings.hrc:87
msgctxt "STR_ASK_DELETE_ALL_PICTURES"
msgid "Do you really want to delete all images?"
msgstr "Ианыхтәума асахьақәа зегьы?"
#. 43diA
-#: sd/inc/strings.hrc:91
+#: sd/inc/strings.hrc:88
msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT"
msgid "Modify title and outline"
msgstr "Иԥсахтәуп ахи аструктуреи"
#. 6zCeF
-#: sd/inc/strings.hrc:92
+#: sd/inc/strings.hrc:89
msgctxt "STR_WAV_FILE"
msgid "Audio"
msgstr "Абжьы"
#. EtkBb
-#: sd/inc/strings.hrc:93
+#: sd/inc/strings.hrc:90
msgctxt "STR_MIDI_FILE"
msgid "MIDI"
msgstr "MIDI"
#. ZKZvo
-#: sd/inc/strings.hrc:94
+#: sd/inc/strings.hrc:91
msgctxt "STR_AU_FILE"
msgid "Sun/NeXT Audio"
msgstr "Sun/NeXT аудио"
#. BySwC
-#: sd/inc/strings.hrc:95
+#: sd/inc/strings.hrc:92
msgctxt "STR_VOC_FILE"
msgid "Creative Labs Audio"
msgstr "Creative Labs аудио"
#. CVtFB
-#: sd/inc/strings.hrc:96
+#: sd/inc/strings.hrc:93
msgctxt "STR_AIFF_FILE"
msgid "Apple/SGI Audio"
msgstr "Apple/SGI аудио"
#. qBF5W
-#: sd/inc/strings.hrc:97
+#: sd/inc/strings.hrc:94
msgctxt "STR_SVX_FILE"
msgid "Amiga SVX Audio"
msgstr "Amiga SVX аудио"
+#. x7GnC
+#: sd/inc/strings.hrc:95
+msgctxt "STR_SD_PAGE"
+msgid "Slide"
+msgstr ""
+
#. Myh6k
-#: sd/inc/strings.hrc:98
+#: sd/inc/strings.hrc:96
msgctxt "STR_SD_PAGE_COUNT"
msgid "Slide %1 of %2"
msgstr "Аслаид %1 %2 аҟынтәи"
#. NakLD
-#: sd/inc/strings.hrc:99
+#: sd/inc/strings.hrc:97
msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
msgid "Slide %1 of %2 (%3)"
msgstr "Аслаид %1 %2 (%3) аҟынтәи"
#. AHvxa
-#: sd/inc/strings.hrc:100
+#: sd/inc/strings.hrc:98
msgctxt "STR_SD_PAGE_COUNT_DRAW"
msgid "Page %1 of %2"
msgstr "Адаҟьа %1 %2 аҟынтәи"
#. hdhKG
-#: sd/inc/strings.hrc:101
+#: sd/inc/strings.hrc:99
msgctxt "STR_SD_PAGE_COUNT_CUSTOM_DRAW"
msgid "Page %1 of %2 (%3)"
msgstr "Адаҟьа %1 %2 (%3) аҟынтәи"
#. WsRvh
-#: sd/inc/strings.hrc:102
+#: sd/inc/strings.hrc:100
msgctxt "STR_ALL_SUPPORTED_FORMATS"
msgid "All supported formats"
msgstr "Иаднакыло аформатқәа зегьы"
#. F8m2G
-#: sd/inc/strings.hrc:103
+#: sd/inc/strings.hrc:101
msgctxt "STR_ALL_FILES"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. jgmq4
-#: sd/inc/strings.hrc:104
+#: sd/inc/strings.hrc:102
msgctxt "STR_UNDO_INSERT_TEXTFRAME"
msgid "Insert text frame"
msgstr ""
#. KW7A3
-#: sd/inc/strings.hrc:105
+#: sd/inc/strings.hrc:103
msgctxt "STR_ACTION_NOTPOSSIBLE"
msgid ""
"This function cannot be run \n"
@@ -890,19 +878,19 @@ msgid ""
msgstr ""
#. Sfjvn
-#: sd/inc/strings.hrc:106
+#: sd/inc/strings.hrc:104
msgctxt "STR_DLG_INSERT_PAGES_FROM_FILE"
msgid "Insert File"
msgstr "Иҭаргылатәуп афаил"
#. TKeex
-#: sd/inc/strings.hrc:107
+#: sd/inc/strings.hrc:105
msgctxt "STR_READ_DATA_ERROR"
msgid "The file could not be loaded!"
msgstr "Афаил аҭагалара ауам!"
#. 8CYyq
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:106
msgctxt "STR_SCALE_OBJECTS"
msgid ""
"The page size of the target document is different than the source document.\n"
@@ -911,143 +899,155 @@ msgid ""
msgstr ""
#. YC4AD
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:107
msgctxt "STR_SCALE_TOOLTIP"
msgid "Scaling factor of the document; right-click to change."
msgstr "Адокумент амасштабркра акоеффициент; аԥсахразы арӷьатәи ақәыӷәӷәара."
#. NzFb7
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Иаԥҵатәуп аслаидқәа"
#. ckve2
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Иԥсахтәуп адаҟьа аформат"
#. FDTtA
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Иԥсахтәуп адаҟьа аҭакырақәа"
#. H6ceS
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "Ариашара"
#. 3ikze
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Ианыхтәуп аслаидқәа"
#. xbTgp
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "Иарбоу апринтер аҟны адокумент аформат ақәыргылара ауам."
#. s6Pco
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. PKXVG
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аԥхьара ауам"
#. Wnx5i
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа идырым аформат"
#. GH2S7
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Аграфикатә фаил ари аверсиа аднакылаӡом"
#. uqpAS
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. qdeHG
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Асахьа аҭаргыларазы иазхом агәынкыларҭа"
#. BdsAg
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Аобиектқәа"
#. SDm68
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Ари адокумент аҟны аорфографиа агәаҭара хыркәшоуп."
#. gefTJ
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Иалкаау аобиектқәа рҟны аорфографиа агәаҭара хыркәшоуп."
#. aeQeS
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "Иалкаау аобиект еиҭактәума архәа ахь?"
#. wLsLp
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Иԥсахтәуп апрезентациа аобиект «$»"
#. s8VC9
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Аслаид амакет"
#. SUpXD
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "Адаҟьа амакет"
#. BFzyf
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Иҭаргылатәуп афаил"
#. WGRwQ
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Иҭаргылатәуп асимвол"
#. NFpGf
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "Ихархәатәуп апрезентациа адырганҵа"
+#. ypaEH
+#: sd/inc/strings.hrc:130
+msgctxt "STR_UNDO_HIDE_SLIDE"
+msgid "Hide slide"
+msgstr ""
+
+#. LmH9V
+#: sd/inc/strings.hrc:131
+msgctxt "STR_UNDO_SHOW_SLIDE"
+msgid "Show slide"
+msgstr ""
+
#. ZMS5R
#: sd/inc/strings.hrc:132
msgctxt "STR_PLAY"
@@ -1568,7 +1568,7 @@ msgstr "Аҩынтәи адаҟьа"
#: sd/inc/strings.hrc:220
msgctxt "STR_HTMLEXP_INFO"
msgid "Further information"
-msgstr ""
+msgstr "Ихазырҭәаауа аинформациа"
#. AeG6C
#: sd/inc/strings.hrc:221
@@ -2106,7 +2106,7 @@ msgstr "Аструктура абыжьбатәи аҩаӡара"
#: sd/inc/strings.hrc:310
msgctxt "STR_PRESOBJ_MPNOTESTITLE"
msgid "Click to move the slide"
-msgstr ""
+msgstr "Адаҟьа аиҭагаразы шәақәыӷәӷәа аҳәынаԥ"
#. CuXWS
#: sd/inc/strings.hrc:311
@@ -2118,7 +2118,7 @@ msgstr ""
#: sd/inc/strings.hrc:312
msgctxt "STR_PRESOBJ_MPNOTESTITLE_MOBILE"
msgid "Double-tap to move the slide"
-msgstr ""
+msgstr "Ҩынтә шәақәыӷәӷәа, аслаид аиҭагаразы"
#. iibds
#: sd/inc/strings.hrc:313
@@ -3500,29 +3500,23 @@ msgid "Page Properties"
msgstr "Адаҟьа аҷыдаҟазшьақәа"
#. Py4db
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:109
msgctxt "drawpagedialog|RID_SVXPAGE_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. sn2YQ
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:183
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:132
msgctxt "drawpagedialog|RID_SVXPAGE_AREA"
msgid "Background"
msgstr "Аҿаԥшыра"
#. hNhCi
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:231
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:156
msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Аҵәцара"
-#. fLYAx
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:279
-msgctxt "drawpagedialog|RID_SVXPAGE_THEME"
-msgid "Theme"
-msgstr "Атема"
-
#. cKCg3
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:8
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
@@ -3539,7 +3533,7 @@ msgstr "Ахьаҵқәеи аинтервалқәеи"
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:183
msgctxt "drawparadialog|labelTP_PARA_ASIAN"
msgid "Asian Typography"
-msgstr ""
+msgstr "Мрагылара-азиатәи аҩышьаԥҟарақәа"
#. HwdCp
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:231
@@ -3641,7 +3635,7 @@ msgstr "Ахалагаратә шәагаа"
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:206
msgctxt "drawprinteroptions|extended_tip|originalsize"
msgid "Specifies that you do not want to further scale pages when printing."
-msgstr ""
+msgstr "Иқәнаргылоит: адаҟьа амасштаб ԥсахтәӡам акьыԥхьраан."
#. drvLN
#: sd/uiconfig/sdraw/ui/drawprinteroptions.ui:218
@@ -3773,7 +3767,7 @@ msgstr "Аиҟаратәра"
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:761
msgctxt "drawprtldialog|RID_SVXPAGE_PARA_ASIAN"
msgid "Asian Typography"
-msgstr ""
+msgstr "Мрагылара-азиатәи аҩышьаԥҟарақәа"
#. bNzxC
#: sd/uiconfig/sdraw/ui/drawprtldialog.ui:809
@@ -4072,73 +4066,73 @@ msgid "~Object"
msgstr "Аобиект"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15186
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Амедиа"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15325
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15290
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Амедиа"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16098
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Аформа"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16217
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16182
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Аформа"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17004
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16969
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17111
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17076
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17635
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17600
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Азҟаза"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17719
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17684
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Азҟаза"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17776
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17741
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17850
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17815
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18762
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18727
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Асервис"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18811
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Асервис"
@@ -4402,7 +4396,7 @@ msgstr "Асахьа"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12977
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
-msgstr ""
+msgstr "Амҩақәҵагақәа"
#. Dsr5A
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4001
@@ -4840,7 +4834,7 @@ msgstr "Иалышәх арлашьцара аԥштәы."
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:327
msgctxt "customanimationeffecttab|text_delay_label"
msgid "Delay between characters"
-msgstr ""
+msgstr "Асимволқәа рыбжьара аанкылара"
#. DQV2T
#: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:348
@@ -5300,7 +5294,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:62
msgctxt "customanimationtexttab|auto_after"
msgid "_Automatically after:"
-msgstr ""
+msgstr "Автоматикала ашьҭахь:"
#. DLeHn
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:70
@@ -5360,7 +5354,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:112
msgctxt "customanimationtexttab|animate_shape"
msgid "Animate attached _shape"
-msgstr ""
+msgstr "Иаҳәалоу афигура анимациа"
#. T6S58
#: sd/uiconfig/simpress/ui/customanimationtexttab.ui:120
@@ -6711,103 +6705,103 @@ msgid "Lists available slides. Double-click a slide to make it the active slide.
msgstr ""
#. LKqE8
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:142
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:141
msgctxt "navigatorpanel|first|tooltip_text"
msgid "First Slide"
msgstr "Актәи аслаид"
#. Lqedn
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:146
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:145
msgctxt "navigatorpanel|extended_tip|first"
msgid "Jumps to the first page."
msgstr "Актәи адаҟьахь аиасра."
#. NWPFk
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:159
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:157
msgctxt "navigatorpanel|previous|tooltip_text"
msgid "Previous Slide"
msgstr "Аԥхьатәи аслаид"
#. PJUma
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:163
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:161
msgctxt "navigatorpanel|extended_tip|previous"
msgid "Moves back one page."
msgstr "Даҟьак шьҭахьҟа аиасра"
#. bkvQE
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:176
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:173
msgctxt "navigatorpanel|next|tooltip_text"
msgid "Next Slide"
msgstr "Анаҩстәи аслаид"
#. zbUVG
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:180
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:177
msgctxt "navigatorpanel|extended_tip|next"
msgid "Move forward one page."
msgstr "Даҟьак ԥхьаҟа аиасра."
#. FVSHF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:193
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:189
msgctxt "navigatorpanel|last|tooltip_text"
msgid "Last Slide"
msgstr "Аҵыхәтәантәи аслаид"
#. aPU7Y
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:197
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:193
msgctxt "navigatorpanel|extended_tip|last"
msgid "Jumps to the last page."
msgstr "Аҵыхәтәантәи адаҟьахь аиасра."
#. mHVom
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:222
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:217
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Ақәырҳәазара арежим"
#. BEJEZ
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:226
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:221
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Drag and drop slides and named objects into the active slide."
msgstr ""
#. Qb5a9
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:239
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:233
msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Иаарԥштәуп афигурақәа"
#. EUeae
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:243
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:237
msgctxt "navigatorpanel|extended_tip|shapes"
msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected."
msgstr ""
#. DzQZC
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:266
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:260
msgctxt "navigatorpanel|extended_tip|NavigatorPanel"
msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files."
msgstr ""
#. pzb3K
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:277
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES"
msgid "Named shapes"
msgstr "Ихьӡырку афигурақәа"
#. dLEPF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:287
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:281
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES"
msgid "All shapes"
msgstr "Афигурақәа зегьы"
#. BJmWa
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:303
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:297
msgctxt "navigatorpanel|STR_NAVIGATOR_FRONT_TO_BACK"
msgid "Front to back"
msgstr ""
#. 4e3oj
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:313
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:307
msgctxt "navigatorpanel|STR_NAVIGATOR_BACK_TO_FRONT"
msgid "Back to front"
msgstr ""
@@ -6965,85 +6959,85 @@ msgid "~Object"
msgstr "Аобиект"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14971
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14936
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Амедиа"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15075
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15040
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Амедиа"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15883
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15848
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Аформа"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15967
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15932
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Аформа"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16762
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16727
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Азҟаза"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16846
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16811
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~Азҟаза"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17656
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17621
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_Аԥшра"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17740
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17705
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~Аструктура"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18527
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18492
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_d"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18634
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18599
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~d"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18691
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18656
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18765
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18730
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19728
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19693
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Асервис"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19812
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19777
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Асервис"
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index e7ec7cbd990..d59c38a9e28 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/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: 2023-05-17 15:14+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-08-24 11:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149237.000000\n"
#. bHbFE
@@ -819,75 +819,81 @@ msgid ""
"Do you want to proceed?"
msgstr ""
-#. jufLD
+#. QeNqB
#: include/sfx2/strings.hrc:152
+msgctxt "STR_QUERY_REMEMBERSIGNATURE"
+msgid "Do you want to remember that signature for each save?"
+msgstr ""
+
+#. jufLD
+#: include/sfx2/strings.hrc:153
msgctxt "STR_INFO_WRONGDOCFORMAT"
msgid "This document must be saved in OpenDocument file format before it can be digitally signed."
msgstr ""
#. ori9u
-#: include/sfx2/strings.hrc:153
+#: include/sfx2/strings.hrc:154
msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
msgid " (Signed)"
msgstr "(Анапаҵаҩуп)"
#. kgWZS
-#: include/sfx2/strings.hrc:154
+#: include/sfx2/strings.hrc:155
msgctxt "STR_EMBEDDED_TITLE"
msgid " (Embedded document)"
msgstr " (Иаларҵәоу адокумент)"
#. 3nT9T
-#: include/sfx2/strings.hrc:155
+#: include/sfx2/strings.hrc:156
msgctxt "STR_STANDARD"
msgid "Standard"
msgstr "Истандарту"
#. FjCuJ
-#: include/sfx2/strings.hrc:156
+#: include/sfx2/strings.hrc:157
msgctxt "RID_SVXSTR_FILELINK"
msgid "Document"
msgstr "Адокумент"
#. BfMd3
-#: include/sfx2/strings.hrc:157
+#: include/sfx2/strings.hrc:158
msgctxt "STR_NONE"
msgid "- None -"
msgstr "- Мап -"
#. XBXvE
-#: include/sfx2/strings.hrc:158
+#: include/sfx2/strings.hrc:159
msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Мап"
#. 5kUsi
-#: include/sfx2/strings.hrc:159
+#: include/sfx2/strings.hrc:160
msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr "Асахьа"
#. dUK2G
-#: include/sfx2/strings.hrc:160
+#: include/sfx2/strings.hrc:161
msgctxt "STR_SFX_FILTERNAME_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. E39E2
-#: include/sfx2/strings.hrc:161
+#: include/sfx2/strings.hrc:162
msgctxt "STR_SFX_FILTERNAME_PDF"
msgid "PDF files"
msgstr "PDF афаилқәа"
#. gCHbP
-#: include/sfx2/strings.hrc:162
+#: include/sfx2/strings.hrc:163
msgctxt "RID_SVXSTR_EDITGRFLINK"
msgid "Link Image"
msgstr "Асахьахь азхьарԥш"
#. u9H7a
#. i66948 used in project scripting
-#: include/sfx2/strings.hrc:164
+#: include/sfx2/strings.hrc:165
msgctxt "STR_ERRUNOEVENTBINDUNG"
msgid ""
"An appropriate component method %1\n"
@@ -897,43 +903,43 @@ msgid ""
msgstr ""
#. 2FLYB
-#: include/sfx2/strings.hrc:165
+#: include/sfx2/strings.hrc:166
msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. 6eLsb
-#: include/sfx2/strings.hrc:166
+#: include/sfx2/strings.hrc:167
msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аԥхьара ауам"
#. HGRsV
-#: include/sfx2/strings.hrc:167
+#: include/sfx2/strings.hrc:168
msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа ииашам аформат"
#. YJhGK
-#: include/sfx2/strings.hrc:168
+#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
msgid "This version of the image file is not supported"
msgstr "Аграфикатә фаил ари аверсиа аднакылаӡом"
#. Sn8KQ
-#: include/sfx2/strings.hrc:169
+#: include/sfx2/strings.hrc:170
msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. huEFV
-#: include/sfx2/strings.hrc:170
+#: include/sfx2/strings.hrc:171
msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR"
msgid "This is not a text document"
msgstr "Ари тексттә документӡам"
#. ejBgZ
-#: include/sfx2/strings.hrc:171
+#: include/sfx2/strings.hrc:172
msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -944,43 +950,43 @@ msgid ""
msgstr ""
#. E2CcY
-#: include/sfx2/strings.hrc:172
+#: include/sfx2/strings.hrc:173
msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Ииашам ажәамаӡа"
#. 7Ezso
-#: include/sfx2/strings.hrc:173
+#: include/sfx2/strings.hrc:174
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
msgstr ""
#. DQCUm
-#: include/sfx2/strings.hrc:175
+#: include/sfx2/strings.hrc:176
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(Асимволқәа рминимум: $(MINLEN))"
#. ZKZnh
-#: include/sfx2/strings.hrc:176
+#: include/sfx2/strings.hrc:177
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(Минимум 1 символк)"
#. B3WoF
-#: include/sfx2/strings.hrc:177
+#: include/sfx2/strings.hrc:178
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(Ажәамаӡа ҭацәызар ауеит)"
#. iBD9D
-#: include/sfx2/strings.hrc:178
+#: include/sfx2/strings.hrc:179
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr ""
#. TXAV5
-#: include/sfx2/strings.hrc:180
+#: include/sfx2/strings.hrc:181
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -990,7 +996,7 @@ msgstr ""
"Иқәыргылатәума уажәы?"
#. gQhYY
-#: include/sfx2/strings.hrc:181
+#: include/sfx2/strings.hrc:182
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -1000,185 +1006,185 @@ msgstr ""
"Афильтр аиура иазку аинформациа шәыԥшаауеит ҳдаҟьаҟны."
#. Y9yeS
-#: include/sfx2/strings.hrc:183
+#: include/sfx2/strings.hrc:184
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Бзиала шәаабеит %PRODUCTNAME аҟны."
#. DVEkR
-#: include/sfx2/strings.hrc:184
+#: include/sfx2/strings.hrc:185
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or open an app to create one."
msgstr "Адокумент абрахь ииажәга ма арымарахь иалышәх адокумент аԥҵаразы апрограмма."
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
-#: include/sfx2/strings.hrc:187
+#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
msgstr "Атекст"
#. eG5qc
-#: include/sfx2/strings.hrc:188
+#: include/sfx2/strings.hrc:189
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
msgstr "Ирегулиару аҵакҭаҩ"
#. TaDCG
-#: include/sfx2/strings.hrc:189
+#: include/sfx2/strings.hrc:190
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
msgstr ""
#. bDjwW
-#: include/sfx2/strings.hrc:190
+#: include/sfx2/strings.hrc:191
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
msgstr "Идырӡам"
#. YgzCk
#. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog
-#: include/sfx2/strings.hrc:193
+#: include/sfx2/strings.hrc:194
msgctxt "STR_REDACTION_YES"
msgid "Yes"
msgstr "Ааи"
#. oZNaM
-#: include/sfx2/strings.hrc:194
+#: include/sfx2/strings.hrc:195
msgctxt "STR_REDACTION_NO"
msgid "No"
msgstr "Мап"
#. FM3Gf
#. Translators: Misc strings of the Auto Redaction dialog
-#: include/sfx2/strings.hrc:197
+#: include/sfx2/strings.hrc:198
msgctxt "STR_REDACTION_TARGET"
msgid "Target"
msgstr "Ахықәкы"
#. m2i7V
-#: include/sfx2/strings.hrc:198
+#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
msgstr "Иҭагалатәуп ахықәкы"
#. HgrwX
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:200
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
msgstr "Еиқәырхатәуп ахықәкқәа"
#. MYMTF
-#: include/sfx2/strings.hrc:200
+#: include/sfx2/strings.hrc:201
msgctxt "STR_REDACTION_FIELDS_REQUIRED"
msgid "All fields are required"
msgstr "Аҭакырақәа зегьы хымԥадатәиуп"
#. rQS6M
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:202
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
msgstr "Ари аҩыза ахьӡ змоу ахықәкы ыҟоуп"
#. s248s
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:203
msgctxt "STR_REDACTION_MULTI_EDIT"
msgid "You have selected multiple targets, but only one target can be edited at once."
msgstr ""
#. BTayC
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:204
msgctxt "STR_REDACTION_MULTI_DELETE"
msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?"
msgstr "Ианыхтәума ахықәкқәа ($(TARGETSCOUNT)) ԥыҭк?"
#. qFqDC
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_JSON_FILE_FILTER"
msgid "Target Set (*.json)"
msgstr "Ахықәкқәа реизак (*.json)"
#. EGCo6
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
msgstr "Иԥсахтәуп ахықәкы"
#. ACY9D
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
msgstr ""
#. 6Jog7
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:208
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly."
msgstr ""
#. FQ9kN
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:210
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Уажәтәи аверсиа"
#. GFAEM
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:211
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Аекспорт"
#. 2DBBC
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:212
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Иҭаргылатәуп"
#. VBKtt
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Иҭаргылатәуп"
#. DcLFD
-#: include/sfx2/strings.hrc:213
+#: include/sfx2/strings.hrc:214
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
msgstr "<Асахьақәа зегьы>"
#. tPDwc
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:215
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Еиқәырхатәуп акопиа..."
#. CrEzt
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:216
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to Original Document"
msgstr "Ахалагаратә документ иаҿырԥштәуп"
#. 4qMCh
-#: include/sfx2/strings.hrc:216
+#: include/sfx2/strings.hrc:217
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr ""
#. cDMBG
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:219
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME адокумент"
#. 43QYo
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:220
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Д: %3 Ч: %4 М: %5 С: %6"
#. jQX7C
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:221
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -1188,31 +1194,31 @@ msgstr ""
"Иара еиқәырхахоит текст ҳасабла."
#. cinmA
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:223
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ари астиль ыҟоуп. Ихҩылаатәума?"
#. f627N
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:225
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Еиҭашьақәыргылатәуп"
#. EXGDb
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:226
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ари ахьӡ ахархәара амоуп."
#. N5aeR
-#: include/sfx2/strings.hrc:226
+#: include/sfx2/strings.hrc:227
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Астиль ыҟаӡам."
#. CYQwN
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:228
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -1222,7 +1228,7 @@ msgstr ""
"избанзар ицәырҵуеит арекурсиа."
#. ECPSd
-#: include/sfx2/strings.hrc:228
+#: include/sfx2/strings.hrc:229
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -1232,7 +1238,7 @@ msgstr ""
"Иалышәх даҽа хьӡык."
#. NWDmA
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:230
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1241,73 +1247,73 @@ msgid ""
msgstr ""
#. kuD77
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:231
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Ахархәара змоу астильқәа: "
#. 4JhEW
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:232
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Анавигатор"
#. Acahp
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:233
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Ажәамаӡа ашьақәырӷәӷәара агха"
#. 6uv4b
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Идәықәҵатәуп"
#. 9HHQw
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:235
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Ашрифт"
#. 7baC6
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:237
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ирыхәаԥштәуп аверсиа иазку акомментариқәа"
#. LGiF8
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:238
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ахьӡ азалхӡам)"
#. rZ4Ao
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:240
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Иерархиала"
#. 4VXDe
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:242
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Еиԥырҟьатәума аҭаҩра? Уаанӡа иҭаҩыз ашьаҿақәа ырӡхоит."
#. 9MnrK
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:243
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Иаҟәыхтәуп аҭаҩра"
#. m9FCm
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:245
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Раԥхьатәи ахархәара аԥхьа инагӡахоит ашаблонқәа ринициализациа."
#. F3ym2
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:247
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1315,7 +1321,7 @@ msgid ""
msgstr ""
#. a3NTu
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:248
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1325,19 +1331,19 @@ msgstr ""
"Игәашәҭ апринтер аконфигурациа."
#. acKHX
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:249
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Апринтер ҭацәым"
#. hDEUj
-#: include/sfx2/strings.hrc:249
+#: include/sfx2/strings.hrc:250
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (аԥхьара мацараз)"
#. uL87C
-#: include/sfx2/strings.hrc:250
+#: include/sfx2/strings.hrc:251
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1346,7 +1352,7 @@ msgid ""
msgstr ""
#. cxuAH
-#: include/sfx2/strings.hrc:251
+#: include/sfx2/strings.hrc:252
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1358,7 +1364,7 @@ msgstr ""
"иактиву адокумент аҟны?"
#. 4QJxB
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1367,7 +1373,7 @@ msgid ""
msgstr ""
#. RXbfs
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1377,7 +1383,7 @@ msgstr ""
"избанзар акьыԥхьра адҵа мҩаԥысуеит."
#. YGyQP
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1386,7 +1392,7 @@ msgstr ""
#. 3nzi6
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1395,19 +1401,19 @@ msgid ""
msgstr ""
#. ZWTDr
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Ацҳамҭа адәықәҵара агха"
#. QVS2D
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
#. ZdGNX
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_QUERY_OPENASTEMPLATE_LOCKED"
msgid ""
"This document cannot be edited, because it is locked in another session.%LOCKINFO\n"
@@ -1415,592 +1421,598 @@ msgid ""
msgstr ""
#. n3sMB
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid "You can also try to ignore the lock and open the file for editing."
msgstr ""
#. yaKxR
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Иаарттәуп ~акопиа"
#. UYkFP
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Иаарттәуп"
#. GcSXH
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (адокумент еиҭашьақәыргылоуп)"
#. HPqkX
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Ари адокумент асервер аҟны имҩаркӡам."
#. uPc29
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Шәҳацхрра %PRODUCTNAME еиӷьны аҟаҵаразы!"
#. PboiP
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
#. GuLGH
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
#. KzgoD
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Иҟаҵатәуп ацхыраара"
#. G8bbK
-#: include/sfx2/strings.hrc:269
+#: include/sfx2/strings.hrc:270
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
msgstr ""
#. J5UkB
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
msgstr "Аҭыжьра иазку азгәаҭақәа"
#. c7NPT
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Ари адокумент аартуп аҧхьара мацаразы."
#. KyyFk
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
#. MENvD
-#: include/sfx2/strings.hrc:273
+#: include/sfx2/strings.hrc:274
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Ари адокумент аклассификациа аҭыԥдырга %1."
#. 3B3ij
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
#. BYcYH
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
#. EJPzh
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Аҩаӡара"
#. itVew
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Амилаҭтә шәарҭадара:"
#. ZBXbG
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Аекспорттә ԥкырақәа:"
#. QAnvx
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Имҩарктәуп"
#. PwPNw
-#: include/sfx2/strings.hrc:280
+#: include/sfx2/strings.hrc:281
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Адокумент акьыԥхьра"
#. FCeC5
-#: include/sfx2/strings.hrc:281
+#: include/sfx2/strings.hrc:282
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Анапаҵаҩтәуп адокумент"
#. MEfTq
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_READONLY_FINISH_SIGN"
msgid "Finish Signing"
msgstr "Ихыркәшатәуп анапаҵаҩра"
#. pkWmU
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Адокумент анапаҵаҩра гәрагаӡам."
#. Vd3CU
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Анапаҵаҩра иашан, аха адокумент ԥсахын"
#. 2HNfx
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr "Иҟоуп ииашам анапаҵаҩрақәа: асертификат агәаҭара ауам."
#. tjCmr
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "At least one signature has problems: the document is only partially signed."
msgstr "Иҟоуп ииашам анапаҵаҩрақәа: адокумент напаҵаҩуп хәҭакахьала."
#. mU6ot
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Асертификат агәаҭара ауам, адокумент напаҵаҩуп хәҭакахьала."
#. FKDbE
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Адокумент напаҵаҩуп, ацифратә напаҵаҩра иашоуп."
#. rMGka
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Иаарԥштәуп анапаҵаҩрақәа"
#. fkzJb
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TRACK_CHANGES_BUTTON"
msgid "Show Toolbar"
msgstr "Иаарԥштәуп амаругақәа рпанель"
#. 68ZqS
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE"
msgid "Hide Toolbar"
msgstr "Иҵәахтәуп амаругақәа рпанель"
#. BzVAA
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr "Еилкаатәуп еиҳаны"
#. BSyb4
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_REFRESH_MASTER_PASSWORD"
msgid "The master password is stored in an outdated format, you should refresh it"
msgstr "Ажәамаӡа-азҟаза ҵәахуп иажәхьоу аформат ала, иара рҿыцтәуп"
#. ysChU
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_REFRESH_PASSWORD"
msgid "Refresh Password"
msgstr "Ирҿыцтәуп ажәамаӡа"
#. vf46C
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_MACROS_DISABLED_TITLE"
msgid "Macros disabled"
msgstr "Амакросқәа аҿыхуп"
#. zkERU
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_CONTAINS_MACROS"
msgid "Macros in this document are disabled due to the Macro Security settings."
msgstr "Ари адокумент аҟны амакросқәа аҿыхуп «Амакросқәа ршәарҭадара» архиарақәа ирыбзоураны."
#. XbFQD
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Амакросқәа аҿыхуп «Амакросқәа ршәарҭадара» архиарақәа ирыбзоураны."
#. DRiDD
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Иаарԥштәуп амакросқәа"
#. mBmGc
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Иаарԥштәуп ахҭысқәа"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ашьхымӡа"
#. uwaPH
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Аҵәаӷәанҵа"
#. MAnPU
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
#. XBrCi
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Афокус"
#. GADdA
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Абнатә ԥсаатә"
#. TT8G5
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Амцабзқәа"
#. pcLWs
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Ахақәиҭра"
#. xo2gC
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Аԥсабара"
#. cCZzC
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Акарандашь"
#. Ji4Cw
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Ароиаль"
#. mrbiq
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Апортфилио"
#. ysBGy
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Апрогресс"
#. gtPt9
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Амра аҭашәамҭа"
#. 73Y2e
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Ажәытә мода"
#. MSY8y
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Имариоу аграфика"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Арезиуме"
#. Koe3V
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Аҵыхәтәажәа"
#. hCpfD
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Абазатә"
#. d7Hyk
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Ҳаамҭазтәи"
#. CVJEC
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Амариа"
#. W7NVH
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "Абизнес-процессқәа"
#. PUBoR
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:337
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
-#. ZaGGB
+#. eBJ96
#: include/sfx2/strings.hrc:338
+msgctxt "STR_TEMPLATE_NAME34"
+msgid "Japanese Normal"
+msgstr ""
+
+#. ZaGGB
+#: include/sfx2/strings.hrc:340
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Иқәгатәуп"
#. JReRY
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Ирыцқьатәуп зегьы"
#. yC8Gs
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Ажәамаӡа аура"
#. FKFmJ
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
#. jBQFN
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-ақәыӷәӷәара агиперзхьарԥш: %{link} ахь аиасразы"
#. jC3AK
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(ихархәоуп: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Адокумент"
#. XDGTb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Аелектронтә таблица"
#. 3UZXB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Апрезентациа"
#. noN5s
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Асахьа"
#. QpuFo
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Аакьыскьатәиқәа"
#. EcAjb
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ирыцқьатәуп асиа"
#. tfjbD
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Иқәгатәуп ашаблон"
#. j5eV8
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:360
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Иқәгатәуп ашаблон"
#. mWp3t
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:361
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Иқәгатәуп ашаблон"
#. wfExB
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:362
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Иқәгатәуп ашаблон"
#. BFaGA
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:363
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Аимпорт"
#. 8Cwfk
-#: include/sfx2/strings.hrc:362
+#: include/sfx2/strings.hrc:364
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:365
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Ахьӡ ԥсахтәуп"
#. EyjE3
-#: include/sfx2/strings.hrc:364
+#: include/sfx2/strings.hrc:366
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Акатегориа ахьӡ ԥсахтәуп"
#. T79Eb
-#: include/sfx2/strings.hrc:365
+#: include/sfx2/strings.hrc:367
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Акатегориа ҿыц"
#. fCRA7
-#: include/sfx2/strings.hrc:367
+#: include/sfx2/strings.hrc:369
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO аобиектқәа ринспектор"
@@ -2896,7 +2908,7 @@ msgid "Recent"
msgstr "Аҵыхәтәантәиқәа"
#. BQwCQ
-#: sfx2/uiconfig/ui/charmapcontrol.ui:500
+#: sfx2/uiconfig/ui/charmapcontrol.ui:514
msgctxt "charmapcontrol|specialchardlg"
msgid "More Characters…"
msgstr "Еиҭа асимволқәа…"
@@ -2997,8 +3009,20 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr ""
+#. a9n4d
+#: sfx2/uiconfig/ui/deck.ui:102
+msgctxt "deck|SFX_STR_SIDEBAR_HELP_DECK"
+msgid "Help about this sidebar deck"
+msgstr ""
+
+#. fiTDC
+#: sfx2/uiconfig/ui/deck.ui:108
+msgctxt "deck|SFX_STR_SIDEBAR_HELP_DECK"
+msgid "Sidebar Deck Help"
+msgstr ""
+
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:121 sfx2/uiconfig/ui/deck.ui:126
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Иарктәуп аганахьтәи апанель"
@@ -3021,39 +3045,93 @@ msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "_Ихадароу ажәақәа:"
-#. Nayo4
+#. FXZzx
#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
+msgctxt "descriptioninfopage|label31"
+msgid "Co_ntributor:"
+msgstr ""
+
+#. eKsAC
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
+msgctxt "descriptioninfopage|label32"
+msgid "Co_verage:"
+msgstr ""
+
+#. Wtpt7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
+msgctxt "descriptioninfopage|label37"
+msgid "_Identifier:"
+msgstr ""
+
+#. 73G3F
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
+msgctxt "descriptioninfopage|label39"
+msgid "_Publisher:"
+msgstr ""
+
+#. Axu5g
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
+msgctxt "descriptioninfopage|label40"
+msgid "R_elation:"
+msgstr ""
+
+#. AGDpc
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
+msgctxt "descriptioninfopage|label41"
+msgid "Ri_ghts:"
+msgstr ""
+
+#. eK4rF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
+msgctxt "descriptioninfopage|label42"
+msgid "So_urce:"
+msgstr ""
+
+#. RFBPC
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
+msgctxt "descriptioninfopage|label45"
+msgid "T_ype:"
+msgstr ""
+
+#. Nayo4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
#, fuzzy
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "Акомментариқәа:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:79
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "Иҭажәгал адокумент ахьӡ"
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:96
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr ""
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:113
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
+#. k4Umi
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+msgctxt "descriptioninfopage|extended_tip|contributor"
+msgid "contributor accessible description"
+msgstr ""
+
#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:137
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
msgctxt "descriptioninfopage|extended_tip|comments"
msgid "Enter comments to help identify the document."
msgstr ""
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:150
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr ""
@@ -4009,20 +4087,26 @@ msgctxt "managestylepage|editlinkstyle"
msgid "Edit Style"
msgstr "Иԥсахтәуп астиль"
-#. cKjrA
+#. cFCws
#: sfx2/uiconfig/ui/managestylepage.ui:147
msgctxt "managestylepage|autoupdate"
-msgid "_AutoUpdate"
-msgstr "Авторҿыцра"
+msgid "_Automatic update from document"
+msgstr ""
+
+#. TZByH
+#: sfx2/uiconfig/ui/managestylepage.ui:153
+msgctxt "managestylepage|autoupdate|tooltip_text"
+msgid "Any paragraph formatting changes in the document to a paragraph with this style are applied automatically to modify the paragraph style."
+msgstr ""
#. oTXJz
-#: sfx2/uiconfig/ui/managestylepage.ui:192
+#: sfx2/uiconfig/ui/managestylepage.ui:193
msgctxt "managestylepage|label1"
msgid "Style"
msgstr "Астиль"
#. NXG9o
-#: sfx2/uiconfig/ui/managestylepage.ui:230
+#: sfx2/uiconfig/ui/managestylepage.ui:231
msgctxt "managestylepage|label2"
msgid "Contains"
msgstr "Иаҵанакуеит"
@@ -5043,43 +5127,43 @@ msgid "List View"
msgstr "Асиа"
#. pm89q
-#: sfx2/uiconfig/ui/templatepanel.ui:139
+#: sfx2/uiconfig/ui/templatepanel.ui:131
msgctxt "templatepanel|STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Астильтә ҭарҭәара"
#. GLRFT
-#: sfx2/uiconfig/ui/templatepanel.ui:152
+#: sfx2/uiconfig/ui/templatepanel.ui:143
msgctxt "templatepanel|STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
#. tAdD9
-#: sfx2/uiconfig/ui/templatepanel.ui:165
+#: sfx2/uiconfig/ui/templatepanel.ui:155
msgctxt "templatepanel|STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
#. Xk5tD
-#: sfx2/uiconfig/ui/templatepanel.ui:178
+#: sfx2/uiconfig/ui/templatepanel.ui:167
msgctxt "templatepanel|STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ирҿыцтәуп астиль"
#. irBvi
-#: sfx2/uiconfig/ui/templatepanel.ui:246 sfx2/uiconfig/ui/templatepanel.ui:303
+#: sfx2/uiconfig/ui/templatepanel.ui:235 sfx2/uiconfig/ui/templatepanel.ui:292
msgctxt "templatepanel|STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Астильқәа рсиа"
#. FHud7
-#: sfx2/uiconfig/ui/templatepanel.ui:321
+#: sfx2/uiconfig/ui/templatepanel.ui:310
msgctxt "commontemplate|STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Астильқәа рыхәаԥшра"
#. BjVRZ
-#: sfx2/uiconfig/ui/templatepanel.ui:336
+#: sfx2/uiconfig/ui/templatepanel.ui:325
msgctxt "commontemplate|STR_HIGHLIGHT_CHECKBOX"
msgid "Spotlight"
msgstr "Ицәырлашатәуп"
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index eb20ce836fb..bdb83262065 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/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: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-17 05:35+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561455758.000000\n"
#. GrDhX
@@ -2981,176 +2981,194 @@ msgctxt "fontsizedialog|extended_tip|FontSizeDialog"
msgid "Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base."
msgstr ""
-#. Ahejh
+#. 38iEb
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:12
+msgctxt "fonttypedialog|menuitem0"
+msgid "_Math"
+msgstr ""
+
+#. Ahejh
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:20
msgctxt "fonttypedialog|menuitem1"
msgid "_Variables"
msgstr "Аҽеиҭакқәа"
#. wWEhm
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:20
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:28
msgctxt "fonttypedialog|menuitem2"
msgid "_Functions"
msgstr "Афункциақәа"
#. vGby3
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:28
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:36
msgctxt "fonttypedialog|menuitem3"
msgid "_Numbers"
msgstr "Ахыԥхьаӡарақәа"
#. usaFG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:36
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:44
msgctxt "fonttypedialog|menuitem4"
msgid "_Text"
msgstr "Атекст"
#. FRdhi
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:44
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:52
msgctxt "fonttypedialog|menuitem5"
msgid "_Serif"
msgstr ""
#. qCEgG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:52
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:60
msgctxt "fonttypedialog|menuitem6"
msgid "S_ans-serif"
msgstr ""
#. gDXFw
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:60
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
msgctxt "fonttypedialog|menuitem7"
msgid "Fixe_d-width"
msgstr ""
#. dXCDj
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:76
msgctxt "fonttypedialog|FontsDialog"
msgid "Fonts"
msgstr "Ашрифтқәа"
#. p43oF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:98
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:106
msgctxt "fonttypedialog|modify"
msgid "_Modify"
msgstr "Иԥсахтәуп"
#. uQCNw
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:111
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:119
msgctxt "fonttypedialog|extended_tip|modify"
msgid "Click one of the choices from this pop-up menu to access the Fonts dialog, where you can define the font and attributes for the respective formula and for custom fonts."
msgstr ""
#. sdTfG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:123
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:131
msgctxt "fonttypedialog|default"
msgid "_Default"
msgstr "Ишыҟоу еиԥш"
#. gAvNx
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:130
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:138
msgctxt "fonttypedialog|extended_tip|default"
msgid "Click this button to save your changes as the default for all new formulas."
msgstr ""
+#. i6SEE
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:215
+msgctxt "fonttypedialog|label1"
+msgid "_Math:"
+msgstr ""
+
#. EhoBp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:207
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:232
msgctxt "fonttypedialog|label1"
msgid "_Variables:"
msgstr "Аҽеиҭакқәа:"
#. BCVC9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:224
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:249
msgctxt "fonttypedialog|label2"
msgid "_Functions:"
msgstr "Афункциақәа:"
#. zFooF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:241
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:266
msgctxt "fonttypedialog|label3"
msgid "_Numbers:"
msgstr "Ахыԥхьаӡарақәа:"
#. bYvD9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:258
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:283
msgctxt "fonttypedialog|label4"
msgid "_Text:"
msgstr "Атекст:"
+#. znrKy
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:303
+msgctxt "fonttypedialog|extended_tip|mathCB"
+msgid "You can select the font for the math symbols in your formula."
+msgstr ""
+
#. daPBN
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:278
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:319
msgctxt "fonttypedialog|extended_tip|variableCB"
msgid "You can select the font for the variables in your formula."
msgstr "Иалышәх ашрифт аформула аҟны аҽеиҭакқәа рзы."
#. CUQQ5
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:294
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:335
msgctxt "fonttypedialog|extended_tip|functionCB"
msgid "Select the font for names and properties of functions."
msgstr ""
#. Ap4gM
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:310
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:351
msgctxt "fonttypedialog|extended_tip|numberCB"
msgid "You can select the font for the numbers in your formula."
msgstr "Иалышәх ашрифт аформула аҟны ахыԥхьаӡарақәа рзы."
#. gt2wF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:326
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:367
msgctxt "fonttypedialog|extended_tip|textCB"
msgid "Define the font for the text in your formula here."
msgstr "Иалышәх ашрифт аформула аҟны атекст азы."
#. PEDax
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:341
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:382
msgctxt "fonttypedialog|formulaL"
msgid "Formula Fonts"
msgstr "Аформулақәа ршрифт"
#. FZyFB
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:375
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:416
msgctxt "fonttypedialog|label5"
msgid "_Serif:"
msgstr ""
#. TAgaq
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:392
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:433
msgctxt "fonttypedialog|label6"
msgid "S_ans-serif:"
msgstr ""
#. qzEea
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:409
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:450
msgctxt "fonttypedialog|label7"
msgid "F_ixed-width:"
msgstr ""
#. pJfBE
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:429
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:470
msgctxt "fonttypedialog|extended_tip|serifCB"
msgid "You can specify the font to be used as serif font."
msgstr ""
#. mD8Qp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:445
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:486
msgctxt "fonttypedialog|extended_tip|sansCB"
msgid "You can specify the font to be used for sans serif font."
msgstr ""
#. BUA9M
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:461
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:502
msgctxt "fonttypedialog|extended_tip|fixedCB"
msgid "You can specify the font to be used for fixed-width font."
msgstr ""
#. PgQfV
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:476
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:517
msgctxt "fonttypedialog|customL"
msgid "Custom Fonts"
msgstr "Ахархәаҩ ишрифтқәа"
#. gXDAz
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:505
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:546
msgctxt "fonttypedialog|extended_tip|FontsDialog"
msgid "Defines the fonts that can be applied to formula elements."
msgstr ""
@@ -3353,57 +3371,63 @@ msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Акьыԥхьра аформат"
-#. s7A4r
+#. CUrCA
#: starmath/uiconfig/smath/ui/smathsettings.ui:257
+msgctxt "smathsettings|enableinlineedit"
+msgid "Enable visual editing"
+msgstr ""
+
+#. s7A4r
+#: starmath/uiconfig/smath/ui/smathsettings.ui:272
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr ""
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:265
+#: starmath/uiconfig/smath/ui/smathsettings.ui:280
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr ""
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:277
+#: starmath/uiconfig/smath/ui/smathsettings.ui:292
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr ""
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:285
+#: starmath/uiconfig/smath/ui/smathsettings.ui:300
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr ""
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:297
+#: starmath/uiconfig/smath/ui/smathsettings.ui:312
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Иарклатәуп ахыцқәа автоматикала"
#. M4uaa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+#: starmath/uiconfig/smath/ui/smathsettings.ui:334
msgctxt "smathsettings|smzoom"
msgid "Scaling code input window:"
msgstr "Акод аҭагаларҭа аԥенџьыр амасштаб:"
#. sZMPm
-#: starmath/uiconfig/smath/ui/smathsettings.ui:337
-#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+#: starmath/uiconfig/smath/ui/smathsettings.ui:348
+#: starmath/uiconfig/smath/ui/smathsettings.ui:355
msgctxt "extended_tip|smzoom"
msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
msgstr ""
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:363
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Еиуеиԥшым апараметрқәа"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:378
+#: starmath/uiconfig/smath/ui/smathsettings.ui:393
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr ""
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 41efbff47c5..536db94ff0c 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/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: 2023-05-31 16:28+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-20 09:34+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195163.000000\n"
#. fLdeV
@@ -5818,20 +5818,14 @@ msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Form menu, %PRODUCTNAME must be restarted."
msgstr ""
-#. yojAQ
-#: svtools/uiconfig/ui/restartdialog.ui:265
-msgctxt "restartdialog|reason_save"
-msgid "For the modified save settings to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
-
#. weAzr
-#: svtools/uiconfig/ui/restartdialog.ui:280
+#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|label"
msgid "Do you want to restart %PRODUCTNAME now?"
msgstr ""
#. fpc8k
-#: svtools/uiconfig/ui/restartdialog.ui:294
+#: svtools/uiconfig/ui/restartdialog.ui:279
msgctxt "restartdialog|reason_skia"
msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 5c1fa141c79..26ff4ebdd73 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-08-24 11:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022336.000000\n"
#. 3GkZj
@@ -5281,11 +5281,11 @@ msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
-#. T7sVF
+#. XAree
#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
-msgid "Line Style 9"
-msgstr "Аҵәаӷәа астиль 9"
+msgid "Sparse Dash"
+msgstr ""
#. evPXr
#: include/svx/strings.hrc:924
@@ -6336,359 +6336,365 @@ msgctxt "RID_SVXSTR_THEME_EFFECT_DARKER"
msgid "$THEME_NAME, $PERCENTAGE% Darker"
msgstr ""
+#. PWRtb
+#: include/svx/strings.hrc:1138
+msgctxt "RID_SVXSTR_UNDO_THEME_COLOR_CHANGE"
+msgid "Theme Color Change"
+msgstr ""
+
#. DJGyY
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Аекструзиа"
#. TyWTi
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Аекструзиа аҿак./аҿых."
#. DKFYE
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Инарҳәтәуп ҵаҟа"
#. 2Rrxc
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Инарҳәтәуп хыхь"
#. eDpJK
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Инарҳәтәуп армарахь"
#. CWDSN
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Инарҳәтәуп арӷьарахь"
#. CxYgt
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Иԥсахтәуп аекструзиа аҵаулара"
#. c5JCp
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Иԥсахтәуп аориентациа"
#. KDSyh
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Иԥсахтәуп апроекциа атип"
#. JpzeS
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Иԥсахтәуп арлашара"
#. j4AR9
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Иԥсахтәуп ажжара"
#. yA2xm
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr ""
#. DFEZP
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Иԥсахтәуп аекструзиа аԥштәы"
#. uPyWe
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1154
+#: include/svx/strings.hrc:1155
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Атексттә еффектқәа"
#. 7RVov
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Ихархәатәуп атексттә еффект аформа"
#. h3CLw
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Еиҟаратәтәуп атексттә еффект анбанқәа аҳаракыра ала"
#. 6h2dG
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Еиҟаратәтәуп атексттә еффект анбанқәа"
#. eKHcV
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr ""
#. oo88Y
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "аҟынтәи"
#. 4sz83
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Астиль"
#. fEHXC
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "и"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr ""
#. CUEEW
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Акәакьтә кәаԥ алхра"
#. cQmVp
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Хыхьла арымарахь"
#. TtnJn
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr ""
#. UERVC
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Хыхьла арыӷьарахь"
#. CznfN
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr ""
#. jvzC7
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Ацентр ала"
#. HPtYD
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr ""
#. v4SqB
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Ҵаҟала арымарахь"
#. daA8a
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr ""
#. DGWf8
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Ҵаҟала арыӷьарахь"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr ""
#. aMva8
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Ара шәара ишәылшоит ишәыԥсахыр аконтур."
#. DXEuF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Иҷыдоу асимвол алхра"
#. JfRzP
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Иалышәх испециалу асимволқәа ари аобласт аҟны."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Асимвол акод "
#. HECeC
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Аҭакыра «#» аҟны иаҭахуп адырқәа рҭагалара. Иҭажәгал аҵакы."
#. w4wm8
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Аформақәа"
#. cz8aS
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Анапхгара аелемент алхӡам"
#. JG7Es
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Аҷыдаҟазшьақәа: "
#. YQvBF
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Аформа аҷыдаҟазшьақәа"
#. qS9Rn
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Аформақәа рнавигатор"
#. PzEVD
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Аформа"
#. FWPxF
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Иҵәаху"
#. DnoDH
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Аформа"
#. Ba4Gy
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Анапхгара иҵәаху аелемент"
#. wtZqP
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Анапхгара аелемент"
#. HvXRK
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Аҭаҩра"
#. HmTfB
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "аҟынтә"
#. NZ68L
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Аҭакыра алхра:"
#. vGXiw
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Адырқәа адырқәа рбазахь аҭаҩра агха"
#. zzFRi
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Азыҳәаратә ҵакҭаҩ аҟны асинтаксис агха"
#. fS8JJ
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr ""
#. Qb4Gk
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "Анҵамҭақәа # аныххоит."
#. zSJQe
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6696,337 +6702,337 @@ msgid ""
msgstr ""
#. Kb7sF
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Анавигациа апанель"
#. pKEQb
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Аиҵагыла"
#. FXRKA
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Иқәыргылатәуп аҷыдаҟазшьа #"
#. hXjTN
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Аконтеинер иҭаргылатәуп"
#. BWpyC
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Ианыхтәуп #"
#. ZeaDk
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Ианыхтәуп # аобиект(қәа)"
#. VgGrE
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Аконтеинер аҟны иԥсахтәуп елементк"
#. FoXgt
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Иалаԥсахтәуп анапхгара аелемент"
#. ZGDAr
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Атексттә ҭыкыра"
#. CBmAL
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1216
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Абираҟ хәыҷ"
#. xwuJF
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Асиа зцу аҭакыра"
#. WiNUf
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Ахьӡынҵа"
#. a7gAj
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Арыцхә аҭакыра"
#. EaBTj
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Аамҭа аҭакыра"
#. DWfsm
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Ахыԥхьаӡара аҭакыра"
#. TYjnr
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Авалиута аҭакыра"
#. B6MEP
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr ""
#. DEn9D
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Иформатрку аҭакыра"
#. V4iMu
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Акнопка"
#. TreFC
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Аиҭарсга"
#. NFysA
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Аҭыԥдырга"
#. E5mMK
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Агәыԥ"
#. 5474w
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Аграфикатә кнопка"
#. qT2Ed
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr ""
#. 6Qvho
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Афаил алхра"
#. uEYBR
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Атаблица Аконтроль "
#. 3SUEn
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr ""
#. VtEN6
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Аԥхьаӡага"
#. eGgm4
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Анавигациа апанель"
#. yME46
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Гәыԥ-гәыԥла алкаара"
#. s94UU
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr "Арыцхәи аамҭеи рзы аҭакыра"
#. PzA5d
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr ""
#. ZyBEz
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Арыцхә)"
#. guA5u
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Аамҭа)"
#. 2wgdY
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Афильтрқәа рнавигатор"
#. BUYuD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Ифильтртәуп ашьҭахь"
#. AcTBB
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Ма"
#. 6RPtu
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr ""
#. iEoGb
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<Автоҭакыра>"
#. Da6gx
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr ""
#. ZoEuu
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr ""
#. 75ECE
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "Ахархәара АБАС ари аҭакыраҟны иауам"
#. tzFv5
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr ""
#. y6Z26
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Аҭакыреи еибгоу ахыԥхьаӡареи реиҿырԥшра ауам"
#. F8FgA
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Адырқәа рбаза иаҵанакуам атаблица «#»."
#. EDcU7
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Адырқәа рбаза иаҵанакуам атаблица ма азыҳәара «#»."
#. YBFF5
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr ""
#. cECTG
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr ""
#. VkeLY
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Идырым аиҵагыла «#1» атаблице «#2» аҟны."
#. z9bf9
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr ""
#. CEg85
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Иазалху акритерии ари аҭакыреи реҿырԥшра ауам."
#. ZGAAQ
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Адырқәа рнавигатор"
#. W4uM2
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (аԥхьара мацараз)"
#. DgfNh
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Ари афаил ыҟоуп. Ихҩылаатәума?"
#. dSYCi
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object# аҭыԥдырга"
#. JpaM6
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7034,7 +7040,7 @@ msgid ""
msgstr ""
#. y5Dyt
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7042,7 +7048,7 @@ msgid ""
msgstr ""
#. VEzGF
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7050,13 +7056,13 @@ msgid ""
msgstr ""
#. 3hF6H
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Ианыхтәума атрибут «$ATTRIBUTENAME»?"
#. AWEbJ
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7065,7 +7071,7 @@ msgid ""
msgstr ""
#. SGiK5
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7074,1069 +7080,1069 @@ msgid ""
msgstr ""
#. 2zzHP
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Ахьӡ«%1» XML аҟны ахархәара ауам. Иалышәх даҽа хьӡык."
#. 4nAtc
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Апрефикс «%1» XML аҟны ахархәара ауам. Иалышәх даҽа префикск."
#. qrFQD
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Ахьӡ «%1» ыҟоуп. Иалышәх даҽа хьӡык."
#. DKkaw
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr ""
#. xcAaD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "Put"
#. tkRR3
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "Get"
#. fsyAL
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Мап"
#. Bjxmg
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Аекземплиар"
#. affmF
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Адокумент"
#. gJLHj
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Аидҳәалара: "
#. AEHco
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Азхьарԥш: "
#. iLaBC
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Аҟаҵара: "
#. HBV5Q
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Аметод: "
#. dAN2F
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Иалаԥсахтәуп "
#. QMiqA
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Иацҵатәуп аелемент"
#. C9YBB
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Аелемент аредакциа азутәуп"
#. XAh7B
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Ианыхтәуп аелемент"
#. CLHER
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Иацҵатәуп атрибут"
#. 6Ycoo
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Атрибут аредакциа азутәуп"
#. 6dSAd
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Ианыхтәуп атрибут"
#. Ljhja
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr ""
#. CHTrw
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr ""
#. yYwEG
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr ""
#. yVch8
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr ""
#. AX58u
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr ""
#. DFxmD
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr ""
#. qvvD7
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Аелемент"
#. U4Btb
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Атрибут"
#. Prceg
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Аидҳәалара"
#. iFARB
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr ""
#. BTmNa
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr ""
#. 5WjQZ
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. JC7pc
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. MhfuC
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Ацентр ала"
#. kX7GR
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Ижәаба-шьаҭатәу"
#. 7vecp
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Аҭаргылара арежим. Шәақәыӷәӷәа арежим аԥсахразы."
#. ZCWNC
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Алаԥсахра арежим. Шәақәыӷәӷәа аҭаргылара арежим азы."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Алаԥсахра"
#. qqCSF
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Иҭаргылатәуп"
#. 2BBEb
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr "%1. Шәақәыӷәӷәа алхра арежим аԥсахразы."
#. Dh5A2
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Ацифроватә напаҵаҩра: анапаҵаҩра шьақәырӷәӷәоуп."
#. xZprv
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Ацифроватә напаҵаҩра: анапаҵаҩра шьақәырӷәӷәоуп, аха асертификат агәаҭара ауам."
#. Yydkh
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Ацифроватә напаҵаҩра: адокумент напаҵаҩӡам."
#. BRmFY
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr ""
#. Swq5S
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Адокумент ԥсахын. Шәақәыӷәӷәа аиқәырхараз."
#. tRWKa
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr ""
#. 7C8GH
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Адокумент аҭагалара..."
#. YbNsP
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Аслаид ари аԥенџьыр ианраалатәуп."
#. MJums
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_FIT_PAGE"
msgid "Fit page to current window."
msgstr "Адаҟьа ари аԥенџьыр ианраалатәуп."
#. Fpkx2
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. CKqDa
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_TABLECELL_HINT"
msgid "Table cell address. Click to open Table Properties dialog."
msgstr "Атаблица абларҭа адрес. Шәақәыӷәӷәа, адиалог аԥенџьыр «Атаблица аҷыдаҟазшьақәа» аартразы."
#. MG6GF
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_SECTION_HINT"
msgid "Section name. Click to open Edit Sections dialog."
msgstr ""
#. rLN6T
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_TOC_HINT"
msgid "Table of Contents. Click to open Table of Contents dialog."
msgstr ""
#. gnk6E
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_NUMBERING_HINT"
msgid "Numbering Level. Click to open Numbering dialog."
msgstr "Аномерркра аҩаӡара. Шәақәыӷәӷәа, аԥнџьыр «Аномерркра» аартразы."
#. aT6VC
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_LIST_STYLE_HINT"
msgid "List Style and Level."
msgstr "Асиа астили аҩаӡареи."
#. G5sCs
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_FORMULA_HINT"
msgid "Formula"
msgstr "Аформула"
#. rBgY5
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ROW_COLUMN_HINT"
msgid "Row and Column"
msgstr "Ацәаҳәеи аиҵагылеи"
#. Bc5Sg
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Амасштаб. Арӷьарахьтәи ақәыӷәӷәара иаԥсахуеит амасштаб, армарахьтәи иаанартуеит адиалог «Масштаб» аԥенџьыр."
#. HCjAM
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Ирдуны"
#. 2YBJE
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Ирхәыҷны"
#. n9EyG
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Адаҟьа зегьы"
#. 2UBAF
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Адаҟьа аҭбаара ала"
#. YBg9X
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Иоптмалу аԥшра"
#. Wi5Fy
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Астильқәа алаҵаны"
#. BJSzf
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Абзац астильқәа"
#. ARuQM
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Абларҭа астильқәа"
#. 7ChAu
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "Иԥшаатәуп аформатркра"
#. K6Ave
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "Иԥсахтәуп аформатркра ала"
#. USdBy
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Инаӡоуп адокумент анҵәамҭанӡа"
#. CVSwo
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "Инаӡоуп адокумент анҵәамҭанӡа, иҳаднагалоит алагамҭа аҟынтәи"
#. yCJzd
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Инаӡоуп абӷьыц анҵәамҭанӡа"
#. Diftw
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Аԥшааратә цәаҳәа ԥшаам"
#. xACuY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Анавигациа аелемент ԥшаам"
#. CGo5w
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Инаӡоуп адокумент алагамҭанӡа"
#. nDCC4
-#: include/svx/strings.hrc:1358
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "Инаӡоуп адокумент алагамҭанӡа, иҳаднагалоит анҵәамҭа аҟынтәи"
#. FNdxE
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1360
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr ""
#. sDL47
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1364
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Аԥштәы алаԥсахра"
#. 7FcWA
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "3D аеффектқәа"
#. j6dA6
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Ииашам ажәамаӡа"
#. JGJ9F
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Ажәамаӡақәа еиқәшәаӡом"
#. VHTRb
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Асанҭыр хәыҷқәа"
#. AiNrB
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Асанҭыр дуқәа"
#. Vtk8J
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Иҭарҭәоу аромбқәа"
#. bQFBw
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Асанҭыр дуқәа"
#. 5eJDd
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr ""
#. D8zQC
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Ахыцқәа арӷьарахь"
#. QCULV
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr ""
#. XuXC7
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr ""
#. cUEoG
#. do not translate this; instead describe the nth numbering style (LC_NumberingLevel) defined by your locale
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Аномерркра 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Аномерркра 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Аномерркра (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Римтәи ацифрақәа, адыуқәа I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Анбан дыуқәа A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Анбан хәыҷқәа a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Анбан хәыҷқәа (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Римтәи ацифрақәа, адыуқәа i. ii. iii."
#. VAgDM
#. do not translate this; instead describe the nth outline style (LC_OutLineNumberingLevel) defined by your locale
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1391
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Uppercase Roman, uppercase letters, numeric, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. DbqB2
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Uppercase letters, numeric, lowercase letters, numeric, solid small circular bullet"
msgstr ""
#. FTvR2
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric"
msgstr "Ахыԥхьаӡаратә"
#. EiF5E
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. DZGS4
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. upcZy
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Numeric, lowercase letters, numeric, uppercase letters, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Иҩаӡарарацәоу аномерркра"
#. tiXu5
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr ""
#. nEJiF
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "ZIP -фаил аԥҵара ауам."
#. PqEay
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_SAFEMODE_USER_PROFILE_EXPORTED"
msgid "Your user profile has been exported as 'libreoffice-profile.zip'."
msgstr "Ахархәаҩ ипрофиль еспортуп «libreoffice-profile.zip» ҳасабла."
#. CC6Sw
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr ""
#. c69eB
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. nsioo
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr ""
#. DzJ9Y
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. HTTW5
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr ""
#. H9jn7
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Иԥшаатәуп"
#. WbEFL
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Арегистр иазхьаԥштәуп"
#. 59ENV
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Аформат иазхьаԥштәуп"
#. hAmnh
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) × $(HEIGHT) ($(WIDTH_IN_PX) × $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) × $(HEIGHT) ($(WIDTH_IN_PX) × $(HEIGHT_IN_PX) пикс.)"
#. ntSYA
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) × $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) × $(HEIGHT), $(DPI) DPI"
#. EvHUn
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) KiB"
msgstr "$(CAPACITY) КиБ"
#. 5qx2C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) KiB ($(REDUCTION)% reduction)"
msgstr "$(CAPACITY) КиБ ($(REDUCTION)% аиҵацалара)"
#. ESUpG
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1418
msgctxt "STR_IMAGE_GIF"
msgid "GIF image"
msgstr "Асахьа GIF"
#. yWL9G
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_IMAGE_JPEG"
msgid "JPEG image"
msgstr "Асахьа JPEG"
#. oGKBg
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1420
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "асахьа PNG"
#. Fkrjs
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "асахьа TIFF"
#. VWyEb
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "асахьа WMF"
#. pCpoE
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "асахьа MET"
#. DELaB
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "асахьа PICT"
#. 3AZAG
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "асахьа SVG"
#. aCEJW
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "асахьа BMP"
#. NBoWH
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr "Асахьа WebP"
#. p2L8C
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "идырӡам"
#. 8LBFX
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1430
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Аиҭарсга"
#. xLF42
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Асахьа арежим"
#. fw5hA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Аҟаԥшь"
#. CiQvY
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Аиаҵәа"
#. BhvBe
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr ""
#. HSP36
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Ажжара"
#. w5BYP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Аконтраст"
#. EZUjS
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Гамма"
#. ernMB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Аҵәцара"
#. LdkNB
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Кадра еихшатәуп"
#. TJmBu
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Истандарту ахырхарҭа"
#. WQqju
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Хыхьынтә ҵаҟа"
#. ipfz6
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Ҵаҟантә хыхь"
#. MLR44
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Аҩадахьы"
#. vUDeh
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Армарахьтәи аҭакыра: "
#. EFBbE
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Хыхьтәи аҭакыра: "
#. 7HeyP
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Арӷьарахьтәи аҭакыра: "
#. HCuWQ
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Ҵаҟатәи аҭакыра: "
#. zD9BB
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Адаҟьа ахҳәаа: "
#. a4eSJ
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Анбан дыуқәа"
#. DuQGP
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Анбан хәыҷқәа"
#. nWQ7R
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Идыуқәу Римтәиқәа"
#. PxkPZ
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Ихәыҷқәоу Римтәиқәа"
#. B7YEa
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Арабтәқәа"
#. vPbGB
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1456
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Мап"
#. akGGo
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Альбомтә"
#. bbcaZ
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1458
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Ашәҟәытә"
#. BQtGg
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1459
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Арымарахь"
#. JWFLj
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Арыӷьарахь"
#. bxvGx
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1461
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Зегьы"
#. S3nm4
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1462
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr ""
#. dcvEJ
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Автор: "
#. 2siC9
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1464
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Арыцхә: "
#. pWoLe
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Атекст: "
#. pAABc
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Асимвол аҿаԥшыра"
#. Deknh
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Аԥштәы палитра"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr "Аслаидқәа рыԥхьаӡа:"
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8144,2159 +8150,2159 @@ msgid ""
msgstr ""
#. KycVH
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Ихадоу алатиница"
#. bcjRA
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Алатиница-1"
#. h6THj
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Ирҭбаау алатиница-A"
#. o4EF9
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Ирҭбаау алатиница-B"
#. W3CGs
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "Афонетикатә дыргақәа"
#. yZjF6
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr ""
#. EASZR
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr ""
#. wBjC4
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Ихадоу абырзентә"
#. Dh8Es
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr ""
#. jGT5E
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Акириллица"
#. DQgLS
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr ""
#. kXEQY
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Ихадоу иврит"
#. Cb8g4
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Ирҭбаау иврит"
#. ZmDCd
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr ""
#. hZDFV
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr ""
#. c3CqD
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr ""
#. EfVnG
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr ""
#. iWzLc
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr ""
#. omacG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr ""
#. Cdwzw
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr ""
#. BhEGN
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr ""
#. 6YkEo
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr ""
#. J5qn4
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr ""
#. 4UEFU
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr ""
#. C5yzo
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr ""
#. EvjbD
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Лаостәи"
#. HqFTh
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Ихадоу ақырҭуа"
#. npAc8
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Ирҭбаау ақырҭуа"
#. AHAB4
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr ""
#. dqrF5
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additional"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr ""
#. LEQg6
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr ""
#. D9KFj
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Хыхьтәии ҵаҟатәии аиндексқәа"
#. yaxYV
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Аԥара асимволқәа"
#. jzA5i
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr ""
#. CHNBZ
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Анбанқәа иреиԥшу асимволқәа"
#. cDkEd
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Ахыԥхьаӡаратә формақәа"
#. j25Fp
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Ахыцқәа"
#. p5Tbx
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Аматематикатә операторқәа"
#. ckgof
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Атехникатә символқәа"
#. 8rXdw
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr ""
#. D4J8A
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Асимволқәа аоптикала реиҩдыраара"
#. hXwgf
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Иагәылаҵоу анбанқәеи ацифрақәеи"
#. AD9HJ
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Арамкақәа рсимволқәа"
#. vViaR
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Ахарҭәаагатә символқәа"
#. ok7ks
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Агеометриатә фигурақәа"
#. sKty5
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Еиуеиԥшым адыргаҷқәа"
#. yDpNT
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Адыргаҷқәа Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK - асимволқәеи апунктуациеи"
#. Bo4iK
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Хирагана"
#. i2Cdr
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Катакана"
#. 9YYLD
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Бопомофо"
#. F9UFG
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr ""
#. yeRDE
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "Еиуеиԥшым CJK-символқәа"
#. kPFs9
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "CJK - иагәылаҵоу анбанқәеи амзақәеи"
#. 6tAx6
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "Аишьашәалара"
#. VakXP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Хангыль"
#. XzS6D
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK - аунификациа зызу аероглифқәа"
#. JVCP5
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK - аунификациа зызу аероглифқәа-A"
#. Y33VK
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Ахатә символқәа робласт"
#. 8yYiM
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr ""
#. BEfFQ
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Анбанқәа рдекоративтә вариантқәа"
#. NCsAG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Арабтәи идекоративтәу-A"
#. adi8G
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Ихеибарҭәаауа абжатақәа"
#. vLBhn
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK - аишьашәалара авариантқәа"
#. i6R3B
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Имаҷу ашәагаа авариантқәа"
#. 7EDCh
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr ""
#. WWoWx
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr ""
#. dkDXh
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Испециалу"
#. GQSEx
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr ""
#. BL66x
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr ""
#. cuQ2k
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr ""
#. wtKAB
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Аготикатә"
#. GPFqC
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr ""
#. 7AovD
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Византиатәи амузыкатә символқәа"
#. G3GQF
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Амузыкатә символқәа"
#. YzBDD
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Аматематикатә анбантә-цифратә символқәа"
#. 3XZRw
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr ""
#. nZnQc
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr ""
#. HBwZE
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr ""
#. TTFkh
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr ""
#. 2jALB
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Атегқәа"
#. 2iHJN
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr ""
#. ABgr9
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Еиуеиԥшым аиҭарсгақәа"
#. a4q6S
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr ""
#. k638K
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr ""
#. pKFTg
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Лимбу"
#. TJHGp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr ""
#. nujxa
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Кхмертәи асимволқәа"
#. neD93
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr ""
#. C6LwC
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Ениуеиԥшым асимволқәеи ахыцқәеи"
#. giR4r
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Агексаграммақәа Ицзин"
#. EqFxm
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr ""
#. VeZNe
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr ""
#. Tvkgh
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Егеитәи ахыԥхтаӡарақәа"
#. CuThH
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr ""
#. nBtk5
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Шавиан"
#. vvMNk
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Сомалитәи алфавит"
#. aiySp
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Сингалтәи"
#. PEGiu
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Тибеттәи"
#. tRBTP
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Бирмантәи"
#. 8sgGF
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Кхмертәи"
#. CdXvH
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Огхам"
#. jFWRQ
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr ""
#. jhzoc
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr ""
#. B66QG
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Тхаана"
#. j8cuG
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Ефиопиатәи"
#. AE5wq
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Чероки"
#. 9mgNF
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr ""
#. d5JWE
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Монголиатәи"
#. XnzyB
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Еиуеиԥшым аматематикатә символқәа-A"
#. R5W9H
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr ""
#. QYf7A
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Ашаблонқәа Браиль"
#. 63BBg
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr ""
#. ykowm
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Еиуеиԥшым аматематикатә символқәа-B"
#. GGdze
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr ""
#. WLLAP
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr ""
#. EyZR2
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr ""
#. o3AQ6
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr ""
#. BVieL
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr ""
#. DwAEz
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr ""
#. 3GDP5
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Бухид"
#. BfGBm
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr ""
#. cL7Vo
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr ""
#. MQoBs
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr ""
#. fCpRM
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr ""
#. zyW2q
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr ""
#. GWxb8
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr ""
#. 8ZJmr
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr ""
#. RR6Er
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr ""
#. K3GsF
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr ""
#. y4HCg
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr ""
#. KUnXb
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr ""
#. zDaXa
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr ""
#. 9Z24A
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr ""
#. CANHf
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr ""
#. X8DEc
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr ""
#. fYpFz
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr ""
#. 3Gzxx
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr ""
#. zKCVG
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr ""
#. U8zrU
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Атон амодификаторқәа"
#. B2yF8
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr ""
#. J4KdA
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr ""
#. eGPjC
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr ""
#. XboFE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr ""
#. tBJi3
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr ""
#. Qrowh
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr ""
#. aZKS5
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Ивертикалу аформақәа"
#. ihUDF
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Нко"
#. Z3AAi
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr ""
#. 428ER
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr ""
#. SqFfT
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr ""
#. yMmow
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Пагба"
#. V6CsB
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Финикиитәи"
#. GNBwz
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr ""
#. VBPZE
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr ""
#. 9msGJ
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Аԥхьаӡага лабыҵәқәа"
#. i6Gx9
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr ""
#. WrXXX
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr ""
#. FhhAQ
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr ""
#. eHvUh
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr ""
#. ZkKwE
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Ваи"
#. pBASG
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr ""
#. GoQpd
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr ""
#. 6pufg
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr ""
#. bmFny
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Реджанг"
#. EaXay
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Чамтәи"
#. qYaAV
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Ажәытәтәи асимволқәа"
#. At8Tk
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr ""
#. ryGAF
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr ""
#. EYLa8
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr ""
#. TPN6m
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr ""
#. G5GLd
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Маджонг"
#. EyMaF
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Домино"
#. r2YQs
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr ""
#. feZ2Q
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr ""
#. H4FpF
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr ""
#. BgKLG
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr ""
#. bVNYf
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Лису"
#. riEM3
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr ""
#. CQMqK
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr ""
#. gDEUp
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr ""
#. UsAq2
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr ""
#. g5H7j
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr ""
#. upBjC
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr ""
#. GQ3XX
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr ""
#. HGVSu
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr ""
#. ryvor
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr ""
#. RTxUc
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr ""
#. 7E6G8
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr ""
#. Ab3wu
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr ""
#. 5gN8e
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr ""
#. D7rcV
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr ""
#. d44Dq
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr ""
#. CLuJC
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Руми ахыԥхьаӡарақәа"
#. FpFeH
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr ""
#. Swfzy
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr ""
#. bMYVC
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr ""
#. Dqcpa
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr ""
#. 8eCZn
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr ""
#. 8LVFp
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Батаки"
#. 9SrgK
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr ""
#. cQEzt
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Брахми"
#. n4oND
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr ""
#. xibkG
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr ""
#. xyswt
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr ""
#. TqExt
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Еиуеиԥшым асимволқәеи апиктограммақәеи"
#. wtMts
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Асмаил хәыҷқәа"
#. WgGuX
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr ""
#. fBitP
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr ""
#. CWvjP
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr ""
#. D7mEf
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr ""
#. 8ouWH
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Чакма"
#. z3gG4
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr ""
#. mFAeA
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr ""
#. b5m8K
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr ""
#. Xrkei
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr ""
#. hG9Na
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr ""
#. rTKpL
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr ""
#. CAKEC
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr ""
#. pTsMT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr ""
#. HNCk9
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr ""
#. GWufB
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr ""
#. t8Bfn
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr ""
#. kAeYs
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr ""
#. 8TGuM
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr ""
#. Yaq3z
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr ""
#. QmkME
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr ""
#. R9PgF
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr ""
#. tpSqU
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr ""
#. 4pjBM
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr ""
#. GoPep
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr ""
#. wNozk
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
#, fuzzy
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Аҵәаӷәатә"
#. SjAev
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr ""
#. CA7vw
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr ""
#. UUKC4
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr ""
#. ZhzBz
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr ""
#. jC4Ue
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr ""
#. TiWmd
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr ""
#. y7tCX
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr ""
#. T29Cw
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr ""
#. EZADa
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr ""
#. 9oFL2
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr ""
#. TYGv3
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr ""
#. wd8bD
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr ""
#. dkSnn
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr ""
#. bts3U
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr ""
#. XSwsB
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr ""
#. rdXCX
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr ""
#. GwT8c
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr ""
#. mz3Cs
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr ""
#. iGUzh
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr ""
#. HRBEN
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr ""
#. 9NCBd
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr ""
#. cPJhp
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr ""
#. GAd7H
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr ""
#. TDgY4
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr ""
#. ho93C
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr ""
#. La5yr
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr ""
#. e3aXA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr ""
#. D6qsK
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr ""
#. aVhdm
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr ""
#. B6UHz
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr ""
#. rFgRw
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr ""
#. F2AJT
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr ""
#. zDLT2
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr ""
#. S69GG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr ""
#. QeCxG
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr ""
#. 45hVB
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr ""
#. Mr7RB
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr ""
#. RTgGA
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Нева"
#. JJrpR
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Осеидж"
#. o3qMt
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr ""
#. nRMFd
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr ""
#. uFMWt
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr ""
#. DH39v
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr ""
#. jPSFu
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr ""
#. TGJHU
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr ""
#. DHbMR
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr ""
#. gPnhH
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr ""
#. rbMNp
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr ""
#. i5evF
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "Ашахматтә символқәа"
#. BYA5Y
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr ""
#. xDvRL
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr ""
#. uzq7e
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr ""
#. FAwvP
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr ""
#. TYjtp
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr ""
#. abFR5
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr ""
#. aDjHx
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr ""
#. qMf5N
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr ""
#. rUG8e
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr ""
#. B6UKP
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1784
+#: include/svx/strings.hrc:1785
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1788
+#: include/svx/strings.hrc:1789
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1794
+#: include/svx/strings.hrc:1795
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. xSLkm
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-C"
msgstr ""
#. v2KBP
-#: include/svx/strings.hrc:1796
+#: include/svx/strings.hrc:1797
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension H"
msgstr ""
#. VXDJy
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-D"
msgstr ""
#. aWGSA
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended-A"
msgstr ""
#. BMCBt
-#: include/svx/strings.hrc:1799
+#: include/svx/strings.hrc:1800
msgctxt "RID_SUBSETMAP"
msgid "Kaktovik Numerals"
msgstr ""
#. VUVDF
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SUBSETMAP"
msgid "Kawi"
msgstr ""
#. EyKCr
-#: include/svx/strings.hrc:1801
+#: include/svx/strings.hrc:1802
msgctxt "RID_SUBSETMAP"
msgid "Nag Mundari"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1803
+#: include/svx/strings.hrc:1804
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "Арымарахьтә арӷьарахь"
#. Ct9UG
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "Арыӷьарахьтә армарахь"
#. XFhAz
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr ""
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "Арымарахьтә арӷьарахь (горизонталла)"
#. b6Guf
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "Арыӷьарахьтә армарахь (горизонталла)"
#. yQGoC
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "Арыӷьарахьтә армарахь (вертикалла)"
#. k7B2r
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Арымарахьтә арӷьарахь (вертикалла)"
#. DF4B8
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr ""
#. siSmL
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Атексттә еффектқәа"
#. Eg8QT
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Ацифратә напаҵаҩра:"
#. NyP2E
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Арыцхә: %1"
#. gsDhD
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Аҵәцара:"
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Адәныҟатәи аҵәаӷәақәа"
#. EniNF
-#: include/svx/strings.hrc:1824
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Адәныҟатәии игоризонталуи аҵәаӷәақәа"
#. BuDWX
-#: include/svx/strings.hrc:1825
+#: include/svx/strings.hrc:1826
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Адәныҟатәии аҩныҵҟатәиқәа зегьии аҵәаӷәақәа"
#. ckL2Z
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Адәныҟатәии ивертикалуи аҵәаӷәақәа"
#. Q9hj4
-#: include/svx/strings.hrc:1827
+#: include/svx/strings.hrc:1828
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Адиагоналтә ҵәаӷәақәа"
#. 8r98a
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Адиагональ ҵаҟа"
#. P4FGE
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Адиагональ хыхь"
#. VxBrT
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1833
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Аҳәаақәа ԥшьба"
#. o8fB8
-#: include/svx/strings.hrc:1833
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr "Армарахтәии арӷьарахьтәии аҳәааҟәа"
#. 6NnM2
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr "Хыхьтәии ҵаҟатәии аҳәаақәа"
#. KTYVW
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1836
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1837
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr "Армарахьтәи аҳәаа"
#. uqzE7
-#: include/svx/strings.hrc:1837
+#: include/svx/strings.hrc:1838
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr "Арӷьарахьтәи аҳәаа"
#. 6ecLB
-#: include/svx/strings.hrc:1838
+#: include/svx/strings.hrc:1839
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr "Хыхьтәи аҳәаа"
#. B6KZc
-#: include/svx/strings.hrc:1839
+#: include/svx/strings.hrc:1840
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr "Ҵаҟатәи аҳәаа"
#. aCMGz
-#: include/svx/strings.hrc:1840
+#: include/svx/strings.hrc:1841
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10305,19 +10311,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1846
+#: include/svx/strings.hrc:1847
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Аграфика ашәагаа агәаҭара"
#. D66VS
-#: include/svx/strings.hrc:1847
+#: include/svx/strings.hrc:1848
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1848
+#: include/svx/strings.hrc:1849
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -12973,105 +12979,106 @@ msgid "Manage Changes"
msgstr "Ариашарақәа рнапхгара"
#. Jyka9
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:77
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
msgctxt "acceptrejectchangesdialog|calcedit"
msgid "Edit Comment..."
msgstr "Иԥсахтәуп акомментари..."
#. EnZSS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:80
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:92
msgctxt "acceptrejectchangesdialog|extended_tip|calcedit"
msgid "Edit the comment for the selected change."
msgstr "Иалху аԥсахразы акомментари ариашара."
#. kqtia
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:101
msgctxt "acceptrejectchangesdialog|calcsort"
msgid "Sorting"
msgstr "Асортра"
#. 2DLpG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:99
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:111
msgctxt "acceptrejectchangesdialog|calcaction"
msgid "Action"
msgstr "Аҟаҵара"
#. 3YNZ7
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:107
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:119
msgctxt "acceptrejectchangesdialog|calcposition"
msgid "Position"
msgstr "Аҭыԥ"
#. wzRCk
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:116
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:128
msgctxt "acceptrejectchangesdialog|calcauthor"
msgid "Author"
msgstr "Автор"
#. xavjS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:125
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:137
msgctxt "acceptrejectchangesdialog|calcdate"
msgid "Date"
msgstr "Арыцхә"
#. CyvEG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:134
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:146
msgctxt "acceptrejectchangesdialog|calcdesc"
msgid "Description"
msgstr "Ахҳәаа"
#. VDtBL
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:151
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
msgctxt "acceptrejectchangesdialog|writeredit"
msgid "Edit Comment..."
msgstr "Иԥсахтәуп акомментари..."
#. eRArW
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:154
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:166
msgctxt "acceptrejectchangesdialog|extended_tip|writeredit"
msgid "Edit the comment for the selected change."
msgstr "Иалху аԥсахразы акомментари ариашара."
#. 75VLB
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:175
msgctxt "acceptrejectchangesdialog|writersort"
msgid "Sort By"
msgstr "Асортра ала"
#. EYaEE
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:173
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:185
msgctxt "acceptrejectchangesdialog|writeraction"
msgid "Action"
msgstr "Аҟаҵара"
#. acfbi
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:193
msgctxt "acceptrejectchangesdialog|writerauthor"
msgid "Author"
msgstr "Автор"
#. WNQ9L
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:190
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:202
msgctxt "acceptrejectchangesdialog|writerdate"
msgid "Date"
msgstr "Арыцхә"
#. 8qG3o
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:211
msgctxt "acceptrejectchangesdialog|writerdesc"
msgid "Comment"
msgstr "Акомментари"
#. Z9yjZ
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:220
msgctxt "acceptrejectchangesdialog|writerposition"
msgid "Document Position"
msgstr "Адокумент аҟны апозициа"
-#. 4DiGj
-#: svx/uiconfig/ui/accessibilitycheckentry.ui:51
+#. AHooD
+#. This is a verb. Push this button to quickly fix an a11y problem.
+#: svx/uiconfig/ui/accessibilitycheckentry.ui:49
msgctxt "accessibilitycheckentry|accessibilityCheckEntryFixButton"
-msgid "Fix"
+msgid "Fix…"
msgstr ""
#. k4D3g
@@ -17889,6 +17896,48 @@ msgctxt "linkwarndialog|ask"
msgid "_Ask when linking a graphic"
msgstr ""
+#. pwRzj
+#: svx/uiconfig/ui/medialine.ui:36
+msgctxt "medialine|toolbutton_open"
+msgid "Open"
+msgstr ""
+
+#. ACDd4
+#: svx/uiconfig/ui/medialine.ui:49
+msgctxt "medialine|toolbutton_apply"
+msgid "Apply"
+msgstr ""
+
+#. NpB3s
+#: svx/uiconfig/ui/medialine.ui:72
+msgctxt "medialine|toolbutton_play"
+msgid "Play"
+msgstr ""
+
+#. nG5y2
+#: svx/uiconfig/ui/medialine.ui:85
+msgctxt "medialine|toolbutton_pause"
+msgid "Pause"
+msgstr ""
+
+#. Q6QEy
+#: svx/uiconfig/ui/medialine.ui:98
+msgctxt "medialine|toolbutton_stop"
+msgid "Stop"
+msgstr ""
+
+#. TEcHD
+#: svx/uiconfig/ui/medialine.ui:121
+msgctxt "medialine|toolbutton_loop"
+msgid "Repeat"
+msgstr ""
+
+#. FuWeE
+#: svx/uiconfig/ui/medialine.ui:206
+msgctxt "medialine|toolbutton_mute"
+msgid "Mute"
+msgstr ""
+
#. GFDF2
#: svx/uiconfig/ui/mediaplayback.ui:22
msgctxt "mediaplayback|label1"
@@ -17907,6 +17956,48 @@ msgctxt "mediaplayback|label3"
msgid "Volume:"
msgstr "Абжьы адыура:"
+#. VVYdS
+#: svx/uiconfig/ui/mediawindow.ui:101
+msgctxt "mediawindow|toolbutton_open"
+msgid "Open"
+msgstr ""
+
+#. DWwdL
+#: svx/uiconfig/ui/mediawindow.ui:114
+msgctxt "mediawindow|toolbutton_apply"
+msgid "Apply"
+msgstr ""
+
+#. Aaaba
+#: svx/uiconfig/ui/mediawindow.ui:137
+msgctxt "mediawindow|toolbutton_play"
+msgid "Play"
+msgstr ""
+
+#. jscyJ
+#: svx/uiconfig/ui/mediawindow.ui:150
+msgctxt "mediawindow|toolbutton_pause"
+msgid "Pause"
+msgstr ""
+
+#. CMZYg
+#: svx/uiconfig/ui/mediawindow.ui:163
+msgctxt "mediawindow|toolbutton_stop"
+msgid "Stop"
+msgstr ""
+
+#. Wu5HF
+#: svx/uiconfig/ui/mediawindow.ui:186
+msgctxt "mediawindow|toolbutton_loop"
+msgid "Repeat"
+msgstr ""
+
+#. zXP86
+#: svx/uiconfig/ui/mediawindow.ui:216
+msgctxt "mediawindow|toolbutton_mute"
+msgid "Mute"
+msgstr ""
+
#. 9zT32
#: svx/uiconfig/ui/namespacedialog.ui:18
msgctxt "namespacedialog|NamespaceDialog"
@@ -20276,85 +20367,85 @@ msgid "Theme Color Edit"
msgstr ""
#. ZBvTV
-#: svx/uiconfig/ui/themecoloreditdialog.ui:109
+#: svx/uiconfig/ui/themecoloreditdialog.ui:111
msgctxt "themecoloreditdialog|labelThemeColorsName"
msgid "Name:"
msgstr "Ахьӡ:"
#. bpeMo
-#: svx/uiconfig/ui/themecoloreditdialog.ui:208
+#: svx/uiconfig/ui/themecoloreditdialog.ui:213
msgctxt "themecoloreditdialog|labelDark"
msgid "Dark 1:"
msgstr "Алашьца 1:"
#. JrFtB
-#: svx/uiconfig/ui/themecoloreditdialog.ui:225
+#: svx/uiconfig/ui/themecoloreditdialog.ui:230
msgctxt "themecoloreditdialog|labelLight1"
msgid "Light1:"
msgstr "Алаша 1:"
#. FGBH2
-#: svx/uiconfig/ui/themecoloreditdialog.ui:242
+#: svx/uiconfig/ui/themecoloreditdialog.ui:247
msgctxt "themecoloreditdialog|labelDark2"
msgid "Dark 2:"
msgstr "Алашьца 2:"
#. QW9Cr
-#: svx/uiconfig/ui/themecoloreditdialog.ui:259
+#: svx/uiconfig/ui/themecoloreditdialog.ui:264
msgctxt "themecoloreditdialog|labelLight2"
msgid "Light2:"
msgstr "Алаша 2:"
#. wgZiU
-#: svx/uiconfig/ui/themecoloreditdialog.ui:295
+#: svx/uiconfig/ui/themecoloreditdialog.ui:301
msgctxt "themecoloreditdialog|labelAccent1"
msgid "Accent 1:"
msgstr "Акцент 1:"
#. yKnVi
-#: svx/uiconfig/ui/themecoloreditdialog.ui:312
+#: svx/uiconfig/ui/themecoloreditdialog.ui:318
msgctxt "themecoloreditdialog|labelAccent2"
msgid "Accent 2:"
msgstr "Акцент 2:"
#. x4B79
-#: svx/uiconfig/ui/themecoloreditdialog.ui:367
+#: svx/uiconfig/ui/themecoloreditdialog.ui:375
msgctxt "themecoloreditdialog|labelAccent3"
msgid "Accent 3:"
msgstr "Акцент 3:"
#. tFUrg
-#: svx/uiconfig/ui/themecoloreditdialog.ui:384
+#: svx/uiconfig/ui/themecoloreditdialog.ui:392
msgctxt "themecoloreditdialog|labelAccent4"
msgid "Accent 4:"
msgstr "Акцент 4:"
#. uENPG
-#: svx/uiconfig/ui/themecoloreditdialog.ui:401
+#: svx/uiconfig/ui/themecoloreditdialog.ui:409
msgctxt "themecoloreditdialog|labelAccent5"
msgid "Accent 5:"
msgstr "Акцент 5:"
#. sVGF5
-#: svx/uiconfig/ui/themecoloreditdialog.ui:418
+#: svx/uiconfig/ui/themecoloreditdialog.ui:426
msgctxt "themecoloreditdialog|labelAccent6"
msgid "Accent 6:"
msgstr "Акцент 6:"
#. uAS9N
-#: svx/uiconfig/ui/themecoloreditdialog.ui:511
+#: svx/uiconfig/ui/themecoloreditdialog.ui:523
msgctxt "themecoloreditdialog|labelHyperlink"
msgid "Hyperlink:"
msgstr "Агиперзхьарԥш:"
#. etJMu
-#: svx/uiconfig/ui/themecoloreditdialog.ui:528
+#: svx/uiconfig/ui/themecoloreditdialog.ui:540
msgctxt "themecoloreditdialog|labelFollowHyperlink"
msgid "Follow Hyperlink:"
msgstr "Изҭаахьоу агиперзхьарԥш:"
#. sShYV
-#: svx/uiconfig/ui/themecoloreditdialog.ui:583
+#: svx/uiconfig/ui/themecoloreditdialog.ui:597
msgctxt "themecoloreditdialog|frameLabel"
msgid "Colors"
msgstr "Аԥштәқәа"
@@ -20366,7 +20457,7 @@ msgid "Theme"
msgstr "Атема"
#. UaXFU
-#: svx/uiconfig/ui/themedialog.ui:131
+#: svx/uiconfig/ui/themedialog.ui:133
msgctxt "hatchpage|extended_tip|add"
msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button."
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 56a28bd8e75..c1f8cb79ff6 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/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: 2023-07-25 11:21+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-09-01 15:15+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561372693.000000\n"
#. oKCHH
@@ -118,17 +118,17 @@ msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING"
msgid "The text formatting conveys additional meaning."
msgstr ""
-#. MXVBm
+#. DpbCJ
#: sw/inc/AccessibilityCheckStrings.hrc:33
msgctxt "STR_NON_INTERACTIVE_FORMS"
-msgid "An input form is not interactive."
-msgstr "Аҭагалара аформа интерактивӡам."
+msgid "Use interactive input fields."
+msgstr ""
-#. Z6sHT
+#. bmMTB
#: sw/inc/AccessibilityCheckStrings.hrc:34
msgctxt "STR_FLOATING_TEXT"
-msgid "Avoid floating text."
-msgstr "Ицәырҵуа атекст аҽацәыхьчатәуп."
+msgid "Anchor Frames/Text boxes “As Character“."
+msgstr ""
#. 77aXx
#: sw/inc/AccessibilityCheckStrings.hrc:35
@@ -160,32 +160,44 @@ msgctxt "STR_TABLE_FORMATTING"
msgid "Avoid using empty table cells for formatting."
msgstr ""
+#. rXKK3
+#: sw/inc/AccessibilityCheckStrings.hrc:40
+msgctxt "STR_CONTENT_CONTROL_IN_HEADER"
+msgid "Avoid content controls in header or footer."
+msgstr ""
+
#. R8FRE
-#: sw/inc/AccessibilityCheckStrings.hrc:41
+#: sw/inc/AccessibilityCheckStrings.hrc:42
msgctxt "STR_DOCUMENT_DEFAULT_LANGUAGE"
msgid "Document default language is not set."
msgstr "Адокумент азы иалхӡам абазатә бызшәа."
#. MMD7M
-#: sw/inc/AccessibilityCheckStrings.hrc:42
+#: sw/inc/AccessibilityCheckStrings.hrc:43
msgctxt "STR_STYLE_NO_LANGUAGE"
msgid "Style “%STYLE_NAME%” has no language set."
msgstr "Иалхӡам «%STYLE_NAME%» астиль абызшәа."
#. euwJV
-#: sw/inc/AccessibilityCheckStrings.hrc:43
+#: sw/inc/AccessibilityCheckStrings.hrc:44
msgctxt "STR_DOCUMENT_TITLE"
msgid "Document title is not set."
msgstr "Адокумент ахы азалхӡам."
-#. 9vYAP
-#: sw/inc/AccessibilityCheckStrings.hrc:44
-msgctxt "STR_ENTER_DOCUMENT_TITLE"
+#. G79xh
+#: sw/inc/AccessibilityCheckStrings.hrc:45
+msgctxt "STR_DOCUMENT_TITLE_DLG_TITLE"
+msgid "Document title"
+msgstr ""
+
+#. Gk4jb
+#: sw/inc/AccessibilityCheckStrings.hrc:46
+msgctxt "STR_DOCUMENT_TITLE_DLG_DESC"
msgid "Enter document title:"
-msgstr "Иҭажәгал адокумент ахы."
+msgstr ""
#. zDpoh
-#: sw/inc/AccessibilityCheckStrings.hrc:46
+#: sw/inc/AccessibilityCheckStrings.hrc:48
msgctxt "STR_ENTER_ALT"
msgid "Enter alternative text:"
msgstr "Иҭажәгал иальтернативу атекст:"
@@ -3096,830 +3108,836 @@ msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "Афигура"
-#. CxADu
+#. cBbBE
#: sw/inc/strings.hrc:155
+msgctxt "STR_POOLCOLL_COMMENT"
+msgid "Comment"
+msgstr ""
+
+#. CxADu
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr "Аиуҩы"
#. PvoVz
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr "Адәықәҵаҩ"
#. AChE4
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Аҭыԥрбага ахы"
#. sDGWT
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Аҭыԥрбага 1"
#. Y7A62
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Аҭыԥрбага 2"
#. DoCtT
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Аҭыԥрбага 3"
#. AL9vf
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "Амаҭәартә рбага аиҟәшага"
#. gGWam
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr ""
#. 2kfKD
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Ахқәа 1"
#. Cyovw
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Ахқәа 2"
#. CeCEB
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Ахқәа 3"
#. xvFCu
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Ахқәа 4"
#. ZhkVH
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Ахқәа 5"
#. fUc7s
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Ахқәа 6"
#. njEgF
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Ахқәа 7"
#. EtFWq
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Ахқәа 8"
#. EbkDM
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Ахқәа 9"
#. Y7Cms
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Ахқәа 10"
#. C6qm4
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Ахархәаҩ иҭыԥрбагақәа рхы"
#. p2GRv
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Ахархәаҩ иҭыԥрбага 1"
#. Hi9XK
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Ахархәаҩ иҭыԥрбага 2"
#. qq6Zm
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Ахархәаҩ иҭыԥрбага 3"
#. EcpEa
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Ахархәаҩ иҭыԥрбага 4"
#. nfuG3
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Ахархәаҩ иҭыԥрбага 5"
#. FNvoZ
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Ахархәаҩ иҭыԥрбага 6"
#. oMjqE
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Ахархәаҩ иҭыԥрбага 7"
#. CxdwC
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Ахархәаҩ иҭыԥрбага 8"
#. ksYyT
-#: sw/inc/strings.hrc:182
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Ахархәаҩ иҭыԥрбага 9"
#. kkbMq
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Ахархәаҩ иҭыԥрбага 10"
#. QAWEr
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Ацитата"
#. ECpGh
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr "Асахьқәа рыхьӡынҵа ахы"
#. rA84j
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr "Асахьақәа рыхьӡынҵа 1"
#. EMAde
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Аобиектқәа рыхьӡынҵа ахы"
#. AAAot
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Аобиектқәа рыхьӡынҵа 1"
#. sbCcn
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Атаблицақәа рыхьӡынҵа ахы"
#. 5EQKp
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Атаблицақәа рыхьӡынҵа 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:191
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Абиблиографиа ахы"
#. 7aSPU
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:193
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Абиблиографиа"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Ахы"
#. Vm4an
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr ""
#. NBniG
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr ""
#. Z3kaL
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Block Quotation"
msgstr "Аблоктә цитата"
#. FPDvM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Атекст иарбоу аформат ала"
#. AA9gY
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Агоризонталтә ҵәаӷәа"
#. mS2ZP
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Ахьӡынҵа аҵанакы"
#. dC66q
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:202
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Ахьӡынҵа ахы"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr "Абазатә"
#. JwhRA
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Актәи адаҟьа"
#. FLUqS
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Армарахьтәи адаҟьа"
#. AV2ND
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Актәи адаҟьа"
#. dKCfD
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr "Аконверт"
#. jGSGz
-#: sw/inc/strings.hrc:208
+#: sw/inc/strings.hrc:209
#, fuzzy
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "аиндекс"
#. AwPSM
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:210
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Албаага"
#. nF28D
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Анҵәамҭатә лбаага"
#. aGDbN
-#: sw/inc/strings.hrc:212
+#: sw/inc/strings.hrc:213
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Альбомтә"
#. pUSTx
#. Numbering rules
-#: sw/inc/strings.hrc:214
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
msgstr "Асиа ада"
#. mGZHb
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "Иномеррку 123"
#. AW8tm
-#: sw/inc/strings.hrc:216
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "Иномеррку ABC"
#. k2FEN
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "Иномеррку abc"
#. 4Cgku
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:219
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "Иномеррку IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "Иномеррку ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr "Амаркер •"
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:223
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr "Амаркер –"
#. dwqEt
#. Bullet \u2611
-#: sw/inc/strings.hrc:225
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet ☑"
msgstr ""
#. ETFA8
#. Bullet \u27A2
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet ➢"
msgstr ""
#. LBMJJ
#. Bullet \u2717
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:230
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet ✗"
msgstr ""
#. J7DDZ
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "Аиҵаҩ 1"
#. C4TAR
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "Еиҟароу аҭбаара змоу аиҵаҩқәа 2"
#. 7EtFb
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "Еиҟароу аҭбаара змоу аиҵаҩқәа 3"
#. oqzB2
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:234
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "Зыҭбаарақәа еиҟарам аиҵаҩқәа 2 (армарахьтәи > арӷьарахьтәи)"
#. irDMZ
-#: sw/inc/strings.hrc:234
+#: sw/inc/strings.hrc:235
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "Зыҭбаарақәа еиҟарам аиҵаҩқәа 2 (армарахьтәи > арӷьарахьтәи)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:237
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr "Абазатә"
#. fCbrD
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:239
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Абзацқәа рстильқәа"
#. D9yAi
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:240
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Асимволқәа рстильқәа"
#. vpotA
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:241
#, fuzzy
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Атаблицақәа рстиль"
#. KJ9Ct
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:242
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Адаҟьақәа рстиль"
#. StGfs
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:243
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Ахьӡынҵақәа рстильқәа"
#. uYnHh
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:244
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Атаблицақәа рстиль"
#. 6VBtB
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:245
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Аконверт"
#. GybX9
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:246
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Аетикетка"
#. 2otxp
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:248
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION атексттә документ"
#. 7q6Uy
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:249
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Адокумент аартра ауам."
#. 5KkLN
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:250
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Адокумент аҧҵара залшом."
#. rfFYm
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:251
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Афильтр ҧшаам."
#. HhLap
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:252
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Еилоу адокумент ахьӡи амҩеи"
#. SSL5h
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:253
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "HTML адокумент ахьӡи амҩеи"
#. bb3o8
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:254
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Асценари аредакциазура"
#. oBFxh
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. QTQk5
-#: sw/inc/strings.hrc:255
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr "Ааи"
#. tvmJD
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:257
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr "Мап"
#. DCJBh
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:258
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr "Мап зыцәку асимволқәа:"
#. QEGSs
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:259
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Мап]"
#. C4tz3
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Адәықәҵара"
#. hFNKj
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Анҵәамҭа"
#. kfeBE
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:262
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Хыхьла"
#. aXzbo
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:263
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Ҵаҟала"
#. 8zzCk
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:264
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "(аҧхьара мацараз)"
#. QRU4j
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:265
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Акаталог 'AutoText' азкуп аԥхьара мацара. Иааԥхатәума амҩа азалхра иазку диалог?"
#. ErVas
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:266
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Астатистика"
#. ZCaDo
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:267
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when heading numbering is assigned to a paragraph style"
msgstr ""
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Адокумент аимпорт..."
#. F39Cf
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Адокумент аекспорт..."
#. LCa4C
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Адокумент аиқәырхара..."
#. ff2XN
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Даҟьала аихшара..."
#. Afs3H
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Адокумент автоматикала аформатркра..."
#. APY2j
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Аҧшаара..."
#. nPLt7
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Letter"
#. LuH5F
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Аорфографиа агәаҭара..."
#. uk874
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Аиагагақәа рыргылара..."
#. Dku8Y
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Аҭыԥрбага аҭаргылара..."
#. wvAiH
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Аҭыԥрба арҿыцра..."
#. YBupW
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:280
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Ареферат аԥҵара..."
#. Nd6Lf
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:281
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Аобиектқәа адаптациа рзутәуп..."
#. PSGuv
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:282
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Атаблица"
#. J4m7R
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:283
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Асахьа"
#. qceuT
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:284
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Аобиект"
#. UE4Z2
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:285
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Афреим"
#. qHLFq
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:286
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Афигура"
#. qcwAT
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:287
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Аҟәша"
#. ZkHpJ
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:288
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Аномерркра"
#. Vk8M5
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:289
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "Иҭацәу адаҟьа"
#. FBG9v
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:290
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Абстракциа: "
#. iD2VD
-#: sw/inc/strings.hrc:290
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "еидыхлатәуп ала: "
#. CV6nr
-#: sw/inc/strings.hrc:291
+#: sw/inc/strings.hrc:292
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Аструктура: аҩаӡара "
#. oEvac
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:293
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Уажәтәи астиль: "
#. BZdQA
-#: sw/inc/strings.hrc:293
+#: sw/inc/strings.hrc:294
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Адаҟьа аномер: "
#. u6eev
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:295
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Аимҟьара адаҟьа ҿыц аҧхьа"
#. hDBmF
-#: sw/inc/strings.hrc:295
+#: sw/inc/strings.hrc:296
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Мраҭашәаратәи атекст: "
#. w3ngS
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:297
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Мрагыларазиатәи атекст: "
#. k6G7J
-#: sw/inc/strings.hrc:297
+#: sw/inc/strings.hrc:298
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "ИАР атекст: "
#. GC6Rd
-#: sw/inc/strings.hrc:298
+#: sw/inc/strings.hrc:299
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "<ианониму>"
#. XUSDj
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:300
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Ианыхтәуп акомментариқәа зегьы $1 аҟынтәи"
#. 3TDWE
-#: sw/inc/strings.hrc:300
+#: sw/inc/strings.hrc:301
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Иҵәахтәуп акомментариқәа зегьы $1 иҟынтәи"
#. 52Kyz
-#: sw/inc/strings.hrc:301
+#: sw/inc/strings.hrc:302
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Heading Numbering"
msgstr "Ахқәа рномерркра"
#. DAoSH
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:303
msgctxt "STR_STATSTR_SWTRANSLATE"
msgid "Translating document..."
msgstr "Адокумент аиҭагара..."
@@ -3927,14 +3945,14 @@ msgstr "Адокумент аиҭагара..."
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:306
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "Иалкаауп: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:308
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3943,7 +3961,7 @@ msgstr[1] "ажәақәа $1"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3953,7 +3971,7 @@ msgstr[1] "асимволқәа $1"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3961,7 +3979,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3971,7 +3989,7 @@ msgstr[1] "ажәақәа $1"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:319
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3979,91 +3997,91 @@ msgstr[0] "асимвол $1"
msgstr[1] "асимволқәа $1"
#. fj6gC
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:320
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Ииагатәуп атекст атаблицахь."
#. PknB5
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:321
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Иацҵатәуп автоформат"
#. hqtgD
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:322
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Ахьӡ"
#. L9jQU
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:323
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Ианыхтәуп автоформат"
#. EGu2g
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:324
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Анаҩстәи автоформат аныххооит:"
#. 7KuSQ
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:325
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Автоформат ахьӡ ҧсахтәуп"
#. GDdL3
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:326
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "Иарктәуп"
#. DAuNm
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:327
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Ианв"
#. WWzNg
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:328
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Фев"
#. CCC3U
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:329
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Мар"
#. cr7Jq
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:330
msgctxt "STR_NORTH"
msgid "North"
msgstr "Аҩада"
#. wHYPw
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:331
msgctxt "STR_MID"
msgid "Mid"
msgstr "Агәҭа"
#. sxDHC
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:332
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Алада"
#. v65zt
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:333
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Аицҵалыҵ"
#. tCZiD
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:334
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -4075,464 +4093,458 @@ msgstr ""
"Шәхы иашәырхәа даҽа хьӡык."
#. EdGPC
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:335
msgctxt "STR_CANT_SAVE_MACROS"
msgid "This document has macros, but macros will not be saved in this file format."
msgstr ""
#. DAwsE
-#: sw/inc/strings.hrc:335
+#: sw/inc/strings.hrc:336
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Ахыҧхьаӡаратә"
#. QmZUu
-#: sw/inc/strings.hrc:336
+#: sw/inc/strings.hrc:337
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Ацәаҳәақәа"
#. 5oTjU
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:338
msgctxt "STR_COL"
msgid "Column"
msgstr "Аиҵагыла"
#. w6733
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:339
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Абиблиографиатә зхьарҧшқәа рыриашара"
#. bvbhG
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:340
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Иҭаргылатәуп абиблиографиатә зхьарҧшқәа"
#. U2BNe
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:341
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "%1- и %2-еи рыбжьара аинтервал"
#. SBmWN
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:342
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Аиҵаҩ %1 аҭбаара"
#. ZLVNB
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:343
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "Атаблица %PRODUCTNAME Writer"
#. FMXrc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:344
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "Афреим %PRODUCTNAME Writer"
#. gEGv8
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:345
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "%PRODUCTNAME Writer асахьа"
#. k8kLw
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:346
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "OLE егьырҭ аобиектқәа"
#. rP7oC
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:347
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "Атаблица ахьӡ иаҵанамкуазароуп абжьажьқәа."
#. g9HF2
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:348
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr ""
#. VFBKA
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:349
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "Иалху асортра ауам"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Аобиект алхра"
#. HmK3X
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Автотекст аҭаргылара аԥхьа"
#. aEVDN
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Автотекст аҭаргылара ашьҭахь"
#. GVkr6
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Аҳәынаԥ аобиект аҩадахьы"
#. MBLgk
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Агиперзхьарҧш ала аиасра"
#. BXpj4
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Аҳәынаԥ аобиект ннажьуеит"
#. AKGsc
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Асахьа қәҿиарала иҭагалоуп"
#. U4P8F
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Асахьа аҭагалара аанкылоуп"
#. uLNMH
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Асахьа аҭагалара ауам"
#. DAGeE
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:361
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Алф.-цифр. символқәа рҭагалара"
#. ABr9D
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:362
#, fuzzy
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Алф.-цифр. символқәа рҭагалара"
#. eyJj8
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:363
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Арамка ашәагаа аԥсахра"
#. RUS7J
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:364
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Арамка аиҭагара"
#. TF3Q9
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Ахқәа"
#. S3JCM
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Атаблицақәа"
#. koqyc
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr ""
#. YFZFi
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Асахьақәа"
#. bq6DJ
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE аобиектқәа"
#. BL4Es
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Агәылаҵақәа"
#. PbsTX
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Аҟәшақәа"
#. 9QY8E
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Агиперзхьарҧшқәа"
#. wMqRF
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:373
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Азхьарҧшқәа"
#. D7Etx
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:374
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Аиндексқәа"
#. xDXB4
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:375
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Асахьақәа"
#. GDSbW
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:376
msgctxt "STR_CONTENT_TYPE_TEXTFIELD"
msgid "Fields"
msgstr "Аҭакырақәа"
#. FPLbd
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:377
msgctxt "STR_CONTENT_TYPE_FOOTNOTE"
msgid "Footnotes"
msgstr "Албаагақәа"
#. FGDB7
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:378
msgctxt "STR_CONTENT_TYPE_ENDNOTE"
msgid "Endnotes"
msgstr "Анҵәамҭатә лбаагақәа"
#. KRE4o
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:379
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Акомментариқәа"
#. zpcTg
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Ахы 1"
#. kbfiB
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr ""
#. wcSRn
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Ахы 1.1"
#. QDE2j
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from subchapter 1.1. This is the entry for the table of contents."
msgstr ""
#. bymGA
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Ахы 1.2"
#. vT3Xi
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from subchapter 1.2. This keyword is a main entry."
msgstr "Ахы 1.2 аҵанакы. Ари ихадоу елементуп."
#. mFDqo
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Атаблица 1: Ари атаблица 1"
#. VyQfs
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Асахьа 1: Ари асахьа 1"
#. EiPU5
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:388
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr "Ахы"
#. s9w3k
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:389
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr "Ихадароу ажәа"
#. 8bbUo
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:390
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr "Ахархәаҩ икаталог ахь аҭаҩра"
#. SoBBB
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:391
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr "Аҭаҩра"
#. cT6YY
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:392
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr "ари"
#. KNkfh
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:393
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr "Раԥхьатәи ацаԥха"
#. 2J7Ut
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:394
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr "Аҩбатәи ацаԥха"
#. beBJ6
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Ахы"
#. dGJ5Q
-#: sw/inc/strings.hrc:395
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Атаблица"
#. thWKC
-#: sw/inc/strings.hrc:396
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr ""
#. o2wx8
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. 2duFT
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE-аобиект"
#. qNk5D
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:400
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Агәылаҵа"
#. jdW3y
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:401
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Аҟәша"
#. xsFen
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:402
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Агиперзхьарҧш"
#. BafFj
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:403
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Азхьарҧш"
#. 3s3yG
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:404
#, fuzzy
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "аиндекс"
#. Qv3eV
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:405
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Акомментари"
#. W3sED
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:406
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Аграфикатә обиект"
#. PTFow
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:407
msgctxt "STR_CONTENT_TYPE_SINGLE_TEXTFIELD"
msgid "Field"
msgstr "Аҭакыра"
#. gFNUw
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:408
msgctxt "STR_CONTENT_TYPE_SINGLE_FOOTNOTE"
msgid "Footnote"
msgstr "Албаага"
#. ChCSP
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "STR_CONTENT_TYPE_SINGLE_ENDNOTE"
msgid "Endnote"
msgstr "Анҵәамҭатә лбаага"
#. dFkui
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_CONTENT_FOOTNOTE"
msgid "Footnote"
msgstr "Албаага"
#. X6DYF
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr "Анҵәамҭатә лбаага"
-#. sEQCK
-#: sw/inc/strings.hrc:411
-msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
-msgid "Footnotes are listed above this line and Endnotes are listed below"
-msgstr "Аҩадахьы— албаагақәа, аладахьы— анҵәамҭатә лбаагақәа"
-
#. jThGW
#: sw/inc/strings.hrc:412
msgctxt "STR_DEFINE_NUMBERFORMAT"
@@ -4597,682 +4609,676 @@ msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr "Адокумент иаҵанакуеит изыцклаԥшуа аришарақәа."
-#. 5gsCi
-#: sw/inc/strings.hrc:422
-msgctxt "STR_HEADER_FOOTER"
-msgid "Header/Footer"
-msgstr "Аколонтитул"
-
#. ytRb2
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:422
msgctxt "STR_FLDREF_FOOTNOTE"
msgid "Footnote"
msgstr "Албаага"
#. ou7iB
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:423
msgctxt "STR_FLDREF_ENDNOTE"
msgid "Endnote"
msgstr "Анҵәамҭатә лбаага"
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:426
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "иауам"
#. 5GdxN
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:427
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Ианыхтәуп $1"
#. i6vB4
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:428
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Иҭаргылатәуп $1"
#. JESFv
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:429
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Ихҩылаатәуп: $1"
#. FVqpL
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:430
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Абзац ҿыц"
#. r3iVE
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:431
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Ииагатәуп"
#. Z2Ft8
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:432
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Ихархәатәуп атрибутқәа"
#. hetuZ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:433
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Ихархәатәуп астиль: $1"
#. GokWu
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:434
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Атрибутқәа еиҭашьақәыргылатәуп"
#. mDgEJ
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Иҧсахтәуп астиль: $1"
#. onBFE
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Иҭаргылатәуп афаил"
#. WCCkF
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:437
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Иҭаргылатәуп автотекст"
#. CyNXC
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:438
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Ианыхтәуп агәылаҵа: $1"
#. zFANC
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:439
msgctxt "STR_DELETE_BOOKMARKS"
msgid "Delete bookmarks"
msgstr "Ианыхтәуп агәылаҵақәа"
#. 54y8f
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Иҭаргылатәуп агәылаҵа: $1"
#. thkPu
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:441
msgctxt "STR_UPDATE_BOOKMARK"
msgid "Update bookmark: $1"
msgstr "Ирҿыцтәуп агәылаҵа: $1"
#. d6wEB
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:442
msgctxt "STR_UPDATE_BOOKMARKS"
msgid "Update bookmarks"
msgstr "Ирҿыцтәуп агәылаҵақәа"
#. i7aeN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:443
msgctxt "STR_UPDATE_FIELD"
msgid "Update field: $1"
msgstr "Ирҿыцтәуп аҭакыра: $1"
#. GzFSP
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:444
msgctxt "STR_UPDATE_FIELDS"
msgid "Update fields"
msgstr "Ирҿыцтәуп аҭакырақәа"
#. HACdT
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_FIELDS"
msgid "Delete fields"
msgstr "Ианыхтәуп аҭакырақәа"
#. gEXeo
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:446
msgctxt "STR_UPDATE_SECTIONS"
msgid "Update sections"
msgstr "Ирҿыцтәуп аҟәшақәа"
#. ZdcaY
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:447
msgctxt "STR_DELETE_SECTIONS"
msgid "Delete sections"
msgstr "Ианыхтәуп аҟәшақәа"
#. XHkEY
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:448
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Атаблица асортра"
#. gui6q
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:449
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Атекст асортра"
#. APAMG
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:450
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Иҭаргылатәуп атаблица: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:451
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Ииагатәуп атекст атаблицахь"
#. h3EH7
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:452
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Ииагатәуп атаблица атекст ахь"
#. uKreq
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:453
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Акопиа ахыхтәуп: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:454
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Иҧсахтәуп $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:455
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Иҭаргылатәуп адаҟьа аимҟьара"
#. mrWg2
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:456
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Иҭаргылатәуп аиҵаҩ аимҟьара"
#. MGqRt
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Иҭаргылатәуп аконверт"
#. g8ALR
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:458
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Акопиа ахыхтәуп: $1"
#. qHdLG
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:459
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Ииагатәуп: $1"
#. xqxPn
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:460
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Иҭаргылатәуп адиаграмма %PRODUCTNAME"
#. qWEVG
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:461
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Иҭаргылатәуп афреим"
#. GmqXE
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:462
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Ианыхтәуп афреим"
#. z9Eai
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:463
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Автоформат"
#. E6uaH
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:464
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Атаблица ахы"
#. gnndv
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:465
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Аҧсахра $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Иҭаргылатәуп аҟәша"
#. 7pzWX
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Ианыхтәуп аҟәша"
#. AFkoM
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:468
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Иԥсахтәуп аҟәша"
#. BY9gB
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:469
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Иԥсахтәуп астандарттә ҵакқәа"
#. X7eMx
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:470
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Иҧсахтәуп астиль; $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:471
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Ианыхтәуп адаҟьа аимҟьара"
#. kHVr9
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:472
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Атекст ариашара"
#. VfBBy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:473
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline level"
msgstr "Иазырҳатәуп/иазырҵатәуп аструктура аҩаӡара"
#. Mmk22
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:474
msgctxt "STR_OUTLINE_UD"
msgid "Move chapter up/down"
msgstr "Ииагатәуп ахы аҩада/алада"
#. 3UGKP
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:475
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr "Иԥсахтәуп аструктура"
#. RjcRH
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:476
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Иҭаргылатәуп аномерркра"
#. RdWjx
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:477
msgctxt "STR_NUMUP"
msgid "Demote list level"
msgstr "Ирмаҷтәуп асиа аҩаӡара"
#. VpBDP
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:478
msgctxt "STR_NUMDOWN"
msgid "Promote list level"
msgstr "Иазырҳатәуп асиа аҩаӡара"
#. FGciC
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:479
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Ииагатәуп абзацқәа"
#. WdMCK
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:480
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Иҭаргылатәуп аграфикатә обиект: $1"
#. ErB3W
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:481
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Аномер Аҿак/Аҿых"
#. rEZvN
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:482
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Иазырҳатәуп ахьаҵ"
#. aJxcG
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:483
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Иазырҵатәуп ахьаҵ"
#. 4GP7c
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Иҭаргылатәуп ахы: $1"
#. GGFM8
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:485
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Иалагатәуп аномерркра ҿыцны"
#. pHfp7
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:486
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Иԥсахтәуп албаага"
#. Knr9y
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:487
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Ихадкылатәуп аԥсахра: $1"
#. jAvjr
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:488
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Мап ацәктәуп аԥсахра: $1"
#. uCGqy
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:489
#, fuzzy
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Иалкаатәуп атаблица"
#. TJCZ8
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:490
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Иаанкылатәуп атрибут"
#. qyCiy
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:491
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. f4Jfr
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:492
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Еидҵатәуп атаблица"
#. BLcCC
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:493
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Арегистр"
#. BTGyD
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:494
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Ианыхтәуп аномерркра"
#. TMvTD
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:495
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Асахьақәа: $1"
#. FG7rN
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:496
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Иргәыԥтәуп аграфикатә обиектқәа"
#. xZqoJ
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:497
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Асахьақәа рыргәыԥра ықәгатәуп"
#. FA3Vo
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:498
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Ианыхтәуп асахьақәа"
#. MbJSs
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:499
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Иалаԥсахтәуп асахьа"
#. 6GmVr
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:500
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Ианыхтәуп асахьа"
#. PAmBF
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:501
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Ихархәуатәуп атаблица атрибутқәа"
#. GA8gF
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Атаблица автоформат"
#. AAPTL
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Иҭаргылатәуп аиҵагыла"
#. tA7ss
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Иҭаргылатәуп ацәаҳәа"
#. LAzxr
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Ианыхтәуп ацәаҳәа/аиҵагыла"
#. yFDYp
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Ианыхтәуп аиҵагыла"
#. 9SF9L
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Ианыхтәуп ацәаҳәа"
#. FnLC7
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Еиҟәшатәуп абларҭақәа"
#. 3Em7B
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Еидҵатәуп абларҭақәа"
#. 3VVmF
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:510
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Абларҭақәа рформат"
#. UbSKw
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:511
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Иҭаргылатәуп ахы/арбага"
#. szpbj
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:512
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Иныхтәуп ахқәа/аҭыԥрбага"
#. cN5DN
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:513
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Атаблица акопиа ахыхтәуп"
#. eUFgx
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:514
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Атаблица акопиа ахыхтәуп"
#. TC6mz
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:515
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Иқәыргылатәуп акурсор"
#. 4GStA
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr ""
#. XV4Ap
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr ""
#. vUJG9
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Иԥсахтәуп албаагақәа рырхиарақәа"
#. AgREs
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Еиҿырҧштәуп адокумент аверсиақәа"
#. kZATW
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Афиругана архиарақәа"
#. J4AUR
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:522
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Иҭаргылатәуп албаага"
#. RMgFD
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:523
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "Иҭаргылатәуп URL акнопка"
#. UKN7k
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:524
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Иҭаргылатәуп агиперзхьарԥш"
#. 9odT8
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:525
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "ианыхтәуп иҵәаху аҵанакы"
#. e6U2R
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:526
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Атаблица/аиндекс ҧсахуп"
#. JpGh6
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:527
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "«"
#. kZoAG
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:528
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "»"
#. wNZDq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:529
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:530
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "ирацәоу алхра"
#. qFESB
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:531
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Аҭагалара: $1"
#. A6HSG
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:532
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Иҭаргылатәуп аиҭныԥсахларатә гәынкылага"
#. mfDMF
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:533
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:534
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr ""
#. hHUZi
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5280,7 +5286,7 @@ msgstr[0] "Атабулиациа"
msgstr[1] "Атабулиациақәа $1"
#. eP6mC
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5288,308 +5294,308 @@ msgstr[0] ""
msgstr[1] ""
#. yS3nP
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "адаҟьа аимҟьара"
#. Q4YVg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "аиҵаҩ аимҟьара"
#. L6qva
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Иҭаргылатәуп $1"
#. i8ZQo
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "$1 аныхра"
#. 5KECk
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Атрибутқәа ҧсахуп"
#. N7CUk
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. DCGPF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Астиль ҧсахуп"
#. p77WZ
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. nehrq
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Иҭаргылатәуп ацәаҳәа"
#. Ud4qT
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Ацәаҳәа аныхра"
#. GvxsC
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Абларҭа аҭаргылара"
#. ZMrVY
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Абларҭа аныхра"
#. DqprY
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:549
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 алаԥсахрақәа"
#. ve5ZA
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Иҧсахтәуп адаҟьа астиль: $1"
#. RDkdy
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Иаҧҵатәуп адаҟьа астиль: $1"
#. tBVzV
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Ианыхтәуп адаҟьа астиль: $1"
#. wzjRB
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Адаҟьа: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. UcTVv
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Аколонтитулқәа ԥсахуп"
#. tGyeC
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Аҭакыра ԥсахуп"
#. xh3dq
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Иаҧҵатәуп абзац астиль: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:557
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Ианыхтәуп абзац астиль: $1"
#. DtD6w
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Абзац: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. J2FcF
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:559
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Иаҧҵатәуп асимвол астиль: $1"
#. FjT56
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:560
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Ианыхтәуп асимвол астиль: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:561
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Асимвол: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. AvK4p
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:562
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Иаҧҵатәуп афреим астиль: $1"
#. zHLcd
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:563
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Ианыхтәуп афреим астиль: $1"
#. BUdbD
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Афреим: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. GG9BH
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Иаҧҵатәуп ахьӡынҵа астиль: $1"
#. zYZW8
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Ианыхтәуп ахьӡынҵа астиль: $1"
#. QhDFe
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Ахьӡынҵа: $1 $2 $3 астиль ахьӡ ҧсахтәуп"
#. oWrh9
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Агәылаҵа ахьӡ ԥсахтәуп: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Иҭаргылатәуп арбага аелемент"
#. fbidx
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Ианыхтәуп арбага аелемент"
#. WCDy7
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:571
msgctxt "STR_FIELD"
msgid "field"
msgstr "аҭакыра"
#. aC9iU
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:572
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr "атексттә ҭакыра"
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:574
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Абзацқәа"
#. 9fb4z
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:575
msgctxt "STR_FRAME"
msgid "frame"
msgstr "афреим"
#. gfjHA
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:576
msgctxt "STR_OLE"
msgid "OLE object"
msgstr "Аобиект OLE"
#. db5Tg
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:577
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "аформула"
#. BirkF
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:578
msgctxt "STR_CHART"
msgid "chart"
msgstr "адиаграмма"
#. YxCuu
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:579
msgctxt "STR_NOTE"
msgid "comment"
msgstr "акомментари"
#. CKqsU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:580
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "еимаздо азхьарԥшқәа"
#. q9BGR
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:581
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "Асценари"
#. o6FWi
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:582
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "алитература ахьӡынҵа аелемент"
#. qbRLG
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:583
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "испециалтәу асимвол"
#. qJd8G
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:584
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "албаага"
#. bKvaD
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:585
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "асахьа"
#. J7CgG
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:586
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "аграфикатә обиект(қәа)"
#. rYPFG
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:587
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "атаблица: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:588
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5597,1722 +5603,1722 @@ msgstr[0] "ахы"
msgstr[1] "ахқәа"
#. 2JCL2
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:589
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "абзац"
#. DvnGA
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:590
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Абзац адырга"
#. oL9GG
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:591
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Иԥсахтәуп аобиект %1 ахы"
#. 3Cv7E
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:592
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Иԥсахтәуп аобиект %1 ахҳәаа"
#. VgNVS
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:593
msgctxt "STR_UNDO_FLYFRMFMT_DECORATIVE"
msgid "Change decorative of $1"
msgstr ""
#. rWw8U
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:594
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Иаҧҵатәуп атаблица астиль: $1"
#. jGxgy
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:595
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Ианыхтәуп атаблица астиль: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:596
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Ирҿыцтәуп атаблица астиль: $1"
#. JegfU
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:597
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Ианыхтәуп атаблица"
#. KSMpJ
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:598
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "Иҭаргылатәуп аҭакыра аҟынтәи"
#. 83pZ4
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:599
msgctxt "STR_UNDO_UPDATE_FORM_FIELD"
msgid "Update form field"
msgstr "Ирҿыцтәуп аҭакыра аҟынтәи"
#. Lkt9n
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:600
msgctxt "STR_UNDO_UPDATE_FORM_FIELDS"
msgid "Update form fields"
msgstr "Ирҿыцтәуп аҭакырақәа рҟынтәи"
#. R7raK
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:601
msgctxt "STR_UNDO_DELETE_FORM_FIELDS"
msgid "Delete form fields"
msgstr "Ианыхтәуп аҭакырақәа рҟынтәи"
#. kdxGJ
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:602
msgctxt "STR_UNDO_INSERT_PAGE_NUMBER"
msgid "Insert page number"
msgstr "Иҭаргылатәуп адаҟьақәа рномерқәа"
#. XztwB
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:603
msgctxt "STR_UNDO_CHANGE_THEME_COLORS"
msgid "Change document theme color"
msgstr "Иԥсахтәуп адокумент атема аԥштәы"
#. 2zJmG
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:605
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr ""
#. CUXeF
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:607
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. FrBrC
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:608
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Адокумент ахәаҧшра"
#. BCEgS
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:609
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Хыхьтәи аколонтитул $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:610
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Хыхьтәи аколонтитул $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:611
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:612
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:613
#, fuzzy
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:614
#, fuzzy
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Ҵаҟатәи аколонтитул $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:615
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Анҵәамҭатә лбаага $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:616
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Анҵәамҭатә лбаага $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:617
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) адаҟьа $(ARG2) аҟны"
#. Z5Uy9
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:618
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Адаҟьа $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:619
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Адаҟьа $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:620
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Автор"
#. sff9t
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:621
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Арыцхә"
#. VScXC
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:622
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Иҳасабуп"
#. JtzA4
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:623
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Аҟаҵарақәа"
#. cHWqM
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:624
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr ""
#. 9YxaB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:625
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Адокумент ахәаҧшра"
#. eYFFo
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:626
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Ахәаҧшра арежим)"
#. Fp7Hn
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:627
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME адокуменқәа"
#. CsQKH
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:629
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Аҧхьара агха"
#. ztbVu
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:630
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Иауам асахьа аарԥшра."
#. iJsFt
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:631
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Аиҭныԥсахларатә гәыкылага аҟынтәи аԥхьараан агха."
#. bXZQD
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:633
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Аиҵаҩ аимҟьара"
#. 7DzNG
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:635
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ацәаҳәа %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:636
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Аиҵагыла %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:637
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Асимвол"
#. KBw5e
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:638
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. ERH8o
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:639
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Афреим"
#. Cqjn8
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:640
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Адаҟьақәа"
#. FFZEr
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:641
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr "Асиа"
#. NydLs
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:642
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Атаблица"
#. XUhuM
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:643
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Абларҭа"
#. DRqDZ
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:645
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Мрагыларазиатәиқәа"
#. owFtq
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:646
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "Иуадаҩу аҩырақәа рсистемақәа"
#. ap5iF
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:647
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Мраҭашәарахьтәиқәа"
#. HD64i
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Иаҵанакуа"
#. Ka4fM
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "Адаҟьа аҿаҧшыра"
#. YPEEH
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:651
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Асахьақәеи егьырҭ аграфикатә обиектқәеи"
#. L6GSj
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:652
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Иҵәаху атекст"
#. pXiRN
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:653
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "Атекст ахарҭәаага"
#. JBWVd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:654
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Анапхгара аелементқәа"
#. X8Bfu
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:655
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Аҧштәы"
#. kQDcq
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:656
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Икьыҧхьтәуп атекст еиқәаҵәала"
#. DEELn
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:657
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Адаҟьақәа:"
#. uddbB
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:658
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Икьыԥхьлатәуп автоматикала иҭаргылоу иҭацәу адаҟьақәа"
#. MTJt2
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:659
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Ақьаад анашьҭра апринтер архиарақәа ирықәыршәаны"
#. 4uBam
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:660
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Мап (адокумент мацара)"
#. pbQtA
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:661
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Акомментариқәа рымацара"
#. sVnbD
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:662
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Ииагатәуп адокумент анҵәамҭахь"
#. D4BXH
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:663
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Ииагатәуп адаҟьа анҵәамҭахь"
#. 6rzab
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:664
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "Акомментари"
#. cnqLU
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:665
#, fuzzy
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Аброшиура"
#. t6drz
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:666
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Армарахьтә - арӷьарахь"
#. QgmxB
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:667
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Арӷьарахьтә-армарахь"
#. t4Cm7
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:668
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr "Адаҟьақәа зегьы"
#. ZDRM2
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:669
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Адаҟьақәа:"
#. rajyx
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:670
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Алкаара"
#. 9EXcV
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:671
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Иҭагӡатәуп аҭакырақәа"
#. NGQw3
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:673
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Афункциақәа"
#. D3RCG
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:674
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Аҟәыхра"
#. 3Tg3C
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:675
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Ихархәатәуп"
#. UDkFb
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:676
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Аформулақәа рпанель"
#. Z3CB5
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:677
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Аформула атип"
#. 3CCa7
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:678
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Аформула атекст"
#. FXNer
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:680
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "Азеиԥш ԥшра"
#. aeeRP
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:681
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Аҵанакы"
#. UAExA
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:682
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Аструктура аҩаӡара"
#. yERK6
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:683
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Аиагара арежим"
#. PAB4k
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:684
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Аструктура аиҭныԥсахларақәа ргәынкылагахь"
#. b5tPU
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:685
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Аструктура ацклаԥшра"
#. qzXwn
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:686
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr "Ишыҟоу еиԥш"
#. HGDgJ
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:687
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr "Афокус"
#. BYRpF
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:688
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr "Иаҿыхуп"
#. NGgt3
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:689
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. 44jEc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:690
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. mnZA9
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:691
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr ""
#. rkD8H
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:692
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr ""
#. oBH6y
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:693
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr "Еиҭарстәуп"
-#. YBDFD
-#: sw/inc/strings.hrc:695
+#. aQniE
+#: sw/inc/strings.hrc:694
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
-msgid "Unfold All"
-msgstr "Еиҵыхтәуп зегьы"
+msgid "Unfold Including Sub Levels"
+msgstr ""
-#. Cj4js
-#: sw/inc/strings.hrc:696
+#. B82B2
+#: sw/inc/strings.hrc:695
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
-msgid "Fold All"
-msgstr "Еикәарҳәтәуп зегьы"
+msgid "Fold Including Sub Levels"
+msgstr ""
#. vNEvg
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:696
msgctxt "STR_OUTLINE_LEVELS_SHOWN_TITLE"
msgid "Show Up to Outline Level"
msgstr "Иаарԥштәуп аструктура аҩаӡара аҟынӡа"
#. 6UtZh
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:697
msgctxt "STR_OUTLINE_LEVELS_SHOWN_SPIN_LABEL"
msgid "Level (1–10):"
msgstr "Аҩаӡара (1-10):"
#. BFGYg
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:698
msgctxt "STR_OUTLINE_LEVELS_SHOWN_HELP_LABEL"
msgid "Enter maximum outline level allowed for a displayed heading."
msgstr ""
#. 9Fipd
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:700
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "Еиҵыхтәуп зегьы"
#. FxGVt
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:701
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr "Еикәарҳәтәуп зегьы"
#. xvSRm
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:702
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Иҭаргылатәуп агиперзхьарҧш ҳасабла"
#. sdfGe
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:703
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Иҭаргылатәуп азхьарҧш ҳасабла"
#. Suaiz
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:704
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Иҭаргылатәуп копиа ҳасабла"
#. VgdhT
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:705
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Иаарҧштәуп"
#. 3VXp5
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:706
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Иактиву аҧенџьыр"
#. fAAUc
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:707
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "иҵәаху"
#. 3VWjq
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:708
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "иактиву"
#. YjPvg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:709
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "иактивым"
#. tBPKU
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:710
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Ариашара..."
#. ppC87
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:711
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "Ирҿыцтәуп"
#. 44Esc
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:712
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Ариашара"
#. w3ZrD
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:713
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Аимадара ариашара"
#. xyPWE
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:714
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Иҭаргылатәуп"
#. AT9SS
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:715
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "Арбага"
#. MnBLc
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:716
msgctxt "STR_FILE"
msgid "File"
msgstr "Афаил"
#. DdBgh
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:717
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Иаҧҵатәуп адокумент"
#. aV9Uy
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:718
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Атекст"
#. 5rD3D
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:719
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Ианыхтәуп"
#. 9MrsU
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:720
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "Ианыхтәуп"
#. A28Rb
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:721
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Иалкаау"
#. gRBxA
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:722
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Аиндексқәа"
#. WKwLS
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:723
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Аимадарақәа"
#. TaaJK
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:724
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Зегьы"
#. HpMeb
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:726
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "иҵәаху"
#. XcCnB
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:727
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Афаил ҧшаам: "
#. UC53U
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:729
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "ИҲАСАБУП"
#. 3ceMF
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:731
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Арымарахь: "
#. EiXF2
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:732
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr " Арыӷьарахь: "
#. UFpVa
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:733
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Аҩныҵҟа: "
#. XE7Wb
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:734
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr " Адәныҟа: "
#. 3A8Vg
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:735
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr " Хыхьла: "
#. dRhyZ
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:736
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr " Ҵаҟала: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:739
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. AeDYh
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:740
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Ацәаҳәа"
#. kfJG6
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:741
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Автор"
#. gejqG
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:742
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Аинтакстә гха **"
#. q6dUT
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:743
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Ноль ала ашара **"
#. HSo6d
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:744
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Ииашамкәа ахыцқәа рхархәара **"
#. jcNfg
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:745
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Аквадрат афункциа аҭәцәара **"
#. C453V
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:746
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Аҭәцәара **"
#. KEQfz
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:747
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Агха **"
#. hxrg9
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:748
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Агха змо аҵакҳәага **"
#. 2yBhF
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:749
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Агха: еимаздоу азхьарԥшқәа рхыҵхырҭа ԥшаам"
#. jgRW7
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:750
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Мап"
#. KRD6s
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:751
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(афикс.)"
#. FCRUB
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:752
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:753
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Алфавиттә ҭыԥрбага"
#. GDCRF
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:754
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Иҷыдоу"
#. vnaNc
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:755
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Ахы"
#. BESjb
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:756
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Абиблиографиа"
#. ZFBUD
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:757
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Ацитата"
#. WAs8q
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:758
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Атаблицақәа рыхьӡынҵа"
#. NFzTx
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:759
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Аобиектқәа рыхьӡынҵа"
#. mSyms
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:760
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Асахьақәа рыхьӡынҵа"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:762
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Ахы"
#. ziEpC
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:763
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Атема"
#. FCVZS
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:764
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Ихадоу ажәақәа"
#. kHC7q
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:765
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Акомментариқәа"
#. i6psX
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:766
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Иаҧҵоуп"
#. L2Bxp
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:767
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Иҧсахуп"
#. D2YKS
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:768
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Икьыҧхьуп"
#. QtuZM
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:769
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Аредакциа"
#. YDFbi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:770
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Аредакциазура иақәырӡу аамҭа зегьы"
#. EpZ9C
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:771
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Аконвертациа $(ARG1)"
#. nY3NU
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:772
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Актәи аконвертациа $(ARG1)"
#. eQtGV
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:773
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Анаҩстәи аконвертациа $(ARG1)"
#. aBwxC
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Астатиа"
#. di8ud
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Ашәҟәы"
#. GD5KJ
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Аброшиура"
#. mfFSf
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. Et2Px
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Ашәҟәы аҟынтәи ацыԥҵәахақәа"
#. ys2B8
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Ахқәа змоу ашәҟәы аҟынтәи ацыԥҵәахақәа"
#. mdEqj
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. jNmVD
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Ажурнал"
#. M3xkM
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Атехникатә документациа"
#. EJAj4
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Адипломтә усумҭа"
#. NoUCv
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Егьырҭқәа"
#. qNGGE
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Адиссертациа"
#. L7W7R
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Аилацәажәара апротокол"
#. X8bGG
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Аҭҵаара иазку аҳасабырба"
#. 4dDC9
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Икьыԥхьым"
#. Gb38d
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "E-mail"
#. 9HKD6
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "Веб-адаҟьа"
#. qA449
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Ахархәаҩ итип 1"
#. nyzxz
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Ахархәаҩ итип 2"
#. cCFTF
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Ахархәаҩ итип3"
#. mrqJC
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Ахархәаҩ итип4"
#. fFs86
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Ахархәаҩ итип5"
#. nsCwi
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Иркаҿны"
#. CpKgc
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Атип"
#. kUGDr
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Адрес"
#. DquVQ
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Акомментари"
#. sduuV
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Автор(цәа)"
#. fXvz6
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Ашәҟәы ахқәа"
#. c8PFE
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Ахқәа"
#. GXqxF
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Аҭыжьымҭа"
#. p7A3p
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:804
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Аредактор"
#. aAFEz
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:805
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Аҭыжьымҭа атип"
#. 8DwdJ
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:806
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr ""
#. VWNxy
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:807
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Ажурнал"
#. Da4fW
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:808
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Амза"
#. SdSBt
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:809
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Азгәаҭа"
#. MZYpD
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:810
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Аномер"
#. ZB7Go
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:811
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr ""
#. C4CdP
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:812
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Адаҟьақәа рхыҧхьаӡара"
#. yFPFa
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:813
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Аҭыжьырҭа"
#. d9u3p
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:814
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Ауниверситет"
#. Qxsdb
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:815
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Асериа"
#. YhXPg
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:816
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Ахы"
#. qEBhL
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:817
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Аҳасабырба атип"
#. Sij9w
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:818
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Атом"
#. K8miv
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:819
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Ашықәс"
#. pFMSV
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:820
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:821
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Ахархәаҩ итип 1"
#. wtDyU
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:822
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Ахархәаҩ итип 2"
#. VH3Se
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:823
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Ахархәаҩ итип3"
#. twuKb
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:824
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Ахархәаҩ итип4"
#. WAo7Z
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:825
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Ахархәаҩ итип5"
#. 3r6Wg
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:826
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:827
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr "Алокалтә копиа"
#. CeSBP
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:828
msgctxt "STR_AUTH_FIELD_TARGET_TYPE"
msgid "Mark link target"
msgstr ""
#. GnKHG
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:829
msgctxt "STR_AUTH_FIELD_TARGET_URL"
msgid "Target URL"
msgstr "Ахықәкытә URL"
#. eFnnx
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:831
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Аҭыԥрбага аелемент ариашара"
#. EHTHH
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:832
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Иҭаргылатәуп аҭыԥрбага аелемент"
#. D2gkA
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:833
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr ""
#. mK84T
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:835
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Акомментариқәа"
#. fwecS
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:836
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Иаарҧштәуп акомментари"
#. HkUvy
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:837
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Иҵәахтәуп акомментари"
#. FcmEy
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:839
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Ари армаҷра ыҟоуп. Иалышәх даҽа хьӡык."
#. VhMST
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:840
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Ианыхтәума автотекст?"
#. E5MLr
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:841
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Ианыхтәуп акатегориа "
#. qndNh
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:842
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:843
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "Автотекст:"
#. ChetY
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:844
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Еиқәырхатәуп автотекст"
#. QxAiF
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:845
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Ари афаил иаҵанакуам автотекст."
#. sG8Xt
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:846
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "Сара сАвтотекст"
#. GaoqR
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:848
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Армаҷраз автотекст аелемент «%1» ԥшаам."
#. MwUEP
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:849
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "Иауам аҭаргылара атаблица ацәаҳәақәа ма аиҵагылақәа змам"
#. AawM4
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:850
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Иауам аҭаргылара атаблица, идуцәоуп"
#. GGo8i
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:851
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Автотекст аԥҵара ауам."
#. DCPSB
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:852
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr ""
#. YxCCF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:853
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION атексттә документ"
#. 8ygN3
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:854
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Асахьа (Атексттә документ %PRODUCTNAME %PRODUCTVERSION)"
#. ewPPB
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:855
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Аобиект (Атексттә документ %PRODUCTNAME %PRODUCTVERSION)"
#. 9VEc3
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:856
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Динамикала адырқәа реиҭныԥсахлара (DDE-аимадара)"
#. svrE7
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:858
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Акомментариқәа зегьы"
#. YGNN4
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:859
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Акомментариқәа зегьы"
#. GDH49
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:860
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Акомментари иҟынтә "
#. RwAcm
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:861
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(арыцхә ыҟам)"
#. ytxKG
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:862
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(автор дамам)"
#. nAwMG
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:863
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Аҭак $1 аҟны"
#. CVVa6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:865
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Аредакциазутәуп аблок адрес зцу"
#. njGGA
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:866
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Персоналла ахацәа ирызку аԥсшәаҳәара"
#. ZVuKY
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:867
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Персоналла аҳәсаа ирызку аԥсшәаҳәара"
#. h4yuq
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:868
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Аԥсшәаҳәара аелементқәа"
#. kWhqT
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:869
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Иацҵатәуп аԥсшәаҳәарахь"
#. hvF3V
-#: sw/inc/strings.hrc:871
+#: sw/inc/strings.hrc:870
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Ианыхтәуп аԥсшәаҳәара аҟынтәи"
#. A6XaR
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:871
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr ""
#. 4VJWL
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:872
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Аԥсшәаҳәара"
#. Vj6XT
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:873
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Ааҭгыларатә дырга"
#. bafeG
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:874
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Атексттә"
#. tt6sA
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:875
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr ""
#. zrUsN
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:876
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Аԥсшәаҳәара ахәаԥшра"
#. 2UVE6
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:877
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Адрес аелементқәа"
#. Bd6pd
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:878
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Аԥсшәаҳәара аелементқәа"
#. 9krzf
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:879
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Аҭакыра иақәшәақәо:"
#. oahCQ
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:880
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Заатәи ахәаҧшра"
#. ijdxe
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:881
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr ""
#. kE5C3
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:883
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " анеира залшом "
#. Y6FhG
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:884
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Афаилқәа зегьы"
#. fCAvo
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists"
msgstr "Адресқәа рсиа"
#. Wjpry
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:886
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME Base"
#. CVU2n
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:887
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME Calc"
#. ccsQt
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:888
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME Writer"
#. Jwqok
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:889
msgctxt "STR_FILTER_DBF"
msgid "dBase"
msgstr "dBase"
#. wEWC3
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:890
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel"
msgstr "Microsoft Excel"
#. e3ndC
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:891
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word"
msgstr "Microsoft Word"
#. 9aA4Y
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:892
msgctxt "STR_FILTER_TXT"
msgid "Plain text"
msgstr "Имриоу атекст"
#. 5iEeN
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:893
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated"
msgstr ""
#. D8MYt
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:894
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access"
msgstr "Microsoft Access"
#. nRKEu
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:895
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007"
msgstr "Microsoft Access 2007"
#. uDNRt
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:896
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7321,91 +7327,91 @@ msgid ""
msgstr ""
#. r9BVg
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:897
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "Адрестә шәҟәы %PRODUCTNAME (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:899
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Ахалагаратә документ алхра"
#. FiUyK
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:900
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Адокумент атип алхра"
#. QwrpS
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:901
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Адрес аблок аҭарргылара"
#. omRZF
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:902
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Адресқәа рыхьӡынҵа алхра"
#. YrDuD
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:903
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Аԥсшәаҳәара аԥҵара"
#. tTr4B
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:904
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Аҭыԥнҵара архиара"
#. S4p5M
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:905
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Аиуҩы дықәгатәуп"
#. N5YUH
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:906
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Ихиоуп"
#. L5FEG
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:907
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Mail адәықәҵарақәа"
#. CEhZj
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:909
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Атаблица"
#. v9hEB
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:910
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Азыҳәара"
#. HxGAu
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:912
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Иацҵатәума адокумент агәаҭара ахы инаркны?"
#. gE7CA
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:913
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Аорфографиа агәаҭара хыркәшоуп."
#. 2SuqF
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:914
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "Ажәар мҩаркуп"
@@ -7415,252 +7421,252 @@ msgstr "Ажәар мҩаркуп"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:920
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Арыцхә"
#. V9cQp
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:921
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Аамҭа"
#. 2zgWi
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:922
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Афаил ахьӡ"
#. FdSaU
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:923
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Адырқәа рбаза ахьӡ"
#. cGn9h
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:924
msgctxt "STR_CHAPTERFLD"
msgid "~Heading"
msgstr "Ахы"
#. wYWy2
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:925
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. EXC6N
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:926
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Астатистика"
#. EW86G
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:927
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Автор"
#. 5aFak
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:928
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Ашаблонқәа"
#. 3wdud
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:929
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Адәықәҵаҩ"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:931
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Иаҧҵатәуп аҽеиҭак"
#. ckA26
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:932
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Иаарҧштәуп аҽеиҭак"
#. Fjzgu
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:933
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Иҭаргылатәуп аформула"
#. AXoAT
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:934
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Аҭагаларҭа аҭакыра"
#. VfqNE
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:935
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Аҭагаларҭа аҭакыра (зыԥсахра ауа)"
#. E8JAd
-#: sw/inc/strings.hrc:937
+#: sw/inc/strings.hrc:936
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Аҭагаларҭа аҭакыра (ахархәаҩтәи)"
#. 8LGEQ
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:937
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr ""
#. jrZ7i
-#: sw/inc/strings.hrc:939
+#: sw/inc/strings.hrc:938
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE аҭакыра"
#. 9WAT9
-#: sw/inc/strings.hrc:940
+#: sw/inc/strings.hrc:939
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Инагӡатәуп амакрос"
#. qEBxa
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:940
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Аномерркра адиапазон"
#. ACE5s
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:941
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Иазалхтәуп адаҟьа аҽеиҭак"
#. ayB3N
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:942
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Иаарԥштәуп адаҟьа аҽеиҭакқәа"
#. DBM4P
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:943
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "URL адрес"
#. LJFF5
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:944
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Ахарҭәаага"
#. zZCg6
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:945
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Еидҵатәуп асимволқәа"
#. 9MGU6
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:946
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Ахьӡынҵа"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:948
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Иқәыргылатәуп азхьарҧш"
#. FJ2X8
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:949
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Иҭаргылатәуп азхьарԥш"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:951
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr ""
#. JP2DU
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:952
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Анаҩстәи анҵамҭа"
#. GizhA
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:953
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Иарбанзаалакь анҵамҭа"
#. aMGxm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:954
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Анҵамҭа аномер"
#. DtYzi
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:955
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. UCSej
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:956
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. M8Fac
-#: sw/inc/strings.hrc:958
+#: sw/inc/strings.hrc:957
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Иҵәаху атекст"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:960
+#: sw/inc/strings.hrc:959
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Ахархәаҩ иҭакыра"
#. XELYN
-#: sw/inc/strings.hrc:961
+#: sw/inc/strings.hrc:960
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Азгәаҭа"
#. MB6kt
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:961
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Асценари"
#. BWU6A
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:962
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Абиблиографиатә зхьарҧш"
#. 7EGCR
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:963
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Иҵәаху абзац"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:965
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "Адокумент иазкны"
@@ -7669,87 +7675,87 @@ msgstr "Адокумент иазкны"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:969
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Арыцхә"
#. qMCEh
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:970
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Арыцхә (аҧсахра зымуа)"
#. AXmyw
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:971
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Аамҭа"
#. 6dxVs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:972
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Аамҭа (аԥсахра зымуа)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:974
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Атаблицақәа"
#. 7qW4K
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:975
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Асимволқәа"
#. zDRCp
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:976
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Ажәақәа"
#. 2wgLC
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:977
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Абзацқәа"
#. JPGG7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:978
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Асахьа"
#. Eu6Ns
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:979
msgctxt "FLD_STAT_OBJ"
msgid "OLE objects"
msgstr "OLE аобиектқәа"
#. bDG6R
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:980
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Адаҟьақәа"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:982
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "DDE автоматикала"
#. xPP2E
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:983
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "DDE напыла"
#. spdXd
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:984
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Атекст]"
@@ -7758,104 +7764,104 @@ msgstr "[Атекст]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:989
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Аиҿкаара"
#. WWxTK
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:990
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Ахьӡ"
#. 4tdAc
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:991
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Ажәла"
#. xTV7n
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:992
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Аинициалқәа"
#. AKD3k
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:993
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Амҩа ахьӡ"
#. ErMju
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:994
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Атәыла"
#. ESbkx
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:995
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Аԥошьҭатә индекс"
#. WDAc2
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:996
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Ақалақь"
#. pg7MV
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:997
#, fuzzy
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Ахы"
#. DwLhZ
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:998
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Аҭыҧ"
#. LDTdu
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:999
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Аҭел (аҩн.)"
#. JBZyj
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1000
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Аҭел (аус.)"
#. 5EmGH
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1001
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Афакс"
#. AtN9J
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1002
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "E-mail"
#. 6GBRm
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1003
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Араион"
#. pbrdQ
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1004
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "иаҿых."
#. wC8SE
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1005
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "иаҿак."
@@ -7865,37 +7871,37 @@ msgstr "иаҿак."
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Афаил ахьӡ"
#. RBpz3
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Афаил ахьӡ арҭбаарада"
#. BCzy8
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Амҩа/Афаил ахьӡ"
#. ChFwM
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Амҩа"
#. R6KrL
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1014
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr "Ашаблон ахьӡ"
#. ANM2H
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1015
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Акатегориа"
@@ -7904,25 +7910,25 @@ msgstr "Акатегориа"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_CHAPTER_NAME"
msgid "Heading contents"
msgstr "Ахы аҵанакы"
#. B9gFR
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_CHAPTER_NO"
msgid "Heading number"
msgstr "Ахы аномер"
#. vFtwZ
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Heading number without separator"
msgstr "Ахы аномер аиҟәшага ада"
#. BVPZY
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Heading number and contents"
msgstr "Ахы аномери аҵанаки"
@@ -7931,55 +7937,55 @@ msgstr "Ахы аномери аҵанаки"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Аримтә (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Аримтә (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Арабтә (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Адаҟьа астиль ала"
#. xBKwZ
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Атекст"
@@ -7988,13 +7994,13 @@ msgstr "Атекст"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. RCnZb
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Аинициалқәа"
@@ -8003,49 +8009,49 @@ msgstr "Аинициалқәа"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Асистема"
#. qKXLW
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Атекст"
#. E86ZD
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1045
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Ахьӡ"
#. FB3Rp
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Атекст"
#. KiBai
-#: sw/inc/strings.hrc:1048
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Аформула"
#. 9AsdS
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1048
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Атекст"
#. GokUf
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1049
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Адырқәа рбаза"
#. UBADL
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1050
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Асистема"
@@ -8054,19 +8060,19 @@ msgstr "Асистема"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Автор"
#. aqFVp
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Аамҭа"
#. FaZKx
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1056
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Арыцхә"
@@ -8075,79 +8081,79 @@ msgstr "Арыцхә"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1060
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr "Азхьарԥш атекст"
#. eeSAu
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1061
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr "Адаҟьа аномер (стильда)"
#. MaB3q
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1062
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Ахы"
#. VBMno
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1063
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr "«Аҩада»/«Алада»"
#. 96emU
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1064
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr "Адаҟьа аномер (астиль ацны)"
#. CQitd
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1065
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Акатегориеи аномери"
#. BsvCn
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1066
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Ахьӡ атекст"
#. Xbm7G
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1067
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Number"
msgstr "Аномер"
#. QBGit
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1068
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Аномер"
#. CGkV7
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1069
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Аномер (контексда)"
#. XgSb3
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1070
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Аномер (ихарҭәаау аконтекст)"
#. zQTNF
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1072
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Астатиа a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1073
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Астстиа A/Az + "
@@ -8156,31 +8162,31 @@ msgstr "Астстиа A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1077
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Атекст"
#. rAQoE
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1078
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Атаблица"
#. biUa2
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1079
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Афреим"
#. 7mkZb
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1080
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Асахьа"
#. GgbFY
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1081
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Аобиект"
@@ -8189,170 +8195,170 @@ msgstr "Аобиект"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1085
msgctxt "STR_COND"
msgid "~Condition"
msgstr "Аҭагылазаашьа"
#. X9cqJ
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1086
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Анаҩс, Акәымзар"
#. bo8yF
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1087
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE алаҳәара"
#. LixXA
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1088
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Иҵәахтәуп атекст"
#. EX3bJ
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1089
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "Амакрос ахьӡ"
#. dNZtd
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1090
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "Аҵаҳәара"
#. bfRPa
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1091
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "Асимволқәа"
#. j2G5G
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1092
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Аҭыԥхгара"
#. vEgGo
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1093
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Аҵакы"
#. YQesU
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1094
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Аформула"
#. Eq5xq
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1095
#, fuzzy
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Даҽакы:"
#. 32NzA
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1097
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Ахархәаҩ иитәу]"
#. dYQTU
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1099
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "Ашьаҿа горизонт."
#. xELZY
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1100
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "Ашьаҿа верт."
#. F9Ldz
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1101
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Аҭбаара"
#. rdxcb
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1102
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Аҳаракыра"
#. DQm2h
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1103
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Армарахьтәи акьыԥшь"
#. imDMU
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1104
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Аҩад. акьыԥшь"
#. ayQss
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1105
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 3moLd
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1106
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Ацәаҳәақәа"
#. XWMSH
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1108
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Ажәақәеи асимволқәеи рыԥхьаӡара. Шәақәыӷәӷәа, адиалог «Ажәақәа рхыԥхьаӡара»."
#. nxGNq
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1109
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Даҟьаклатәи аԥшра"
#. 57ju6
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Амульти-даҟьалатәи аԥшра"
#. tbig8
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Ашәҟәытә ԥшра"
#. xBHUG
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1112
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Адокумент адаҟьа аномер. Ақәыӷәӷәара иаанартуеит адиалог «Ииастәуп адаҟьахь», арӷьарахьтәи ақәыӷәӷәара - агәылаҵақәа рыхьӡынҵа.."
#. XaF3v
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1113
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Адокумент аҟны адаҟьа аномер (акьыԥхьраан). Ақәыӷәӷәара иаанартуеит адиалог «Ииастәуп адаҟьахь»."
#. EWtd2
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1114
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Адаҟьа астиль. Арӷьарахьтәи ақәыӷәӷәара астиль аԥсахразы, ақәыӷәӷәара - адиалог «Астильқәа»"
#. ng6cd
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1115
msgctxt "STR_ACCESSIBILITY_CHECK_HINT"
msgid ""
"Status of the accessibility check.\n"
@@ -8361,1457 +8367,1385 @@ msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1118
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Ахалагаранбан аҩадахьы"
#. PLAVt
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1119
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "ацәаҳәақәа"
#. sg6Za
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1120
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Ахалагаранбан ада"
#. gueRC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1121
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Адаҟьақәа реимҟьарада"
#. G3CQN
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1122
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Ианырԥштәӡам"
#. MVEk8
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Ианырҧштәуп вертикалла"
#. Dns6t
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1124
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Ианырҧштәуп горизонталла"
#. ZUKCy
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1125
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Ианырԥштәуп вертикаллеи горизонталлеи"
#. LoQic
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "Горизонталла ианырԥштәуп еиҩшо адаҟьақәа рҟны"
#. kbnTf
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1127
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Асимволқәа рстиль"
#. D99ZJ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1128
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Асимволқәа рстиль ада"
#. fzG3P
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1129
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. 9RCsQ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Ҵаҟатәи аколонтитул ада"
#. zFTin
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. PcYEB
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1132
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Хыхьтәи аколонтитул ада"
#. 8Jgfg
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1133
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr "Иоптималны"
#. HEuGy
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1134
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Мап"
#. 4tA4q
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1135
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Иалырҟьаны"
#. ypvD6
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1136
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr "Ипараллелны"
#. hyEQ5
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1137
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "Аԥхьа"
#. bGBtQ
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1138
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "Ашьҭахь"
#. SrG3D
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1139
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Адҳәалара мацара)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1140
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Аҭбаара:"
#. 2GYT7
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1141
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Афиксациа зызу аҳаракыра:"
#. QrFMi
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1142
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Имин. аҳаракыра:"
#. kLiYd
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1143
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "абзац ахь"
#. A8nAb
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1144
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr "символ ҳасабла"
#. Uszmm
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1145
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr "асимвол ахь"
#. hDUSa
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1146
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "Адаҟьахь"
#. JMHRz
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1147
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "Акоордината X:"
#. oCZWW
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1148
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Акоордината Y:"
#. YNKE6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1149
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "хыхьла"
#. GPTAu
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1150
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Вертикалла ацентрла"
#. fcpTS
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1151
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "ҵаҟала"
#. 37hos
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1152
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Ацәаҳәа ахыхь"
#. MU7hC
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1153
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Ацәаҳәа агәҭа"
#. ZvEq7
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1154
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Ацәаҳәа аҵаҟа"
#. jypsG
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1155
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Адаҟьа ацәаҳәабжьаратәи аинтервал"
#. Cui3U
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1156
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Адаҟьа ацәаҳәабжьаратәи аинтервал ада"
#. 4RL9X
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1157
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "арыӷьарахь"
#. wzGK7
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1158
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Горизонталла ацентр ала"
#. ngRmB
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1159
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "арымарахь"
#. JyHkM
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1160
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "аҩныҵҟа"
#. iXSZZ
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1161
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "адәныҟа"
#. kDY9Z
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1162
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Ихарҭәаау аҭбаара"
#. Hvn8D
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1163
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. 6j6TA
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1164
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Аиҟәыҭхага ҵәаӷәа аҭбаара:"
#. dvdDt
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1165
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Албаагақәа имакс. рҵакыра:"
#. BWqF3
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1166
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Изинтәуп ариашара адокумент «аԥхьара мацараз» аҟны"
#. SCL5F
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1167
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Еиҟәшатәуп"
#. CFmBk
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1168
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr "Асиа астиль: (%LISTSTYLENAME)"
#. HvZBm
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1169
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr "Асиа астиль: (Мап)"
#. QDaFk
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1170
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "Иадҳәалатәуп "
#. rWmT8
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1171
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "и "
#. H2Kwq
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1172
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Ацәаҳәақәа рыԥхьаӡара"
#. yjSiJ
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1173
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "Ацәаҳәақәа ԥхьаӡатәӡам"
#. HE4BV
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1174
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "Иалагатәуп ацәаҳәақәа рыԥхьаӡара аҟынтә: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1175
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Ажжара: "
#. sNxPE
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1176
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Аҟаԥшь аԥхьаӡа: "
#. u73NC
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1177
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr ""
#. qQsPp
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1178
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr ""
#. BS4nZ
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1179
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Аконтраст: "
#. avJBK
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1180
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Агамма: "
#. HQCJZ
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1181
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Аҵәцара: "
#. 5jDK3
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1182
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Инверттәуп"
#. DVSAx
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1183
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "аинвертациа азутәӡам"
#. Z7tXB
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1184
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Аграфикатә режим: "
#. RXuUF
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1185
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Истандарту"
#. kbALJ
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1186
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr ""
#. eSHEj
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1187
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Аиқәаҵәа-ашкәакәа"
#. tABTr
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1188
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Аӡдырга"
#. 8SwC3
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1189
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Аргьежьра"
#. hWEeF
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1190
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Акаҭа ада"
#. HEuEv
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1191
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Акаҭа (аҵәаӷәақәа мацара рзы)"
#. VFgMq
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1192
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Акаҭа (аҵәаӷәақәеи асимволқеи рзы)"
#. VRJrB
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1193
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Атекст иашьҭалатәуп"
#. Sb3Je
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1194
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Атекст иашьҭалатәӡап"
#. yXFKP
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1195
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Еидҵатәуп аҿыкәырша"
#. vwHbS
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1196
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Еидҵатәӡам аҿыкәырша"
-#. 3874B
-#: sw/inc/strings.hrc:1199
-msgctxt "ST_TBL"
-msgid "Table"
-msgstr "Атаблица"
-
-#. T9JAj
-#: sw/inc/strings.hrc:1200
-msgctxt "ST_FRM"
-msgid "Frame"
-msgstr ""
-
#. Fsnm6
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1198
msgctxt "ST_PGE"
msgid "Page"
msgstr "Адаҟьа"
-#. pKFCz
-#: sw/inc/strings.hrc:1202
-msgctxt "ST_DRW"
-msgid "Drawing"
-msgstr "Асахьа"
-
#. amiSY
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1199
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Анапхгара аелемент"
-#. GEw9u
-#: sw/inc/strings.hrc:1204
-msgctxt "ST_REG"
-msgid "Section"
-msgstr "Аҟәша"
-
-#. bEiyL
-#: sw/inc/strings.hrc:1205
-msgctxt "ST_BKM"
-msgid "Bookmark"
-msgstr "Агәылаҵа"
-
-#. 6gXCo
-#: sw/inc/strings.hrc:1206
-msgctxt "ST_GRF"
-msgid "Graphics"
-msgstr "Асахьа"
-
-#. d5eSc
-#: sw/inc/strings.hrc:1207
-msgctxt "ST_OLE"
-msgid "OLE object"
-msgstr "OLE аобиект"
-
-#. h5QQ8
-#: sw/inc/strings.hrc:1208
-msgctxt "ST_OUTL"
-msgid "Headings"
-msgstr "Ахқәа"
-
#. Cbktp
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1200
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Алкаара"
-#. nquvS
-#: sw/inc/strings.hrc:1210
-msgctxt "ST_FTN"
-msgid "Footnote"
-msgstr "Албаага"
-
#. GpAUo
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1201
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Агәаларшәара"
-#. nDFKa
-#: sw/inc/strings.hrc:1212
-msgctxt "ST_POSTIT"
-msgid "Comment"
-msgstr "Акомментари"
-
#. qpbDE
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1202
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Даҽазнык аԥшаара"
-#. ipxfH
-#: sw/inc/strings.hrc:1214
-msgctxt "ST_INDEX_ENTRY"
-msgid "Index entry"
-msgstr "Арбага аелемент"
-
#. sfmff
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1203
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Атаблица аформула"
#. DtkuT
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1204
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Атаблица аформула иашаӡам"
#. A6Vgk
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1205
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "Аҿыцра"
-#. pCp7u
-#: sw/inc/strings.hrc:1218
-msgctxt "ST_FIELD"
-msgid "Field"
-msgstr "Аҭакыра"
-
#. LYuHA
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1206
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr "Аҭакыра типла"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Анаҩстәи атаблица"
#. yhnpi
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr ""
#. M4BCA
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Анаҩстәи адаҟьа"
#. UWeq4
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Анаҩстәи асахьа"
#. ZVCrD
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Анаҩстәи анапхгара аелемент"
#. NGAqr
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Анаҩстәи аҟәша"
#. Mwcvm
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Анаҩстәи агәылаҵа"
#. xbxDs
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Анаҩстәи асахьа"
#. 4ovAF
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "OLE анаҩстәи аобиект"
#. YzK6w
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Анаҩстәи ахы"
#. skdRc
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Анаҩстәи алкаара"
#. RBFga
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Анаҩстәи албаага"
#. GNLrx
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Анаҩстәи агәаларшәара"
#. mFCfp
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Анаҩстәи акомментари"
#. gbnwp
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Иацҵатәуп аԥшаара ԥхьаҟа"
#. TXYkA
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Анаҩстәи аҭыԥрбага аелемент"
#. EyvbV
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Аҧхьатәи атаблица"
#. cC5vJ
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr ""
#. eQPFD
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Аҧхьатәи адаҟьа"
#. p5jbU
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Аԥхьатәи асахьа"
#. 2WMmZ
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Аԥхьатәи анапхгара аелемент"
#. 6uGDP
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Аԥхьатәи аҟәша"
#. YYCtk
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Аԥхьатәи агәылаҵа"
#. nFLdX
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Аԥхьатәи асахьа"
#. VuxvB
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "OLE аԥхьатәи аобиект"
#. QSuct
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Аԥхьатәи ахы"
#. CzLBr
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Аҧхьатәи алкаара"
#. B7PoL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1235
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Аԥхьатәи албаага"
#. AgtLD
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1236
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Аԥхьатәи агәаларшәара"
#. GJQ6F
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1237
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Аԥхьатәи акомментари"
#. GWnfD
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1238
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Иацҵатәуп аԥшаара шьҭахьҟа"
#. uDtcG
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1239
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Аԥхьатәи аҭыԥрбага аелемент"
#. VR6DX
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1240
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Атаблица аҧхьатәи аформула"
#. GqESF
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1241
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Атаблица анаҩстәи аформула"
#. gBgxo
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1242
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Атаблица иаҧхьааиуа игхатәу аформула"
#. UAon9
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1243
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Атаблица анаҩстәи игхатәу аформула"
#. L2Apv
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1244
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "Шьҭахьҟа"
#. jCsGs
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1245
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "Ԥхьаҟа"
#. o3BBz
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1246
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr "Аԥхьатәи аҭакыра"
#. bQ33Z
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1247
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr "Анаҩстәи аҭакыра"
#. bhUaK
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1248
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr "Аԥхьатәи аҭакыра «%FIELDTYPE»"
#. A8HWi
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1249
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr "Аԥхьатәи аҭакыра «%FIELDTYPE»"
#. hSYa3
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1251
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Иҭаргылоуп"
#. LnFkq
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1252
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Ианыхуп"
#. cTNEn
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1253
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Иформатркуп"
#. YWr7C
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1254
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Атаблица ҧсахуп"
#. 6xVDN
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. 32AND
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Абзац аформат ҧсахуп"
#. wLDkj
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ацәаҳәа ҭаргылоуп"
#. Eb5Gb
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ацәаҳәа аныхуп"
#. RyLHZ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_TABLE_COLUMN_INSERT"
msgid "Column Inserted"
msgstr "Аиҵагыла ҭаргылоуп"
#. FqpCw
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLE_COLUMN_DELETE"
msgid "Column Deleted"
msgstr "Аиҵагыла аныхуп"
#. i5ZJt
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Абларҭа ҭаргылоуп"
#. 4gE3z
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1262
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Абларҭа аныхуп"
#. BLEBh
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1263
msgctxt "STR_REDLINE_INSERT_MOVED"
msgid "Moved (insertion)"
msgstr "Еиҭагоуп (аҭаргылара)"
#. o39AA
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1264
msgctxt "STR_REDLINE_DELETE_MOVED"
msgid "Moved (deletion)"
msgstr "Еиҭагоуп (аныхра)"
#. DRCyp
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1265
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Анҵәамҭатә лбаага: "
#. qpW2q
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1266
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Албаага: "
#. 3RFUd
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "%s-ақыәӷәӷәара смарт-тегқәа рыхкынҵа аартразы"
#. QCD36
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1268
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Хыхьтәи аколонтитул (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1269
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Актәи адаҟьа хыхьтәи аколонтитул (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1270
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Армарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1271
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Арӷьарахьтәи адаҟьа хыхьтәи аколонтитул (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1272
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Ҵаҟатәи аколонтитул (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1273
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Актәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1274
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Армарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1275
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Арӷьарахьтәи адаҟьа ҵаҟатәи аколонтитул (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1276
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Ианыхтәуп хыхьтәи аколонтитул..."
#. wL3Fr
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1277
#, fuzzy
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Адаҟьа аформат"
#. DrAUe
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1278
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Ианыхтәуп ҵаҟатәи аколонтитул..."
#. 9Xgou
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1279
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Иформатрктәуп ҵаҟатәи аколонтитул..."
#. ApT5B
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1281
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Иагәыларгылатәуп атаблица"
#. wVAZJ
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr "Ириашатәуп адаҟьа аимҟьара"
#. uvDKE
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1285
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Асахьа аартра ауам"
#. iJuAv
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1286
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Асахьа аҧхьара ауам"
#. Bwwho
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1287
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Асахьа идырым аформат"
#. bfog5
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1288
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Агрфикатә фаил ари аверсиа аднакылашом"
#. xy4Vm
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1289
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Иԥшаам асахьа афильтр"
#. tEqyq
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1290
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Асахьа аҭаргыларазы иазхом агәынкылара."
#. 5ihue
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1291
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Иҭаргылатәуп асахьа"
#. GWzLN
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1292
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Акомментари: "
#. CoJc8
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1293
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Аҭаргылара"
#. dfMEF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1294
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Аныхра"
#. NytQQ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1295
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Автоҧсахра"
#. YRAQL
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1296
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Аформатқәа"
#. ELCVU
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1297
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Атаблица аредакциазура"
#. PzfQF
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1298
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Ихархәоуп абзац астиль"
#. WghdP
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1299
msgctxt "STR_REDLINE_COMMENT_ADDED"
msgid "Comment added"
msgstr "Иацҵатәуп акомментари"
#. 2KNu9
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1300
msgctxt "STR_REDLINE_COMMENT_DELETED"
msgid "Comment deleted"
msgstr "Акомментари аныхуп"
#. sgEbW
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1301
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Адаҟьа "
#. QHfpZ
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1302
msgctxt "STR_PAGES_TWO_CONJUNCTION"
msgid "and"
msgstr "и"
#. 3DpEx
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1303
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Адаҟьа %1 %2 аҟынтәи"
#. kMeye
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1304
msgctxt "STR_PAGE_COUNT_EXTENDED"
msgid "Page %1 of %2 [Page %3]"
msgstr "Адаҟьа %1 %2 аҟынтәи [Адаҟьа %3]"
#. gqFYf
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1305
msgctxt "STR_PAGES_COUNT"
msgid "Pages %1 - %2 of %3"
msgstr "Адаҟьақәа %1 - %2 %3 аҟынтәи"
#. BqLqv
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1306
msgctxt "STR_PAGES_COUNT_EXTENDED"
msgid "Pages %1 - %2 of %3 [Pages %4 - %5]"
msgstr "Адаҟьақәа %1 - %2 %3 аҟынтәи [Адаҟьақәа %4 - %5]"
#. FjgDc
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1307
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 (%2) of %3"
msgstr "Адаҟьа %1 (%2) %3 аҟынтәи"
#. jBinK
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1308
msgctxt "STR_PAGE_COUNT_CUSTOM_EXTENDED"
msgid "Page %1 (%2) of %3 [Page %4 (%5)]"
msgstr "Адаҟьа %1 (%2) %3 аҟынтәи [Адаҟьа %4 (%5)]"
#. 5EAe9
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1309
msgctxt "STR_PAGES_COUNT_CUSTOM"
msgid "Pages %1 - %2 (%3 - %4) of %5"
msgstr "Адаҟьақәа %1 - %2 (%3 - %4) %5 аҟынтәи"
#. 6pfhH
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1310
msgctxt "STR_PAGES_COUNT_CUSTOM_EXTENDED"
msgid "Pages %1 - %2 (%3 - %4) of %5 [Pages %6 - %7 (%8 - %9)]"
msgstr "Адаҟьақәа %1 - %2 (%3 - %4) %5 аҟынтәи [Адаҟьақәа %6 - %7 (%8 - %9)]"
#. a7tDc
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1311
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Адаҟьа %1 %2 аҟынтәи (Адаҟьа %3 %4 аҟынтәи акьыԥхьразы)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1313
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Абзац"
#. aAtmp
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1314
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Асахьа"
#. UBDMK
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1315
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-аобиект"
#. xEWbo
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1316
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Афреим"
#. hfJns
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1317
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Атаблица"
#. GRqNY
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1318
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Атаблица ацәаҳәа"
#. CDQY4
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1319
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Атаблица абларҭа"
#. 2Db9T
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1320
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Адаҟьа"
#. 63FuG
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1321
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Хыхтәи аколонтитул"
#. aDuAY
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1322
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1325
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "HTML (%PRODUCTNAME %PRODUCTVERSION) адокумент"
#. y2GBv
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Ахы"
#. AipGR
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Аиҟәшага"
#. CoSEf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1329
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. JdTF4
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1330
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Афаил «%1» аԥшаара амуит «%2» амҩа ала."
#. zRWDZ
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1331
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Ахархәаҩ иҭыԥрбага"
#. t5uWs
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1332
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<мап>"
#. vSSnJ
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1333
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<мап>"
#. NSx98
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1334
msgctxt "STR_DELIM"
msgid "S"
msgstr "М"
#. WxBG7
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1335
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "N#"
msgstr ""
#. 8EgTx
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1336
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr ""
#. gxt8B
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1337
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "Т"
#. pGAb4
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1338
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "№"
#. jCQgT
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1339
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "HI"
msgstr "АҞЫНТӘИ"
#. XWaFn
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr ""
#. xp6D6
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1341
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr ""
#. AogDK
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1342
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "А"
#. GnDd5
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Numbering"
msgstr "Аномерркра"
#. FH365
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1344
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Аелемент"
#. xZjtZ
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1345
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Атабулиациа ашьаҿа"
#. aXW8y
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1346
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Атексттә"
#. MCUd2
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. BzpRR
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Heading info"
msgstr "Ахы аинформациа"
#. DRBSD
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1349
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Агиперзхьарҧш алагамҭа"
#. Ytn5g
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1350
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Агиперзхьарҧш анҵәамҭа"
#. hRo3J
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1351
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Абиблиографиатә зхьарԥш: "
#. ZKG5v
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1352
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Асимволқәа рстиль: "
#. d9BES
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1353
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Аструктура атекст"
#. kwoGP
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1354
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Шәақәыӷәӷәа Ctrl+Alt+A иацҵоу аоперациақәа рзы"
#. Avm9y
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1355
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Шәрықәыӷәӷәала армарахьтәии арӷьарахьтәии ахыцқәа аструктура аелементқәа рнапхгара алхразы"
#. 59eRi
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1356
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr ""
#. 8AagG
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1357
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
@@ -9820,277 +9754,277 @@ msgstr "Иалышәх афаил амаҭәартә ҭыԥрбагаз (*.sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1362
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Абазатә ҵәаӷәа хыхьла"
#. 5GiEA
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1363
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "Абазатә ҵәаӷәа ҵаҟала"
#. sdyVF
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1364
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "Абазатә ҵәаӷәа ацентр ала"
#. 8oPgS
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1365
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert OLE object"
msgstr "Иҭаргылатәуп аобиект OLE"
#. pmqbK
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1366
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit OLE object"
msgstr "Иԥсахтәуп аобиект OLE"
#. 3QFYB
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1367
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Ашаблон: "
#. oUhnK
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1368
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Аҿыкәырша"
#. T2SH2
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1369
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Аҿаҧшыра"
#. K6Yvs
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1371
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Абзац астиль: "
#. Fsanh
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1372
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Ари адаҟьа аҟны аномер ақәыргылара ауам. Армарахьтәи адаҟьақәа рҟны иқәыргылазар ауеит мацара еиҩшо, арӷьарахьтәи - мацара еиҩымшо ацифрақәа."
#. VZnJf
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1374
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION еилоу адокумент"
#. kWe9j
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1376
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr ""
#. dLuAF
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1377
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Иҭагалоуп ииашам ажәамаӡа."
#. oUR7Y
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1378
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Ажәамаӡа ықәыргылам."
#. GBVqD
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1380
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Аиагагақәа рыргылара хыркәшоуп"
#. rZBXF
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1381
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Мап (аорфографиа гәаҭатәӡам)"
#. Z8EjG
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1382
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Иқәыргылатәуп абызшәа ишыҟаз"
#. YEXdS
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1383
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Иҵегь..."
#. QecQ3
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1384
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "Ибжьажьтәуп"
#. aaiBM
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1385
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Аилыркаарақәа..."
#. kSDGu
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1387
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Испециалу аҵакырақәа ргәаҭара аҿыхуп. Зегь акоуп игәаҭатәума?"
#. KiAdJ
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1388
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Иауам адокументқәа реидҵара."
#. FqsCt
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1389
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr ""
#. wcuf4
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1390
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Ахалагаратә текст аҭагалара ауам."
#. K9qMS
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1391
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Ахкынҵа «Аервис/Апараметрқәа/%1/Акьыԥхьра» аҟны афакс-принтер ықәыргылаӡам."
#. XWQ8w
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1392
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML адокумент"
#. qVZBx
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1393
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Атексттә документ"
#. qmmPU
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1394
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Ахыҵхырҭа арбам."
#. 2LgDJ
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1395
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Аҩаӡара "
#. AcAD8
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1396
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Аструктура "
#. DE9FZ
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1397
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Албаага ариашара/анҵәамҭатә лбаага"
#. EzBCZ
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1398
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Иԥшаатәу ажәа ԥсахуп XX нтә."
#. 5GCGF
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SEARCH_KEY_FOUND_TIMES"
msgid "Search key found %1 times."
msgstr "Иԥшаатәыз ԥшаауп: %1-нтә."
#. fgywB
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1400
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ацәаҳәа "
#. GUc4a
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1401
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Аиҵагыла "
#. yMyuo
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1402
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "Ахалагаратә текст аекспорт..."
#. ywFCb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1403
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "Ахыҵхырҭа акопиақәа рекспорт..."
#. BT3M3
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1405
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "Иацҵатәуп"
#. hnqAm
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1406
msgctxt "ST_CLOSE_DIALOG"
msgid "~Close"
msgstr "~Иарктәуп"
#. ZR9aw
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1407
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Адәықәҵара: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1408
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Қәҿиарала идәықәҵоуп"
#. fmHmE
-#: sw/inc/strings.hrc:1422
+#: sw/inc/strings.hrc:1409
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Адәықәҵара амуӡеит"
#. EAxAu
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1410
msgctxt "ST_ADDRESS_INVALID"
msgid "Address invalid"
msgstr "Ииашам адрес"
#. yAAPM
-#: sw/inc/strings.hrc:1425
+#: sw/inc/strings.hrc:1412
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1427
+#: sw/inc/strings.hrc:1414
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Аформула атекст"
#. RmBFW
-#: sw/inc/strings.hrc:1429
+#: sw/inc/strings.hrc:1416
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Аелемент алхӡам"
@@ -10099,7 +10033,7 @@ msgstr "Аелемент алхӡам"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1435
+#: sw/inc/strings.hrc:1422
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr ""
@@ -10108,139 +10042,139 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1440
+#: sw/inc/strings.hrc:1427
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Иҵабыргуп "
#. xAKRC
-#: sw/inc/strings.hrc:1441
+#: sw/inc/strings.hrc:1428
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Иҵабыргӡам"
#. pDAHz
-#: sw/inc/strings.hrc:1442
+#: sw/inc/strings.hrc:1429
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Анапаҵаҩра ҵабыргӡам"
#. etEEx
-#: sw/inc/strings.hrc:1443
+#: sw/inc/strings.hrc:1430
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Анапаҵаҩуп"
#. BK7ub
-#: sw/inc/strings.hrc:1444
+#: sw/inc/strings.hrc:1431
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Абзац анапаҵаҩра"
#. kZKCf
-#: sw/inc/strings.hrc:1446
+#: sw/inc/strings.hrc:1433
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Авизиттә картақәа"
#. ECFij
-#: sw/inc/strings.hrc:1448
+#: sw/inc/strings.hrc:1435
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Mail архиарақәа"
#. PwrB9
-#: sw/inc/strings.hrc:1450
+#: sw/inc/strings.hrc:1437
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Иҭаргылатәуп"
#. NL48o
-#: sw/inc/strings.hrc:1451
+#: sw/inc/strings.hrc:1438
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Ианыхтәуп"
#. PW4Bz
-#: sw/inc/strings.hrc:1452
+#: sw/inc/strings.hrc:1439
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Атрибутқәа"
#. yfgiq
-#: sw/inc/strings.hrc:1454
+#: sw/inc/strings.hrc:1441
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Иԥшаатәу аилкаа"
#. fhLzk
-#: sw/inc/strings.hrc:1455
+#: sw/inc/strings.hrc:1442
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Альтенативатә елемент"
#. gD4D3
-#: sw/inc/strings.hrc:1456
+#: sw/inc/strings.hrc:1443
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1-тәи ацаԥха"
#. BFszo
-#: sw/inc/strings.hrc:1457
+#: sw/inc/strings.hrc:1444
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2-тәи ацаԥха"
#. EoAB8
-#: sw/inc/strings.hrc:1458
+#: sw/inc/strings.hrc:1445
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Акомментари"
#. Shstx
-#: sw/inc/strings.hrc:1459
+#: sw/inc/strings.hrc:1446
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Ҳасаб азутәуп арегистр"
#. 8Cjvb
-#: sw/inc/strings.hrc:1460
+#: sw/inc/strings.hrc:1447
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Ажәа мацара"
#. zD8rb
-#: sw/inc/strings.hrc:1461
+#: sw/inc/strings.hrc:1448
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ааи"
#. 4tTop
-#: sw/inc/strings.hrc:1462
+#: sw/inc/strings.hrc:1449
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Мап"
#. KhKwa
-#: sw/inc/strings.hrc:1464
+#: sw/inc/strings.hrc:1451
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Даҽакы"
#. aHi89
-#: sw/inc/strings.hrc:1465
+#: sw/inc/strings.hrc:1452
msgctxt "STR_CONTENT_CONTROL_PLACEHOLDER"
msgid "Click here to enter text"
msgstr "Атекст аҭагаларазы шәақәыӷәӷәа абра"
#. N3ocz
-#: sw/inc/strings.hrc:1466
+#: sw/inc/strings.hrc:1453
msgctxt "STR_DROPDOWN_CONTENT_CONTROL_PLACEHOLDER"
msgid "Choose an item"
msgstr "Иалышәх аелемент"
#. AQEZK
-#: sw/inc/strings.hrc:1467
+#: sw/inc/strings.hrc:1454
msgctxt "STR_DATE_CONTENT_CONTROL_PLACEHOLDER"
msgid "Choose a date"
msgstr "Иалышәх арыцхә"
@@ -10248,199 +10182,199 @@ msgstr "Иалышәх арыцхә"
#. eNMYS
#. accessibility descriptions that use %PRODUCTNAME, we set these explicitly because querying a11y descs
#. in order to change %PRODUCTNAME at runtime is expensive, so limit doing that as much as possible.
-#: sw/inc/strings.hrc:1471
+#: sw/inc/strings.hrc:1458
msgctxt "insertcaption|extended_tip|auto"
msgid "Opens the Caption dialog. It has the same information as the dialog you get by menu %PRODUCTNAME Writer - AutoCaption in the Options dialog box."
msgstr ""
#. 2iTJE
-#: sw/inc/strings.hrc:1473
+#: sw/inc/strings.hrc:1460
msgctxt "STR_A11Y_DESIGN_MODE_TITLE"
msgid "The forms are not editable"
msgstr "Аформақәа рыԥсахра ауам"
#. QJbEq
-#: sw/inc/strings.hrc:1474
+#: sw/inc/strings.hrc:1461
msgctxt "STR_A11Y_DESIGN_MODE_PRIMARY"
msgid "Would you like to switch to design mode?"
msgstr "Еиҭарстәума адизаин арежим ахь?"
#. 6zBuF
-#: sw/inc/strings.hrc:1475
+#: sw/inc/strings.hrc:1462
msgctxt "STR_A11Y_DESIGN_MODE_SECONDARY"
msgid "You need to switch to design mode to edit forms."
msgstr ""
#. LGFZa
-#: sw/inc/strings.hrc:1477
+#: sw/inc/strings.hrc:1464
msgctxt "STR_MARK_COPY"
msgid "%1 Copy "
msgstr "%1 Акопиа "
#. kF23A
-#: sw/inc/strings.hrc:1479
+#: sw/inc/strings.hrc:1466
msgctxt "STR_INFORODLG_FOLDED_PRIMARY"
msgid "You are trying to delete folded (hidden) content."
msgstr ""
#. h2E9u
-#: sw/inc/strings.hrc:1480
+#: sw/inc/strings.hrc:1467
msgctxt "STR_INFORODLG_FOLDED_SECONDARY"
msgid "To delete this content, first unfold it so you can see what you intend to delete."
msgstr ""
#. JCQRL
-#: sw/inc/strings.hrc:1482
+#: sw/inc/strings.hrc:1469
msgctxt "STR_PARAGRAPH_DIRECT_FORMATTING"
msgid "Paragraph Direct Formatting"
msgstr "Абзац аформат"
#. 5FKBR
-#: sw/inc/strings.hrc:1483
+#: sw/inc/strings.hrc:1470
msgctxt "STR_CHARACTER_DIRECT_FORMATTING"
msgid "Character Direct Formatting"
msgstr "Асимволқәа рформат"
#. qc9xU
-#: sw/inc/strings.hrc:1484
+#: sw/inc/strings.hrc:1471
msgctxt "STR_CHARACTER_DIRECT_FORMATTING_TAG"
msgid "df"
msgstr ""
#. YiRsr
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "Ианыхтәуп иҭацәу абзацқәа"
#. zWFE6
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "Ихархәатәуп алаԥсахрақәа ртаблица"
#. EQfLp
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr "Ириашалатәуп анбан ДУқәа ҨБа ажәа алагамҭаҿ"
#. JBCDA
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "Ҳәоу цыԥхьаӡа иалагалатәуп нбан дула"
#. eGLb9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr ""
#. dgZCx
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "Иалаԥсахлатәуп ахархәаҩ истильқәа"
#. zXHk9
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr "Амаркерқәа ҧсахуп"
#. p7V6t
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr "Автоматикала_иаҵшьлатәуп_"
#. Hzt7q
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr "Автоматикала *абжажәпа*"
#. oMfhs
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr "Иԥсахлатәуп 1/2 ... ½ ...ала"
#. UCK6y
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr "Еилкаалатәуп URL"
#. MD9fC
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr ""
#. YABTx
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr ""
#. ebBjY
-#: sw/inc/utlui.hrc:42
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr "Еидҵалатәуп цәаҳәактәи абзацқәа"
#. QmEbH
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:44
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Body Text\" Style"
msgstr "Иқәыргылатәуп астиль «Ихадоу атекст»"
#. jMfBD
-#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:45 sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Body Text, Indented\" Style"
msgstr "Иқәыргылатәуп астиль «Ихадоу атекст ахьаҵ ацны»"
#. qEb3E
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging Indent\" Style"
msgstr "Иқәыргылатәуп астиль «Шьҭахьтәи ахьаҵ»"
#. qv2KD
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr "Иқәыргылатәуп астиль «Ахы $(ARG1)»"
#. orFXE
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr "Иқәыргылатәуп астиль «Ахьӡынҵа» ма «Аномерркра»"
#. yGoaB
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr "Еидҵатәуп абзацқәа"
#. rpT9U
-#: sw/inc/utlui.hrc:50
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr ""
#. FHPwi
-#: sw/inc/utlui.hrc:51
+#: sw/inc/utlui.hrc:52
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr ""
#. 62jqE
-#: sw/inc/utlui.hrc:52
+#: sw/inc/utlui.hrc:53
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "DOI citation recognition"
msgstr ""
@@ -10481,10 +10415,10 @@ msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Агиперзхьарԥш"
-#. VanGE
+#. 9xUft
#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_fakes_label"
-msgid "Fakes"
+msgid "Simulated captions"
msgstr ""
#. 4MrEA
@@ -21820,391 +21754,391 @@ msgid "New User Index"
msgstr ""
#. pyNZP
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3173
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3224
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Афаил"
#. uFrkV
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3192
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3243
msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Аилыркаага"
#. QC5EA
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3247
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3298
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Афаил"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4509
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4560
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Ихадоу"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4596
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4647
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Ихадоу"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5722
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5773
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Аҭаргылара"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5827
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5878
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Аҭаргылара"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6893
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6983
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Адырганҵа"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7068
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Адырганҵа"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7691
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7781
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Азхьарԥшқәа"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7775
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7865
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Азхьарԥшқәа"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8690
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8780
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Агәаҭара"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8775
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8865
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Агәаҭара"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9626
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9716
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ахәаԥшра"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9711
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9801
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ахәаԥшра"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10854
+#: sw/uiconfig/swriter/ui/notebookbar.ui:10944
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Атаблица"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11028
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Атаблица"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12164
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12254
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Асахьа"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12261
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12351
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Асахьа"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13580
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13670
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Асахьа"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13687
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13777
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Асахьа"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14554
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14644
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Аобиект"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14639
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14729
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Аобиект"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15418
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15508
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Амедиа"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15522
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15612
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Амедиа"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15953
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16043
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Акьыԥхьра"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16035
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16125
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Акьыԥхьра"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16843
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16933
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Аформа"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16927
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17017
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Аформа"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16984
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17074
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "_Арҭбаара"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17058
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17148
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Арҭбаара"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18005
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18095
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Асервис"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18089
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18179
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Асервис"
#. guA3a
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3138
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3195
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Афаил"
#. PU9ct
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3187
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3244
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~Афаил"
#. McDEQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4682
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4739
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Ихадоу"
#. MSVBh
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4734
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4791
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "~Ихадоу"
#. zveKA
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5760
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5817
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Аҭаргылара"
#. CDXv3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5815
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5872
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Аҭаргылара"
#. a5p4d
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6594
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6651
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Адырганҵа"
#. TbQMa
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6646
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6703
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~Адаҟьа адырганҵа"
#. R5zY7
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7391
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7448
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Азхьарԥшқәа"
#. iEmZn
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7442
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7499
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "~Азхьарԥшқәа"
#. jYD7j
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8259
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8316
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Агәаҭара"
#. Lbj5B
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8311
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8368
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~Агәаҭара"
#. 35kA2
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8978
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9035
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Аԥшра"
#. ZGh8C
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9030
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9087
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Аԥшра"
#. W5JNf
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10339
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10396
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Атаблица"
#. UBApt
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10391
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10448
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~Атаблица"
#. fDEwj
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11729
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11786
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
msgstr "~Асахьа"
#. ekWoX
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11782
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11839
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Асахьа"
#. 8eQN8
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13221
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Асахьа"
#. FBf68
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13219
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13276
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Асахьа"
#. DoVwy
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14252
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14309
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Аобиект"
#. JXKiY
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14308
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14365
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Аобиект"
#. q8wnS
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15049
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15106
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Амедиа"
#. 7HDt3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15105
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15162
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Амедиа"
#. vSDok
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15764
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15821
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Акьыԥхьра"
#. goiqQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15819
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15876
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~Акьыԥхьра"
#. EBGs5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17202
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17259
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Аформа"
#. EKA8X
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17257
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17314
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Аформа"
#. 8SvE5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17336
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17393
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Арҭбаара"
#. WH5NR
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17394
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17451
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Арҭбаара"
#. 8fhwb
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18395
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18452
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Асервис"
#. kpc43
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18447
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18504
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Асервис"
@@ -23756,10 +23690,10 @@ msgctxt "optcompatpage|format"
msgid "Add spacing between paragraphs and tables"
msgstr ""
-#. b8Byk
+#. KaYuf
#: sw/uiconfig/swriter/ui/optcompatpage.ui:226
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages"
+msgid "Add paragraph and table spacing at top of first page and page breaks"
msgstr ""
#. QuEtV
@@ -23834,32 +23768,38 @@ msgctxt "optcompatpage|format"
msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
-#. YBG9Y
+#. XFTqo
#: sw/uiconfig/swriter/ui/optcompatpage.ui:239
msgctxt "optcompatpage|format"
+msgid "Render non-breaking spaces (NBSP) as standard-space-width (off for fixed size)"
+msgstr ""
+
+#. YBG9Y
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:240
+msgctxt "optcompatpage|format"
msgid "<User settings>"
msgstr "<Ахархәаҩ ирхиарақәа>"
#. i4UkP
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:249
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:250
msgctxt "optcompatpage|default"
msgid "Use as _Default"
msgstr "Ишыҟоу еиԥш"
#. ZVuBe
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:257
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:258
msgctxt "extended_tip|default"
msgid "Click to use the current settings on this tab page as the default for further sessions with Writer."
msgstr ""
#. XAXU2
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:272
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:273
msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
msgstr ""
#. XAThv
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:287
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:288
msgctxt "extended_tip|OptCompatPage"
msgid "Specifies compatibility settings for text documents. These options help in fine-tuning Writer when importing Microsoft Word documents."
msgstr ""
@@ -25661,6 +25601,18 @@ msgctxt "pagemargincontrol|label1"
msgid "Custom"
msgstr "Даҽакы:"
+#. LKnbm
+#: sw/uiconfig/swriter/ui/pagemargincontrol.ui:474
+msgctxt "pagemargincontrol|moreoptions"
+msgid "_More Options"
+msgstr ""
+
+#. SGvTq
+#: sw/uiconfig/swriter/ui/pagemargincontrol.ui:478
+msgctxt "pagemargincontrol|moreoptions|tooltip_text"
+msgid "More Options"
+msgstr ""
+
#. DVeaU
#: sw/uiconfig/swriter/ui/pagenumberdlg.ui:8
msgctxt "pagenumberdlg|PageNumberDialog"
@@ -29545,89 +29497,155 @@ msgctxt "titlepage|label7"
msgid "Place title pages at:"
msgstr "Ииагатәуп ахь"
+#. Vx88Z
+#: sw/uiconfig/swriter/ui/titlepage.ui:165
+msgctxt "titlepage|extended_tip|NF_PAGE_COUNT"
+msgid "Set the number of title pages to insert."
+msgstr ""
+
#. y5Tiz
-#: sw/uiconfig/swriter/ui/titlepage.ui:191
+#: sw/uiconfig/swriter/ui/titlepage.ui:196
msgctxt "titlepage|RB_USE_EXISTING_PAGES"
msgid "Converting existing pages to title pages"
msgstr ""
+#. BJnEY
+#: sw/uiconfig/swriter/ui/titlepage.ui:206
+msgctxt "titlepage|extended_tip|RB_USE_EXISTING_PAGES"
+msgid "Change the current page style to First Page and the following pages will have the Default Page Style."
+msgstr ""
+
#. B4uzg
-#: sw/uiconfig/swriter/ui/titlepage.ui:208
+#: sw/uiconfig/swriter/ui/titlepage.ui:218
msgctxt "titlepage|RB_INSERT_NEW_PAGES"
msgid "Insert new title pages"
msgstr "Иҭаргылатәуп иҿыцу атитултә даҟьақәа"
+#. 2pKvd
+#: sw/uiconfig/swriter/ui/titlepage.ui:228
+msgctxt "titlepage|extended_tip|RB_INSERT_NEW_PAGES"
+msgid "Insert a page break and change the current page style to First Page."
+msgstr ""
+
#. 9UqEG
-#: sw/uiconfig/swriter/ui/titlepage.ui:225
+#: sw/uiconfig/swriter/ui/titlepage.ui:240
msgctxt "titlepage|RB_DOCUMENT_START"
msgid "Document start"
msgstr "Адокумент алагамҭаҿ"
+#. d5wQ6
+#: sw/uiconfig/swriter/ui/titlepage.ui:252
+msgctxt "titlepage|extended_tip|RB_DOCUMENT_START"
+msgid "The title pages are inserted before the first page of the document."
+msgstr ""
+
#. UE6DM
-#: sw/uiconfig/swriter/ui/titlepage.ui:244
+#: sw/uiconfig/swriter/ui/titlepage.ui:264
msgctxt "titlepage|RB_PAGE_START"
msgid "Page"
msgstr "Адаҟьа"
+#. 5MCqs
+#: sw/uiconfig/swriter/ui/titlepage.ui:276
+msgctxt "titlepage|extended_tip|RB_PAGE_START"
+msgid "The title pages are inserted at the page specified by its current numbering."
+msgstr ""
+
#. S3vFc
-#: sw/uiconfig/swriter/ui/titlepage.ui:272
+#: sw/uiconfig/swriter/ui/titlepage.ui:297
msgctxt "titlepage|label1"
msgid "Make Title Pages"
msgstr "Иаҧҵатәуп атитултә даҟьақәа"
#. JKtfh
-#: sw/uiconfig/swriter/ui/titlepage.ui:301
+#: sw/uiconfig/swriter/ui/titlepage.ui:326
msgctxt "titlepage|CB_RESTART_NUMBERING"
msgid "Reset page numbering after title pages"
msgstr ""
+#. Z4Ef6
+#: sw/uiconfig/swriter/ui/titlepage.ui:334
+msgctxt "titlepage|extended_tip|CB_RESTART_NUMBERING"
+msgid "When checked, stop current numbering page count and restart numbering after the last inserted title page."
+msgstr ""
+
#. FY2CJ
-#: sw/uiconfig/swriter/ui/titlepage.ui:324
+#: sw/uiconfig/swriter/ui/titlepage.ui:354
msgctxt "titlepage|FT_PAGE_COUNT"
msgid "Page number:"
msgstr "Адаҟьа аномер:"
+#. zfzEK
+#: sw/uiconfig/swriter/ui/titlepage.ui:376
+msgctxt "titlepage|extended_tip|NF_RESTART_NUMBERING"
+msgid "Set the page number of the page following the last title page."
+msgstr ""
+
#. JdY9e
-#: sw/uiconfig/swriter/ui/titlepage.ui:360
+#: sw/uiconfig/swriter/ui/titlepage.ui:395
msgctxt "titlepage|CB_SET_PAGE_NUMBER"
msgid "Set page number for first title page"
msgstr ""
+#. ATkRE
+#: sw/uiconfig/swriter/ui/titlepage.ui:403
+msgctxt "titlepage|extended_tip|CB_SET_PAGE_NUMBER"
+msgid "When checked, set the page number for the first title page inserted."
+msgstr ""
+
#. TxHWZ
-#: sw/uiconfig/swriter/ui/titlepage.ui:383
+#: sw/uiconfig/swriter/ui/titlepage.ui:423
msgctxt "titlepage|FT_PAGE_PAGES"
msgid "Page number:"
msgstr "Адаҟьа аномер:"
+#. BnCXc
+#: sw/uiconfig/swriter/ui/titlepage.ui:445
+msgctxt "titlepage|extended_tip|NF_SET_PAGE_NUMBER"
+msgid "Set the page number for the first title page."
+msgstr ""
+
#. nJXn9
-#: sw/uiconfig/swriter/ui/titlepage.ui:423
+#: sw/uiconfig/swriter/ui/titlepage.ui:468
#, fuzzy
msgctxt "titlepage|label2"
msgid "Page Numbering"
msgstr "Амилаҭтә номерркра"
#. rQqDD
-#: sw/uiconfig/swriter/ui/titlepage.ui:453
+#: sw/uiconfig/swriter/ui/titlepage.ui:498
#, fuzzy
msgctxt "titlepage|label4"
msgid "_Style:"
msgstr "Астиль:"
+#. DQFWh
+#: sw/uiconfig/swriter/ui/titlepage.ui:514
+msgctxt "titlepage|extended_tip|LB_PAGE_PROPERTIES"
+msgid "Select the page style from the available pages styles in the document."
+msgstr ""
+
#. 4XAV9
-#: sw/uiconfig/swriter/ui/titlepage.ui:476
+#: sw/uiconfig/swriter/ui/titlepage.ui:526
#, fuzzy
msgctxt "titlepage|PB_PAGE_PROPERTIES"
msgid "Edit..."
msgstr "Иҧсахтәуп..."
+#. rxjQG
+#: sw/uiconfig/swriter/ui/titlepage.ui:532
+msgctxt "titlepage|extended_tip|PB_PAGE_PROPERTIES"
+msgid "Click to edit the page style."
+msgstr ""
+
#. puRGq
-#: sw/uiconfig/swriter/ui/titlepage.ui:493
+#: sw/uiconfig/swriter/ui/titlepage.ui:548
msgctxt "titlepage|label3"
msgid "Edit Page Properties"
msgstr ""
#. pGbpm
-#: sw/uiconfig/swriter/ui/titlepage.ui:525
+#: sw/uiconfig/swriter/ui/titlepage.ui:577
msgctxt "titlepage|extended_tip|DLG_TITLEPAGE"
msgid "Insert title pages in your document."
msgstr "Иҭаргылатәуп атитлтә даҟьақәа адокумент аҟны."
@@ -31357,8 +31375,14 @@ msgctxt "wordcount|standardizedpages"
msgid "Standardized pages"
msgstr "Истандарту адаҟьақәа"
+#. BvVDH
+#: sw/uiconfig/swriter/ui/wordcount.ui:326
+msgctxt "wordcount|lbComments"
+msgid "Comments"
+msgstr ""
+
#. mQfaX
-#: sw/uiconfig/swriter/ui/wordcount.ui:343
+#: sw/uiconfig/swriter/ui/wordcount.ui:369
msgctxt "wordcount|extended_tip|WordCountDialog"
msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection."
msgstr ""
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index 233af6fd31c..672dd299c3a 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/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: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-19 00:34+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1529847183.000000\n"
#. DLY8p
@@ -40,13 +40,13 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Ахықәкы ыҟоуп."
-#. KneVX
+#. yMuBR
#: uui/inc/ids.hrc:41
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected BASIC library containing module(s) \n"
+"You are saving a password protected Basic library containing the following large module(s): \n"
"$(ARG1)\n"
-"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
+"Storing those large module(s) in binary format, which is necessary for password protection, makes them unreadable in versions older than LibreOffice 5.0.3. If you want this please split the module into smaller pieces."
msgstr ""
#. 3rNDF
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index 1029bff962f..23b6aaa3152 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/vcl/messages.po
@@ -3,8 +3,8 @@ 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: 2023-06-26 15:07+0200\n"
-"PO-Revision-Date: 2023-07-17 05:35+0000\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
+"PO-Revision-Date: 2023-09-09 11:35+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022338.000000\n"
#. k5jTM
@@ -602,32 +602,32 @@ msgid "_Yes"
msgstr "Ааи"
#. CXDQa
-#: vcl/inc/printaccessoryview.hrc:27
+#: vcl/inc/printaccessoryview.hrc:29
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Preview"
msgstr "Заатәи ахәаԥшра"
#. BgxCz
-#: vcl/inc/printaccessoryview.hrc:28
+#: vcl/inc/printaccessoryview.hrc:30
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Page number"
msgstr "Адаҟьа аномер"
#. BEgxh
-#: vcl/inc/printaccessoryview.hrc:29
+#: vcl/inc/printaccessoryview.hrc:31
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Number of pages"
msgstr "Адаҟьақәа рхыԥхьаӡара"
#. xV2vm
-#: vcl/inc/printaccessoryview.hrc:30
+#: vcl/inc/printaccessoryview.hrc:32
#, fuzzy
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "More"
msgstr "Ииагатәуп"
#. QWCDs
-#: vcl/inc/printaccessoryview.hrc:31
+#: vcl/inc/printaccessoryview.hrc:33
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Print selection only"
msgstr "Икьыԥхьтәуп иалкаау мацара"
@@ -1114,165 +1114,171 @@ msgstr "Ибжьажьуп атестқәа: %1"
#: vcl/inc/strings.hrc:126
msgctxt "STR_UNSAVED_DOCUMENTS"
msgid "There are unsaved documents"
-msgstr ""
+msgstr "Иҟоуп еиқәырхам адокументқәа"
+
+#. LXCUf
+#: vcl/inc/strings.hrc:128
+msgctxt "editmenu|specialchar"
+msgid "_Special Character..."
+msgstr "Асимволқәа..."
#. V2EuY
#. To translators: This is the first entry of a sequence of measurement unit names
-#: vcl/inc/units.hrc:28
+#: vcl/inc/units.hrc:31
msgctxt "SV_FUNIT_STRINGS"
msgid "mm"
msgstr "мм"
#. fH7MJ
-#: vcl/inc/units.hrc:29
+#: vcl/inc/units.hrc:32
msgctxt "SV_FUNIT_STRINGS"
msgid "cm"
msgstr "см"
#. B5tmt
-#: vcl/inc/units.hrc:30
+#: vcl/inc/units.hrc:33
msgctxt "SV_FUNIT_STRINGS"
msgid "m"
msgstr "м"
#. XyxEA
-#: vcl/inc/units.hrc:31
+#: vcl/inc/units.hrc:34
msgctxt "SV_FUNIT_STRINGS"
msgid "km"
msgstr "км"
#. z6nfj
-#: vcl/inc/units.hrc:32
+#: vcl/inc/units.hrc:35
msgctxt "SV_FUNIT_STRINGS"
msgid "twips"
msgstr "твип"
#. gi2y8
-#: vcl/inc/units.hrc:33
+#: vcl/inc/units.hrc:36
msgctxt "SV_FUNIT_STRINGS"
msgid "twip"
msgstr "твипқәа"
#. Rk9tP
-#: vcl/inc/units.hrc:34
+#: vcl/inc/units.hrc:37
msgctxt "SV_FUNIT_STRINGS"
msgid "pt"
msgstr "пт"
#. J6AgQ
-#: vcl/inc/units.hrc:35
+#: vcl/inc/units.hrc:38
msgctxt "SV_FUNIT_STRINGS"
msgid "pc"
msgstr "АпК"
#. oC8K4
#. To translators: double prime symbol for inch
-#: vcl/inc/units.hrc:37
+#: vcl/inc/units.hrc:40
msgctxt "SV_FUNIT_STRINGS"
msgid "″"
msgstr "″"
#. AEhCN
-#: vcl/inc/units.hrc:38
+#: vcl/inc/units.hrc:41
msgctxt "SV_FUNIT_STRINGS"
msgid "\""
msgstr "\""
#. wmf3u
-#: vcl/inc/units.hrc:39
+#: vcl/inc/units.hrc:42
msgctxt "SV_FUNIT_STRINGS"
msgid "in"
msgstr "иаҵанакуеит"
#. GEHxy
-#: vcl/inc/units.hrc:40
+#: vcl/inc/units.hrc:43
msgctxt "SV_FUNIT_STRINGS"
msgid "inch"
msgstr "адиуим"
#. 4AEJE
#. To translators: prime symbol for foot
-#: vcl/inc/units.hrc:42
+#: vcl/inc/units.hrc:45
msgctxt "SV_FUNIT_STRINGS"
msgid "′"
msgstr "′"
#. RYzjD
-#: vcl/inc/units.hrc:43
+#: vcl/inc/units.hrc:46
msgctxt "SV_FUNIT_STRINGS"
msgid "'"
msgstr "'"
#. a64NT
-#: vcl/inc/units.hrc:44
+#: vcl/inc/units.hrc:47
msgctxt "SV_FUNIT_STRINGS"
msgid "ft"
msgstr "фут"
#. fbTuQ
-#: vcl/inc/units.hrc:45
+#: vcl/inc/units.hrc:48
msgctxt "SV_FUNIT_STRINGS"
msgid "foot"
msgstr "афут"
#. BvZ6A
-#: vcl/inc/units.hrc:46
+#: vcl/inc/units.hrc:49
msgctxt "SV_FUNIT_STRINGS"
msgid "feet"
msgstr "футқәа"
#. S4uRP
-#: vcl/inc/units.hrc:47
+#: vcl/inc/units.hrc:50
msgctxt "SV_FUNIT_STRINGS"
msgid "miles"
msgstr "амильқәа"
#. hCKye
-#: vcl/inc/units.hrc:48
+#: vcl/inc/units.hrc:51
msgctxt "SV_FUNIT_STRINGS"
msgid "mile"
msgstr "амиль"
#. UXbT9
-#: vcl/inc/units.hrc:49
+#: vcl/inc/units.hrc:52
msgctxt "SV_FUNIT_STRINGS"
msgid "ch"
msgstr "ch"
#. 9vsPY
-#: vcl/inc/units.hrc:50
+#: vcl/inc/units.hrc:53
msgctxt "SV_FUNIT_STRINGS"
msgid "line"
msgstr "ацәаҳәа"
#. z2hxz
-#: vcl/inc/units.hrc:51
+#: vcl/inc/units.hrc:54
msgctxt "SV_FUNIT_STRINGS"
msgid "pixels"
msgstr "пикс."
#. BpgcD
-#: vcl/inc/units.hrc:52
+#: vcl/inc/units.hrc:55
msgctxt "SV_FUNIT_STRINGS"
msgid "pixel"
msgstr "пикс."
#. eJWWH
#. To translators: degree
-#: vcl/inc/units.hrc:54
+#: vcl/inc/units.hrc:57
msgctxt "SV_FUNIT_STRINGS"
msgid "°"
msgstr "°"
#. heHMt
-#: vcl/inc/units.hrc:55
+#: vcl/inc/units.hrc:58
msgctxt "SV_FUNIT_STRINGS"
msgid "sec"
msgstr "сек"
#. zE8rv
#. To translators: This is the last entry of the sequence of measurement unit names
-#: vcl/inc/units.hrc:57
+#: vcl/inc/units.hrc:60
msgctxt "SV_FUNIT_STRINGS"
msgid "ms"
msgstr "мсек"
@@ -1805,12 +1811,6 @@ msgctxt "editmenu|selectall"
msgid "Select _All"
msgstr "Иалкаатәуп зегьы"
-#. LXCUf
-#: vcl/uiconfig/ui/editmenu.ui:72
-msgctxt "editmenu|specialchar"
-msgid "_Special Character..."
-msgstr "Асимволқәа..."
-
#. eESV5
#: vcl/uiconfig/ui/errornocontentdialog.ui:7
msgctxt "errornocontentdialog|ErrorNoContentDialog"
@@ -2137,7 +2137,7 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:731
msgctxt "printdialog|cbPrintOrder"
msgid "Order:"
-msgstr ""
+msgstr "Аишьҭагылашьа:"
#. vwjVt
#: vcl/uiconfig/ui/printdialog.ui:744
@@ -2464,74 +2464,32 @@ msgctxt "printerdevicepage|label10"
msgid "Co_lor:"
msgstr "Аԥштәы:"
-#. LG4Fe
-#: vcl/uiconfig/ui/printerdevicepage.ui:202
-msgctxt "printerdevicepage|label9"
-msgid "Printer language _type:"
-msgstr "Апринтер абызшәа:"
-
-#. yDrz5
-#: vcl/uiconfig/ui/printerdevicepage.ui:218
-msgctxt "printerdevicepage|liststore1"
-msgid "Automatic : %s"
-msgstr "Автоматикала: %s"
-
-#. Wy3NQ
-#: vcl/uiconfig/ui/printerdevicepage.ui:219
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript (Level from driver)"
-msgstr "PostScript (аҩаӡара адраивер аҟынтәи)"
-
-#. nStXM
-#: vcl/uiconfig/ui/printerdevicepage.ui:220
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript Level 1"
-msgstr "PostScript аҩаӡара 1"
-
-#. gYGZU
-#: vcl/uiconfig/ui/printerdevicepage.ui:221
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript Level 2"
-msgstr "PostScript аҩаӡара 2"
-
-#. JWNYo
-#: vcl/uiconfig/ui/printerdevicepage.ui:222
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript Level 3"
-msgstr "PostScript аҩаӡара 3"
-
-#. oaC9C
-#: vcl/uiconfig/ui/printerdevicepage.ui:223
-msgctxt "printerdevicepage|liststore1"
-msgid "PDF"
-msgstr "PDF"
-
#. yCnjf
-#: vcl/uiconfig/ui/printerdevicepage.ui:236
+#: vcl/uiconfig/ui/printerdevicepage.ui:203
msgctxt "printerdevicepage|colorspace"
msgid "From driver"
msgstr "Адраивер аҟынтәи"
#. WXFof
-#: vcl/uiconfig/ui/printerdevicepage.ui:237
+#: vcl/uiconfig/ui/printerdevicepage.ui:204
msgctxt "printerdevicepage|colorspace"
msgid "Color"
msgstr "Аԥштәы"
#. VGAv4
-#: vcl/uiconfig/ui/printerdevicepage.ui:238
+#: vcl/uiconfig/ui/printerdevicepage.ui:205
msgctxt "printerdevicepage|colorspace"
msgid "Grayscale"
msgstr ""
#. eG4W8
-#: vcl/uiconfig/ui/printerdevicepage.ui:251
+#: vcl/uiconfig/ui/printerdevicepage.ui:218
msgctxt "printerdevicepage|colordepth"
msgid "8 Bit"
msgstr "8 битк"
#. HAD2U
-#: vcl/uiconfig/ui/printerdevicepage.ui:252
+#: vcl/uiconfig/ui/printerdevicepage.ui:219
msgctxt "printerdevicepage|colordepth"
msgid "24 Bit"
msgstr "24 бит"
diff --git a/source/ab/xmlsecurity/messages.po b/source/ab/xmlsecurity/messages.po
index 8bcc7b40dbc..74b99167aa6 100644
--- a/source/ab/xmlsecurity/messages.po
+++ b/source/ab/xmlsecurity/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: 2023-05-03 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-08-24 11:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/ab/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.18.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561457060.000000\n"
#. EyJrF
@@ -94,8 +94,14 @@ msgctxt "STR_THUMBPRINT_MD5"
msgid "Thumbprint MD5"
msgstr "Аҭыԥынҵа MD5"
-#. YFxBG
+#. s3fND
#: xmlsecurity/inc/strings.hrc:38
+msgctxt "STR_XMLSECDLG_OPENED_CRTMGR"
+msgid "You have opened the certificate manager at\n"
+msgstr ""
+
+#. YFxBG
+#: xmlsecurity/inc/strings.hrc:39
msgctxt "STR_XMLSECDLG_OLD_ODF_FORMAT"
msgid ""
"This document contains signatures in ODF 1.1 (OpenOffice.org 2.x) format. Signing documents in %PRODUCTNAME %PRODUCTVERSION requires ODF 1.2 format version. Thus no signatures can be added or removed to this document.\n"
@@ -104,7 +110,7 @@ msgid ""
msgstr ""
#. cfswe
-#: xmlsecurity/inc/strings.hrc:42
+#: xmlsecurity/inc/strings.hrc:43
msgctxt "STR_XMLSECDLG_QUERY_REMOVEDOCSIGNBEFORESIGN"
msgid ""
"Adding or removing a macro signature will remove all document signatures.\n"
@@ -112,7 +118,7 @@ msgid ""
msgstr ""
#. CgnGz
-#: xmlsecurity/inc/strings.hrc:44
+#: xmlsecurity/inc/strings.hrc:45
msgctxt "STR_XMLSECDLG_QUERY_REALLYREMOVE"
msgid ""
"Document signature cannot be restored, once removed.\n"
@@ -122,97 +128,97 @@ msgstr ""
"Ианыхтәума иалху анапаҵаҩра?"
#. 4brTC
-#: xmlsecurity/inc/strings.hrc:47
+#: xmlsecurity/inc/strings.hrc:48
msgctxt "STR_XMLSECDLG_SIGNING_FAILED"
msgid "An error occurred while adding the signature."
msgstr "Анапаҵаҩра ацҵараан иҟалеит агха."
#. 6Qkuk
-#: xmlsecurity/inc/strings.hrc:48
+#: xmlsecurity/inc/strings.hrc:49
msgctxt "STR_XMLSECDLG_NO_CERT_MANAGER"
msgid "Could not find any certificate manager."
msgstr "Асертификатқәа рменеџьер ԥшаам."
#. nUWMF
-#: xmlsecurity/inc/strings.hrc:49
+#: xmlsecurity/inc/strings.hrc:50
msgctxt "STR_XMLSECDLG_NO_CERT_FOUND"
msgid "Could not find the certificate."
msgstr "Асертификат ԥшаам."
#. hXMQx
-#: xmlsecurity/inc/strings.hrc:51
+#: xmlsecurity/inc/strings.hrc:52
msgctxt "RID_XMLSECWB_NO_MOZILLA_PROFILE"
msgid "Digital signatures functionality could not be used, because no Mozilla user profile was found. Please check the Mozilla installation."
msgstr "Иауам рхархәара ацифратә напаҵаҩрақәа, избанзар Mozilla апрофмль ыҟам. Игәашәҭ Mozilla ақәыргылара."
#. dNPzJ
-#: xmlsecurity/inc/strings.hrc:53
+#: xmlsecurity/inc/strings.hrc:54
msgctxt "selectcertificatedialog|STR_DIGITAL_SIGNATURE"
msgid "Digital signature"
msgstr "Ацифратә напаҵаҩра"
#. ojssM
-#: xmlsecurity/inc/strings.hrc:54
+#: xmlsecurity/inc/strings.hrc:55
msgctxt "selectcertificatedialog|STR_NON_REPUDIATION"
msgid "Non-repudiation"
msgstr "Архынҳәра зымуа"
#. kYHCr
-#: xmlsecurity/inc/strings.hrc:55
+#: xmlsecurity/inc/strings.hrc:56
msgctxt "selectcertificatedialog|STR_KEY_ENCIPHERMENT"
msgid "Key encipherment"
msgstr "Ацаԥха ашифрркра"
#. sEQDG
-#: xmlsecurity/inc/strings.hrc:56
+#: xmlsecurity/inc/strings.hrc:57
msgctxt "selectcertificatedialog|STR_DATA_ENCIPHERMENT"
msgid "Data encipherment"
msgstr "Адырқәа ршифрркра"
#. dpZvA
-#: xmlsecurity/inc/strings.hrc:57
+#: xmlsecurity/inc/strings.hrc:58
msgctxt "selectcertificatedialog|STR_KEY_AGREEMENT"
msgid "Key Agreement"
msgstr "Ацапхазы аиқәшаҳаҭра"
#. dREUL
-#: xmlsecurity/inc/strings.hrc:58
+#: xmlsecurity/inc/strings.hrc:59
msgctxt "selectcertificatedialog|STR_KEY_CERT_SIGN"
msgid "Certificate signature verification"
msgstr "Асертификат анапаҵаҩра агәаҭара"
#. GQcAW
-#: xmlsecurity/inc/strings.hrc:59
+#: xmlsecurity/inc/strings.hrc:60
msgctxt "selectcertificatedialog|STR_CRL_SIGN"
msgid "CRL signature verification"
msgstr "CRL анапаҵаҩра агәаҭара"
#. i8FJM
-#: xmlsecurity/inc/strings.hrc:60
+#: xmlsecurity/inc/strings.hrc:61
msgctxt "selectcertificatedialog|STR_ENCIPHER_ONLY"
msgid "Only for encipherment"
msgstr "Ашифрркра мацараз"
#. 4oZqX
-#: xmlsecurity/inc/strings.hrc:61
+#: xmlsecurity/inc/strings.hrc:62
msgctxt "selectcertificatedialog|str_sign"
msgid "Sign"
msgstr "Инапаҵаҩтәуп"
#. tMAzV
-#: xmlsecurity/inc/strings.hrc:62
+#: xmlsecurity/inc/strings.hrc:63
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
msgstr "Иалхтәуп"
#. Gr5gE
-#: xmlsecurity/inc/strings.hrc:63
+#: xmlsecurity/inc/strings.hrc:64
msgctxt "selectcertificatedialog|str_encrypt"
msgid "Encrypt"
msgstr "Ишифррктәуп"
#. FSe5D
-#: xmlsecurity/inc/strings.hrc:65
+#: xmlsecurity/inc/strings.hrc:66
msgctxt "STR_BROKEN_MACRO_CERTIFICATE_DATA"
msgid ""
"Macro security problem!\n"
@@ -731,85 +737,91 @@ msgid "Trusted File Locations"
msgstr "Игәрагоу афаилқәа рҭыԥ"
#. 8PVzB
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:24
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:20
msgctxt "selectcertificatedialog|SelectCertificateDialog"
msgid "Select Certificate"
msgstr "Иалышәх асертификат"
#. 5iWSE
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:102
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:98
msgctxt "selectcertificatedialog|sign"
msgid "Select the certificate you want to use for signing:"
msgstr "Иалышәх асертификат анапаҵаҩразы:"
#. jcCAA
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:113
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:109
msgctxt "selectcertificatedialog|encrypt"
msgid "Select the certificate you want to use for encryption:"
msgstr "Иалышәх асертификат ашифрркразы:"
#. 69438
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:145
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:141
msgctxt "selectcertificatedialog|issuedto"
msgid "Issued to"
msgstr "Изырҭаз"
#. qiZ9B
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:158
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:156
msgctxt "selectcertificatedialog|issuedby"
msgid "Issued by"
msgstr "Ирызҭаз"
-#. 7GEah
+#. tAbBf
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:171
msgctxt "selectcertificatedialog|type"
-msgid "Type"
-msgstr "Атип"
-
-#. BCy3f
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:184
-msgctxt "selectcertificatedialog|expiration"
msgid "Expiration date"
-msgstr "Анҵәамҭа арыцхә"
-
-#. MtTXb
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:197
-msgctxt "selectcertificatedialog|usage"
-msgid "Certificate usage"
-msgstr "Асертификат ахархәара"
+msgstr ""
#. ANyft
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:208
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:184
msgctxt "selectcertificatedialog|extended_tip|signatures"
msgid "Select the certificate that you want to digitally sign the current document with."
msgstr ""
-#. uwjMQ
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:221
-msgctxt "selectcertificatedialog|viewcert"
-msgid "View Certificate..."
-msgstr "Асертификат..."
-
-#. zqWDZ
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:228
-msgctxt "selectcertificatedialog|extended_tip|viewcert"
-msgid "Opens the View Certificate dialog where you can examine the selected certificate."
+#. 5imAy
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:204
+msgctxt "selectcertificatedialog|extended_tip|searchbox"
+msgid "Search for certificate by issuer name or email."
msgstr ""
#. dbgmP
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:246
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:222
msgctxt "selectcertificatedialog|label2"
msgid "Description:"
msgstr "Ахҳәаа:"
#. LbnAV
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:262
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:238
msgctxt "selectcertificatedialog|extended_tip|description"
msgid "Type a purpose for the signature."
msgstr "Иҭажәгал ари анапаҵаҩра зызку."
+#. uwjMQ
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:262
+msgctxt "selectcertificatedialog|viewcert"
+msgid "View Certificate..."
+msgstr "Асертификат..."
+
+#. zqWDZ
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:269
+msgctxt "selectcertificatedialog|extended_tip|viewcert"
+msgid "Opens the View Certificate dialog where you can examine the selected certificate."
+msgstr ""
+
+#. VhBN9
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:281
+msgctxt "selectcertificatedialog|reloadcert"
+msgid "Reload Certificates"
+msgstr ""
+
+#. AGWLN
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:288
+msgctxt "selectcertificatedialog|extended_tip|reloadcert"
+msgid "Reload the list of certificates."
+msgstr ""
+
#. snAQh
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:297
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:320
msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog"
msgid "Select the certificate that you want to digitally sign the current document with."
msgstr ""
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index b0dce39fa08..032b16cb562 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/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: 2023-07-06 10:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-07-12 10:12+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -147,184 +147,118 @@ msgctxt "stock"
msgid "_Yes"
msgstr "_Ja"
-#. E6GDh
-#: cui/inc/strings.hrc:23
-msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
-msgid "Configuration"
-msgstr "Opstelling"
-
#. z7dmW
-#: cui/inc/strings.hrc:24
+#: cui/inc/strings.hrc:23
msgctxt "RID_SVXSTR_KEY_WORK_PATH"
msgid "My Documents"
msgstr "My dokumente"
#. wnMWp
-#: cui/inc/strings.hrc:25
+#: cui/inc/strings.hrc:24
msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
msgid "Images"
msgstr "Beelde"
-#. AnM4M
-#: cui/inc/strings.hrc:26
-msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
-msgid "Icons"
-msgstr "Ikone"
-
-#. bpvbo
-#: cui/inc/strings.hrc:27
-msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
-msgid "Palettes"
-msgstr "Palette"
-
#. shiKT
-#: cui/inc/strings.hrc:28
+#: cui/inc/strings.hrc:25
msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
msgid "Backups"
msgstr "Rugsteunkopieë"
-#. ai8eF
-#: cui/inc/strings.hrc:29
-msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
-msgid "Modules"
-msgstr "Modules"
-
#. WyhJD
-#: cui/inc/strings.hrc:30
+#: cui/inc/strings.hrc:26
msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
msgid "Templates"
msgstr "Sjablone"
#. mNj9y
-#: cui/inc/strings.hrc:31
+#: cui/inc/strings.hrc:27
msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
msgid "AutoText"
msgstr "OutoTeks"
#. co7GJ
-#: cui/inc/strings.hrc:32
+#: cui/inc/strings.hrc:28
msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
msgid "Dictionaries"
msgstr "Woordeboeke"
#. MbjWM
-#: cui/inc/strings.hrc:33
+#: cui/inc/strings.hrc:29
msgctxt "RID_SVXSTR_KEY_HELP_DIR"
msgid "Help"
msgstr "Hulp"
#. u2bQB
-#: cui/inc/strings.hrc:34
+#: cui/inc/strings.hrc:30
msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
msgid "Gallery"
msgstr "Galery"
-#. 2umbs
-#: cui/inc/strings.hrc:35
-msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
-msgid "Message Storage"
-msgstr "Boodskapbewaring"
-
#. oMdF8
-#: cui/inc/strings.hrc:36
+#: cui/inc/strings.hrc:31
msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
msgid "Temporary files"
msgstr "Tydelike lêers"
-#. 4DDzW
-#: cui/inc/strings.hrc:37
-msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
-msgid "Plug-ins"
-msgstr "Inproppe"
-
-#. v5YHp
-#: cui/inc/strings.hrc:38
-msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
-msgid "Folder Bookmarks"
-msgstr "Vouer boekmerke"
-
-#. AJkga
-#: cui/inc/strings.hrc:39
-msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
-msgid "Filters"
-msgstr "Filters"
-
-#. 2DKUC
-#: cui/inc/strings.hrc:40
-msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
-msgid "Add-ins"
-msgstr "Invoegsels"
-
-#. Tm2DM
-#: cui/inc/strings.hrc:41
-msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
-msgid "User Configuration"
-msgstr "Gebruikeropstelling"
-
-#. ATuL4
-#: cui/inc/strings.hrc:42
-msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
-msgid "User-defined dictionaries"
-msgstr "Gebruikergedefinieerde woordeboeke"
-
#. qxBAu
-#: cui/inc/strings.hrc:43
+#: cui/inc/strings.hrc:32
msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
msgid "Classification"
msgstr "Klassifikasie"
#. FrDws
-#: cui/inc/strings.hrc:44
+#: cui/inc/strings.hrc:33
msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
msgid "AutoCorrect"
msgstr "OutoKorrigeer"
#. jD48Q
-#: cui/inc/strings.hrc:45
+#: cui/inc/strings.hrc:34
msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
msgid "Writing aids"
msgstr "Skryfhulpmiddels"
#. VNK5b
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:47
+#: cui/inc/strings.hrc:36
msgctxt "RID_SVXSTR_NEW_MENU"
msgid "New Menu %n"
msgstr "Nuwe kieslys %n"
#. dJXBJ
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:49
+#: cui/inc/strings.hrc:38
msgctxt "RID_SVXSTR_NEW_TOOLBAR"
msgid "New Toolbar %n"
msgstr "Nuwe nutsbalk %n"
#. PCa2G
-#: cui/inc/strings.hrc:50
+#: cui/inc/strings.hrc:39
msgctxt "RID_SVXSTR_MOVE_MENU"
msgid "Move Menu"
msgstr "Skuif kieslys"
#. KbZFf
-#: cui/inc/strings.hrc:51
+#: cui/inc/strings.hrc:40
msgctxt "RID_SVXSTR_ADD_SUBMENU"
msgid "Add Submenu"
msgstr "Voeg subkieslys by"
#. w2qNv
-#: cui/inc/strings.hrc:52
+#: cui/inc/strings.hrc:41
msgctxt "RID_SVXSTR_SUBMENU_NAME"
msgid "Submenu name"
msgstr "Subkieslysnaam"
#. qJgZw
-#: cui/inc/strings.hrc:53
+#: cui/inc/strings.hrc:42
msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
msgid "Are you sure to delete the image?"
msgstr "Is u seker u wil die prent skrap?"
#. d6e9K
-#: cui/inc/strings.hrc:54
+#: cui/inc/strings.hrc:43
msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
msgid ""
"The icon %ICONNAME is already contained in the image list.\n"
@@ -334,19 +268,19 @@ msgstr ""
"Wil u die bestaande ikoon vervang?"
#. FRvQe
-#: cui/inc/strings.hrc:55
+#: cui/inc/strings.hrc:44
msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
msgid "Confirm Icon Replacement"
msgstr "Bevestig ikoonvervanging"
#. xC2Wc
-#: cui/inc/strings.hrc:56
+#: cui/inc/strings.hrc:45
msgctxt "RID_SVXSTR_YESTOALL"
msgid "Yes to All"
msgstr "Ja aan almal"
#. jCwDZ
-#: cui/inc/strings.hrc:57
+#: cui/inc/strings.hrc:46
msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "Daar is geen bevele op die nutsbalk meer nie. Wil u die nutsbalk skrap?"
@@ -355,935 +289,935 @@ msgstr "Daar is geen bevele op die nutsbalk meer nie. Wil u die nutsbalk skrap?"
#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
#. and will be replaced at runtime by the name of the selected application
#. or document.
-#: cui/inc/strings.hrc:62
+#: cui/inc/strings.hrc:51
msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "Die kieslysopstelling vir %SAVE IN SELECTION% sal na verstekinstellings teruggestel word. Wil u voortgaan?"
#. RYeCk
-#: cui/inc/strings.hrc:63
+#: cui/inc/strings.hrc:52
msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "Die nutsbalkopstelling vir %SAVE IN SELECTION% sal na verstekinstellings teruggestel word. Wil u voortgaan?"
#. JgGvm
-#: cui/inc/strings.hrc:64
+#: cui/inc/strings.hrc:53
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "Hierdie aksie sal alle vorige wysigings aan dié nutsbalk skrap. Wil u werklik die nutsbalk herstel?"
#. 4s9MJ
-#: cui/inc/strings.hrc:65
+#: cui/inc/strings.hrc:54
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
msgstr "Hierdie aksie sal alle vorige wysigings aan dié kontekskieslys skrap. Wil u hom werklik herstel?"
#. G2mu7
-#: cui/inc/strings.hrc:66
+#: cui/inc/strings.hrc:55
msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
msgid "~New name"
msgstr "~Nuwe naam"
#. Ahhg9
-#: cui/inc/strings.hrc:67
+#: cui/inc/strings.hrc:56
msgctxt "RID_SVXSTR_RENAME_MENU"
msgid "Rename Menu"
msgstr "Hernoem kieslys"
#. CmDaN
-#: cui/inc/strings.hrc:68
+#: cui/inc/strings.hrc:57
msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "Hernoem nutsbalk"
#. GsaZE
-#: cui/inc/strings.hrc:69
+#: cui/inc/strings.hrc:58
msgctxt "RID_SVXSTR_ALL_COMMANDS"
msgid "All Commands"
msgstr "Alle Opdragte"
#. A7cUy
-#: cui/inc/strings.hrc:70
+#: cui/inc/strings.hrc:59
msgctxt "RID_SVXSTR_TABBED"
msgid "Tabbed"
msgstr "Oortjieblad"
#. xqrfE
-#: cui/inc/strings.hrc:71
+#: cui/inc/strings.hrc:60
msgctxt "RID_SVXSTR_TABBED_COMPACT"
msgid "Tabbed Compact"
msgstr "Kompakte Oortjieblad"
#. fLLH2
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:61
msgctxt "RID_SVXSTR_GROUPEDBAR"
msgid "Groupedbar"
msgstr "Groep werksbalk"
#. AnFxX
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:62
msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
msgid "Groupedbar Compact"
msgstr "Kompakte Werksbalk"
#. GN45E
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:64
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "Sluit"
#. dkH9d
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:65
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "Muis oor objek"
#. 4QYHe
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:66
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "Aktiveer hiperskakel"
#. WMQPj
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:67
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "Muis verlaat objek"
#. ES4Pj
-#: cui/inc/strings.hrc:79
+#: cui/inc/strings.hrc:68
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "Knoppie"
#. MPHHF
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:69
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "Teks"
#. 9nkb2
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:70
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
#. smWax
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:72
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "Kies lêer vir swewende raam"
#. F74rR
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:73
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "Alle opdragte"
#. EeB6i
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:74
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "Makro’s"
#. mkEjQ
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:75
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "My makro’s"
#. nn7Gm
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "Application Macros"
msgstr "Toepassing Makro's"
#. RGCGW
-#: cui/inc/strings.hrc:88
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "Daar is geen beskrywing beskikbaar vir dié makro nie."
#. AFniE
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "Laat loop"
#. whwAN
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "Voeg rye in"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "Bo seleksie"
#. oBHui
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "Onder seleksie"
#. c8nou
-#: cui/inc/strings.hrc:94
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Verwyder uit gunstelinge"
#. XpjRm
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:84
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Ontbrekende karakter"
#. 7tBGT
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Voeg by gunstelinge"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "Voeg kolomme in"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "Voor seleksie"
#. nXnb3
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "Ná seleksie"
#. QrFJZ
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "Outomaties"
#. X9CWA
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "Skakel"
#. QCgnw
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "Laai sleutelbordopstelling"
#. eWQoY
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "Stoor sleutelbordopstelling"
#. ggFZE
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "Opstelling (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "Teikens bestaan nie in die dokument nie."
#. pCbRV
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "Kon nie die dokument open nie."
#. zAUfq
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[Tik teks hier in]"
#. ResDx
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangoel"
#. 3t3AC
-#: cui/inc/strings.hrc:112
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Handja"
#. XKYHn
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "Style"
#. 3Qq2E
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
msgstr "Sybalk Panele"
#. hFEBv
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "Begin toepassing"
#. 6tUvx
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "Sluit toepassing"
#. 6NsQz
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "Nuwe dokument"
#. G6b2e
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "Dokument gesluit"
#. yvsTa
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "Dokument gaan gesluit word"
#. DKpfj
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "Open dokument"
#. DTDDm
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "Stoor dokument"
#. Trc82
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "Stoor dokument as"
#. GCbZt
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "Dokument is gestoor"
#. mYtMa
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "Dokument is gestoor as"
#. t8F8W
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "Aktiveer dokument"
#. T7QE3
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "Deaktiveer dokument"
#. AQXyC
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "Druk dokument"
#. 8uXuz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "“Gewysig”-status is verander"
#. 5CKDG
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "Druk van vormletters begin"
#. AZ2io
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "Druk van vormvelde klaar"
#. dHtbz
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "Saamvoeg van vormvelde begin"
#. uGCdD
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "Saamvoeg van vormvelde klaar"
#. srLLa
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "Verander bladsytelling"
#. AsuQF
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "’n Subkomponent is gelaai"
#. Gf22f
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "’n Subkomponent is gesluit"
#. QayEb
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "Vul parameters in"
#. mL59X
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "Voer aksie uit"
#. KtHBE
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "Na bywerking"
#. b6CCj
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "Voor bywerking"
#. KTBcp
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "Voor opneemaksie"
#. Fhyio
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "Na opneemaksie"
#. PmJgM
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "Bevestig skrapping"
#. gcREA
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "Fout het voorgekom"
#. oAwDt
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "Tydens aanpassing"
#. AyfwP
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "Tydens fokusontvangs"
#. BD96B
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "Tydens fokusverlies"
#. wEhfE
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "Itemstatus het verander"
#. FRW7b
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "Sleutel gedruk"
#. 4kZCD
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "Sleutel laat los"
#. ZiS2D
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "Tydens laai"
#. vEjAG
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "Voor herlaai"
#. 5FvrE
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "Tydens herlaai"
#. CDcYt
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "Muis het beweeg toe sleutel gedruk is"
#. CPpyk
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "Muis binne"
#. 4hGfp
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "Muis buite"
#. QEuWr
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "Muis het beweeg"
#. 8YA3S
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "Muisknoppie gedruk"
#. RMuJe
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "Muisknoppie gelos"
#. 5iPHQ
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "Voor rekordverandering"
#. yrBiz
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "Na rekordverandering"
#. bdBH4
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "Na teruglaaiing"
#. eVsFk
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "Voor terugstelling"
#. 2oAoV
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "Keur aksie goed"
#. hQAzK
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "Voor indiening"
#. CFPSo
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "Teks gewysig"
#. 2ADMH
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "Voor ontlading"
#. F8BL3
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "Tydens ontlaaiing"
#. M6fPe
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "Het verander"
#. gZyVB
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "Dokument geskep"
#. BcPDW
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "Dokument klaar gelaai"
#. ir7AQ
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "Kon nie dokument stoor nie"
#. BFtTF
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "“Stoor as” het misluk"
#. N9e6u
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "Stoor of voer kopie van dokument uit"
#. okb9H
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "Dokumentkopie is geskep"
#. DrYTY
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "Skep van dokumentkopie het misluk"
#. BBJJQ
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "Aansig geskep"
#. XN9Az
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "Aansig gaan gesluit word"
#. a9qty
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "Aansig gesluit"
#. dDunN
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "Dokumenttitel het verander"
#. 6D6BS
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "Seleksie het verander"
#. XArW3
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "Dubbelkliek"
#. oDkyz
-#: cui/inc/strings.hrc:183
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "Regs-klik"
#. tVSz9
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "Formules is bereken"
#. ESxTQ
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "Inhoud het verander"
#. Zimeo
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:176
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "enige plek in die veld"
#. qCKMY
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:177
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "begin van veld"
#. CKVTF
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:178
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "einde van veld"
#. FZwxu
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:179
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "hele veld"
#. AFUFs
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:180
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "Vanaf bo"
#. FBDbX
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:181
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "Van onder"
#. brdgV
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:182
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "Geen rekords wat met u data ooreenstem is gevind nie."
#. VkTjA
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:183
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "’n Onbekende fout het voorgekom. Die soektog kon nie beëindig word nie."
#. jiQdw
-#: cui/inc/strings.hrc:195
+#: cui/inc/strings.hrc:184
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "Oorloop, soektog aan begin voortgesit"
#. EzK3y
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:185
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "Oorloop, soektog aan einde voortgesit"
#. zwiat
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:186
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "besig om rekords te tel"
#. 7cVWa
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:188
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<Geen lêers>"
#. AnJUu
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:189
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "Objek;Objekte"
#. GQXSM
-#: cui/inc/strings.hrc:201
+#: cui/inc/strings.hrc:190
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(leesalleen)"
#. sAwgA
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:191
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<Alle lêers>"
#. YkCky
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:192
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "Hierdie ID bestaan reeds..."
#. w3AUk
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:194
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "Die pad %1 bestaan reeds."
#. 54BsS
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:195
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "Kies argiewe"
#. NDB5V
-#: cui/inc/strings.hrc:207
+#: cui/inc/strings.hrc:196
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "Argiewe"
#. ffPAq
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:197
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "Die lêer %1 bestaan reeds."
#. 5FyxP
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:198
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "Voeg beeld by"
#. eUzGk
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "Die bevestigingswagwoord het nie ooreengestem met die wagwoord nie. Stel die wagwoord weer deur die selfde wagwoord in altwee boksies te tik."
#. mN9jE
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "Die bevestigingswagwoorde het nie ooreenstem met die oorspronklike wagwoorde nie. Stel die wagwoorde weer in."
#. 48ez3
-#: cui/inc/strings.hrc:213
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "Tik ’n wagwoord om te open of te wysig, of merk die “Open leesaleen”-keuse op voort te gaan."
#. aAbAN
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "Stel die wagwoord deur die dieselfde wagwoord in altwee boksies te tik."
#. ZXcFw
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "Maksimum wagwoord lengte van %1 is bereik"
#. Fko49
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:206
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "Outomaties"
#. WYHFb
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:207
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "Handmatig"
#. PFN4j
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:208
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "Nie beskikbaar nie"
#. 5ymS3
-#: cui/inc/strings.hrc:220
+#: cui/inc/strings.hrc:209
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "Is u seker u wil die geselekteerde skakel skrap?"
#. wyMwT
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:210
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "Is u seker u wil die geselekteerde skakel skrap?"
#. CN74h
-#: cui/inc/strings.hrc:222
+#: cui/inc/strings.hrc:211
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "Wagtend"
#. QJKgF
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "Stoor skermskoot as..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "Datareeks $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:218
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "Ja"
#. RuQiB
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:219
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "Nee"
#. irLeD
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:221
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1295,7 +1229,7 @@ msgstr ""
"bestaan nie."
#. iQYnX
-#: cui/inc/strings.hrc:233
+#: cui/inc/strings.hrc:222
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1307,7 +1241,7 @@ msgstr ""
"bestaan nie in die plaaslike lêerstelsel nie."
#. 4PaJ2
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:223
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1317,163 +1251,163 @@ msgstr ""
"Kies asseblief ’n ander naam."
#. KFB7q
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:224
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "Wil u die woordeboek skrap?"
#. gg9gD
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "Wil u die volgende objek skrap?"
#. 42ivC
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:227
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "Bevestig skrapping"
#. kn5KE
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:228
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "Die geselekteerde objek kon nie geskrap word nie."
#. T7T8x
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:229
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "Kon nie objek skrap nie"
#. SCgXy
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:230
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "Die objek kon nie geskep word nie."
#. TmiCU
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " Objek met die selfde naam bestaan reeds."
#. ffc5M
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "Kon nie objek skep nie"
#. hpB8B
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:233
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "Die objek kon nie hernoem word nie."
#. eevjm
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:234
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "Fout met hernoem van objek"
#. fTHFY
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:235
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME-fout"
#. e6BgS
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "Die skriptaal %LANGUAGENAME word nie ondersteun nie."
#. EUek9
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "’n Fout het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is."
#. KVQAh
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "’n Uitsondering het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is."
#. 5bFCQ
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "’n Fout het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is. Sien lyn: %LINENUMBER."
#. KTptU
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "’n Uitsondering het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is. Sien lyn: %LINENUMBER."
#. BZDbp
-#: cui/inc/strings.hrc:252
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "’n Skripraamwerkfout het ontstaan toe die %LANGUAGENAME-skrip %SCRIPTNAME laat loop is."
#. AAghx
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "Soort:"
#. GAsca
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "Boodskap:"
#. ZcxRY
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType na % PRODUCTNAME Wiskunde, of andersom"
#. Ttggs
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord na %PRODUCTNAME Writer, of andersom"
#. ZJRKY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel na %PRODUCTNAME Calc, of andersom"
#. VmuND
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint na %PRODUCTNAME Impress, of andersom"
#. sE8as
-#: cui/inc/strings.hrc:260
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt vorme na % PRODUCTNAME, of andersom"
#. AEgXY
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio na %PRODUCTNAME of omgekeerd"
#. Zarkq
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF na %PRODUCTNAME Draw of omgekeerd"
#. dDtDU
-#: cui/inc/strings.hrc:264
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1483,7 +1417,7 @@ msgstr ""
"Tik asseblief ’n nuwe naam."
#. kzhkA
-#: cui/inc/strings.hrc:265
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1505,145 +1439,145 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:280
+#: cui/inc/strings.hrc:269
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~Grammatika Volgens"
#. LPb5d
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:270
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "Ve~rvang"
#. anivV
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:271
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "Wil u die “%1”-woordeboektaal wysig?"
#. XEFrB
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:273
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "Wil u regtig die kleurskema skrap?"
#. ybdED
-#: cui/inc/strings.hrc:285
+#: cui/inc/strings.hrc:274
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "Kleurskemaskrapping"
#. DoNBE
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:275
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "Stoor skema"
#. tFrki
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:276
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "Naam van kleurskema"
#. BAGbe
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:278
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "Spelling"
#. uBohu
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:279
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "Woordafbreking"
#. XGkt6
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:280
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "Tesourus"
#. EFrDA
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:281
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "Grammatika"
#. zbEv9
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "Kontroleer bokaswoorde"
#. BbDNe
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "Kontroleer woorde met getalle "
#. bPDyB
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "Kontroleer spesiale gebiede"
#. BQxwc
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:285
msgctxt "RID_SVXSTR_SPELL_CLOSED_COMPOUND"
msgid "Accept possible closed compound words"
msgstr "Aanvaar moontlike geslote saamgestelde woorde"
#. WLmfd
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_SPELL_HYPHENATED_COMPOUND"
msgid "Accept possible hyphenated compound words"
msgstr "Aanvaar moontlike koppelteken saamgestelde woorde"
#. XjifG
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "Kontroleer spelling terwyl getik word"
#. J3ENq
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "Kontroleer grammatika terwyl getik word"
#. f6v3L
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "Minimum getal karakters vir koppelteken: "
#. BCrEf
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "Karakters voor lynbreuk: "
#. Kgioh
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "Karakters na lynbreuk: "
#. AewrH
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "Breek woorde af sonder navraag"
#. qCKn9
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "Breek woorde af in spesiale gebiede"
#. weKUF
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1653,7 +1587,7 @@ msgstr ""
"Kies asseblief ’n ander gids."
#. jFLdB
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1663,13 +1597,13 @@ msgstr ""
"Kies asseblief ’n ander gids."
#. 79uiz
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "Wysig parameter"
#. fsbAN
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1681,37 +1615,37 @@ msgstr ""
"Die maksimum waarde vir ’n poortnommer is 65535."
#. UCFD6
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "Tik asseblief ’n naam vir die gradiënt in:"
#. UDvKR
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "Tik asseblief ’n naam vir die biskaart in:"
#. QXqJD
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "Tik asseblief ’n naam vir die eksterne biskaart in:"
#. SrS6X
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "Tik asseblief ’n naam vir die patroon:"
#. yD7AW
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:305
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "Tik asseblief ’n naam vir die lynstyl:"
#. FQDrh
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1721,483 +1655,495 @@ msgstr ""
"Wysig die gekose lynstyl of voeg ’n nuwe lynstyl by."
#. Z5Dkg
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "Tik asseblief ’n naam vir die arsering:"
#. rvyBi
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "Wysig"
#. ZDhBm
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "Voeg by"
#. QgAFH
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "Tik asseblief ’n naam vir die nuwe kleur:"
#. GKnJR
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "Tabel"
#. s9ED3
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrow style:"
msgstr "Tik asseblief 'n naam in vir die nuwe styl vir pyle:"
#. xD9BU
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "Geen %1"
#. GVkFG
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "Familie:"
#. 6uDkp
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "Font:"
#. KFXAV
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "Styl:"
#. gDu75
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Lettertipe:"
#. BcWHA
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "Gebruik vervangingstabel"
#. L8BEE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Korrigeer TWee AAnvangshoofletters"
#. p5h3s
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "Hoofletter aan die begin van elke sin"
#. prrWd
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "Outomatiese *vetdruk*, /skuinsdruk/, -doodtrek- en _onderstreep_"
#. a89xT
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "Ignoreer dubbelspasies"
#. qEA6h
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL-herkenning"
#. ErZiP
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_DETECT_DOI"
msgid "DOI citation recognition"
msgstr "DOI-sitasie herkenning"
#. JfySE
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "Vervang aandagstrepe"
#. u2BuA
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "Korrigeer as cAPS LOCK per ongeluk aan is"
#. GZqG9
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "Voeg ’n niebrekende spasie voor spesifieke leestekens in Franse teks"
#. NDmW9
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "Formateer agtervoegsels van rangtelworode (1st → 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr "Vertaal na Ou-Hongaars, wanneer die teks rigting van regs na links is"
#. CNtDd
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "Vervang << en >> met hoekige Aanhalingstekens"
#. Rc6Zg
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "Verwyder leë paragrawe"
#. F6HCc
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "Vervang doelgemaakte style"
#. itDJG
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "Vervang koeëls met: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "Kombineer enkelreëlparagrawe indien langer as %1"
#. M9kNQ
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "Koeël-paragrawe en nommering. Koeël-simbole: % 1"
+#. BAEej
+#: cui/inc/strings.hrc:337
+msgctxt "RID_SVXSTR_NUM_FORMAT_AFTER_SPACE"
+msgid "Bulleted and numbered lists immediate after pressing space"
+msgstr ""
+
#. BJVGT
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "Pas rand toe"
#. bXpcq
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "Skep tabel"
#. RvEBo
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "Pas style toe"
#. 6MGUe
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "Skrap spasies en inkepe aan die begin en einde van paragraaf"
#. R9Kke
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "Skrap spasies en inkepe aan die begin en einde van reëls"
#. GFpkR
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "Verbinder"
#. XDp8d
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "Dimensielyn"
#. Mxt3D
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "By Woordbegin"
#. o8nY6
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "By Woordeinde"
#. cZX7G
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Geen skadu"
#. bzAHG
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Gooi skaduwee na regs onder"
#. FjBGC
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Gooi skaduwee na regs bo"
#. 5BkoC
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Gooi skaduwee na links onder"
#. GYB8M
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Gooi skaduwee na links bo"
#. xTvak
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Onderteken deur: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle Lêers"
#. 8bnrf
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Geregistreerde Databasisse"
#. xySty
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "Die URL <%1> kan nie omgeskakel word na 'n lêersisteem pad nie."
#. YfSb4
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2023 LibreOffice contributors."
msgstr "Kopiereg © 2000–2023 LibreOffice bydraers."
#. WCnhx
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:362
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dié vrystelling is verskaf deur %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:363
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice was gebaseer op OpenOffice.org."
#. 9aeNR
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:364
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME is afgeleide van LibreOffice, gebaseer op OpenOffice.org"
#. q5Myk
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:367
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "Redigeer paaie: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "Etikettering"
#. GceL6
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:370
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "Bevel"
#. dRqYc
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "Direkte Hulp"
#. NBDBv
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL"
msgid "Experimental"
msgstr "Eksperimenteel"
#. 3FZFt
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "Die URL of teks is te lank vir die huidige foutkorreksie vlak. Óf verkort die teks of verlaag die regstellingsvlak."
#. AD8QJ
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "U kan alleen gebruiker-gedefineerde kleure skrap"
#. 4LWGV
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "Kies asseblief die kleur om te skrap"
#. FjQQ5
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "Installeer"
#. 2GUFq
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "Geïnstalleerd"
#. TmK5f
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "Installeer"
#. izdAK
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "Soek..."
#. HYT6K
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "Laai..."
#. 88Ect
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "Toevoegings"
#. LWw9B
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY"
msgid "Extensions: Dictionary"
msgstr "Uitbreidings:Woordeboek"
#. MEZpu
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_GALLERY"
msgid "Extensions: Gallery"
msgstr "Uitbreidings:Gallery"
#. R8obE
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_ICONS"
msgid "Extensions: Icons"
msgstr "Uitbreidings:Ikone"
#. AqGWn
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_PALETTES"
msgid "Extensions: Color Palette"
msgstr "Uitbreidings: Kleur Pallet"
#. mncuJ
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES"
msgid "Extensions: Templates"
msgstr "Uitbreidings: Sjablone"
#. KTtQE
-#: cui/inc/strings.hrc:400
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "Pas toe op %MODULE"
#. Xr3W9
-#: cui/inc/strings.hrc:402
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
msgstr "OLE objek Invoeg..."
#. QMiCF
-#: cui/inc/strings.hrc:404
+#: cui/inc/strings.hrc:394
msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr "(Klik op enige toets om die gevolglike biskaart-beeld te sien)"
#. BT9KG
-#: cui/inc/strings.hrc:405
+#: cui/inc/strings.hrc:395
msgctxt "RID_CUISTR_ZIPFAIL"
msgid "Creation of ZIP file failed."
msgstr "Skepping van ZIP lêer misluk."
#. 9QSQr
-#: cui/inc/strings.hrc:406
+#: cui/inc/strings.hrc:396
msgctxt "RID_CUISTR_SAVED"
msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
msgstr "Die resultaat is suksesvol gestoor in die lêer 'GraphicTestResults.zip'!"
#. vsprc
-#: cui/inc/strings.hrc:407
+#: cui/inc/strings.hrc:397
msgctxt "RID_CUISTR_OPT_READONLY"
msgid "This property is locked for editing."
msgstr "Die kenmerk is gevries vir wysiging."
#. RAA72
-#: cui/inc/strings.hrc:409
+#: cui/inc/strings.hrc:399
msgctxt "RID_LANGUAGETOOL_LEAVE_EMPTY"
msgid "Leave this field empty to use the free version"
msgstr "Laat die veld oop om te gebruik in die gratis weergawe"
#. SJCiC
-#: cui/inc/strings.hrc:410
+#: cui/inc/strings.hrc:400
msgctxt "RID_LANGUAGETOOL_REST_LEAVE_EMPTY"
msgid "Leave this field empty to use LanguageTool protocol"
msgstr "Laat hierdie veld oop om Taal Nutsprogram-protokol te gebruik"
+#. GeMAG
+#: cui/inc/strings.hrc:402
+msgctxt "RID_CUISTR_A11Y_DESC_BACKUP"
+msgid "Specifies if the backup copy should be stored in the same folder as the original document. If not selected, the backup copy is stored in the folder specified in Tools - Options - %PRODUCTNAME - Paths - Backups."
+msgstr ""
+
#. FoBUc
#. Translatable names of color schemes
-#: cui/inc/strings.hrc:413
+#: cui/inc/strings.hrc:405
msgctxt "RID_COLOR_SCHEME_LIBREOFFICE_AUTOMATIC"
msgid "Automatic"
msgstr "Automaties"
@@ -2610,11 +2556,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr "Om die inhoud van die knipbord as gewone teks in \"Writer\" te plak, gebruik %MOD1 +% MOD2 + Shift + V."
-#. TD8Ux
+#. yv67G
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
-msgstr "Om die formaat van die voetnota in \"Writer\" aan te pas, kies »Tools ▸ Footnotes and Endnotes…«."
+msgid "Customize footnote appearance with Tools ▸ Footnote/Endnote Settings…"
+msgstr ""
#. muc5F
#: cui/inc/tipoftheday.hrc:123
@@ -2833,11 +2779,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr "%PRODUCTNAME is ook beskikbaar as 'n draagbare weergawe vir u volle mobiliteit. Selfs sonder administrasieregte vir u rekenaar, kan u % PRODUCTNAME-Portable op u hardeskyf installeer."
-#. GSVYQ
+#. zkswJ
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
-msgstr "Met Writer kan u voetnote per bladsy, hoofstuk of dokument nommer: Kies »Ekstras ▸ Voetnote / Eindnotas ... ▸ Blad: Voetnote ▸ Rol-af lys: kies Counting«."
+msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnote/Endnote Settings ▸ Footnotes tab ▸ Counting."
+msgstr ""
#. gpVRV
#: cui/inc/tipoftheday.hrc:160
@@ -3586,51 +3532,57 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don’t like the position of some icons on your toolbar? Change it with Tools ▸ Customize ▸ Toolbars tab ▸ Target."
msgstr "As jy die posisie van sommige ikone op jou nutsbalk wil wysig? Verander dit met Hulpprogramme ▸ Aanpas ▸ Nutsbalk-oortjie ▸ Teiken."
+#. jFitB
+#: cui/inc/tipoftheday.hrc:280
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Can’t find a command in the menus? Try Shift+ESC."
+msgstr ""
+
#. hsZPg
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME Hulp"
#. NG4jW
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:284
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr "Verdere Informasie"
#. sCREc
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:285
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr "Aktiveer die aksie nou..."
#. P6JME
-#: cui/inc/tipoftheday.hrc:285
+#: cui/inc/tipoftheday.hrc:286
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr "Wenk van die Dag: %CURRENT/%TOTAL"
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:286
+#: cui/inc/tipoftheday.hrc:287
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr "⌘ Bevel"
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:287
+#: cui/inc/tipoftheday.hrc:288
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr "Ctrl"
#. mZWSR
-#: cui/inc/tipoftheday.hrc:288
+#: cui/inc/tipoftheday.hrc:289
msgctxt "STR_CMD"
msgid "Alt"
msgstr "Alt"
#. QtEGa
-#: cui/inc/tipoftheday.hrc:289
+#: cui/inc/tipoftheday.hrc:290
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr "⌥ Opsie"
@@ -5216,115 +5168,115 @@ msgid "Sets the fill properties of the selected drawing object."
msgstr "Stel die vul-eienskappe vir die gekose tekening-objek."
#. as89H
-#: cui/uiconfig/ui/areatabpage.ui:34
+#: cui/uiconfig/ui/areatabpage.ui:33
msgctxt "areatabpage|tablelb"
msgid "Cell"
msgstr "Sel"
#. yowxv
-#: cui/uiconfig/ui/areatabpage.ui:35
+#: cui/uiconfig/ui/areatabpage.ui:34
msgctxt "areatabpage|tablelb"
msgid "Row"
msgstr "Ry"
#. sEdWf
-#: cui/uiconfig/ui/areatabpage.ui:36
+#: cui/uiconfig/ui/areatabpage.ui:35
msgctxt "areatabpage|tablelb"
msgid "Table"
msgstr "Tabel"
#. WxC4H
-#: cui/uiconfig/ui/areatabpage.ui:40
+#: cui/uiconfig/ui/areatabpage.ui:39
msgctxt "areatabpage|extended_tip|tablelb"
msgid "Set the fill options for the selected drawing object or document element."
msgstr "Stel die vul-opsies vir die gekose tekening-objek of dokument-element."
#. 2kC9i
-#: cui/uiconfig/ui/areatabpage.ui:52
+#: cui/uiconfig/ui/areatabpage.ui:51
msgctxt "areatabpage|btnnone"
msgid "None"
msgstr "Geen"
#. kTpV7
-#: cui/uiconfig/ui/areatabpage.ui:58
+#: cui/uiconfig/ui/areatabpage.ui:57
msgctxt "areatabpage|extended_tip|btnnone"
msgid "Do not fill the selected object."
msgstr "Moenie die geselekteerde objek opvul nie."
#. AiEuM
-#: cui/uiconfig/ui/areatabpage.ui:70
+#: cui/uiconfig/ui/areatabpage.ui:69
msgctxt "areatabpage|btncolor"
msgid "Color"
msgstr "Kleur"
#. xhtbg
-#: cui/uiconfig/ui/areatabpage.ui:76
+#: cui/uiconfig/ui/areatabpage.ui:75
msgctxt "areatabpage|extended_tip|btncolor"
msgid "Fills the object with a color selected on this page."
msgstr "Vul die objek met 'n kleur wat op hierdie bladsy gekies is."
#. zXDcA
-#: cui/uiconfig/ui/areatabpage.ui:88
+#: cui/uiconfig/ui/areatabpage.ui:87
msgctxt "areatabpage|btngradient"
msgid "Gradient"
msgstr "Gradiënt"
#. AGYbc
-#: cui/uiconfig/ui/areatabpage.ui:94
+#: cui/uiconfig/ui/areatabpage.ui:93
msgctxt "areatabpage|extended_tip|btngradient"
msgid "Fills the object with a gradient selected on this page."
msgstr "Vul die objek met die gradiënt gekies op die bladsy."
#. q5cAU
-#: cui/uiconfig/ui/areatabpage.ui:106
+#: cui/uiconfig/ui/areatabpage.ui:105
msgctxt "areatabpage|btnbitmap"
msgid "Image"
msgstr "Beeld"
#. ELAno
-#: cui/uiconfig/ui/areatabpage.ui:112
+#: cui/uiconfig/ui/areatabpage.ui:111
msgctxt "areatabpage|extended_tip|btnbitmap"
msgid "Fills the object with a bitmap image selected on this page."
msgstr "Vul die objek met 'n bis-rooster beeld wat op hierdie bladsy gekies is."
#. 9q7GD
-#: cui/uiconfig/ui/areatabpage.ui:124
+#: cui/uiconfig/ui/areatabpage.ui:123
msgctxt "areatabpage|btnpattern"
msgid "Pattern"
msgstr "Patroon"
#. 2mrDx
-#: cui/uiconfig/ui/areatabpage.ui:130
+#: cui/uiconfig/ui/areatabpage.ui:129
msgctxt "areatabpage|extended_tip|btnpattern"
msgid "Fills the object with a dot pattern selected on this page."
msgstr "Vul die objek met 'n puntpatroon wat op hierdie bladsy gekies is."
#. 5y6vj
-#: cui/uiconfig/ui/areatabpage.ui:142
+#: cui/uiconfig/ui/areatabpage.ui:141
msgctxt "areatabpage|btnhatch"
msgid "Hatch"
msgstr "Arsering"
#. irCyE
-#: cui/uiconfig/ui/areatabpage.ui:148
+#: cui/uiconfig/ui/areatabpage.ui:147
msgctxt "areatabpage|extended_tip|btnhatch"
msgid "Fills the object with a hatching pattern selected on this page."
msgstr "Vul die objek met die arseringspatroon op die bladsy gekies."
#. Tap6L
-#: cui/uiconfig/ui/areatabpage.ui:160
+#: cui/uiconfig/ui/areatabpage.ui:159
msgctxt "areatabpage|btnusebackground"
msgid "Use Background"
msgstr "Gebruik Agtergrond"
#. BEBkY
-#: cui/uiconfig/ui/areatabpage.ui:166
+#: cui/uiconfig/ui/areatabpage.ui:165
msgctxt "areatabpage|extended_tip|btnusebackground"
msgid "Displays the underlying slide background."
msgstr "Vertoon die onderliggende skyfie agtergrond."
#. TFDzi
-#: cui/uiconfig/ui/areatabpage.ui:220
+#: cui/uiconfig/ui/areatabpage.ui:219
msgctxt "areatabpage|extended_tip|AreaTabPage"
msgid "Set the fill options for the selected drawing object or document element."
msgstr "Stel die vul-opsies vir die gekose tekening-objek of dokument-element."
@@ -7944,85 +7896,91 @@ msgid "Connection Pool"
msgstr "Verbindingspoel"
#. XfFi7
-#: cui/uiconfig/ui/croppage.ui:82
+#: cui/uiconfig/ui/croppage.ui:80
msgctxt "croppage|keepscale"
msgid "Keep _scale"
msgstr "Behou _skaal"
#. fCWwt
-#: cui/uiconfig/ui/croppage.ui:97
+#: cui/uiconfig/ui/croppage.ui:95
msgctxt "croppage|keepsize"
msgid "Keep image si_ze"
msgstr "Be_hou beeldgrootte"
#. JcdEh
-#: cui/uiconfig/ui/croppage.ui:121
+#: cui/uiconfig/ui/croppage.ui:118
msgctxt "croppage|label2"
msgid "_Left:"
msgstr "_Links:"
#. J8z8h
-#: cui/uiconfig/ui/croppage.ui:149
+#: cui/uiconfig/ui/croppage.ui:146
msgctxt "croppage|label3"
msgid "_Right:"
msgstr "_Regs:"
#. GxnM4
-#: cui/uiconfig/ui/croppage.ui:190
+#: cui/uiconfig/ui/croppage.ui:186
msgctxt "croppage|label4"
msgid "_Top:"
msgstr "_Bo:"
#. VAUDo
-#: cui/uiconfig/ui/croppage.ui:204
+#: cui/uiconfig/ui/croppage.ui:200
msgctxt "croppage|label5"
msgid "_Bottom:"
msgstr "_Onder:"
#. BSBCG
-#: cui/uiconfig/ui/croppage.ui:303
+#: cui/uiconfig/ui/croppage.ui:298
msgctxt "croppage|origsize"
msgid "_Original Size"
msgstr "_Oorspronklike grootte"
+#. dZqd5
+#: cui/uiconfig/ui/croppage.ui:319
+msgctxt "croppage|uncrop"
+msgid "Reset Crop"
+msgstr ""
+
#. 8CoGW
-#: cui/uiconfig/ui/croppage.ui:331
+#: cui/uiconfig/ui/croppage.ui:335
msgctxt "croppage|label1"
msgid "Crop"
msgstr "Snoei"
#. VG8gn
-#: cui/uiconfig/ui/croppage.ui:363
+#: cui/uiconfig/ui/croppage.ui:366
msgctxt "croppage|label6"
msgid "_Width:"
msgstr "_Wydte:"
#. bcKhi
-#: cui/uiconfig/ui/croppage.ui:390
+#: cui/uiconfig/ui/croppage.ui:393
msgctxt "croppage|label7"
msgid "_Height:"
msgstr "_Hoogte:"
#. JVnvr
-#: cui/uiconfig/ui/croppage.ui:419
+#: cui/uiconfig/ui/croppage.ui:422
msgctxt "croppage|label10"
msgid "Scale"
msgstr "Skaal"
#. Brcxv
-#: cui/uiconfig/ui/croppage.ui:450
+#: cui/uiconfig/ui/croppage.ui:452
msgctxt "croppage|label8"
msgid "_Width:"
msgstr "_Wydte:"
#. tacwF
-#: cui/uiconfig/ui/croppage.ui:478
+#: cui/uiconfig/ui/croppage.ui:480
msgctxt "croppage|label9"
msgid "_Height:"
msgstr "_Hoogte:"
#. aBkuE
-#: cui/uiconfig/ui/croppage.ui:508
+#: cui/uiconfig/ui/croppage.ui:510
msgctxt "croppage|label11"
msgid "Image Size"
msgstr "Beeldgrootte"
@@ -13404,254 +13362,266 @@ msgctxt "numberingoptionspage|extended_tip|sublevels"
msgid "Enter the number of previous levels to include in the numbering scheme. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering, the numbering scheme for the current level becomes: \"A.1\"."
msgstr "Voer in die aantal vorige vlakke om in u die nommeringskema moet insluit. As u byvoorbeeld \"2\" invoer en die vorige vlak \"A, B, C ...\" as nommering gebruik, word die nommerskema vir die huidige vlak: \"A.1\"."
+#. oUMJp
+#: cui/uiconfig/ui/numberingoptionspage.ui:213
+msgctxt "numberingoptionspage|islegal"
+msgid "All sublevels Arabic"
+msgstr ""
+
+#. 7Hy8g
+#: cui/uiconfig/ui/numberingoptionspage.ui:221
+msgctxt "numberingoptionspage|extended_tip|islegal"
+msgid "Use Arabic numerals for all sublevels (\"Legal\" numbering)."
+msgstr ""
+
#. ST2Co
-#: cui/uiconfig/ui/numberingoptionspage.ui:220
+#: cui/uiconfig/ui/numberingoptionspage.ui:239
msgctxt "numberingoptionspage|extended_tip|startat"
msgid "Enter a new starting number for the current level."
msgstr "Voer in die beginnommer vir die huidige vlak."
#. xWX3x
-#: cui/uiconfig/ui/numberingoptionspage.ui:233
+#: cui/uiconfig/ui/numberingoptionspage.ui:252
msgctxt "numberingoptionspage|startatft"
msgid "Start at:"
msgstr "Begin by:"
#. PuJvD
-#: cui/uiconfig/ui/numberingoptionspage.ui:249
+#: cui/uiconfig/ui/numberingoptionspage.ui:268
msgctxt "numberingoptionspage|extended_tip|numfmtlb"
msgid "Select a numbering scheme for the selected levels."
msgstr "Selekteer die nommeringskema vir die gekose vlakke."
#. EDSiA
-#: cui/uiconfig/ui/numberingoptionspage.ui:262
+#: cui/uiconfig/ui/numberingoptionspage.ui:281
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
msgstr "Grafika:"
#. Hooqo
-#: cui/uiconfig/ui/numberingoptionspage.ui:276
+#: cui/uiconfig/ui/numberingoptionspage.ui:295
msgctxt "numberingoptionspage|widthft"
msgid "Width:"
msgstr "Wydte:"
#. EetAa
-#: cui/uiconfig/ui/numberingoptionspage.ui:296
+#: cui/uiconfig/ui/numberingoptionspage.ui:315
msgctxt "numberingoptionspage|extended_tip|widthmf"
msgid "Enter a width for the graphic."
msgstr "Voer in die wydte vir die afbeelding."
#. PBvy6
-#: cui/uiconfig/ui/numberingoptionspage.ui:309
+#: cui/uiconfig/ui/numberingoptionspage.ui:328
msgctxt "numberingoptionspage|heightft"
msgid "Height:"
msgstr "Hoogte:"
#. prqMN
-#: cui/uiconfig/ui/numberingoptionspage.ui:330
+#: cui/uiconfig/ui/numberingoptionspage.ui:349
msgctxt "numberingoptionspage|extended_tip|heightmf"
msgid "Enter a height for the graphic."
msgstr "Voer in die hoogte vir die afbeelding."
#. bRHQn
-#: cui/uiconfig/ui/numberingoptionspage.ui:341
+#: cui/uiconfig/ui/numberingoptionspage.ui:360
msgctxt "numberingoptionspage|keepratio"
msgid "Keep ratio"
msgstr "Behou verhouding"
#. aeFQE
-#: cui/uiconfig/ui/numberingoptionspage.ui:349
+#: cui/uiconfig/ui/numberingoptionspage.ui:368
msgctxt "numberingoptionspage|extended_tip|keepratio"
msgid "Maintains the size proportions of the graphic."
msgstr "Behou die proporsie van die afbeelding."
#. 7Wuu8
-#: cui/uiconfig/ui/numberingoptionspage.ui:362
+#: cui/uiconfig/ui/numberingoptionspage.ui:381
msgctxt "numberingoptionspage|orientft"
msgid "Alignment:"
msgstr "Belyning:"
#. BJjDU
-#: cui/uiconfig/ui/numberingoptionspage.ui:378
+#: cui/uiconfig/ui/numberingoptionspage.ui:397
msgctxt "numberingoptionspage|orientlb"
msgid "Top of baseline"
msgstr "Bokant van basislyn"
#. YgzFa
-#: cui/uiconfig/ui/numberingoptionspage.ui:379
+#: cui/uiconfig/ui/numberingoptionspage.ui:398
msgctxt "numberingoptionspage|orientlb"
msgid "Center of baseline"
msgstr "Middel van basislyn"
#. rRWyY
-#: cui/uiconfig/ui/numberingoptionspage.ui:380
+#: cui/uiconfig/ui/numberingoptionspage.ui:399
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of baseline"
msgstr "Onderkant van basislyn"
#. GRqAC
-#: cui/uiconfig/ui/numberingoptionspage.ui:381
+#: cui/uiconfig/ui/numberingoptionspage.ui:400
msgctxt "numberingoptionspage|orientlb"
msgid "Top of character"
msgstr "Bokant van karakter"
#. 5z7jX
-#: cui/uiconfig/ui/numberingoptionspage.ui:382
+#: cui/uiconfig/ui/numberingoptionspage.ui:401
msgctxt "numberingoptionspage|orientlb"
msgid "Center of character"
msgstr "Middel van karakter"
#. MsKwk
-#: cui/uiconfig/ui/numberingoptionspage.ui:383
+#: cui/uiconfig/ui/numberingoptionspage.ui:402
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of character"
msgstr "Onderkant van karakter"
#. JJEdP
-#: cui/uiconfig/ui/numberingoptionspage.ui:384
+#: cui/uiconfig/ui/numberingoptionspage.ui:403
msgctxt "numberingoptionspage|orientlb"
msgid "Top of line"
msgstr "Bokant van reël"
#. UoEug
-#: cui/uiconfig/ui/numberingoptionspage.ui:385
+#: cui/uiconfig/ui/numberingoptionspage.ui:404
msgctxt "numberingoptionspage|orientlb"
msgid "Center of line"
msgstr "Middel van reël"
#. 7dPkC
-#: cui/uiconfig/ui/numberingoptionspage.ui:386
+#: cui/uiconfig/ui/numberingoptionspage.ui:405
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of line"
msgstr "Onderkant van reël"
#. Quwne
-#: cui/uiconfig/ui/numberingoptionspage.ui:390
+#: cui/uiconfig/ui/numberingoptionspage.ui:409
msgctxt "numberingoptionspage|extended_tip|orientlb"
msgid "Select the alignment option for the graphic."
msgstr "Selekteer die belyningsopsie vir die afbeelding."
#. CoAAt
-#: cui/uiconfig/ui/numberingoptionspage.ui:401
+#: cui/uiconfig/ui/numberingoptionspage.ui:420
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "_Kies..."
#. Eqa4C
-#: cui/uiconfig/ui/numberingoptionspage.ui:413
+#: cui/uiconfig/ui/numberingoptionspage.ui:432
msgctxt "numberingoptionspage|extended_tip|bitmap"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
msgstr "Selekteer die afbeelding, of soek die afbeeldinglêer wat u as 'n paragraafteken wil gebruik."
#. nSL3K
-#: cui/uiconfig/ui/numberingoptionspage.ui:435
+#: cui/uiconfig/ui/numberingoptionspage.ui:454
msgctxt "numberingoptionspage|extended_tip|color"
msgid "Select a color for the current numbering scheme."
msgstr "Selekteer 'n kleur vir die huidige nommeringskema."
#. hJgCL
-#: cui/uiconfig/ui/numberingoptionspage.ui:453
+#: cui/uiconfig/ui/numberingoptionspage.ui:472
msgctxt "numberingoptionspage|extended_tip|relsize"
msgid "Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph."
msgstr "Voer in hoeveel die paragraafkoll geskaal moet word in verhouding tot die fonthoogte vir die huidige paragraaf."
#. M4aPS
-#: cui/uiconfig/ui/numberingoptionspage.ui:464
+#: cui/uiconfig/ui/numberingoptionspage.ui:483
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "Kies..."
#. vfKmd
-#: cui/uiconfig/ui/numberingoptionspage.ui:470
+#: cui/uiconfig/ui/numberingoptionspage.ui:489
msgctxt "numberingoptionspage|extended_tip|bullet"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
msgstr "Selekteer die afbeelding, of soek die afbeeldinglêer wat u as 'n paragraafteken wil gebruik."
#. RJa39
-#: cui/uiconfig/ui/numberingoptionspage.ui:483
+#: cui/uiconfig/ui/numberingoptionspage.ui:502
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "Voor:"
#. EzDC5
-#: cui/uiconfig/ui/numberingoptionspage.ui:498
+#: cui/uiconfig/ui/numberingoptionspage.ui:517
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "Skeier"
#. GCjCU
-#: cui/uiconfig/ui/numberingoptionspage.ui:515
+#: cui/uiconfig/ui/numberingoptionspage.ui:534
msgctxt "numberingoptionspage|extended_tip|suffix"
msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr "Voer in 'n karakter of die teks, om agteraan die lys nommer te vertoon. Om die nommerskema \"1.)\" te skep, voer \".)\" In hierdie blokkie in."
#. wVrAN
-#: cui/uiconfig/ui/numberingoptionspage.ui:532
+#: cui/uiconfig/ui/numberingoptionspage.ui:551
msgctxt "numberingoptionspage|extended_tip|prefix"
msgid "Enter a character or the text to display in front of the number in the list."
msgstr "Voer 'n karakter of teks in om voor die nommers in die lys te vertoon."
#. FLJWG
-#: cui/uiconfig/ui/numberingoptionspage.ui:545
+#: cui/uiconfig/ui/numberingoptionspage.ui:564
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "Ná:"
#. TZVTJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:559
+#: cui/uiconfig/ui/numberingoptionspage.ui:578
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "Wys subvlakke:"
#. FaDZX
-#: cui/uiconfig/ui/numberingoptionspage.ui:574
+#: cui/uiconfig/ui/numberingoptionspage.ui:593
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "Karakters:"
#. 6jTGa
-#: cui/uiconfig/ui/numberingoptionspage.ui:588
+#: cui/uiconfig/ui/numberingoptionspage.ui:607
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "_Relatiewe grootte:"
#. 6r484
-#: cui/uiconfig/ui/numberingoptionspage.ui:602
+#: cui/uiconfig/ui/numberingoptionspage.ui:621
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "Kleur:"
#. ksG2M
-#: cui/uiconfig/ui/numberingoptionspage.ui:616
+#: cui/uiconfig/ui/numberingoptionspage.ui:635
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "Karakterstyl:"
#. S9jNu
-#: cui/uiconfig/ui/numberingoptionspage.ui:651
+#: cui/uiconfig/ui/numberingoptionspage.ui:670
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "Nommering"
#. kcgWM
-#: cui/uiconfig/ui/numberingoptionspage.ui:672
+#: cui/uiconfig/ui/numberingoptionspage.ui:691
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr "Opeen_volgende nommering"
#. 48AhR
-#: cui/uiconfig/ui/numberingoptionspage.ui:682
+#: cui/uiconfig/ui/numberingoptionspage.ui:701
msgctxt "numberingoptionspage|extended_tip|allsame"
msgid "Increases the numbering by one as you go down each level in the list hierarchy."
msgstr "Verhoog die numering met een, soos u afgaan in die lyshiërgie."
#. 9VSpp
-#: cui/uiconfig/ui/numberingoptionspage.ui:691
+#: cui/uiconfig/ui/numberingoptionspage.ui:710
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr "Alle vlakke"
#. DJptx
-#: cui/uiconfig/ui/numberingoptionspage.ui:746
+#: cui/uiconfig/ui/numberingoptionspage.ui:765
msgctxt "numberingoptionspage|previewlabel"
msgid "Preview"
msgstr "Voorskou"
@@ -15794,11 +15764,11 @@ msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr "Lokaliteitinstelling:"
-#. Zyao3
+#. Tns7H
#: cui/uiconfig/ui/optlanguagespage.ui:399
msgctxt "optlanguagespage|label6"
-msgid "Decimal separator key:"
-msgstr "Desimale skeiersleutel:"
+msgid "Decimal key on the numpad:"
+msgstr ""
#. cuqUB
#: cui/uiconfig/ui/optlanguagespage.ui:413
@@ -15836,11 +15806,11 @@ msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr "_Selfde as lokaliteitsopstelling ( %1 )"
-#. G5VXy
+#. jDbZT
#: cui/uiconfig/ui/optlanguagespage.ui:500
msgctxt "extended_tip|decimalseparator"
-msgid "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
-msgstr "Spesifiseer dat die sleutel wat in die bedryfstelsel gespesifiseer word as die desimale skeier, wanneer die ooreenstemmende sleutel op die numeriese sleutelbord gedruk word."
+msgid "Specifies to use the numeric keypad decimal key that is set in your system when you press the respective key on the number pad."
+msgstr ""
#. BGtpx
#: cui/uiconfig/ui/optlanguagespage.ui:515
@@ -16485,164 +16455,170 @@ msgid "Automatically save the document too"
msgstr "Stoor ook die dokument outomaties"
#. mKGDm
-#: cui/uiconfig/ui/optsavepage.ui:192
+#: cui/uiconfig/ui/optsavepage.ui:193
msgctxt "userautosave"
msgid "Specifies that the office suite saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
msgstr "Spesifiseer dat die office-pakket alle oop dokumente stoor wanneer outoherstel inligting gestoor word. Gebruik dieselfde tydinterval as AutoRecovery."
#. kwFtx
-#: cui/uiconfig/ui/optsavepage.ui:203
+#: cui/uiconfig/ui/optsavepage.ui:204
msgctxt "optsavepage|relative_fsys"
msgid "Save URLs relative to file system"
msgstr "Stoor URL’e relatief tot die lêerstelsel"
#. jDKxF
-#: cui/uiconfig/ui/optsavepage.ui:211
+#: cui/uiconfig/ui/optsavepage.ui:212
msgctxt "relative_fsys"
msgid "Select this box for relative saving of URLs in the file system."
msgstr "Kies hierdie veld vir relatiewe URL-berging in die lêerstelsel."
#. 8xmX3
-#: cui/uiconfig/ui/optsavepage.ui:222
+#: cui/uiconfig/ui/optsavepage.ui:223
msgctxt "optsavepage|docinfo"
msgid "_Edit document properties before saving"
msgstr "R_edigeer dokumenteienskappe voor gestoor word"
#. LSD3v
-#: cui/uiconfig/ui/optsavepage.ui:230
+#: cui/uiconfig/ui/optsavepage.ui:231
msgctxt "docinfo"
msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
msgstr "Spesifiseer dat die dialoogvenster \"Eienskappe\" verskyn elke keer as u die \"Save As\"-opdrag kies."
#. ctAxA
-#: cui/uiconfig/ui/optsavepage.ui:241
+#: cui/uiconfig/ui/optsavepage.ui:242
msgctxt "optsavepage|relative_inet"
msgid "Save URLs relative to internet"
msgstr "Stoor URL’e relatief tot die internet"
#. WYrQB
-#: cui/uiconfig/ui/optsavepage.ui:249
+#: cui/uiconfig/ui/optsavepage.ui:250
msgctxt "relative_inet"
msgid "Select this box for relative saving of URLs to the Internet."
msgstr "Kies hierdie blokkie om URL's relatief op die internet te stoor."
#. YsjVX
-#: cui/uiconfig/ui/optsavepage.ui:260
+#: cui/uiconfig/ui/optsavepage.ui:261
msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "M_aak altyd ’n rugsteunkopie"
#. vhCe5
-#: cui/uiconfig/ui/optsavepage.ui:268
+#: cui/uiconfig/ui/optsavepage.ui:269
msgctxt "backup"
msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time the office suite creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
msgstr "Stoor die vorige weergawe van 'n dokument as 'n rugsteunkopie wanneer jy 'n dokument stoor. Elke keer as die kantoorpakket 'n rugsteunkopie skep, word die vorige rugsteunkopie vervang. Die vorige rugsteunkopie kry die uitbreiding .BAK."
+#. ijsoS
+#: cui/uiconfig/ui/optsavepage.ui:280
+msgctxt "optsavepage|backupintodocumentfolder"
+msgid "Place backup in same folder as document"
+msgstr ""
+
#. NaGCU
-#: cui/uiconfig/ui/optsavepage.ui:283
+#: cui/uiconfig/ui/optsavepage.ui:299
msgctxt "optsavepage|label2"
msgid "Save"
msgstr "Stoor"
#. TDBAs
-#: cui/uiconfig/ui/optsavepage.ui:312
+#: cui/uiconfig/ui/optsavepage.ui:328
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
msgstr "Waarsku wanneer nie in ODF- of verstekformaat gestoor word nie"
#. zGBEu
-#: cui/uiconfig/ui/optsavepage.ui:320
+#: cui/uiconfig/ui/optsavepage.ui:336
msgctxt "warnalienformat"
msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
msgstr "U kan kies om 'n waarskuwingsboodskap te kry wanneer u 'n dokument stoor in 'n formaat wat nie 'n OpenDocument is nie of wat u nie as verstek formaat in Laai / Stoor - Algemeen in die dialoogvenster Opsies gestel het nie."
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
-#: cui/uiconfig/ui/optsavepage.ui:341
+#: cui/uiconfig/ui/optsavepage.ui:357
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.3 Extended may cause information to be lost."
msgstr "Deur nie ODF 1.3 Extended te gebruik nie, kan inligting verlore gaan."
#. 6Tfns
-#: cui/uiconfig/ui/optsavepage.ui:371
+#: cui/uiconfig/ui/optsavepage.ui:387
msgctxt "optsavepage|odfversion"
msgid "1.0/1.1"
msgstr "1.0/1.1"
#. BJSfi
-#: cui/uiconfig/ui/optsavepage.ui:372
+#: cui/uiconfig/ui/optsavepage.ui:388
msgctxt "optsavepage|odfversion"
msgid "1.2"
msgstr "1.2"
#. k3jkA
-#: cui/uiconfig/ui/optsavepage.ui:373
+#: cui/uiconfig/ui/optsavepage.ui:389
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
msgstr "1.2 Extended (versoenbare modus)"
#. G826f
-#: cui/uiconfig/ui/optsavepage.ui:374
+#: cui/uiconfig/ui/optsavepage.ui:390
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
msgstr "1.2 UItgebrei"
#. vLmeZ
-#: cui/uiconfig/ui/optsavepage.ui:375
+#: cui/uiconfig/ui/optsavepage.ui:391
msgctxt "optsavepage|odfversion"
msgid "1.3"
msgstr "1.3"
#. e6EP2
-#: cui/uiconfig/ui/optsavepage.ui:376
+#: cui/uiconfig/ui/optsavepage.ui:392
msgctxt "optsavepage|odfversion"
msgid "1.3 Extended (recommended)"
msgstr "1.3 UItgebrei (aanbeveel)"
#. w2urA
-#: cui/uiconfig/ui/optsavepage.ui:380
+#: cui/uiconfig/ui/optsavepage.ui:396
msgctxt "odfversion"
msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
msgstr "Sommige ondernemings of organisasies kan ODF-dokumente in ODF 1.0 / 1.1 of ODF 1.2-formaat benodig. U kan hierdie formaat kies om in die keuselys te stoor. Hierdie ouer formate kan nie alle nuwe funksies berg nie, daarom word die nuwe ODF 1.3 (Verbeterde) formaat waar moontlik aanbeveel."
#. cxPqV
-#: cui/uiconfig/ui/optsavepage.ui:393
+#: cui/uiconfig/ui/optsavepage.ui:409
msgctxt "optsavepage|label5"
msgid "ODF format version:"
msgstr "ODF-weergawe:"
#. bF5dA
-#: cui/uiconfig/ui/optsavepage.ui:407
+#: cui/uiconfig/ui/optsavepage.ui:423
msgctxt "optsavepage|saveas_label"
msgid "Always sa_ve as:"
msgstr "S_toor altyd as:"
#. iCZX2
-#: cui/uiconfig/ui/optsavepage.ui:423
+#: cui/uiconfig/ui/optsavepage.ui:439
msgctxt "doctype"
msgid "Specifies the document type for which you want to define the default file format."
msgstr "Spesifiseer die dokumenttipe waarvoor u die verstek lêerformaat wil definieer."
#. 69GMF
-#: cui/uiconfig/ui/optsavepage.ui:438
+#: cui/uiconfig/ui/optsavepage.ui:454
msgctxt "saveas"
msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog."
msgstr "Spesifiseer hoe dokumente van die tipe (linkerkant) gekies word altyd as hierdie lêertipe gestoor word. U kan 'n ander lêertipe kies vir die huidige dokument in die Save As-dialoogvenster."
#. 29FUf
-#: cui/uiconfig/ui/optsavepage.ui:451
+#: cui/uiconfig/ui/optsavepage.ui:467
msgctxt "optsavepage|label6"
msgid "D_ocument type:"
msgstr "S_oort dokument:"
#. CgCxr
-#: cui/uiconfig/ui/optsavepage.ui:467
+#: cui/uiconfig/ui/optsavepage.ui:483
msgctxt "optsavepage|label3"
msgid "Default File Format and ODF Settings"
msgstr "Versteklêerformaat en ODF-instellings"
#. G7BAM
-#: cui/uiconfig/ui/optsavepage.ui:481
+#: cui/uiconfig/ui/optsavepage.ui:497
msgctxt "OptSavePage"
msgid "In the General section, you can select default settings for saving documents, and can select default file formats."
msgstr "In die gedeelte Algemeen, kan u verstek instellings kies vir die stoor van dokumente en die verstek lêerformate kies."
@@ -16809,11 +16785,29 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Sekuriteitsopsies en -waarskuwings"
-#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:492
-msgctxt "extended_tip|OptSecurityPage"
-msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
-msgstr "Spesifiseer die veiligheidsopsies vir die stoor van dokumente, vir internetverbindings en vir die opening van dokumente met makro's."
+#. M4Y8V
+#: cui/uiconfig/ui/optsecuritypage.ui:511
+msgctxt "optsecuritypage|label11"
+msgid "Select custom certificate manager executable. Note that LibreOffice tries to locate installed ones automatically."
+msgstr ""
+
+#. Ufp5e
+#: cui/uiconfig/ui/optsecuritypage.ui:524
+msgctxt "optsecuritypage|browse"
+msgid "_Browse..."
+msgstr ""
+
+#. dBKW5
+#: cui/uiconfig/ui/optsecuritypage.ui:545
+msgctxt "extended_tip|parameterfield"
+msgid "Enter the executable of the certificate manager path."
+msgstr ""
+
+#. HVFTB
+#: cui/uiconfig/ui/optsecuritypage.ui:563
+msgctxt "optsecuritypage|label10"
+msgid "Certificate Manager"
+msgstr ""
#. FPuvb
#: cui/uiconfig/ui/optuserpage.ui:31
@@ -20405,151 +20399,151 @@ msgid "_Not in Dictionary"
msgstr "_Nie in woordeboek"
#. R7k8J
-#: cui/uiconfig/ui/spellingdialog.ui:294
+#: cui/uiconfig/ui/spellingdialog.ui:295
msgctxt "spellingdialog|paste"
msgid "Paste"
msgstr "Plak"
#. vTAkA
-#: cui/uiconfig/ui/spellingdialog.ui:306
+#: cui/uiconfig/ui/spellingdialog.ui:308
msgctxt "spellingdialog|insert"
msgid "Special Character"
msgstr "Spesiale karakter"
#. qLx9c
-#: cui/uiconfig/ui/spellingdialog.ui:338
+#: cui/uiconfig/ui/spellingdialog.ui:340
msgctxt "spellingdialog|languageft"
msgid "Text languag_e:"
msgstr "T_ekstaal:"
#. g7zja
-#: cui/uiconfig/ui/spellingdialog.ui:370
+#: cui/uiconfig/ui/spellingdialog.ui:372
msgctxt "spellingdialog|extended_tip|languagelb"
msgid "Specifies the language to use to check the spelling."
msgstr "Spesifiseer die taal vir die speltoetser."
#. bxC8G
-#: cui/uiconfig/ui/spellingdialog.ui:395
+#: cui/uiconfig/ui/spellingdialog.ui:397
msgctxt "spellingdialog|resumeft"
msgid "Res_ume"
msgstr "Her_vat"
#. D2E4f
-#: cui/uiconfig/ui/spellingdialog.ui:407
+#: cui/uiconfig/ui/spellingdialog.ui:409
msgctxt "spellingdialog|nosuggestionsft"
msgid "(no suggestions)"
msgstr "(geen voorstelle nie)"
#. dCCnN
-#: cui/uiconfig/ui/spellingdialog.ui:419
+#: cui/uiconfig/ui/spellingdialog.ui:421
msgctxt "spellingdialog|alttitleft"
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "Spelling: $LANGUAGE ($LOCATION)"
#. 5LDdh
-#: cui/uiconfig/ui/spellingdialog.ui:443
+#: cui/uiconfig/ui/spellingdialog.ui:445
msgctxt "spellingdialog|change"
msgid "Co_rrect"
msgstr "Ko_rrigeer"
#. m7FFp
-#: cui/uiconfig/ui/spellingdialog.ui:452
+#: cui/uiconfig/ui/spellingdialog.ui:454
msgctxt "spellingdialog|extended_tip|change"
msgid "Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced."
msgstr "Vervang die onbekende woord deur die huidige voorstel. As u meer as net die onbekende woord verander, sal die hele sin vervang word."
#. dZvFo
-#: cui/uiconfig/ui/spellingdialog.ui:463
+#: cui/uiconfig/ui/spellingdialog.ui:465
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
msgstr "Korrigeer almal"
#. 9kjPB
-#: cui/uiconfig/ui/spellingdialog.ui:472
+#: cui/uiconfig/ui/spellingdialog.ui:474
msgctxt "spellingdialog|extended_tip|changeall"
msgid "Replaces all occurrences of the unknown word with the current suggestion."
msgstr "Vervang alle verskeinings van die onbekende woord deur die huidige voorstel."
#. VmUBw
-#: cui/uiconfig/ui/spellingdialog.ui:483
+#: cui/uiconfig/ui/spellingdialog.ui:485
msgctxt "spellingdialog|autocorrect"
msgid "Add to _AutoCorrect"
msgstr "Voeg by _Autokorreksie"
#. xpvWk
-#: cui/uiconfig/ui/spellingdialog.ui:487
+#: cui/uiconfig/ui/spellingdialog.ui:489
msgctxt "spellingdialog|autocorrect|tooltip_text"
msgid "Add selected suggestion as replacement for incorrect word in AutoCorrect replacement table."
msgstr "Voeg geselekteerde voorstel by as vervanging van verkeerde woorde in die Auto Korreksie vervangingstabel."
#. DGBWv
-#: cui/uiconfig/ui/spellingdialog.ui:493
+#: cui/uiconfig/ui/spellingdialog.ui:495
msgctxt "spellingdialog|extended_tip|autocorrect"
msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacement table."
msgstr "Voeg die huidige kombinasie van die verkeerde woord en die vervangingswoord by die Autokorreksie-vervangingstabel."
#. DoqLo
-#: cui/uiconfig/ui/spellingdialog.ui:517
+#: cui/uiconfig/ui/spellingdialog.ui:519
msgctxt "spellingdialog|ignore"
msgid "_Ignore Once"
msgstr "_Ignoreer een maal"
#. M5qZF
-#: cui/uiconfig/ui/spellingdialog.ui:526
+#: cui/uiconfig/ui/spellingdialog.ui:528
msgctxt "spellingdialog|extended_tip|ignore"
msgid "Skips the unknown word and continues with the spellcheck."
msgstr "Die onbekende woord word oorgeslaan en die speltoets gaan voort."
#. 32F96
-#: cui/uiconfig/ui/spellingdialog.ui:537
+#: cui/uiconfig/ui/spellingdialog.ui:539
msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "I_gnoreer almal"
#. zS3Wm
-#: cui/uiconfig/ui/spellingdialog.ui:546
+#: cui/uiconfig/ui/spellingdialog.ui:548
msgctxt "spellingdialog|extended_tip|ignoreall"
msgid "Skips all occurrences of the unknown word until the end of the current office suite session and continues with the spellcheck."
msgstr "Slaan alle voorkomste van die onbekende woord oor tot aan die einde van die huidige office-pakketsessie en gaan voort met die speltoets."
#. ZZNQM
-#: cui/uiconfig/ui/spellingdialog.ui:557
+#: cui/uiconfig/ui/spellingdialog.ui:559
msgctxt "spellingdialog|ignorerule"
msgid "I_gnore Rule"
msgstr "I_gnoreer reël"
#. E63nm
-#: cui/uiconfig/ui/spellingdialog.ui:566
+#: cui/uiconfig/ui/spellingdialog.ui:568
msgctxt "spellingdialog|extended_tip|ignorerule"
msgid "While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error."
msgstr "Tydens die grammatikakontrole kan u op Ignoreer-reël klik om die reël wat 'n fout vertoon, te ignoreer."
#. xcDLh
-#: cui/uiconfig/ui/spellingdialog.ui:577
+#: cui/uiconfig/ui/spellingdialog.ui:579
msgctxt "spellingdialog|add"
msgid "Add to _Dictionary"
msgstr "Voeg by _Woordeboek"
#. JAsBm
-#: cui/uiconfig/ui/spellingdialog.ui:586
+#: cui/uiconfig/ui/spellingdialog.ui:588
msgctxt "spellingdialog|extended_tip|add"
msgid "Adds the unknown word to a user-defined dictionary."
msgstr "Voeg die onbekende woord by 'n gebruiker-gedefinieerde woordeboek."
#. z3TLh
-#: cui/uiconfig/ui/spellingdialog.ui:597
+#: cui/uiconfig/ui/spellingdialog.ui:599
msgctxt "spellingdialog|addmb"
msgid "Add to _Dictionary"
msgstr "Voeg by _Woordeboek"
#. YFz8g
-#: cui/uiconfig/ui/spellingdialog.ui:612
+#: cui/uiconfig/ui/spellingdialog.ui:614
msgctxt "spellingdialog|extended_tip|addmb"
msgid "Adds the unknown word to a user-defined dictionary."
msgstr "Voeg die onbekende woord by 'n pasgemaakte woordeboek."
#. GSZVa
-#: cui/uiconfig/ui/spellingdialog.ui:653
+#: cui/uiconfig/ui/spellingdialog.ui:652
msgctxt "spellingdialog|extended_tip|SpellingDialog"
msgid "Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors."
msgstr "Kontroleer die dokument of die huidige seleksie vir spelfoute. As 'n uitbreiding vir die grammatikakontrole geïnstalleer word, word grammatikale foute ook in hierdie dialoog vertoon."
@@ -21508,11 +21502,11 @@ msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr "Breuke"
-#. MEpn4
+#. B4ZyD
#: cui/uiconfig/ui/textflowpage.ui:548
msgctxt "textflowpage|checkSplitPara"
-msgid "_Do not split paragraph"
-msgstr "Moenie paragraaf verdeel nie"
+msgid "_Allow to split paragraph"
+msgstr ""
#. XLpSD
#: cui/uiconfig/ui/textflowpage.ui:557
@@ -21532,162 +21526,78 @@ msgctxt "textflowpage|extended_tip|checkKeepPara"
msgid "Keeps the current paragraph and the following paragraph together when a break or column break is inserted."
msgstr "Hou die huidige paragraaf saam met die volgende paragraaf wanneer 'n breek of 'n kolombreuk ingevoeg word."
-#. dQZQ7
+#. DDzY9
#: cui/uiconfig/ui/textflowpage.ui:590
msgctxt "textflowpage|checkOrphan"
-msgid "_Orphan control"
-msgstr "Wees_beheer"
+msgid "No split at _beginning of paragraph"
+msgstr ""
+
+#. NgQD5
+#: cui/uiconfig/ui/textflowpage.ui:594
+msgctxt "textflowpage|checkOrphan"
+msgid "Number of lines, that will be kept together at the beginning of the paragraph (orphan control)."
+msgstr ""
#. zADSo
-#: cui/uiconfig/ui/textflowpage.ui:602
+#: cui/uiconfig/ui/textflowpage.ui:604
msgctxt "textflowpage|extended_tip|checkOrphan"
msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
msgstr "Spesifiseer hoeveel reëls in 'n paragraaf minstens voor 'n bladsybreuk ingevoeg moet word. Merk die Merkveld aan en tik daarna 'n nommer in die \"Reëls\"-veld."
-#. pnW52
-#: cui/uiconfig/ui/textflowpage.ui:613
+#. 2EpT4
+#: cui/uiconfig/ui/textflowpage.ui:615
msgctxt "textflowpage|checkWidow"
-msgid "_Widow control"
-msgstr "_Weduweebeheer"
+msgid "No split at _end of paragraph"
+msgstr ""
+
+#. rjBWx
+#: cui/uiconfig/ui/textflowpage.ui:619
+msgctxt "textflowpage|checkOrphan"
+msgid "Number of lines, that will be kept together at the end of the paragraph (widow control)."
+msgstr ""
#. SmFT5
-#: cui/uiconfig/ui/textflowpage.ui:625
+#: cui/uiconfig/ui/textflowpage.ui:629
msgctxt "textflowpage|extended_tip|checkWidow"
msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
msgstr "Spesifiseer die minimum aantal reëls in 'n paragraaf wat na 'n bladsybreuk op die eerste bladsy moet verskyn. Merk hierdie merkveld aan en tik dan 'n nommer in die \"Reëls\"-veld."
#. mb9LZ
-#: cui/uiconfig/ui/textflowpage.ui:646
+#: cui/uiconfig/ui/textflowpage.ui:650
msgctxt "textflowpage|extended_tip|spinOrphan"
msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
msgstr "Spesifiseer hoeveel reëls in 'n paragraaf minstens voor 'n bladsybreuk ingevoeg moet word. Merk die Merkveld aan en tik daarna 'n nommer in die \"Lyne\"-veld."
#. 3cNEP
-#: cui/uiconfig/ui/textflowpage.ui:668
+#: cui/uiconfig/ui/textflowpage.ui:672
msgctxt "textflowpage|extended_tip|spinWidow"
msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
msgstr "Spesifiseer die minimum aantal reëls in 'n paragraaf wat na 'n bladsybreuk op die eerste bladsy moet verskyn. Merk hierdie merkveld aan en tik dan 'n nommer in die \"Reëls\"-veld."
#. dcEiB
-#: cui/uiconfig/ui/textflowpage.ui:681
+#: cui/uiconfig/ui/textflowpage.ui:685
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "reëls"
#. 6swWD
-#: cui/uiconfig/ui/textflowpage.ui:693
+#: cui/uiconfig/ui/textflowpage.ui:697
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "reëls"
-#. nXryi
-#: cui/uiconfig/ui/textflowpage.ui:707
+#. MGewb
+#: cui/uiconfig/ui/textflowpage.ui:711
msgctxt "textflowpage|labelOptions"
-msgid "Options"
-msgstr "Opsies"
+msgid "Split Options"
+msgstr ""
#. qrhEF
-#: cui/uiconfig/ui/textflowpage.ui:724
+#: cui/uiconfig/ui/textflowpage.ui:728
msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
msgstr "Spesifiseer die koppelteken- en paginerings-opsies"
-#. K58BF
-#: cui/uiconfig/ui/themetabpage.ui:30
-msgctxt "themetabpage|lbThemeName"
-msgid "Name:"
-msgstr "Naam:"
-
-#. GxAud
-#: cui/uiconfig/ui/themetabpage.ui:60
-msgctxt "themetabpage|general"
-msgid "General"
-msgstr "Algemeen:"
-
-#. PFDEf
-#: cui/uiconfig/ui/themetabpage.ui:92
-msgctxt "themetabpage|lbColorSetName"
-msgid "Name:"
-msgstr "Naam:"
-
-#. 4GfYQ
-#: cui/uiconfig/ui/themetabpage.ui:121
-msgctxt "themetabpage|lbDk1"
-msgid "Background - Dark 1:"
-msgstr "Agtergrond - Donker 1:"
-
-#. J3qNF
-#: cui/uiconfig/ui/themetabpage.ui:136
-msgctxt "themetabpage|lbLt1"
-msgid "Text - Light 1:"
-msgstr "Teks - Lig 1:"
-
-#. zFCDe
-#: cui/uiconfig/ui/themetabpage.ui:151
-msgctxt "themetabpage|lbDk2"
-msgid "Background - Dark 2:"
-msgstr "Agtergrond - Donker 2:"
-
-#. RVZjG
-#: cui/uiconfig/ui/themetabpage.ui:166
-msgctxt "themetabpage|lbLt2"
-msgid "Text - Light 2:"
-msgstr "Teks - Lig 2:"
-
-#. kwdwQ
-#: cui/uiconfig/ui/themetabpage.ui:181
-msgctxt "themetabpage|lbAccent1"
-msgid "Accent 1:"
-msgstr "Aksent 1:"
-
-#. iBrgD
-#: cui/uiconfig/ui/themetabpage.ui:196
-msgctxt "themetabpage|lbAccent2"
-msgid "Accent 2:"
-msgstr "Aksent 2:"
-
-#. jA7Cn
-#: cui/uiconfig/ui/themetabpage.ui:211
-msgctxt "themetabpage|lbAccent3"
-msgid "Accent 3:"
-msgstr "Aksent 3:"
-
-#. oPgoC
-#: cui/uiconfig/ui/themetabpage.ui:226
-msgctxt "themetabpage|lbAccent4"
-msgid "Accent 4:"
-msgstr "Aksent 4:"
-
-#. n8AAc
-#: cui/uiconfig/ui/themetabpage.ui:241
-msgctxt "themetabpage|lbAccent5"
-msgid "Accent 5:"
-msgstr "Aksent 5:"
-
-#. pi44r
-#: cui/uiconfig/ui/themetabpage.ui:256
-msgctxt "themetabpage|lbAccent6"
-msgid "Accent 6:"
-msgstr "Aksent 6:"
-
-#. CeB9H
-#: cui/uiconfig/ui/themetabpage.ui:271
-msgctxt "themetabpage|lbHlink"
-msgid "Hyperlink:"
-msgstr "Hiperskakel:"
-
-#. B722M
-#: cui/uiconfig/ui/themetabpage.ui:286
-msgctxt "themetabpage|lbFolHlink"
-msgid "Followed Hyperlink:"
-msgstr "Gevolgde Hiperskakel:"
-
-#. jRFtE
-#: cui/uiconfig/ui/themetabpage.ui:543
-msgctxt "themetabpage|colorSet"
-msgid "Color Set"
-msgstr "Kleur stel:"
-
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
diff --git a/source/af/dbaccess/messages.po b/source/af/dbaccess/messages.po
index c63a50a46e8..f7209769f5a 100644
--- a/source/af/dbaccess/messages.po
+++ b/source/af/dbaccess/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: 2023-05-10 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-05-15 19:34+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548168630.000000\n"
#. BiN6g
@@ -2317,312 +2317,290 @@ msgctxt "STR_SPREADSHEETPATH"
msgid "~Location and file name"
msgstr "~Ligging en lêernaam"
-#. GmNij
-#: dbaccess/inc/strings.hrc:401
-msgctxt "STR_POSTGRES_HEADERTEXT"
-msgid "Set up a connection to a PostgreSQL database"
-msgstr "Stel PostgeSQL databasis-koppeling op"
-
-#. 3AEhs
-#: dbaccess/inc/strings.hrc:402
-msgctxt "STR_POSTGRES_HELPTEXT"
-msgid ""
-"Please enter the required information to connect to a PostgreSQL database, either by entering the host name, port number and server, or by entering the connection string.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-"Voer asseblief die benodigde inligting in om te koppel aan 'n PostgreSQL-databasis, hetsy deur die rekenaarnaam, poortnommer en bediener in te voer, of deur die verbindingstring in te voer.\n"
-"Kontak asseblief jou stelseladministrateur as jy onseker is oor die volgende instellings."
-
-#. CHYCA
-#: dbaccess/inc/strings.hrc:403
-msgctxt "STR_POSTGRES_DEFAULT"
-msgid "Default: 5432"
-msgstr "Verstekwaarde: 5432"
-
#. og5kg
-#: dbaccess/inc/strings.hrc:404
+#: dbaccess/inc/strings.hrc:401
msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
msgid "Command successfully executed."
msgstr "Bevel suksesvol uitgevoer."
#. BhFXv
-#: dbaccess/inc/strings.hrc:405
+#: dbaccess/inc/strings.hrc:402
msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "Die verbinding met die databasis is verbreek. Hierdie dialoog sal gesluit word."
#. WTysM
-#: dbaccess/inc/strings.hrc:407
+#: dbaccess/inc/strings.hrc:404
msgctxt "STR_TAB_INDEX_SORTORDER"
msgid "Sort order"
msgstr "Sorteervolgorde"
#. 67TCR
-#: dbaccess/inc/strings.hrc:408
+#: dbaccess/inc/strings.hrc:405
msgctxt "STR_TAB_INDEX_FIELD"
msgid "Index field"
msgstr "Indeksveld"
#. rCZbG
-#: dbaccess/inc/strings.hrc:409
+#: dbaccess/inc/strings.hrc:406
msgctxt "STR_ORDER_ASCENDING"
msgid "Ascending"
msgstr "Oplopend"
#. zUeEN
-#: dbaccess/inc/strings.hrc:410
+#: dbaccess/inc/strings.hrc:407
msgctxt "STR_ORDER_DESCENDING"
msgid "Descending"
msgstr "Aflopend"
#. DpB67
-#: dbaccess/inc/strings.hrc:411
+#: dbaccess/inc/strings.hrc:408
msgctxt "STR_CONFIRM_DROP_INDEX"
msgid "Do you really want to delete the index '$name$'?"
msgstr "Wil u werklik die indeks '$name$' skrap?"
#. 3sTLe
-#: dbaccess/inc/strings.hrc:412
+#: dbaccess/inc/strings.hrc:409
msgctxt "STR_LOGICAL_INDEX_NAME"
msgid "index"
msgstr "indeks"
#. HFaXn
-#: dbaccess/inc/strings.hrc:413
+#: dbaccess/inc/strings.hrc:410
msgctxt "STR_NEED_INDEX_FIELDS"
msgid "The index must contain at least one field."
msgstr "Die indeks moet ten minste een veld bevat."
#. LRDDD
-#: dbaccess/inc/strings.hrc:414
+#: dbaccess/inc/strings.hrc:411
msgctxt "STR_INDEX_NAME_ALREADY_USED"
msgid "There is already another index named \"$name$\"."
msgstr "Daar is reeds 'n ander indeks genaamd \"$name$\"."
#. 9C3mx
-#: dbaccess/inc/strings.hrc:415
+#: dbaccess/inc/strings.hrc:412
msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "Geen tabelkolom mag meer as een keer in 'n indeksdefinisie verskyn nie. U het egter kolom \"$name$\" twee keer ingevoer."
#. XANpc
-#: dbaccess/inc/strings.hrc:417
+#: dbaccess/inc/strings.hrc:414
msgctxt "STR_COULD_NOT_CONVERT_PARAM"
msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
msgstr "Die inskrywing kon nie na 'n geldige waarde vir die \"$name$\"-kolom omskep word nie"
#. FCnE3
-#: dbaccess/inc/strings.hrc:419
+#: dbaccess/inc/strings.hrc:416
msgctxt "STR_EXCEPTION_STATUS"
msgid "SQL Status"
msgstr "SQL-Status"
#. ha64T
-#: dbaccess/inc/strings.hrc:420
+#: dbaccess/inc/strings.hrc:417
msgctxt "STR_EXCEPTION_ERRORCODE"
msgid "Error code"
msgstr "Foutkode"
#. 9A2cX
-#: dbaccess/inc/strings.hrc:421
+#: dbaccess/inc/strings.hrc:418
msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
msgstr "'n Algemene oorsaak van dié fout is dat 'n ontoepaslike karakterstelinstelling vir die taal van u databasis gebruik word. Kontroleer die instelling met Redigeer - Databasis - Eienskappe."
#. itnjJ
-#: dbaccess/inc/strings.hrc:422
+#: dbaccess/inc/strings.hrc:419
msgctxt "STR_EXCEPTION_ERROR"
msgid "Error"
msgstr "Fout"
#. Q4A2Y
-#: dbaccess/inc/strings.hrc:423
+#: dbaccess/inc/strings.hrc:420
msgctxt "STR_EXCEPTION_WARNING"
msgid "Warning"
msgstr "Waarskuwing"
#. LSBpE
-#: dbaccess/inc/strings.hrc:424
+#: dbaccess/inc/strings.hrc:421
msgctxt "STR_EXCEPTION_INFO"
msgid "Information"
msgstr "Inligting"
#. DKRwR
-#: dbaccess/inc/strings.hrc:425
+#: dbaccess/inc/strings.hrc:422
msgctxt "STR_EXCEPTION_DETAILS"
msgid "Details"
msgstr "Besonderhede"
#. CXpeS
-#: dbaccess/inc/strings.hrc:427
+#: dbaccess/inc/strings.hrc:424
msgctxt "STR_ADD_USER"
msgid "Add User"
msgstr "Voeg Gebruiker By"
#. YG5iB
-#: dbaccess/inc/strings.hrc:428
+#: dbaccess/inc/strings.hrc:425
msgctxt "STR_DELETE_USER"
msgid "Delete User"
msgstr "Skrap Gebruiker"
#. mDe9f
-#: dbaccess/inc/strings.hrc:429
+#: dbaccess/inc/strings.hrc:426
msgctxt "STR_CHANGE_PASSWORD"
msgid "Change Password"
msgstr "Verander Wagwoord"
#. Avmtu
-#: dbaccess/inc/strings.hrc:430
+#: dbaccess/inc/strings.hrc:427
msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
msgid "Do you really want to delete the user?"
msgstr "Wil u werklik die gebruiker skrap?"
#. yeKZF
-#: dbaccess/inc/strings.hrc:431
+#: dbaccess/inc/strings.hrc:428
msgctxt "STR_USERADMIN_NOT_AVAILABLE"
msgid "The database does not support user administration."
msgstr "Die databasis ondersteun nie gebruikeradministrasie nie."
#. 4CVtX
-#: dbaccess/inc/strings.hrc:432
+#: dbaccess/inc/strings.hrc:429
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The passwords do not match. Please enter the password again."
msgstr "Die wagwoorde kom nie ooreen nie. Tik die wagwoord asseblief weer in."
#. iu64w
-#: dbaccess/inc/strings.hrc:434
+#: dbaccess/inc/strings.hrc:431
msgctxt "STR_JOIN_TYPE_HINT"
msgid "Please note that some databases may not support this join type."
msgstr "Let op dat sommige databasisse nie hierdie soort aaneenskakeling ondersteun nie."
#. Khmn9
-#: dbaccess/inc/strings.hrc:435
+#: dbaccess/inc/strings.hrc:432
msgctxt "STR_QUERY_INNER_JOIN"
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr "Sluit net rekords in waarvan die inhoud van die verwante velde in beide tabelle identies is."
#. JUyyK
-#: dbaccess/inc/strings.hrc:436
+#: dbaccess/inc/strings.hrc:433
msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr "Bevat ALLE rekords uit tabel '%1' maar net rekords uit tabel '%2' waarvan die waardes in die verwante velde ooreenstem."
#. EdhCU
-#: dbaccess/inc/strings.hrc:437
+#: dbaccess/inc/strings.hrc:434
msgctxt "STR_QUERY_FULL_JOIN"
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "Bevat ALLE rekords van '%1' en van '%2'."
#. c9PsZ
-#: dbaccess/inc/strings.hrc:438
+#: dbaccess/inc/strings.hrc:435
msgctxt "STR_QUERY_CROSS_JOIN"
msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
msgstr "Bevat die Cartesiese produk van ALLE rekords van '%1' en van '%2'."
#. KyLuN
-#: dbaccess/inc/strings.hrc:440
+#: dbaccess/inc/strings.hrc:437
msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
msgid "The destination database does not support views."
msgstr "Die bestemmingdatabasis werk nie met aansigte nie."
#. RaJQd
-#: dbaccess/inc/strings.hrc:441
+#: dbaccess/inc/strings.hrc:438
msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
msgid "The destination database does not support primary keys."
msgstr "Die bestemmingdatabasis werk nie met primêre sleutels nie."
#. JBBmY
-#: dbaccess/inc/strings.hrc:442
+#: dbaccess/inc/strings.hrc:439
msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr "geen datatoegangbeskrywer gevind nie, of geen datatoegangbeskrywer in staat om al die nodige inligting te gee nie"
#. Z4JFe
-#: dbaccess/inc/strings.hrc:443
+#: dbaccess/inc/strings.hrc:440
msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
msgid "Only tables and queries are supported at the moment."
msgstr "Net tabelle en navrae werk op die oomblik."
#. KvUFb
-#: dbaccess/inc/strings.hrc:444
+#: dbaccess/inc/strings.hrc:441
msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
msgid "The copy source's result set must support bookmarks."
msgstr "Die kopiebron se resultaatstel moet met boekmerke werk."
#. XVb6E
-#: dbaccess/inc/strings.hrc:445
+#: dbaccess/inc/strings.hrc:442
msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr "Nieondersteunde bronkolomtipe ($type$) by kolomposisie $pos$."
#. 7pnvE
-#: dbaccess/inc/strings.hrc:446
+#: dbaccess/inc/strings.hrc:443
msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
msgid "Illegal number of initialization parameters."
msgstr "Onwettige aantal inisialiseringsparameters."
#. z3h9J
-#: dbaccess/inc/strings.hrc:447
+#: dbaccess/inc/strings.hrc:444
msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
msgid "An error occurred during initialization."
msgstr "Kon nie inisialiseer nie."
#. Qpda7
-#: dbaccess/inc/strings.hrc:448
+#: dbaccess/inc/strings.hrc:445
msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr "Nie-ondersteunde instelling in die kopie van die bronbesktywing: $name$."
#. BsP8j
-#: dbaccess/inc/strings.hrc:449
+#: dbaccess/inc/strings.hrc:446
msgctxt "STR_CTW_ERROR_NO_QUERY"
msgid "To copy a query, your connection must be able to provide queries."
msgstr "Om 'n navraag te kopieër, moet die koppeling daartoe instaat wees."
#. QYh2y
-#: dbaccess/inc/strings.hrc:450
+#: dbaccess/inc/strings.hrc:447
msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
msgid "The given interaction handler is invalid."
msgstr "Die gespesifiseerde interaksiehanteerder is ongeldig."
#. ixrDD
-#: dbaccess/inc/strings.hrc:452
+#: dbaccess/inc/strings.hrc:449
msgctxt "STR_QUERY_REL_EDIT_RELATION"
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr "Hierdie verwantskap bestaan reeds. Wil u dit redigeer of 'n nuwe een skep?"
#. nFRsS
-#: dbaccess/inc/strings.hrc:453
+#: dbaccess/inc/strings.hrc:450
msgctxt "STR_QUERY_REL_EDIT"
msgid "Edit..."
msgstr "Redigeer..."
#. yRkFG
-#: dbaccess/inc/strings.hrc:454
+#: dbaccess/inc/strings.hrc:451
msgctxt "STR_QUERY_REL_CREATE"
msgid "Create..."
msgstr "Skep..."
#. VWBJF
-#: dbaccess/inc/strings.hrc:455
+#: dbaccess/inc/strings.hrc:452
msgctxt "STR_RELATIONDESIGN"
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME Base: Verwantskapsontwerp"
#. ZCd5X
-#: dbaccess/inc/strings.hrc:456
+#: dbaccess/inc/strings.hrc:453
msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
msgid "The database does not support relations."
msgstr "Die databasis ondersteun nie verwantskappe nie."
#. CG2Pd
-#: dbaccess/inc/strings.hrc:457
+#: dbaccess/inc/strings.hrc:454
msgctxt "STR_QUERY_REL_DELETE_WINDOW"
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr "Wanneer u hierdie tabel skrap, sal alle ooreenstemmende verwantskappe ook geskrap word. Gaan voort?"
#. Wzf9T
-#: dbaccess/inc/strings.hrc:458
+#: dbaccess/inc/strings.hrc:455
msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
msgid ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
@@ -4108,47 +4086,89 @@ msgctxt "password|label1"
msgid "User “$name$: $”"
msgstr "Gebruiker \"$name$: $\""
+#. 4E7F9
+#: dbaccess/uiconfig/ui/postgrespage.ui:24
+msgctxt "postgrespage|header"
+msgid "Set up a connection to a PostgreSQL database"
+msgstr ""
+
#. o8BnM
-#: dbaccess/uiconfig/ui/postgrespage.ui:26
+#: dbaccess/uiconfig/ui/postgrespage.ui:30
msgctxt "specialpostgrespage|header"
msgid "Set up connection to a PostgreSQL database"
msgstr "Stel die koppeling na 'n PostgreSQL darabasis op"
+#. ux2MJ
+#: dbaccess/uiconfig/ui/postgrespage.ui:45
+msgctxt "postgrespage|helpLabel"
+msgid "Please enter the required information to connect to a PostgreSQL database, either by entering the host name, port number and server, or by entering the connection string."
+msgstr ""
+
#. cwtYL
-#: dbaccess/uiconfig/ui/postgrespage.ui:46
+#: dbaccess/uiconfig/ui/postgrespage.ui:52
msgctxt "specialpostgrespage|helpLabel"
msgid "Please enter the required information to connect to a PostgreSQL database. Please contact your system administrator if you are unsure about the following settings. "
msgstr "Voer in asseblief die benodigde inligting om aan 'n PostgreSQL-databasis te koppel. Kontak asseblief jou stelseladministrateur as jy onseker is oor die volgende instellings. "
+#. XWvWU
+#: dbaccess/uiconfig/ui/postgrespage.ui:67
+msgctxt "postgrespage|helpSupport"
+msgid "Please contact your system administrator if you are unsure"
+msgstr ""
+
#. EJzdP
-#: dbaccess/uiconfig/ui/postgrespage.ui:74
+#: dbaccess/uiconfig/ui/postgrespage.ui:89
msgctxt "specialpostgrespage|dbNameLabel"
msgid "_Database name:"
msgstr "_Databasis naam:"
#. P2FVr
-#: dbaccess/uiconfig/ui/postgrespage.ui:88
+#: dbaccess/uiconfig/ui/postgrespage.ui:103
msgctxt "specialpostgrespage|hostNameLabel"
msgid "_Server:"
msgstr "_Bediener:"
#. MgpLR
-#: dbaccess/uiconfig/ui/postgrespage.ui:102
+#: dbaccess/uiconfig/ui/postgrespage.ui:117
msgctxt "specialpostgrespage|portNumLabel"
msgid "_Port number:"
msgstr "_Poortnommer:"
+#. D6Ey2
+#: dbaccess/uiconfig/ui/postgrespage.ui:136
+msgctxt "postgrespage|extended_tip|dbNameEntry"
+msgid "Enter the name of the database."
+msgstr ""
+
+#. LC4Q7
+#: dbaccess/uiconfig/ui/postgrespage.ui:154
+msgctxt "postgrespage|extended_tip|hostNameEntry"
+msgid "Enter the server url of the database. "
+msgstr ""
+
+#. DT5z8
+#: dbaccess/uiconfig/ui/postgrespage.ui:179
+msgctxt "postgrespage|extended_tip|portNumEntry"
+msgid "Enter the port number of the DBMS service. Default for PostgreSQL is 5432."
+msgstr ""
+
#. oa9jC
-#: dbaccess/uiconfig/ui/postgrespage.ui:163
+#: dbaccess/uiconfig/ui/postgrespage.ui:193
msgctxt "specialpostgrespage|portNumDefLabel"
msgid "Default: 5432"
msgstr "Verstekwaarde: 5432"
-#. KvN6B
-#: dbaccess/uiconfig/ui/postgrespage.ui:198
+#. 7hasQ
+#: dbaccess/uiconfig/ui/postgrespage.ui:228
msgctxt "specialpostgrespage|connectionStringLabel"
-msgid "And/OR Enter the DBMS/driver-specific connection string here"
-msgstr "En/Of Voer hier in die spesifieke DBMS/drywer koppeling string"
+msgid "Alternatively, enter the driver-specific connection string here"
+msgstr ""
+
+#. EoCp5
+#: dbaccess/uiconfig/ui/postgrespage.ui:252
+msgctxt "postgrespage|extended_tip|browseurl"
+msgid "Enter the complete connector URL to access the PostGreSQL DBMS service. The connector URL is in the form \"postgresql://myHost:port/MyDatabase\"."
+msgstr ""
#. 9sAsA
#: dbaccess/uiconfig/ui/querycolmenu.ui:12
diff --git a/source/af/desktop/messages.po b/source/af/desktop/messages.po
index 3d8d1200560..e2a8f9f9199 100644
--- a/source/af/desktop/messages.po
+++ b/source/af/desktop/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: 2023-03-02 11:50+0100\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-03-03 08:43+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1535974818.000000\n"
#. v2iwK
@@ -664,26 +664,32 @@ msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
msgid "The configuration service is not available."
msgstr "Die opstellingdiens is nie beskikbaar nie."
-#. wbj4W
+#. BYShb
#: desktop/inc/strings.hrc:166
+msgctxt "STR_BOOTSTRAP_ERR_2NDOFFICE_WITHCAT"
+msgid "There is already another %PRODUCTNAME instance running. Please close all %PRODUCTNAME processes before running with the '--cat' or '--script-cat' option."
+msgstr ""
+
+#. wbj4W
+#: desktop/inc/strings.hrc:167
msgctxt "STR_ASK_START_SETUP_MANUALLY"
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr "Begin die installasieprogram om die installasie vanaf die CD of die vouer met die installasiepakette te herstel."
#. d3or5
-#: desktop/inc/strings.hrc:167
+#: desktop/inc/strings.hrc:168
msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
msgid "A general error occurred while accessing your central configuration. "
msgstr "'n Algemene fout het ontstaan terwyl daar toegang verkry is tot die sentrale opstelling. "
#. zBSDM
-#: desktop/inc/strings.hrc:168
+#: desktop/inc/strings.hrc:169
msgctxt "STR_LO_MUST_BE_RESTARTED"
msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
msgstr "% PRODUCTNAME moet met die hand herbegin word na installasie of opdatering."
#. NBTfi
-#: desktop/inc/strings.hrc:169
+#: desktop/inc/strings.hrc:170
msgctxt "STR_QUERY_USERDATALOCKED"
msgid ""
"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
@@ -697,25 +703,25 @@ msgstr ""
"Wil u regtig voortgaan?"
#. EB6Yf
-#: desktop/inc/strings.hrc:170
+#: desktop/inc/strings.hrc:171
msgctxt "STR_TITLE_USERDATALOCKED"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. GiCJZ
-#: desktop/inc/strings.hrc:171
+#: desktop/inc/strings.hrc:172
msgctxt "STR_ERR_PRINTDISABLED"
msgid "Printing is disabled. No documents can be printed."
msgstr "Druk is gedeaktiveer. Geen dokumente kan gedruk word nie."
#. VxBTE
-#: desktop/inc/strings.hrc:172
+#: desktop/inc/strings.hrc:173
msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
msgid "The path manager is not available.\n"
msgstr "Die padbestuurder is nie beskikbaar nie.\n"
#. Cy4Wz
-#: desktop/inc/strings.hrc:173
+#: desktop/inc/strings.hrc:174
msgctxt "STR_BOOTSTRAP_ERR_NOTENOUGHDISKSPACE"
msgid ""
"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
@@ -725,7 +731,7 @@ msgstr ""
"\n"
#. 2o5XG
-#: desktop/inc/strings.hrc:174
+#: desktop/inc/strings.hrc:175
msgctxt "STR_BOOTSTRAP_ERR_NOACCESSRIGHTS"
msgid ""
"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
@@ -735,61 +741,61 @@ msgstr ""
"\n"
#. uigQN
-#: desktop/inc/strings.hrc:176
+#: desktop/inc/strings.hrc:177
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
msgid "Extension Software License Agreement of $NAME:"
msgstr "Sagteware Lisensie Ooreenkoms vir Uitbreiding $NAME:"
#. DEkAo
-#: desktop/inc/strings.hrc:177
+#: desktop/inc/strings.hrc:178
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
msgstr "Lees die volledige lisensieooreenkoms hier bo. Aanvaar die lisensieooreenkoms deur \"ja\" op die konsole te tik en ENTER te druk. Tik \"nee\" om dit van die hand te wys en die uitbreidingopstelling te beëindig."
#. wANiC
-#: desktop/inc/strings.hrc:181
+#: desktop/inc/strings.hrc:182
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[Tik \"ja\" of \"nee\"]:"
#. wEFn2
-#: desktop/inc/strings.hrc:182
+#: desktop/inc/strings.hrc:183
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr "U toevoer was nie korrek nie. Tik asseblief \"ja\" of \"nee\":"
#. A9CdG
-#: desktop/inc/strings.hrc:183
+#: desktop/inc/strings.hrc:184
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
msgid "YES"
msgstr "JA"
#. HLETc
-#: desktop/inc/strings.hrc:184
+#: desktop/inc/strings.hrc:185
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
msgid "Y"
msgstr "J"
#. SQ6jd
-#: desktop/inc/strings.hrc:185
+#: desktop/inc/strings.hrc:186
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
msgid "NO"
msgstr "NEE"
#. 6LgGA
-#: desktop/inc/strings.hrc:186
+#: desktop/inc/strings.hrc:187
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
msgid "N"
msgstr "N"
#. aCY73
-#: desktop/inc/strings.hrc:187
+#: desktop/inc/strings.hrc:188
msgctxt "RID_STR_CONCURRENTINSTANCE"
msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:"
msgstr "unopkg kan nie begin nie. Die slotlêer dui aan dat dit reeds loop. As dit nie van toepassing is nie, skrap die slotlêer by:"
#. MLhHo
-#: desktop/inc/strings.hrc:189
+#: desktop/inc/strings.hrc:190
msgctxt "RID_STR_UNOPKG_ERROR"
msgid "ERROR: "
msgstr "FOUT: "
diff --git a/source/af/filter/source/config/fragments/filters.po b/source/af/filter/source/config/fragments/filters.po
index e917bdf20cc..a8de7542c16 100644
--- a/source/af/filter/source/config/fragments/filters.po
+++ b/source/af/filter/source/config/fragments/filters.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: 2023-03-06 17:53+0100\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-03-07 05:51+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560974401.000000\n"
#. FR4Ff
@@ -26,6 +26,16 @@ msgctxt ""
msgid "ADO Rowset XML"
msgstr "ADO XML Resultaat Rye"
+#. zFQ4r
+#: APNG___Animated_Portable_Network_Graphic.xcu
+msgctxt ""
+"APNG___Animated_Portable_Network_Graphic.xcu\n"
+"APNG - Animated Portable Network Graphic\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. bjvBT
#: AbiWord.xcu
msgctxt ""
@@ -1656,6 +1666,16 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0-tekeningsjabloon"
+#. mZCVu
+#: draw_apng_Export.xcu
+msgctxt ""
+"draw_apng_Export.xcu\n"
+"draw_apng_Export\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. m4Wdq
#: draw_bmp_Export.xcu
msgctxt ""
diff --git a/source/af/filter/source/config/fragments/internalgraphicfilters.po b/source/af/filter/source/config/fragments/internalgraphicfilters.po
index 404df6aa6ce..7c793935a85 100644
--- a/source/af/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/af/filter/source/config/fragments/internalgraphicfilters.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: 2022-10-10 13:35+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-10-21 14:17+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsinternalgraphicfilters/af/>\n"
@@ -13,9 +13,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560974407.000000\n"
+#. V9faX
+#: apng_Export.xcu
+msgctxt ""
+"apng_Export.xcu\n"
+"apng_Export\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. s5fY3
#: bmp_Export.xcu
msgctxt ""
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index 368852cf07f..3b792de774f 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.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: 2023-06-19 12:46+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-06-05 13:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/af/>\n"
@@ -24898,16 +24898,6 @@ msgctxt ""
msgid "Toggle Print Preview"
msgstr "Wissel drukvoorskou"
-#. RmzBC
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:PrintPreview\n"
-"PopupLabel\n"
-"value.text"
-msgid "Close Preview"
-msgstr "Sluit voorskou"
-
#. F4kBv
#: GenericCommands.xcu
msgctxt ""
@@ -26538,6 +26528,16 @@ msgctxt ""
msgid "Insert Non-br~eaking Hyphen"
msgstr "Nie-br~ekende Koppelteken invoeg"
+#. vZYBF
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertHardHyphen\n"
+"ContextLabel\n"
+"value.text"
+msgid "Non-br~eaking Hyphen"
+msgstr ""
+
#. EGU5u
#: GenericCommands.xcu
msgctxt ""
@@ -26548,15 +26548,35 @@ msgctxt ""
msgid "Insert S~oft Hyphen"
msgstr "Sagte K~oppelteken Invoeg"
-#. Qnw5x
+#. zBUbq
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertSoftHyphen\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~oft Hyphen"
+msgstr ""
+
+#. YjRxG
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertNonBreakingSpace\n"
"Label\n"
"value.text"
-msgid "Insert ~Non-breaking Space"
-msgstr "~Nie-brekende Spasie Invoeg"
+msgid "Insert ~No-break Space"
+msgstr ""
+
+#. fvM74
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertNonBreakingSpace\n"
+"ContextLabel\n"
+"value.text"
+msgid "~No-break Space"
+msgstr ""
#. KZXXb
#: GenericCommands.xcu
@@ -26568,45 +26588,95 @@ msgctxt ""
msgid "Insert N~arrow No-break Space"
msgstr "Voeg 'n smal, nie-breekende Spasie in"
-#. txaEk
+#. A2bbg
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertNarrowNobreakSpace\n"
+"ContextLabel\n"
+"value.text"
+msgid "N~arrow No-break Space"
+msgstr ""
+
+#. dzpbk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertZWSP\n"
"Label\n"
"value.text"
-msgid "No-~width Optional Break"
-msgstr "Opsionele geen breedte, afbreking"
+msgid "Insert Zero ~Width Space"
+msgstr ""
+
+#. hctRg
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertZWSP\n"
+"ContextLabel\n"
+"value.text"
+msgid "Zero ~Width Space"
+msgstr ""
-#. Gjgjy
+#. jzvxv
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
+msgid "Insert Word ~Joiner"
+msgstr ""
+
+#. v8vDi
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
+"ContextLabel\n"
+"value.text"
msgid "Word ~Joiner"
-msgstr "Woord ~ Verbinder"
+msgstr ""
-#. UvwGS
+#. vqFmk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertLRM\n"
"Label\n"
"value.text"
-msgid "~Left-to-right Mark"
-msgstr "~Links-na-regs-merk"
+msgid "Insert ~Left-to-Right Mark"
+msgstr ""
-#. prtF2
+#. XPw5G
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertLRM\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Left-to-Right Mark"
+msgstr ""
+
+#. JPsHK
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertRLM\n"
"Label\n"
"value.text"
-msgid "~Right-to-left Mark"
-msgstr "~Regs-na-links-merk"
+msgid "Insert ~Right-to-Left Mark"
+msgstr ""
+
+#. 2qBSw
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertRLM\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Right-to-Left Mark"
+msgstr ""
#. o6CJp
#: GenericCommands.xcu
@@ -30288,15 +30358,15 @@ msgctxt ""
msgid "Insert Table of Contents, Index or Bibliography"
msgstr "Voeg inhoudsopgawe, indeks, of bibliografie in"
-#. uTYnH
+#. UEm4k
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertMultiIndex\n"
"ContextLabel\n"
"value.text"
-msgid "Table of Contents, ~Index or Bibliography..."
-msgstr "~Inhoudsopgawe, indeks, of bibliografie..."
+msgid "Table of Contents, Index or Bibliography..."
+msgstr ""
#. TuWK6
#: WriterCommands.xcu
@@ -30968,6 +31038,16 @@ msgctxt ""
msgid "Properties"
msgstr "Eienskappe"
+#. ADmHG
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ContentControlProperties\n"
+"PopupLabel\n"
+"value.text"
+msgid "Content Control Properties"
+msgstr ""
+
#. npNpZ
#: WriterCommands.xcu
msgctxt ""
@@ -32598,15 +32678,15 @@ msgctxt ""
msgid "~Table Properties..."
msgstr "~Tabel-eienskappe..."
-#. bBVxV
+#. mmpui
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FootnoteDialog\n"
"Label\n"
"value.text"
-msgid "~Footnotes and Endnotes..."
-msgstr "~Voetnote en eindnote..."
+msgid "~Footnote/Endnote Settings..."
+msgstr ""
#. eE5gP
#: WriterCommands.xcu
@@ -36818,6 +36898,16 @@ msgctxt ""
msgid "Open the Style Inspector Deck"
msgstr "Open die Styl Inspeksie Paneel"
+#. BChtS
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SidebarDeck.SwManageChangesDeck\n"
+"Label\n"
+"value.text"
+msgid "Open the Manage Changes Deck"
+msgstr ""
+
#. nDjPh
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 0566520c445..33275641e25 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-29 10:24+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976792.000000\n"
#. kBovX
@@ -25338,895 +25338,895 @@ msgid "No solution was found."
msgstr "Geen Oplossing was gevind nie."
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2991
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2970
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Lêer"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2989
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hulp"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3065
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3044
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Lêer"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4697
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Begin"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4803
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Begin"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5371
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5350
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5832
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoeg"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5958
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5937
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoeg"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7030
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7009
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Uitleg"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7114
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7093
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Uitleg"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8391
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8370
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_Statistiek"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8421
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8548
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8527
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9351
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9330
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Oorsig"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9436
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9415
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10246
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10225
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10331
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10310
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11441
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11420
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Beeld"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11562
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11541
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Beel~d"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12744
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12723
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teken"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12851
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12830
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teken"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13309
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13288
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omskakel"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13600
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13579
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "-Objek"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13707
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13686
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14267
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14246
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "-Media"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14372
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14351
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14754
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14733
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14837
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14816
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15645
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15624
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15729
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15708
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15786
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15765
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Uitbreiding"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15839
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "~Uitbreiding"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17049
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17028
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17133
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17112
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
#. AJr3Y
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3025
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3004
msgctxt "notebookbar_compact|FileLabel"
msgid "_File"
msgstr "_Lêer"
#. PU9ct
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3074
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3053
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~Lêer"
#. UWfVg
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3538
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6106
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3517
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6085
msgctxt "notebookbar_compact|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Spesifiseer die rande van die geselekteerde selle."
#. JDRKC
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4580
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4559
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
msgstr "_Keuselys"
#. Svdz9
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4632
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4611
msgctxt "notebookbar_compact|CalcLabel"
msgid "~Home"
msgstr "~Begin"
#. ecBqZ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5128
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5107
msgctxt "notebookbar_compact|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
#. zveKA
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5591
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5570
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoeg"
#. CDXv3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5646
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5625
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Invoeg"
#. EvytN
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6266
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6245
msgctxt "notebookbar_compact|PageMenuButton"
msgid "_Layout"
msgstr "_Uitleg"
#. TbQMa
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6318
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6297
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~Uitleg"
#. QqjZP
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7153
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7132
msgctxt "notebookbar_compact|Statistics"
msgid "_Statistics"
msgstr "_Statistiek"
#. GFZNz
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7218
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7197
msgctxt "notebookbar_compact|DataMenuButton"
msgid "_Data"
msgstr "_Data"
#. TCt7E
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7269
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7248
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
msgstr "~Data"
#. jYD7j
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7951
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7930
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. Lbj5B
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7982
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. 35kA2
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8670
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8649
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Sien Lys"
#. ZGh8C
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8722
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8701
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10036
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10015
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Afbeeldin_g"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10088
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10067
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Afbeeldin~g"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11458
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11437
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "\"D_raw\""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11510
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11489
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "\"~Draw\""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12461
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12440
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12513
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12492
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13213
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13192
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13266
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13245
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13825
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13804
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Uitdruk"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13877
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13856
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Uit~druk"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15191
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15170
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15243
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15222
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15322
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15301
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uit_breiding"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15380
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15359
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Uit~breiding"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16381
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16360
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16433
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16412
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
#. LL2dj
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3298
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3277
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_Lêer"
#. MR7ZB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3406
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3385
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_Wysig"
#. AXNcR
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3522
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5063
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3501
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5042
msgctxt "notebookbar_groupedbar_compact|paragraphstyleb"
msgid "St_yles"
msgstr "St_yle"
#. scY66
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3673
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3652
msgctxt "notebookbar_groupedbar_compact|formatb"
msgid "F_ont"
msgstr "F_ont"
#. LFB3L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3899
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3878
msgctxt "notebookbar_groupedbar_compact|paragraphb"
msgid "_Paragraph"
msgstr "_Paragraaf"
#. UnsAB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4297
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4276
msgctxt "notebookbar_groupedbar_compact|numberb"
msgid "_Number"
msgstr "_Getal"
#. hBvBa
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4408
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4387
msgctxt "notebookbar_groupedbar_compact|datab"
msgid "_Data"
msgstr "_Data"
#. CMGpS
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4519
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4498
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
msgstr "_Voeg In"
#. 5wZbP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4630
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4609
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr "_Oorsig"
#. Uyv2y
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4741
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4720
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
msgstr "_Bekyk"
#. bgPuY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4850
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11195
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4829
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11174
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rm"
#. 5fAr4
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4942
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4921
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uit_breiding"
#. T2jYU
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5214
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5193
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
msgstr "Font"
#. jZETF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5438
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5417
msgctxt "notebookbar_groupedbar_compact|paragraphS"
msgid "_Paragraph"
msgstr "_Paragraaf"
#. 5Wp5j
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5687
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5666
msgctxt "notebookbar_groupedbar_compact|viewS"
msgid "_View"
msgstr "_Bekyk"
#. DC7Hv
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5822
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5801
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr "\"D_raw\""
#. ncAKi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6247
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7786
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8827
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9430
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10239
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6226
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7765
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8806
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9409
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10218
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr "Orden"
#. 8pLR3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6522
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6501
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr "Vorm"
#. NM63T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6769
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10487
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6748
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10466
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "Groe_p"
#. cbMTW
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6892
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6871
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr "3_D"
#. BTzDn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7120
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7099
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr "_Fontwerk"
#. PLqyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7231
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8277
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9075
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9679
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10599
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7210
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8256
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9054
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9658
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10578
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr "_Rooster"
#. K6izG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7361
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7340
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
msgstr "_Beeld"
#. SEFWn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8013
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7992
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
msgstr "Fi_lter"
#. 5a4zV
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8402
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8381
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr "_Objek"
#. Ghwp6
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9201
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9180
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr "_Media"
#. nyHDP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9814
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9793
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Edit"
msgstr "_Wysig"
#. PhCFL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11066
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11045
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
msgstr "_Uitdruk"
#. RC7F3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11950
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11929
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
msgstr "_Keuselys"
#. mBSfG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2601
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2580
msgctxt "notebookbar_groupedbar_full|defaultD"
msgid "Default"
msgstr "Verstek"
#. Z7t2R
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2615
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2594
msgctxt "notebookbar_groupedbar_full|Accent1"
msgid "Accent 1"
msgstr "Aksent 1"
#. xeEFE
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2623
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2602
msgctxt "notebookbar_groupedbar_full|Accent2"
msgid "Accent 2"
msgstr "Aksent 2"
#. G3TRo
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2631
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2610
msgctxt "notebookbar_groupedbar_full|Accent3"
msgid "Accent 3"
msgstr "Aksent 3"
#. QcUKG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2645
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2624
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
msgstr "Opskrif 1"
#. 6Ej4G
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2632
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
msgstr "Opskrif 2"
#. sqE94
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2667
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2646
msgctxt "notebookbar_groupedbar_full|bad"
msgid "Bad"
msgstr "Sleg"
#. 3ibZN
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2654
msgctxt "notebookbar_groupedbar_full|good"
msgid "Good"
msgstr "Goed"
#. DGBbw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2683
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2662
msgctxt "notebookbar_groupedbar_full|neutral"
msgid "Neutral"
msgstr "Neutraal"
#. keb9M
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2691
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2670
msgctxt "notebookbar_groupedbar_full|error"
msgid "Error"
msgstr "Fout"
#. WtFbH
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2699
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2678
msgctxt "notebookbar_groupedbar_full|warning"
msgid "Warning"
msgstr "Waarskuwing"
#. t9EbD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2713
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2692
msgctxt "notebookbar_groupedbar_full|footnote"
msgid "Footnote"
msgstr "Voetnoot"
#. FFrSw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2721
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2700
msgctxt "notebookbar_groupedbar_full|note"
msgid "Note"
msgstr "Nota"
#. EsADr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3211
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3190
msgctxt "notebookbar_groupedbar_full|menub"
msgid "_Menu"
msgstr "_Keuselys"
#. Ch63h
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3264
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3243
msgctxt "notebookbar_groupedbar_full|toolsb"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. kdH4L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3318
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3297
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
msgstr "_Help"
#. bkg23
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3425
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3404
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr "_Lêer"
#. aqbEs
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3658
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3637
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr "_Wysig"
#. HFC9U
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3851
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3830
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr "St_yle"
#. VFtWK
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4115
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4094
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ont"
msgstr "F_ont"
#. 9HzEG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4352
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4331
msgctxt "notebookbar_groupedbar_full|numberb"
msgid "_Number"
msgstr "_Getal"
#. F7vQ2
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4560
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4539
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Alignment"
msgstr "_Belyning"
#. QnhiG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4788
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4767
msgctxt "notebookbar_groupedbar_full|cellb"
msgid "_Cells"
msgstr "_Selle"
#. rrpkZ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4946
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4925
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr "_Voeg in"
#. NsDSM
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5124
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5103
msgctxt "notebookbar_groupedbar_full|datab"
msgid "_Data"
msgstr "_Data"
#. gQQfL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5292
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5271
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr "Oo_rsig"
#. BHDdD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5460
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5439
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr "_Bekyk"
#. ZJufp
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5680
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5659
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
msgstr "Afbeeldin_g"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5995
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5974
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "R_angskik"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6143
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6122
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "K_leur"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6386
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6365
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Rooster"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6521
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6500
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Taal"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6745
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6724
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Oorsig"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6953
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6932
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Opmerkings"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7152
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7131
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Vergelyking"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7350
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7329
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Aansig"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7779
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7758
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "\"D_raw\""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8136
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8115
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Wysig"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8464
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8443
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Rangskik"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8627
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8606
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Aansig"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8825
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8804
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_Groep"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8971
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8950
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9270
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9249
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Font"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9523
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9502
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Belyning"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9721
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9700
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Aansig"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9872
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9851
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Voeg in"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10015
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9994
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10245
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10224
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Raam"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10659
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10638
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Rangskik"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10821
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10800
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Rooster"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11019
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10998
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Aansig"
@@ -26982,31 +26982,55 @@ msgid "The Changes dialog specifies various options for highlighting recorded ch
msgstr "Die \"Veranderings\"-dialoog bevat verskillende opsies om opgetekende veranderinge in 'n dokument uit te lig."
#. CrAWh
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:36
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:33
msgctxt "optcompatibilitypage|label2"
msgid "Select desired _key binding type. Changing the key binding type may overwrite some of the existing key bindings."
msgstr "Kies die vereiste sleutel _kombinasies. As u die sleutelbordkortpaaie verander, kan sommige sleuteltoewysings verwyder word."
#. CER9u
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:56
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:53
msgctxt "optcompatibilitypage|keybindings"
msgid "Default"
msgstr "Verstek"
#. 3mLBb
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:57
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:54
msgctxt "optcompatibilitypage|keybindings"
msgid "OpenOffice.org legacy"
msgstr "OpenOffice.org nalatenskap"
#. g9ysB
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:71
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:68
msgctxt "optcompatibilitypage|label1"
msgid "Key Bindings"
msgstr "Sleutel kombinasies"
+#. S4zkN
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:101
+msgctxt "optcompatibilitypage|cellLinkCB"
+msgid "Insert _hyperlink for the cell, not for the text in the cell."
+msgstr ""
+
+#. EwAmb
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:105
+msgctxt "optcompatibilitypage|cellLinkCB|tooltip_text"
+msgid "By default, Excel allows only one hyperlink per cell. (Works only if Excel file format is used.)"
+msgstr ""
+
+#. EiGMR
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:110
+msgctxt "extended_tip|cellLinkCB"
+msgid "%PRODUCTNAME can insert multiple hyperlinks in a cell as text fields, but multiple hyperlinks in a cell cannot be saved to Excel file formats. This option prevents inserting multiple hyperlinks in a cell when Excel files are edited, in order to be interoperable with Excel."
+msgstr ""
+
+#. BJuZV
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:126
+msgctxt "optcompatibilitypage|label3"
+msgid "Hyperlinks"
+msgstr ""
+
#. XXuHE
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:86
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:141
msgctxt "extended_tip|OptCompatibilityPage"
msgid "Defines compatibility options for Calc."
msgstr "Defineer versoenbaarheidsopsies vir Calc."
@@ -32526,13 +32550,19 @@ msgid "Select the Locale to Use for Import"
msgstr "Selekteer die gebiedskema vir Invoer Gebruik"
#. iRYr7
-#: sc/uiconfig/scalc/ui/textimportoptions.ui:169
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:176
msgctxt "textimportoptions|convertdata"
msgid "Detect special numbers (such as dates)"
msgstr "Soek uit spesiale getalle (soos datums)"
+#. y2ucV
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:192
+msgctxt "textimportoptions|convertdata"
+msgid "Detect numbers with _scientific notation"
+msgstr ""
+
#. 6aP7U
-#: sc/uiconfig/scalc/ui/textimportoptions.ui:183
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:212
msgctxt "textimportoptions|label3"
msgid "Options"
msgstr "Opsies"
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 7ab7f0dc76d..c608eb4c249 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/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: 2023-05-31 16:29+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-06-05 13:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560928573.000000\n"
#. WDjkB
@@ -437,242 +437,224 @@ msgctxt "STR_UNDO_REPLACE"
msgid "Replace"
msgstr "Vervang"
-#. AHC3G
-#: sd/inc/strings.hrc:32
-msgctxt "STR_NEXT_SLIDE"
-msgid "Next slide"
-msgstr "Volgende raampie"
-
-#. 8cA5i
-#: sd/inc/strings.hrc:33
-msgctxt "STR_PREV_SLIDE"
-msgid "Previous slide"
-msgstr "Vorige raampie"
-
-#. A8tmu
-#: sd/inc/strings.hrc:34
-msgctxt "STR_MENU_SLIDE"
-msgid "Menu slide"
-msgstr "Keuselys raampie"
-
#. eh6CM
-#: sd/inc/strings.hrc:35
+#: sd/inc/strings.hrc:32
msgctxt "STR_UNDO_DRAGDROP"
msgid "Drag and Drop"
msgstr "Sleep en los"
#. 3FHKw
-#: sd/inc/strings.hrc:36
+#: sd/inc/strings.hrc:33
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "Voeg beeld in"
#. 47BGD
-#: sd/inc/strings.hrc:37
+#: sd/inc/strings.hrc:34
msgctxt "STR_UNDO_BEZCLOSE"
msgid "Close Polygon"
msgstr "Sluit veelhoek"
#. ARAxt
-#: sd/inc/strings.hrc:38
+#: sd/inc/strings.hrc:35
msgctxt "STR_SLIDE_SORTER_MODE"
msgid "Slide Sorter"
msgstr "Skyfiesorteerder"
#. xpwgF
-#: sd/inc/strings.hrc:39
+#: sd/inc/strings.hrc:36
msgctxt "STR_NORMAL_MODE"
msgid "Normal"
msgstr "Normaal"
#. DFBoe
-#: sd/inc/strings.hrc:40
+#: sd/inc/strings.hrc:37
msgctxt "STR_SLIDE_MASTER_MODE"
msgid "Master Slide"
msgstr "Skyfie Meester"
#. qBuHh
-#: sd/inc/strings.hrc:41
+#: sd/inc/strings.hrc:38
msgctxt "STR_OUTLINE_MODE"
msgid "Outline"
msgstr "Skema"
#. kYbwc
-#: sd/inc/strings.hrc:42
+#: sd/inc/strings.hrc:39
msgctxt "STR_NOTES_MODE"
msgid "Notes"
msgstr "Notas"
#. NJEio
-#: sd/inc/strings.hrc:43
+#: sd/inc/strings.hrc:40
msgctxt "STR_NOTES_MASTER_MODE"
msgid "Master Notes"
msgstr "Notas Meester"
#. tGt9g
-#: sd/inc/strings.hrc:44
+#: sd/inc/strings.hrc:41
msgctxt "STR_HANDOUT_MASTER_MODE"
msgid "Master Handout"
msgstr "Uitreikstuk model"
#. GtVe6
-#: sd/inc/strings.hrc:45
+#: sd/inc/strings.hrc:42
msgctxt "STR_AUTOLAYOUT_NONE"
msgid "Blank Slide"
msgstr "Blanko skyfie"
#. o4jkH
-#: sd/inc/strings.hrc:46
+#: sd/inc/strings.hrc:43
msgctxt "STR_AUTOLAYOUT_ONLY_TITLE"
msgid "Title Only"
msgstr "Slegs titel"
#. yEaXc
-#: sd/inc/strings.hrc:47
+#: sd/inc/strings.hrc:44
msgctxt "STR_AUTOLAYOUT_ONLY_TEXT"
msgid "Centered Text"
msgstr "Gesentreerde teks"
#. vC7LB
-#: sd/inc/strings.hrc:48
+#: sd/inc/strings.hrc:45
msgctxt "STR_AUTOLAYOUT_TITLE"
msgid "Title Slide"
msgstr "Titelskyfie"
#. CZCWE
-#: sd/inc/strings.hrc:49
+#: sd/inc/strings.hrc:46
msgctxt "STR_AUTOLAYOUT_CONTENT"
msgid "Title, Content"
msgstr "Titel, inhoud"
#. D2n4r
-#: sd/inc/strings.hrc:50
+#: sd/inc/strings.hrc:47
msgctxt "STR_AUTOLAYOUT_2CONTENT"
msgid "Title and 2 Content"
msgstr "Titel en Inhoud 2"
#. gJvEw
-#: sd/inc/strings.hrc:51
+#: sd/inc/strings.hrc:48
msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT"
msgid "Title, Content and 2 Content"
msgstr "Titel, Inhoud en Inhoud 2"
#. BygEm
-#: sd/inc/strings.hrc:52
+#: sd/inc/strings.hrc:49
msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT"
msgid "Title, 2 Content and Content"
msgstr "Titel, Inhoud 2 en Inhoud"
#. e3iAd
-#: sd/inc/strings.hrc:53
+#: sd/inc/strings.hrc:50
msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT"
msgid "Title, 2 Content over Content"
msgstr "Titel, Inhoud 2 Oorhoofse Inhoud"
#. D9Ra9
-#: sd/inc/strings.hrc:54
+#: sd/inc/strings.hrc:51
msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT"
msgid "Title, Content over Content"
msgstr "Titel, Inhoud Oorshoofse Inhoud"
#. jnnLj
-#: sd/inc/strings.hrc:55
+#: sd/inc/strings.hrc:52
msgctxt "STR_AUTOLAYOUT_4CONTENT"
msgid "Title, 4 Content"
msgstr "Titel, Inhoud 4"
#. Bhnxh
-#: sd/inc/strings.hrc:56
+#: sd/inc/strings.hrc:53
msgctxt "STR_AUTOLAYOUT_6CONTENT"
msgid "Title, 6 Content"
msgstr "Titel, Inhoud 6"
#. G9mLN
-#: sd/inc/strings.hrc:57
+#: sd/inc/strings.hrc:54
msgctxt "STR_AL_TITLE_VERT_OUTLINE"
msgid "Title, Vertical Text"
msgstr "Titel, vertikale teks"
#. GsGaq
-#: sd/inc/strings.hrc:58
+#: sd/inc/strings.hrc:55
msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART"
msgid "Title, Vertical Text, Clipart"
msgstr "Titel, vertikale teks, knipkuns"
#. QvDtk
-#: sd/inc/strings.hrc:59
+#: sd/inc/strings.hrc:56
msgctxt "STR_AL_VERT_TITLE_TEXT_CHART"
msgid "Vertical Title, Text, Chart"
msgstr "Vertikale titel, teks, grafiek"
#. bEiKk
-#: sd/inc/strings.hrc:60
+#: sd/inc/strings.hrc:57
msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE"
msgid "Vertical Title, Vertical Text"
msgstr "Vertikale titel, vertikale teks"
#. CAeFA
-#: sd/inc/strings.hrc:61
+#: sd/inc/strings.hrc:58
msgctxt "STR_AUTOLAYOUT_HANDOUT1"
msgid "One Slide"
msgstr "Een skyfie"
#. kGsfV
-#: sd/inc/strings.hrc:62
+#: sd/inc/strings.hrc:59
msgctxt "STR_AUTOLAYOUT_HANDOUT2"
msgid "Two Slides"
msgstr "Twee skyfies"
#. P3K6D
-#: sd/inc/strings.hrc:63
+#: sd/inc/strings.hrc:60
msgctxt "STR_AUTOLAYOUT_HANDOUT3"
msgid "Three Slides"
msgstr "Drie skyfies"
#. eMsDY
-#: sd/inc/strings.hrc:64
+#: sd/inc/strings.hrc:61
msgctxt "STR_AUTOLAYOUT_HANDOUT4"
msgid "Four Slides"
msgstr "Vier skyfies"
#. 69B5i
-#: sd/inc/strings.hrc:65
+#: sd/inc/strings.hrc:62
msgctxt "STR_AUTOLAYOUT_HANDOUT6"
msgid "Six Slides"
msgstr "Ses skyfies"
#. FeJFF
-#: sd/inc/strings.hrc:66
+#: sd/inc/strings.hrc:63
msgctxt "STR_AUTOLAYOUT_HANDOUT9"
msgid "Nine Slides"
msgstr "Nege skyfies"
#. khJZE
-#: sd/inc/strings.hrc:67
+#: sd/inc/strings.hrc:64
msgctxt "STR_AUTOLAYOUT_NOTES"
msgid "Notes"
msgstr "Notas"
#. 4sRi2
-#: sd/inc/strings.hrc:68
+#: sd/inc/strings.hrc:65
msgctxt "STR_TRANSFORM"
msgid "Transform"
msgstr "Transvorm"
#. 3rF5y
-#: sd/inc/strings.hrc:69
+#: sd/inc/strings.hrc:66
msgctxt "STR_LINEEND"
msgid "Line Ends"
msgstr "Einde van reël"
#. qJLT9
-#: sd/inc/strings.hrc:70
+#: sd/inc/strings.hrc:67
msgctxt "STR_DESC_LINEEND"
msgid "Please enter a name for the new arrow style:"
msgstr "Voer asseblief 'n naam in vir die nuwe styl vir pyle:"
#. 7y2Si
-#: sd/inc/strings.hrc:71
+#: sd/inc/strings.hrc:68
msgctxt "STR_WARN_NAME_DUPLICATE"
msgid ""
"The name chosen already exists. \n"
@@ -682,109 +664,109 @@ msgstr ""
"Tik asseblief 'n nuwe naam."
#. arAaK
-#: sd/inc/strings.hrc:72
+#: sd/inc/strings.hrc:69
msgctxt "STR_UNDO_ANIMATION"
msgid "Animation parameters"
msgstr "Animasie-parameters"
#. DCRRn
-#: sd/inc/strings.hrc:73
+#: sd/inc/strings.hrc:70
msgctxt "STR_UNDO_COPYOBJECTS"
msgid "Duplicate"
msgstr "Duplikaat"
#. NaQdx
-#: sd/inc/strings.hrc:74
+#: sd/inc/strings.hrc:71
msgctxt "STR_TITLE_NAMEGROUP"
msgid "Name Object"
msgstr "Benoem objek"
#. hBgQg
-#: sd/inc/strings.hrc:75
+#: sd/inc/strings.hrc:72
msgctxt "STR_DESC_NAMEGROUP"
msgid "Name"
msgstr "Naam"
#. YSZad
-#: sd/inc/strings.hrc:76
+#: sd/inc/strings.hrc:73
msgctxt "STR_WARN_PAGE_EXISTS"
msgid "The slide name already exists or is invalid. Please enter another name."
msgstr "Hierdie skyfienaam bestaan reeds of is ongeldig. Tik asseblief 'n ander naam."
#. P4bHX
-#: sd/inc/strings.hrc:77
+#: sd/inc/strings.hrc:74
msgctxt "STR_WARN_PAGE_EXISTS_DRAW"
msgid "The page name already exists or is invalid. Please enter another name."
msgstr "Die Bladsynaam bestaan alreeds of is ongeldig. Voer 'n ander naam in."
#. ryfEt
-#: sd/inc/strings.hrc:78
+#: sd/inc/strings.hrc:75
msgctxt "STR_SNAPDLG_SETLINE"
msgid "Edit Snap Line"
msgstr "Redigeer springlyn"
#. 3c3Hh
-#: sd/inc/strings.hrc:79
+#: sd/inc/strings.hrc:76
msgctxt "STR_SNAPDLG_SETPOINT"
msgid "Edit Snap Point"
msgstr "Redigeer springpunt"
#. FWWHm
-#: sd/inc/strings.hrc:80
+#: sd/inc/strings.hrc:77
msgctxt "STR_POPUP_EDIT_SNAPLINE"
msgid "Edit Snap Line..."
msgstr "Redigeer springlyn..."
#. njFAd
-#: sd/inc/strings.hrc:81
+#: sd/inc/strings.hrc:78
msgctxt "STR_POPUP_EDIT_SNAPPOINT"
msgid "Edit Snap Point..."
msgstr "Redigeer springpunt..."
#. UwBFu
-#: sd/inc/strings.hrc:82
+#: sd/inc/strings.hrc:79
msgctxt "STR_POPUP_DELETE_SNAPLINE"
msgid "Delete Snap Line"
msgstr "Skrap springlyn"
#. BBU6u
-#: sd/inc/strings.hrc:83
+#: sd/inc/strings.hrc:80
msgctxt "STR_POPUP_DELETE_SNAPPOINT"
msgid "Delete Snap Point"
msgstr "Skrap springpunt"
#. BmRfY
-#: sd/inc/strings.hrc:84
+#: sd/inc/strings.hrc:81
msgctxt "STR_IMPRESS"
msgid "StarImpress 4.0"
msgstr "StarImpress 4.0"
#. aAbqr
-#: sd/inc/strings.hrc:85
+#: sd/inc/strings.hrc:82
msgctxt "STR_LAYER"
msgid "Layer"
msgstr "Laag"
#. Lwrnm
-#: sd/inc/strings.hrc:86
+#: sd/inc/strings.hrc:83
msgctxt "STR_UNDO_DELETEPAGES"
msgid "Delete slides"
msgstr "Skrap skyfies"
#. F7ZZF
-#: sd/inc/strings.hrc:87
+#: sd/inc/strings.hrc:84
msgctxt "STR_UNDO_DELETEPAGES_DRAW"
msgid "Delete pages"
msgstr "Verwyder Bladsye"
#. EQUBZ
-#: sd/inc/strings.hrc:88
+#: sd/inc/strings.hrc:85
msgctxt "STR_UNDO_INSERTPAGES"
msgid "Insert slides"
msgstr "Voeg skyfies in"
#. 4hGAF
-#: sd/inc/strings.hrc:89
+#: sd/inc/strings.hrc:86
msgctxt "STR_ASK_DELETE_LAYER"
msgid ""
"Are you sure you want to delete the layer \"$\"?\n"
@@ -794,97 +776,103 @@ msgstr ""
"Let wel: Alle objekte op hierdie vlak sal saam uitgevee word!"
#. EcYBg
-#: sd/inc/strings.hrc:90
+#: sd/inc/strings.hrc:87
msgctxt "STR_ASK_DELETE_ALL_PICTURES"
msgid "Do you really want to delete all images?"
msgstr "Wil u regtig al die beelde skrap?"
#. 43diA
-#: sd/inc/strings.hrc:91
+#: sd/inc/strings.hrc:88
msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT"
msgid "Modify title and outline"
msgstr "Wysig titel en skema"
#. 6zCeF
-#: sd/inc/strings.hrc:92
+#: sd/inc/strings.hrc:89
msgctxt "STR_WAV_FILE"
msgid "Audio"
msgstr "Audio"
#. EtkBb
-#: sd/inc/strings.hrc:93
+#: sd/inc/strings.hrc:90
msgctxt "STR_MIDI_FILE"
msgid "MIDI"
msgstr "MIDI"
#. ZKZvo
-#: sd/inc/strings.hrc:94
+#: sd/inc/strings.hrc:91
msgctxt "STR_AU_FILE"
msgid "Sun/NeXT Audio"
msgstr "Sun/NeXT-oudio"
#. BySwC
-#: sd/inc/strings.hrc:95
+#: sd/inc/strings.hrc:92
msgctxt "STR_VOC_FILE"
msgid "Creative Labs Audio"
msgstr "Creative Labs-oudio"
#. CVtFB
-#: sd/inc/strings.hrc:96
+#: sd/inc/strings.hrc:93
msgctxt "STR_AIFF_FILE"
msgid "Apple/SGI Audio"
msgstr "Apple/SGI-oudio"
#. qBF5W
-#: sd/inc/strings.hrc:97
+#: sd/inc/strings.hrc:94
msgctxt "STR_SVX_FILE"
msgid "Amiga SVX Audio"
msgstr "Amiga SVX-oudio"
+#. x7GnC
+#: sd/inc/strings.hrc:95
+msgctxt "STR_SD_PAGE"
+msgid "Slide"
+msgstr ""
+
#. Myh6k
-#: sd/inc/strings.hrc:98
+#: sd/inc/strings.hrc:96
msgctxt "STR_SD_PAGE_COUNT"
msgid "Slide %1 of %2"
msgstr "Skyfie %1 van %2"
#. NakLD
-#: sd/inc/strings.hrc:99
+#: sd/inc/strings.hrc:97
msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
msgid "Slide %1 of %2 (%3)"
msgstr "Skyfie %1 van %2 (%3)"
#. AHvxa
-#: sd/inc/strings.hrc:100
+#: sd/inc/strings.hrc:98
msgctxt "STR_SD_PAGE_COUNT_DRAW"
msgid "Page %1 of %2"
msgstr "Bladsy %1 van %2"
#. hdhKG
-#: sd/inc/strings.hrc:101
+#: sd/inc/strings.hrc:99
msgctxt "STR_SD_PAGE_COUNT_CUSTOM_DRAW"
msgid "Page %1 of %2 (%3)"
msgstr "Bladsy %1 van %2 (%3)"
#. WsRvh
-#: sd/inc/strings.hrc:102
+#: sd/inc/strings.hrc:100
msgctxt "STR_ALL_SUPPORTED_FORMATS"
msgid "All supported formats"
msgstr "Alle ondersteunde profiele"
#. F8m2G
-#: sd/inc/strings.hrc:103
+#: sd/inc/strings.hrc:101
msgctxt "STR_ALL_FILES"
msgid "All files"
msgstr "Alle lêers"
#. jgmq4
-#: sd/inc/strings.hrc:104
+#: sd/inc/strings.hrc:102
msgctxt "STR_UNDO_INSERT_TEXTFRAME"
msgid "Insert text frame"
msgstr "Voeg teksraam in"
#. KW7A3
-#: sd/inc/strings.hrc:105
+#: sd/inc/strings.hrc:103
msgctxt "STR_ACTION_NOTPOSSIBLE"
msgid ""
"This function cannot be run \n"
@@ -894,19 +882,19 @@ msgstr ""
"die geselekteerde objekte laat loop word nie."
#. Sfjvn
-#: sd/inc/strings.hrc:106
+#: sd/inc/strings.hrc:104
msgctxt "STR_DLG_INSERT_PAGES_FROM_FILE"
msgid "Insert File"
msgstr "Voeg lêer in"
#. TKeex
-#: sd/inc/strings.hrc:107
+#: sd/inc/strings.hrc:105
msgctxt "STR_READ_DATA_ERROR"
msgid "The file could not be loaded!"
msgstr "Die lêer kon nie gelaai word nie!"
#. 8CYyq
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:106
msgctxt "STR_SCALE_OBJECTS"
msgid ""
"The page size of the target document is different than the source document.\n"
@@ -918,143 +906,155 @@ msgstr ""
"Wil u die gekopieerde objekte skaal sodat dit by die nuwe bladsygrootte pas?"
#. YC4AD
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:107
msgctxt "STR_SCALE_TOOLTIP"
msgid "Scaling factor of the document; right-click to change."
msgstr "Skaalfaktor van die dokument; wysig dit met regs muisklik."
#. NzFb7
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "Skep Skyfies"
#. ckve2
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "Wysig bladsyformaat"
#. FDTtA
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "Wysig bladsykantlyne"
#. H6ceS
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "~Redigeer"
#. 3ikze
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "Skrap Skyfies"
#. xbTgp
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "Die dokumentformaat kon nie op die gespesifiseerde drukker gestel word nie."
#. s6Pco
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeld lêer kan nie oopgemaak word nie"
#. PKXVG
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeld lêer kan nie gelees word nie"
#. Wnx5i
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeld formaat"
#. GH2S7
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Die Beeld Lêer weergawe word nie ondersteun nie"
#. uqpAS
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeld filter was nie gevind nie"
#. qdeHG
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "Nie genoeg geheue om die afbeelding in te voer nie"
#. BdsAg
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "Objekte"
#. SDm68
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "Speltoets op die hele dokument is voltooi."
#. gefTJ
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "Die speltoets op die geselekteerde objekte is voltooi."
#. aeQeS
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "Skakel geselekteerde objek na kurwe om?"
#. wLsLp
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "Wysig voorleggingsobjek '$'"
#. s8VC9
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "Skyfie-uitleg"
#. SUpXD
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "Bladsy uitleg"
#. BFzyf
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "Voeg lêer in"
#. WGRwQ
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "Voeg spesiale karakter in"
#. NFpGf
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "Pas voorlegginguitleg toe"
+#. ypaEH
+#: sd/inc/strings.hrc:130
+msgctxt "STR_UNDO_HIDE_SLIDE"
+msgid "Hide slide"
+msgstr ""
+
+#. LmH9V
+#: sd/inc/strings.hrc:131
+msgctxt "STR_UNDO_SHOW_SLIDE"
+msgid "Show slide"
+msgstr ""
+
#. ZMS5R
#: sd/inc/strings.hrc:132
msgctxt "STR_PLAY"
@@ -3499,29 +3499,23 @@ msgid "Page Properties"
msgstr "Bladsy Eienskappe"
#. Py4db
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:109
msgctxt "drawpagedialog|RID_SVXPAGE_PAGE"
msgid "Page"
msgstr "Bladsy"
#. sn2YQ
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:183
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:132
msgctxt "drawpagedialog|RID_SVXPAGE_AREA"
msgid "Background"
msgstr "Agtergrond"
#. hNhCi
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:231
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:156
msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "Deursigtigheid"
-#. fLYAx
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:279
-msgctxt "drawpagedialog|RID_SVXPAGE_THEME"
-msgid "Theme"
-msgstr "Tema"
-
#. cKCg3
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:8
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
@@ -4071,73 +4065,73 @@ msgid "~Object"
msgstr "Objek"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15186
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15325
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15290
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16098
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vorm"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16217
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16182
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17004
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16969
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17111
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17076
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17635
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17600
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "Model"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17719
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17684
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Model"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17776
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17741
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17850
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17815
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18762
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18727
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18811
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Nu~tsbalk"
@@ -6706,103 +6700,103 @@ msgid "Lists available slides. Double-click a slide to make it the active slide.
msgstr "Lys beskikbare skyfies. Dubbel-kliek 'n skyfie om dit aktief te maak."
#. LKqE8
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:142
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:141
msgctxt "navigatorpanel|first|tooltip_text"
msgid "First Slide"
msgstr "Eerste skyfie"
#. Lqedn
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:146
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:145
msgctxt "navigatorpanel|extended_tip|first"
msgid "Jumps to the first page."
msgstr "Spring na die eerste bladsy."
#. NWPFk
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:159
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:157
msgctxt "navigatorpanel|previous|tooltip_text"
msgid "Previous Slide"
msgstr "Vorige skyfie"
#. PJUma
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:163
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:161
msgctxt "navigatorpanel|extended_tip|previous"
msgid "Moves back one page."
msgstr "Skuif terug een skyfie."
#. bkvQE
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:176
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:173
msgctxt "navigatorpanel|next|tooltip_text"
msgid "Next Slide"
msgstr "Volgende skyfie"
#. zbUVG
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:180
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:177
msgctxt "navigatorpanel|extended_tip|next"
msgid "Move forward one page."
msgstr "Skuif vorentoe een skyfie."
#. FVSHF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:193
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:189
msgctxt "navigatorpanel|last|tooltip_text"
msgid "Last Slide"
msgstr "Laaste Skyfie"
#. aPU7Y
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:197
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:193
msgctxt "navigatorpanel|extended_tip|last"
msgid "Jumps to the last page."
msgstr "Spring na laaste skyfie."
#. mHVom
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:222
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:217
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "Sleepmodus"
#. BEJEZ
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:226
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:221
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Drag and drop slides and named objects into the active slide."
msgstr "U kan skyfies en genoemde objekte na die aktiewe skyfie trek en laat los."
#. Qb5a9
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:239
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:233
msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Vorms vertoon"
#. EUeae
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:243
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:237
msgctxt "navigatorpanel|extended_tip|shapes"
msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected."
msgstr "In die sub-kieslys kan u kies tussen 'n lys van alle vorms of slegs die benoemde vorms. Gebruik die trek-en-laatlos-funksie op die lys om die vorms te herrangskik. Wanneer u die fokus op 'n skyfie plaas en op die Tab-sleutel druk, word die volgende vorm in die gedefinieerde volgorde gekies."
#. DzQZC
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:266
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:260
msgctxt "navigatorpanel|extended_tip|NavigatorPanel"
msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files."
msgstr "Maak die Navigator oop, waarmee u vinnig ander skyfies kan spring of oorskakel na reeds geopende dokumente."
#. pzb3K
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:277
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES"
msgid "Named shapes"
msgstr "Benoemde vorms"
#. dLEPF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:287
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:281
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES"
msgid "All shapes"
msgstr "Alle vorms"
#. BJmWa
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:303
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:297
msgctxt "navigatorpanel|STR_NAVIGATOR_FRONT_TO_BACK"
msgid "Front to back"
msgstr "Voor na Agter"
#. 4e3oj
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:313
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:307
msgctxt "navigatorpanel|STR_NAVIGATOR_BACK_TO_FRONT"
msgid "Back to front"
msgstr "Agter na Voor"
@@ -6960,85 +6954,85 @@ msgid "~Object"
msgstr "~Objek"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14971
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14936
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15075
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15040
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15883
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15848
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15967
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15932
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16762
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16727
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_Model"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16846
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16811
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "Model"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17656
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17621
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "-Aansig"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17740
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17705
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "Oorsig"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18527
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18492
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_D"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18634
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18599
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~D"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18691
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18656
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18765
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18730
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19728
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19693
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19812
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19777
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index b349f65580f..c60cc52f952 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/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: 2023-05-17 15:14+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-05-21 10:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560975251.000000\n"
#. bHbFE
@@ -833,75 +833,81 @@ msgstr ""
"Dit negeer alle veranderinge sedert u by die bediener aangemeld het.\n"
"Wil u voortgaan?"
-#. jufLD
+#. QeNqB
#: include/sfx2/strings.hrc:152
+msgctxt "STR_QUERY_REMEMBERSIGNATURE"
+msgid "Do you want to remember that signature for each save?"
+msgstr ""
+
+#. jufLD
+#: include/sfx2/strings.hrc:153
msgctxt "STR_INFO_WRONGDOCFORMAT"
msgid "This document must be saved in OpenDocument file format before it can be digitally signed."
msgstr "Hierdie dokument moet in OpenDocument-lêerformaat gestoor wees voor dit digitaal onderteken kan word."
#. ori9u
-#: include/sfx2/strings.hrc:153
+#: include/sfx2/strings.hrc:154
msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
msgid " (Signed)"
msgstr " (Onderteken)"
#. kgWZS
-#: include/sfx2/strings.hrc:154
+#: include/sfx2/strings.hrc:155
msgctxt "STR_EMBEDDED_TITLE"
msgid " (Embedded document)"
msgstr " (dokument ingebed)"
#. 3nT9T
-#: include/sfx2/strings.hrc:155
+#: include/sfx2/strings.hrc:156
msgctxt "STR_STANDARD"
msgid "Standard"
msgstr "Standaard"
#. FjCuJ
-#: include/sfx2/strings.hrc:156
+#: include/sfx2/strings.hrc:157
msgctxt "RID_SVXSTR_FILELINK"
msgid "Document"
msgstr "Dokument"
#. BfMd3
-#: include/sfx2/strings.hrc:157
+#: include/sfx2/strings.hrc:158
msgctxt "STR_NONE"
msgid "- None -"
msgstr "- Geen -"
#. XBXvE
-#: include/sfx2/strings.hrc:158
+#: include/sfx2/strings.hrc:159
msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "Geen"
#. 5kUsi
-#: include/sfx2/strings.hrc:159
+#: include/sfx2/strings.hrc:160
msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr "Beeld"
#. dUK2G
-#: include/sfx2/strings.hrc:160
+#: include/sfx2/strings.hrc:161
msgctxt "STR_SFX_FILTERNAME_ALL"
msgid "All files"
msgstr "Alle lêers"
#. E39E2
-#: include/sfx2/strings.hrc:161
+#: include/sfx2/strings.hrc:162
msgctxt "STR_SFX_FILTERNAME_PDF"
msgid "PDF files"
msgstr "PDF-lêers"
#. gCHbP
-#: include/sfx2/strings.hrc:162
+#: include/sfx2/strings.hrc:163
msgctxt "RID_SVXSTR_EDITGRFLINK"
msgid "Link Image"
msgstr "Koppel die afbeelding"
#. u9H7a
#. i66948 used in project scripting
-#: include/sfx2/strings.hrc:164
+#: include/sfx2/strings.hrc:165
msgctxt "STR_ERRUNOEVENTBINDUNG"
msgid ""
"An appropriate component method %1\n"
@@ -915,43 +921,43 @@ msgstr ""
"Kontroleer die spelling van die metodenaam."
#. 2FLYB
-#: include/sfx2/strings.hrc:165
+#: include/sfx2/strings.hrc:166
msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeldlêer kan nie oopgemaak word nie"
#. 6eLsb
-#: include/sfx2/strings.hrc:166
+#: include/sfx2/strings.hrc:167
msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeldlêer kan nie gelees word nie"
#. HGRsV
-#: include/sfx2/strings.hrc:167
+#: include/sfx2/strings.hrc:168
msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeldformaat"
#. YJhGK
-#: include/sfx2/strings.hrc:168
+#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
msgid "This version of the image file is not supported"
msgstr "Hierdie weergawe van die beeldlêer word nie ondersteun nie"
#. Sn8KQ
-#: include/sfx2/strings.hrc:169
+#: include/sfx2/strings.hrc:170
msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeldfilter nie gevind nie"
#. huEFV
-#: include/sfx2/strings.hrc:170
+#: include/sfx2/strings.hrc:171
msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR"
msgid "This is not a text document"
msgstr "Hierdie is nie 'n teks dokument"
#. ejBgZ
-#: include/sfx2/strings.hrc:171
+#: include/sfx2/strings.hrc:172
msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -967,43 +973,43 @@ msgstr ""
"\n"
#. E2CcY
-#: include/sfx2/strings.hrc:172
+#: include/sfx2/strings.hrc:173
msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "Verkeerde wagwoord"
#. 7Ezso
-#: include/sfx2/strings.hrc:173
+#: include/sfx2/strings.hrc:174
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
msgstr "Die OpenPGP sleutel is nie meer beroubaar nie, is of korrup of enkripsie faal."
#. DQCUm
-#: include/sfx2/strings.hrc:175
+#: include/sfx2/strings.hrc:176
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(minstens $(MINLEN) karakters)"
#. ZKZnh
-#: include/sfx2/strings.hrc:176
+#: include/sfx2/strings.hrc:177
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(minstens 1 karakter)"
#. B3WoF
-#: include/sfx2/strings.hrc:177
+#: include/sfx2/strings.hrc:178
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(Die wagwoord kan leeg wees)"
#. iBD9D
-#: include/sfx2/strings.hrc:178
+#: include/sfx2/strings.hrc:179
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "Die aksie kon nie uitgevoer word nie. Die %PRODUCTNAME-programmodule wat vir hierdie aksie benodig word, is tans nie geïnstalleer nie."
#. TXAV5
-#: include/sfx2/strings.hrc:180
+#: include/sfx2/strings.hrc:181
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -1013,7 +1019,7 @@ msgstr ""
"Wil u dit nou installeer?"
#. gQhYY
-#: include/sfx2/strings.hrc:181
+#: include/sfx2/strings.hrc:182
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -1023,184 +1029,184 @@ msgstr ""
"U kan inligting oor bestellings op ons tuisblad kry."
#. Y9yeS
-#: include/sfx2/strings.hrc:183
+#: include/sfx2/strings.hrc:184
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "Welkom by %PRODUCTNAME."
#. DVEkR
-#: include/sfx2/strings.hrc:184
+#: include/sfx2/strings.hrc:185
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or open an app to create one."
msgstr "Los 'n dokument hier of maak 'n toep oop om een te skep."
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
-#: include/sfx2/strings.hrc:187
+#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
msgstr "Teks"
#. eG5qc
-#: include/sfx2/strings.hrc:188
+#: include/sfx2/strings.hrc:189
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
msgstr "Standaard Uitdrukking"
#. TaDCG
-#: include/sfx2/strings.hrc:189
+#: include/sfx2/strings.hrc:190
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
msgstr "Vooraf gedefinieerd"
#. bDjwW
-#: include/sfx2/strings.hrc:190
+#: include/sfx2/strings.hrc:191
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
#. YgzCk
#. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog
-#: include/sfx2/strings.hrc:193
+#: include/sfx2/strings.hrc:194
msgctxt "STR_REDACTION_YES"
msgid "Yes"
msgstr "Ja"
#. oZNaM
-#: include/sfx2/strings.hrc:194
+#: include/sfx2/strings.hrc:195
msgctxt "STR_REDACTION_NO"
msgid "No"
msgstr "Nee"
#. FM3Gf
#. Translators: Misc strings of the Auto Redaction dialog
-#: include/sfx2/strings.hrc:197
+#: include/sfx2/strings.hrc:198
msgctxt "STR_REDACTION_TARGET"
msgid "Target"
msgstr "Doelwit"
#. m2i7V
-#: include/sfx2/strings.hrc:198
+#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
msgstr "Laai Doelwitte"
#. HgrwX
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:200
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
msgstr "Stoor Doelwitte"
#. MYMTF
-#: include/sfx2/strings.hrc:200
+#: include/sfx2/strings.hrc:201
msgctxt "STR_REDACTION_FIELDS_REQUIRED"
msgid "All fields are required"
msgstr "Al die velde word vereis"
#. rQS6M
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:202
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
msgstr "Daar is alreeds 'n Doelwit met die naam"
#. s248s
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:203
msgctxt "STR_REDACTION_MULTI_EDIT"
msgid "You have selected multiple targets, but only one target can be edited at once."
msgstr "Jy het veelvuldige Doelwitte gekies, meer slegs een kan op 'n slag redigeer word."
#. BTayC
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:204
msgctxt "STR_REDACTION_MULTI_DELETE"
msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?"
msgstr "Is u seker dat u $(TARGETSCOUNT) doelwitte gelyktydig wil skrap?"
#. qFqDC
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_JSON_FILE_FILTER"
msgid "Target Set (*.json)"
msgstr "Doelversameling (*.json)"
#. EGCo6
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
msgstr "Doel redigeer"
#. ACY9D
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
msgstr "Kon nie 'n nuwe doelwit byvoeg nie. Rapporteer asb. hierdie voorval."
#. 6Jog7
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:208
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly."
msgstr "Tekenmodule is nodig vir redaksie. Maak seker dat %PRODUCTNAME Draw geïnstalleer is en korrek werk."
#. FQ9kN
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:210
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "Huidige weergawe"
#. GFAEM
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:211
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "Voer uit"
#. 2DBBC
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:212
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "Voeg in"
#. VBKtt
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:213
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "Voeg ~in"
#. DcLFD
-#: include/sfx2/strings.hrc:213
+#: include/sfx2/strings.hrc:214
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
msgstr "<Alle beelde>"
#. tPDwc
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:215
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "Stoor ’n kopie"
#. CrEzt
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:216
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to Original Document"
msgstr "Vergelyk met Oorspronklike Dokument"
#. 4qMCh
-#: include/sfx2/strings.hrc:216
+#: include/sfx2/strings.hrc:217
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "Smelt saam met"
#. cDMBG
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:219
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME-dokument"
#. 43QYo
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:220
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. jQX7C
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:221
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -1210,31 +1216,31 @@ msgstr ""
"Die waarde sal as teks gestoor word."
#. cinmA
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:223
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Styl bestaan reeds. Oorskryf?"
#. f627N
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:225
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Stel te~rug"
#. EXGDb
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:226
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Hierdie naam is reeds in gebruik."
#. N5aeR
-#: include/sfx2/strings.hrc:226
+#: include/sfx2/strings.hrc:227
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Hierdie styl bestaan nie."
#. CYQwN
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:228
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -1244,7 +1250,7 @@ msgstr ""
"omdat dit tot 'n rekursiewe verwysing sou lei."
#. ECPSd
-#: include/sfx2/strings.hrc:228
+#: include/sfx2/strings.hrc:229
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -1254,7 +1260,7 @@ msgstr ""
"Kies asseblief ’n ander naam."
#. NWDmA
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:230
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1266,73 +1272,73 @@ msgstr ""
"Wil u die geselekteerde styl uitvee?\n"
#. kuD77
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:231
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Style in gebruik: "
#. 4JhEW
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:232
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator."
#. Acahp
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:233
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Foutiewe wagwoordbevestiging"
#. 6uv4b
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Stuur"
#. 9HHQw
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:235
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
#. 7baC6
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:237
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Sien weergaweopmerking"
#. LGiF8
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:238
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(geen naam gegee nie)"
#. rZ4Ao
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:240
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiërargies"
#. 4VXDe
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:242
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opgeneem is, sal verlore gaan."
#. 9MnrK
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:243
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Kanselleer opname"
#. m9FCm
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:245
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Die sjablone word vir eerste gebruik geïnisialiseer."
#. F3ym2
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:247
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1342,7 +1348,7 @@ msgstr ""
"Kies asseblief 'n drukker en probeer weer."
#. a3NTu
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:248
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1352,19 +1358,19 @@ msgstr ""
"Gaan asseblief u drukkeropstelling na."
#. acKHX
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:249
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drukker besig"
#. hDEUj
-#: include/sfx2/strings.hrc:249
+#: include/sfx2/strings.hrc:250
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (leesalleen)"
#. uL87C
-#: include/sfx2/strings.hrc:250
+#: include/sfx2/strings.hrc:251
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1376,7 +1382,7 @@ msgstr ""
"in die aktiewe dokument gestoor word?"
#. cxuAH
-#: include/sfx2/strings.hrc:251
+#: include/sfx2/strings.hrc:252
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1388,7 +1394,7 @@ msgstr ""
"aktiewe dokument gestoor word?"
#. 4QJxB
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1400,7 +1406,7 @@ msgstr ""
"in die aktiewe dokument gestoor word?"
#. RXbfs
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1410,7 +1416,7 @@ msgstr ""
"omdat ’n druktaak uitgevoer word."
#. YGyQP
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1421,7 +1427,7 @@ msgstr ""
#. 3nzi6
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1433,19 +1439,19 @@ msgstr ""
"Foutkode is $1"
#. ZWTDr
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Fout met stuur van e-pos"
#. QVS2D
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Hierdie dokument kan nie geredigeer word nie, moontlik weens ontbrekende toegangsregte. Wil u ’n kopie van die dokument redigeer?"
#. ZdGNX
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_QUERY_OPENASTEMPLATE_LOCKED"
msgid ""
"This document cannot be edited, because it is locked in another session.%LOCKINFO\n"
@@ -1455,591 +1461,597 @@ msgstr ""
"Wil u 'n kopie van die dokument wysig?"
#. n3sMB
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid "You can also try to ignore the lock and open the file for editing."
msgstr "U kan ook probeer om die versperring te ignoreer en die lêer oopmaak vir redigering."
#. yaKxR
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Open ~kopie"
#. UYkFP
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Open"
#. GcSXH
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (herstelde dokument)"
#. HPqkX
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Hierdie dokument is nie op die bediener afgemeld nie."
#. uPc29
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Help ons om %PRODUCTNAME beter te maak!"
#. PboiP
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Raak betrokke"
#. GuLGH
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "U donasies ondersteun ons wêreldwye gemeenskap."
#. KzgoD
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Doneer"
#. G8bbK
-#: include/sfx2/strings.hrc:269
+#: include/sfx2/strings.hrc:270
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
msgstr "u loop tans weergawe %PRODUCTVERSION van %PRODUCTNAME vir die eerste keer. Wil u sien wat nuut is?"
#. J5UkB
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
msgstr "Weergawe Inligting"
#. c7NPT
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dié dokument is oop in leesalleen modus."
#. KyyFk
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Dié PDF is oop in leesalleen modus om die bestaande lêer te kan onderteken."
#. MENvD
-#: include/sfx2/strings.hrc:273
+#: include/sfx2/strings.hrc:274
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Die klassifikasie etiket van hierdie dokument is %1."
#. 3B3ij
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Die dokument moet eers geklassifiseer word, voordat die klembord geplak kan word."
#. BYcYH
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Hierdie dokument het 'n laer vlak klassifikasie as die inhoud van die klembord."
#. EJPzh
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Vlak"
#. itVew
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nasionale sekuriteit:"
#. ZBXbG
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Uitvoer Kontrole:"
#. QAnvx
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Sluit Af."
#. PwPNw
-#: include/sfx2/strings.hrc:280
+#: include/sfx2/strings.hrc:281
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Redigeer dokument"
#. FCeC5
-#: include/sfx2/strings.hrc:281
+#: include/sfx2/strings.hrc:282
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Onderteken dokument"
#. MEfTq
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_READONLY_FINISH_SIGN"
msgid "Finish Signing"
msgstr "Finse Simbole"
#. pkWmU
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dié dokument het ’n ongeldige handtekening."
#. Vd3CU
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Die handtekening is geldig, maar die dokument is gewysig."
#. 2HNfx
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr "Minstens een handtekening het probleme: die sertifikaat is nie gevalideer nie."
#. tjCmr
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "At least one signature has problems: the document is only partially signed."
msgstr "Minstens een handtekening het probleme: die dokument is slegs gedeeltelik onderteken."
#. mU6ot
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Die sertifikaat kon nie gevalideer word nie en die dokument is slegs gedeeltelik onderteken."
#. FKDbE
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dié dokument is digitaal onderteken en die handtekening is geldig."
#. rMGka
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Wys handtekeninge"
#. fkzJb
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TRACK_CHANGES_BUTTON"
msgid "Show Toolbar"
msgstr "Vertoon Werkbalk"
#. 68ZqS
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE"
msgid "Hide Toolbar"
msgstr "Verberg Werkbalk"
#. BzVAA
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr "Leer meer"
#. BSyb4
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_REFRESH_MASTER_PASSWORD"
msgid "The master password is stored in an outdated format, you should refresh it"
msgstr "Die hoofwagwoord is in 'n verouderde formaat gestoor, jy behoort dit te hernu"
#. ysChU
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_REFRESH_PASSWORD"
msgid "Refresh Password"
msgstr "Vernuwe wagwoord"
#. vf46C
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_MACROS_DISABLED_TITLE"
msgid "Macros disabled"
msgstr "Makros gedeaktiveer"
#. zkERU
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_CONTAINS_MACROS"
msgid "Macros in this document are disabled due to the Macro Security settings."
msgstr "Makros in hierdie dokument is gedeaktiveer, weens die Makro Veiligheidsinstellings."
#. XbFQD
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makros is gedeaktiveer, weens die Makro Veiligheidsinstellings."
#. DRiDD
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makros is onderteken, maar die dokument (bevattende dokument gebeure) is ononderteken."
#. BSkEp
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Vertoon Makros"
#. mBmGc
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Vertoon Gebeure"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grys Elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Byekorf"
#. uwaPH
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blou Kromme"
#. hHRDz
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Bloudruk Planne"
#. MAnPU
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bonbon"
#. jEiAn
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Geel Motief"
#. QDNuB
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Woudvoël"
#. TT8G5
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Verfrissend"
#. C5N9D
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasie"
#. fCKG9
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ligte"
#. pcLWs
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Florerende Vryheid"
#. xo2gC
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis."
#. FFDBk
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Middernag Blou"
#. yiCzk
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur Illustrasie"
#. cCZzC
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
#. Ji4Cw
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio."
#. ysBGy
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Vordering"
#. gtPt9
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonsondergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradisioneel"
#. MSY8y
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samevatting"
#. hCpfD
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Verstek"
#. d7Hyk
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne sakebrief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne sakebrief sans-serif"
#. XdU49
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visetekaartjie met logo"
#. UAmSj
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Eenvoudig"
#. W7NVH
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:337
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Vereenvoudige Chinese Normaal"
-#. ZaGGB
+#. eBJ96
#: include/sfx2/strings.hrc:338
+msgctxt "STR_TEMPLATE_NAME34"
+msgid "Japanese Normal"
+msgstr ""
+
+#. ZaGGB
+#: include/sfx2/strings.hrc:340
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
#. JReRY
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles uitwis"
#. yC8Gs
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wagwoordlengte"
#. FKFmJ
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Die wagwoord wat u ingevoer het, veroorsaak probleme met versoenbaarheid. Voer 'n wagwoord, wat korter as 52 grepe is of langer is as 55 grepe."
#. jBQFN
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-Klik, om die skakel: %{link} te open"
#. jC3AK
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliek om die skakel: %{link} te open"
#. eFJMp
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(gebruik deur: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Spreiblad"
#. 3UZXB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
#. noN5s
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. QpuFo
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Onlangs gebruik"
#. EcAjb
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Geen onlangse karakters"
#. tfjbD
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Herstel Alle _Verstek Sjablone"
#. GWuDE
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Herstel ~Verstek Teks Dokument"
#. j5eV8
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:360
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Herstel ~Verstek Spreiblad"
#. mWp3t
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:361
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Herstel ~Verstek Voorlegging"
#. wfExB
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:362
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Herstel ~Verstek Tekening"
#. BFaGA
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:363
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Intrek"
#. 8Cwfk
-#: include/sfx2/strings.hrc:362
+#: include/sfx2/strings.hrc:364
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~Uitbreidings"
#. idGvM
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:365
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Hernoem"
#. EyjE3
-#: include/sfx2/strings.hrc:364
+#: include/sfx2/strings.hrc:366
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Hernoem Kategorie"
#. T79Eb
-#: include/sfx2/strings.hrc:365
+#: include/sfx2/strings.hrc:367
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nuwe Kategorie"
#. fCRA7
-#: include/sfx2/strings.hrc:367
+#: include/sfx2/strings.hrc:369
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO Objek Inspekteur"
@@ -2934,7 +2946,7 @@ msgid "Recent"
msgstr "Onlangs"
#. BQwCQ
-#: sfx2/uiconfig/ui/charmapcontrol.ui:500
+#: sfx2/uiconfig/ui/charmapcontrol.ui:514
msgctxt "charmapcontrol|specialchardlg"
msgid "More Characters…"
msgstr "Meer karakters…"
@@ -3035,8 +3047,20 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr "Hier kan u aan u dokument gebruikergedefinieerde velde toewys."
+#. a9n4d
+#: sfx2/uiconfig/ui/deck.ui:102
+msgctxt "deck|SFX_STR_SIDEBAR_HELP_DECK"
+msgid "Help about this sidebar deck"
+msgstr ""
+
+#. fiTDC
+#: sfx2/uiconfig/ui/deck.ui:108
+msgctxt "deck|SFX_STR_SIDEBAR_HELP_DECK"
+msgid "Sidebar Deck Help"
+msgstr ""
+
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:121 sfx2/uiconfig/ui/deck.ui:126
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sluit Sybalk"
@@ -3059,38 +3083,92 @@ msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "S_leutelwoorde:"
-#. Nayo4
+#. FXZzx
#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
+msgctxt "descriptioninfopage|label31"
+msgid "Co_ntributor:"
+msgstr ""
+
+#. eKsAC
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
+msgctxt "descriptioninfopage|label32"
+msgid "Co_verage:"
+msgstr ""
+
+#. Wtpt7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
+msgctxt "descriptioninfopage|label37"
+msgid "_Identifier:"
+msgstr ""
+
+#. 73G3F
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
+msgctxt "descriptioninfopage|label39"
+msgid "_Publisher:"
+msgstr ""
+
+#. Axu5g
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
+msgctxt "descriptioninfopage|label40"
+msgid "R_elation:"
+msgstr ""
+
+#. AGDpc
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
+msgctxt "descriptioninfopage|label41"
+msgid "Ri_ghts:"
+msgstr ""
+
+#. eK4rF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
+msgctxt "descriptioninfopage|label42"
+msgid "So_urce:"
+msgstr ""
+
+#. RFBPC
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
+msgctxt "descriptioninfopage|label45"
+msgid "T_ype:"
+msgstr ""
+
+#. Nayo4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "_Opmerkings:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:79
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "Voer 'n titel vir die dokument in. Die titel mag verskil van die lêernaam."
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:96
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr "Voer 'n onderwerp vir die dokument in. So kan 'n onderwerp gebruik word om dokumente tematies te groepeer."
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:113
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr "Voer die sleutelwoorde in waarmee u die inhoud van die dokument wil indekseer. Individuele sleutelwoorde word deur komma's geskei. 'n Sleutelwoord kan spasies en kommapunte bevat."
+#. k4Umi
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+msgctxt "descriptioninfopage|extended_tip|contributor"
+msgid "contributor accessible description"
+msgstr ""
+
#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:137
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
msgctxt "descriptioninfopage|extended_tip|comments"
msgid "Enter comments to help identify the document."
msgstr "Voer 'n opmerking in sodat u die dokument maklik kan identifiseer."
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:150
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "Bevat beskrywende inligting oor die dokument."
@@ -4051,20 +4129,26 @@ msgctxt "managestylepage|editlinkstyle"
msgid "Edit Style"
msgstr "Redigeer styl"
-#. cKjrA
+#. cFCws
#: sfx2/uiconfig/ui/managestylepage.ui:147
msgctxt "managestylepage|autoupdate"
-msgid "_AutoUpdate"
-msgstr "Werk _outomaties by"
+msgid "_Automatic update from document"
+msgstr ""
+
+#. TZByH
+#: sfx2/uiconfig/ui/managestylepage.ui:153
+msgctxt "managestylepage|autoupdate|tooltip_text"
+msgid "Any paragraph formatting changes in the document to a paragraph with this style are applied automatically to modify the paragraph style."
+msgstr ""
#. oTXJz
-#: sfx2/uiconfig/ui/managestylepage.ui:192
+#: sfx2/uiconfig/ui/managestylepage.ui:193
msgctxt "managestylepage|label1"
msgid "Style"
msgstr "Styl"
#. NXG9o
-#: sfx2/uiconfig/ui/managestylepage.ui:230
+#: sfx2/uiconfig/ui/managestylepage.ui:231
msgctxt "managestylepage|label2"
msgid "Contains"
msgstr "Bevat"
@@ -5084,43 +5168,43 @@ msgid "List View"
msgstr "Lys weergawe"
#. pm89q
-#: sfx2/uiconfig/ui/templatepanel.ui:139
+#: sfx2/uiconfig/ui/templatepanel.ui:131
msgctxt "templatepanel|STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Vuller Formaat Modus"
#. GLRFT
-#: sfx2/uiconfig/ui/templatepanel.ui:152
+#: sfx2/uiconfig/ui/templatepanel.ui:143
msgctxt "templatepanel|STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nuwe Profiel uit Keuse"
#. tAdD9
-#: sfx2/uiconfig/ui/templatepanel.ui:165
+#: sfx2/uiconfig/ui/templatepanel.ui:155
msgctxt "templatepanel|STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Aksies voor Oopmaakprofiele"
#. Xk5tD
-#: sfx2/uiconfig/ui/templatepanel.ui:178
+#: sfx2/uiconfig/ui/templatepanel.ui:167
msgctxt "templatepanel|STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Wysig Oopmaakprofiel"
#. irBvi
-#: sfx2/uiconfig/ui/templatepanel.ui:246 sfx2/uiconfig/ui/templatepanel.ui:303
+#: sfx2/uiconfig/ui/templatepanel.ui:235 sfx2/uiconfig/ui/templatepanel.ui:292
msgctxt "templatepanel|STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lys van Oopmaak profiele"
#. FHud7
-#: sfx2/uiconfig/ui/templatepanel.ui:321
+#: sfx2/uiconfig/ui/templatepanel.ui:310
msgctxt "commontemplate|STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Vertoon Voorskou"
#. BjVRZ
-#: sfx2/uiconfig/ui/templatepanel.ui:336
+#: sfx2/uiconfig/ui/templatepanel.ui:325
msgctxt "commontemplate|STR_HIGHLIGHT_CHECKBOX"
msgid "Spotlight"
msgstr "Kollig"
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index 0b49ba5ce3f..cf7d50476c6 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/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: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-10-21 14:18+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548164561.000000\n"
#. GrDhX
@@ -2974,176 +2974,194 @@ msgctxt "fontsizedialog|extended_tip|FontSizeDialog"
msgid "Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base."
msgstr "In hierdie dialoog definieer u die lettergroottes in die formule. Bepaal die basisgrootte en vir alle elemente van die formule, in verhouding met die basis."
-#. Ahejh
+#. 38iEb
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:12
+msgctxt "fonttypedialog|menuitem0"
+msgid "_Math"
+msgstr ""
+
+#. Ahejh
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:20
msgctxt "fonttypedialog|menuitem1"
msgid "_Variables"
msgstr "_Veranderlikes"
#. wWEhm
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:20
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:28
msgctxt "fonttypedialog|menuitem2"
msgid "_Functions"
msgstr "_Funksies"
#. vGby3
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:28
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:36
msgctxt "fonttypedialog|menuitem3"
msgid "_Numbers"
msgstr "Getalle"
#. usaFG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:36
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:44
msgctxt "fonttypedialog|menuitem4"
msgid "_Text"
msgstr "Teks"
#. FRdhi
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:44
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:52
msgctxt "fonttypedialog|menuitem5"
msgid "_Serif"
msgstr "Serif"
#. qCEgG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:52
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:60
msgctxt "fonttypedialog|menuitem6"
msgid "S_ans-serif"
msgstr "Sans-serif"
#. gDXFw
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:60
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
msgctxt "fonttypedialog|menuitem7"
msgid "Fixe_d-width"
msgstr "Mono"
#. dXCDj
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:76
msgctxt "fonttypedialog|FontsDialog"
msgid "Fonts"
msgstr "Fonte"
#. p43oF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:98
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:106
msgctxt "fonttypedialog|modify"
msgid "_Modify"
msgstr "Wysig"
#. uQCNw
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:111
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:119
msgctxt "fonttypedialog|extended_tip|modify"
msgid "Click one of the choices from this pop-up menu to access the Fonts dialog, where you can define the font and attributes for the respective formula and for custom fonts."
msgstr "Kies een van die inskrywings in hierdie opwip keuselys om die Font-dialoog te open, waarin u die font en eienskappe kan definieer vir formule-elemente en gebruikersfonts."
#. sdTfG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:123
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:131
msgctxt "fonttypedialog|default"
msgid "_Default"
msgstr "Verstek"
#. gAvNx
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:130
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:138
msgctxt "fonttypedialog|extended_tip|default"
msgid "Click this button to save your changes as the default for all new formulas."
msgstr "Klik hierdie knoppie om wysigings as die verstek vir alle nuwe formules te stoor."
+#. i6SEE
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:215
+msgctxt "fonttypedialog|label1"
+msgid "_Math:"
+msgstr ""
+
#. EhoBp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:207
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:232
msgctxt "fonttypedialog|label1"
msgid "_Variables:"
msgstr "Veranderlikes:"
#. BCVC9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:224
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:249
msgctxt "fonttypedialog|label2"
msgid "_Functions:"
msgstr "Funksies"
#. zFooF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:241
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:266
msgctxt "fonttypedialog|label3"
msgid "_Numbers:"
msgstr "Getalle:"
#. bYvD9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:258
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:283
msgctxt "fonttypedialog|label4"
msgid "_Text:"
msgstr "Teks:"
+#. znrKy
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:303
+msgctxt "fonttypedialog|extended_tip|mathCB"
+msgid "You can select the font for the math symbols in your formula."
+msgstr ""
+
#. daPBN
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:278
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:319
msgctxt "fonttypedialog|extended_tip|variableCB"
msgid "You can select the font for the variables in your formula."
msgstr "U kan die font vir die veranderlikes in u formule selekteer"
#. CUQQ5
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:294
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:335
msgctxt "fonttypedialog|extended_tip|functionCB"
msgid "Select the font for names and properties of functions."
msgstr "Selekteer die font vir name en kenmerke van funksies"
#. Ap4gM
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:310
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:351
msgctxt "fonttypedialog|extended_tip|numberCB"
msgid "You can select the font for the numbers in your formula."
msgstr "U kan die font vir die syfers in u formule selekteer"
#. gt2wF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:326
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:367
msgctxt "fonttypedialog|extended_tip|textCB"
msgid "Define the font for the text in your formula here."
msgstr "Definieer die font vir die teks in u formule hier"
#. PEDax
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:341
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:382
msgctxt "fonttypedialog|formulaL"
msgid "Formula Fonts"
msgstr "Formule Fonts"
#. FZyFB
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:375
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:416
msgctxt "fonttypedialog|label5"
msgid "_Serif:"
msgstr "Serif"
#. TAgaq
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:392
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:433
msgctxt "fonttypedialog|label6"
msgid "S_ans-serif:"
msgstr "Sans-serif"
#. qzEea
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:409
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:450
msgctxt "fonttypedialog|label7"
msgid "F_ixed-width:"
msgstr "Mono:"
#. pJfBE
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:429
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:470
msgctxt "fonttypedialog|extended_tip|serifCB"
msgid "You can specify the font to be used as serif font."
msgstr "U kan die font spesifiseer vir gebruik as Serif font."
#. mD8Qp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:445
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:486
msgctxt "fonttypedialog|extended_tip|sansCB"
msgid "You can specify the font to be used for sans serif font."
msgstr "U kan die font spesifiseer vir gebruik as Sans Serif font."
#. BUA9M
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:461
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:502
msgctxt "fonttypedialog|extended_tip|fixedCB"
msgid "You can specify the font to be used for fixed-width font."
msgstr "U kan die font spesifiseer vir gebruik as vaste-wydte font."
#. PgQfV
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:476
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:517
msgctxt "fonttypedialog|customL"
msgid "Custom Fonts"
msgstr "Aangepaste lettertipes"
#. gXDAz
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:505
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:546
msgctxt "fonttypedialog|extended_tip|FontsDialog"
msgid "Defines the fonts that can be applied to formula elements."
msgstr "Spesifiseer die lettertipes wat vir die formule-elemente gebruik word."
@@ -3346,57 +3364,63 @@ msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "Drukformaat"
-#. s7A4r
+#. CUrCA
#: starmath/uiconfig/smath/ui/smathsettings.ui:257
+msgctxt "smathsettings|enableinlineedit"
+msgid "Enable visual editing"
+msgstr ""
+
+#. s7A4r
+#: starmath/uiconfig/smath/ui/smathsettings.ui:272
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "Ignoreer ~~ en ' Simbole"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:265
+#: starmath/uiconfig/smath/ui/smathsettings.ui:280
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr "Hierdie plekhouers word verwyder as hulle aan die einde van die lyn is."
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:277
+#: starmath/uiconfig/smath/ui/smathsettings.ui:292
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "Sluit in, slegs gebruikte simbole (kleiner lêer grootte)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:285
+#: starmath/uiconfig/smath/ui/smathsettings.ui:300
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr "Stoor slegs die betrokke simbole saam, in die formule gebruik."
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:297
+#: starmath/uiconfig/smath/ui/smathsettings.ui:312
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "Sluit outomaties: vierkantige-, ronde- en krul-hakies"
#. M4uaa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+#: starmath/uiconfig/smath/ui/smathsettings.ui:334
msgctxt "smathsettings|smzoom"
msgid "Scaling code input window:"
msgstr "Skaal kode-invoer venster:"
#. sZMPm
-#: starmath/uiconfig/smath/ui/smathsettings.ui:337
-#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+#: starmath/uiconfig/smath/ui/smathsettings.ui:348
+#: starmath/uiconfig/smath/ui/smathsettings.ui:355
msgctxt "extended_tip|smzoom"
msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
msgstr "Verminder of vergroot die formulekode se grootte met 'n gespesifiseerde vergrotingsfaktor."
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:363
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "Diverse Opsies"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:378
+#: starmath/uiconfig/smath/ui/smathsettings.ui:393
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr "Hier definieer u formule-instellings wat op alle dokumente van toepassing is."
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 00fbedaed19..9ed57dc98e1 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/svtools/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: 2023-05-31 16:28+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-06-05 13:35+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560975732.000000\n"
#. fLdeV
@@ -5834,20 +5834,14 @@ msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Form menu, %PRODUCTNAME must be restarted."
msgstr "%PRODUCTNAME moet herbegin word om die vorm-kieslys te herstruktureer."
-#. yojAQ
-#: svtools/uiconfig/ui/restartdialog.ui:265
-msgctxt "restartdialog|reason_save"
-msgid "For the modified save settings to take effect, %PRODUCTNAME must be restarted."
-msgstr "Om die gewysigde stoor instellings te laat geld, moet %PRODUCTNAME herbegin word."
-
#. weAzr
-#: svtools/uiconfig/ui/restartdialog.ui:280
+#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|label"
msgid "Do you want to restart %PRODUCTNAME now?"
msgstr "Wil u nou %PRODUCTNAME herbegin?"
#. fpc8k
-#: svtools/uiconfig/ui/restartdialog.ui:294
+#: svtools/uiconfig/ui/restartdialog.ui:279
msgctxt "restartdialog|reason_skia"
msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr "Vir die Skia-veranderinge in werking te stel, moet %PRODUCTNAME herbegin word."
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 9685344ec58..b0f99a58b9e 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-12 10:12+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
@@ -5274,11 +5274,11 @@ msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr "Gestreep"
-#. T7sVF
+#. XAree
#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
-msgid "Line Style 9"
-msgstr "Lyn styl 9"
+msgid "Sparse Dash"
+msgstr ""
#. evPXr
#: include/svx/strings.hrc:924
@@ -6329,359 +6329,365 @@ msgctxt "RID_SVXSTR_THEME_EFFECT_DARKER"
msgid "$THEME_NAME, $PERCENTAGE% Darker"
msgstr "$THEME_NAME, $PERCENTAGE% Donker"
+#. PWRtb
+#: include/svx/strings.hrc:1138
+msgctxt "RID_SVXSTR_UNDO_THEME_COLOR_CHANGE"
+msgid "Theme Color Change"
+msgstr ""
+
#. DJGyY
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "Ekstrusie"
#. TyWTi
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "Pas ekstrusie aan/af"
#. DKFYE
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "Kantel af"
#. 2Rrxc
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "Kantel op"
#. eDpJK
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "Kantel links"
#. CWDSN
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "Kantel regs"
#. CxYgt
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "Verander ekstrusiediepte"
#. c5JCp
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "Verander gerigtheid"
#. KDSyh
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Verander projeksiesoort"
#. JpzeS
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "Verander beligting"
#. j4AR9
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "Verander helderheid"
#. yA2xm
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "Verander ekstrusieoppervlak"
#. DFEZP
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "Verander ekstrusiekleur"
#. uPyWe
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "R:"
#. UMMJN
-#: include/svx/strings.hrc:1154
+#: include/svx/strings.hrc:1155
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "G:"
#. ocdkG
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "B:"
#. L962H
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "Fontwerk"
#. 7RVov
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "Pas Fontwerk-vorm toe"
#. h3CLw
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "Pas Fontwerk-selfdeletterhoogtes toe"
#. 6h2dG
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "Pas Fontwerk-belyning toe"
#. eKHcV
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "Pas Fontwerk-karakterspasiëring toe"
#. oo88Y
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "met"
#. 4sz83
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "Styl"
#. fEHXC
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "en"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "Hoekbeheer"
#. CUEEW
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "Seleksie van 'n hoekpunt."
#. cQmVp
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "Bo links"
#. TtnJn
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "Bo middel"
#. UERVC
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "Bo regs"
#. CznfN
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "Links middel"
#. jvzC7
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "Middel"
#. HPtYD
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "Regs middel"
#. v4SqB
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "Onder links"
#. daA8a
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "Onder middel"
#. DGWf8
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "Onder regs"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "Kontoerbeheer"
#. aMva8
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "Dit is waar u die kontoer kan redigeer."
#. DXEuF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "Spesialekarakter-keuse"
#. JfRzP
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "Kies spesiale karakters in hierdie area."
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "Karakterkode "
#. HECeC
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "Toevoer benodig in veld '#'. Tik asseblief 'n waarde in."
#. w4wm8
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "Vorms"
#. cz8aS
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "Geen beheer geselekteer nie"
#. JG7Es
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "Eienskappe: "
#. YQvBF
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "Vormeienskappe"
#. qS9Rn
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "Vormnavigator"
#. PzEVD
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "Vorm"
#. FWPxF
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "Verborge"
#. DnoDH
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "Vorm"
#. Ba4Gy
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "Versteekte kontrole"
#. wtZqP
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "Beheer"
#. HvXRK
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "Rekord"
#. HmTfB
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "van"
#. NZ68L
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "Voeg veld by:"
#. vGXiw
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "Kan nie data na databasis skryf nie"
#. zzFRi
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Sintaksfout in navraaguitdrukking"
#. fS8JJ
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "U beoog om 1 rekord te skrap."
#. Qb4Gk
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# rekords sal geskrap word."
#. zSJQe
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6691,337 +6697,337 @@ msgstr ""
"Wil u in elk geval voortgaan?"
#. Kb7sF
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "Navigasiebalk"
#. pKEQb
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "Kol"
#. FXRKA
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "Stel eienskap '#' op"
#. hXjTN
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "Voeg in houer in"
#. BWpyC
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "Skrap #"
#. ZeaDk
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "Skrap # objekte"
#. VgGrE
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "Vervang 'n houerelement"
#. FoXgt
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "Vervang beheer"
#. ZGDAr
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "Tekskassie"
#. CBmAL
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1216
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "Merkblokkie"
#. xwuJF
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "Kombinasiekassie"
#. WiNUf
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "Lyskassie"
#. a7gAj
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "Datum-veld"
#. EaBTj
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "Tyd-veld"
#. DWfsm
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "Numeriese veld"
#. TYjnr
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "Geldeenheidveld"
#. B6MEP
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "Patroonveld"
#. DEn9D
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "Geformateerde veld"
#. V4iMu
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "Druk knoppie"
#. TreFC
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "Opsieknoppie"
#. NFysA
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "Etiketveld"
#. E5mMK
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "Groepkassie"
#. 5474w
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "Beeldknoppie"
#. qT2Ed
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "Beeldbeheer"
#. 6Qvho
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "Lêerseleksie"
#. uEYBR
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "Tabelbeheer "
#. 3SUEn
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "Rolstaaf"
#. VtEN6
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "Spinknoppie"
#. eGgm4
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "Navigasiebalk"
#. yME46
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "Veelvoudige seleksie"
#. s94UU
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr "Datum en Tyd veld"
#. PzA5d
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "Geen dataverwante beheerinstrumente in huidige vorm nie!"
#. ZyBEz
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (Datum)"
#. guA5u
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (Tyd)"
#. 2wgdY
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "Filternavigator"
#. BUYuD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "Filter vir"
#. AcTBB
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "Of"
#. 6RPtu
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "Geldige gebinde beheerinstrumente wat in die tabelaansig gebruik kan word bestaan nie in die huidige vorm nie."
#. iEoGb
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<OutoVeld>"
#. Da6gx
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Sintaksfout in SQL-stelling"
#. ZoEuu
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "Die waarde #1 kan nie saam met LIKE gebruik word nie."
#. 75ECE
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE kan nie saam met hierdie veld gebruik word nie."
#. tzFv5
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "Die waarde wat ingevoer is, is nie 'n geldige datum nie. Tik asseblief 'n datum in 'n geldige formaat in, byvoorbeeld MM/DD/JJ."
#. y6Z26
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "Die veld kan nie met 'n heelgetal vergelyk word nie."
#. F8FgA
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "Die databasis bevat nie 'n tabel genaamd \"#\" nie."
#. EDcU7
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "Die databasis bevat nie 'n tabel of 'n navraag genaamd \"#\" nie."
#. YBFF5
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "Die databasis bevat reeds 'n tabel of 'n aansig genaamd \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "Die databasis bevat reeds 'n navraag genaamd \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "Die kolom \"#1\" is onbekend in die tabel \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "Die veld kan nie met 'n wisselpuntgetal vergelyk word nie."
#. CEg85
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "Die toegevoerde kriterium kan nie met hierdie veld vergelyk word nie."
#. ZGAAQ
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "Datanavigator"
#. W4uM2
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (leesalleen)"
#. DgfNh
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "Die lêer bestaan reeds. Oorheenskryf?"
#. dSYCi
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#object#-etiket"
#. JpaM6
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7031,7 +7037,7 @@ msgstr ""
"Wil u werklik hierdie model skrap?"
#. y5Dyt
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7041,7 +7047,7 @@ msgstr ""
"Wil u werklik die instans skrap?"
#. VEzGF
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7051,13 +7057,13 @@ msgstr ""
"Wil u werklik hierdie element skrap?"
#. 3hF6H
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "Wil u werklik die attribuut '$ATTRIBUTENAME' skrap?"
#. AWEbJ
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7069,7 +7075,7 @@ msgstr ""
"Wil u regtig die indiening skrap?"
#. SGiK5
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7081,1068 +7087,1068 @@ msgstr ""
"Wil u regtig die binding skrap?"
#. 2zzHP
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "Die naam '%1' is nie geldig in XML nie. Tik asseblief 'n ander naam in."
#. 4nAtc
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "Die voorvoegsel '%1' is nie geldig in XML nie. Tik asseblief 'n ander voorvoegsel in."
#. qrFQD
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "Die naam '%1' bestaan reeds. Tik asseblief 'n nuwe naam in."
#. DKkaw
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "Die indiening moet 'n naam hê."
#. xcAaD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "POST"
#. XGRQA
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "PUT"
#. tkRR3
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "GET"
#. fsyAL
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "Geen"
#. Bjxmg
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "Instanse"
#. affmF
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "Dokument"
#. gJLHj
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "Binding: "
#. AEHco
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "Verwysing: "
#. iLaBC
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "Aksie: "
#. HBV5Q
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "Metode: "
#. dAN2F
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "Vervang: "
#. QMiqA
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "Voeg element by"
#. C9YBB
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "Redigeer element"
#. XAh7B
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "Skrap element"
#. CLHER
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "Voeg attribuut by"
#. 6Ycoo
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "Redigeer attribuut"
#. 6dSAd
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "Skrap attribuut"
#. Ljhja
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "Voeg binding by"
#. CHTrw
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "Redigeer binding"
#. yYwEG
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "Skrap binding"
#. yVch8
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "Voeg indiening by"
#. AX58u
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "Redigeer indiening"
#. DFxmD
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "Skrap indiening"
#. qvvD7
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "Element"
#. U4Btb
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "Attribuut"
#. Prceg
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "Virbinding"
#. iFARB
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "Bindinguitdrukking"
#. BTmNa
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "Is u seker u wil die %PRODUCTNAME-dokument herwinningsdata kanselleer?"
#. 5WjQZ
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "Links"
#. JC7pc
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "Regs"
#. MhfuC
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "Middel"
#. kX7GR
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "Desimaal"
#. 7vecp
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "Invoegmodus. Klik om na Oorskryfmodus te wissel."
#. ZCWNC
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "Oorskryfmodus. Klik om na Invoegmodus te wissel."
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "Oorskryf"
#. qqCSF
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "Invoeg"
#. 2BBEb
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr "%1. Klik om die seleksie modus te verander."
#. Dh5A2
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "Digitale handtekening: Die dokument se handtekening is OK."
#. xZprv
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "Digitale handtekening: Die dokument se handtekening is OK, maar die sertifikaat kon nie gevalideer word nie."
#. Yydkh
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr "Digitale handtekening: Die dokumenthandtekening stem nie ooreen met die inhoud van die dokument nie. Ons beveel sterk aan dat u nie hierdie dokument vertrou nie."
#. X7CjP
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "Digitale handtekening: Die dokument is nie onderteken nie."
#. BRmFY
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "Digitale handtekening: Die dokumenthandtekening en die sertifikaat is goed, maar nie alle dele van die dokument is onderteken nie."
#. Swq5S
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "Die dokument is gewysig. Klik om die dokument te stoor."
#. tRWKa
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "Die dokument is onveranderd sedert dit laas gestoor is."
#. 7C8GH
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "Laai tans dokument..."
#. YbNsP
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "Pas skyfie aan na huidige vensterruimte."
#. MJums
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_FIT_PAGE"
msgid "Fit page to current window."
msgstr "Pas bladsy in huidige venster."
#. Fpkx2
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr "Kon nie alle \"SmartArt\" objekte laai nie. Stoor in Microsoft Office 2010 of later weergawe sou die kwessie omseil."
#. CKqDa
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_TABLECELL_HINT"
msgid "Table cell address. Click to open Table Properties dialog."
msgstr "Table sel adres. Muisklik om Tabel Eienskappe dialoog te open."
#. MG6GF
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_SECTION_HINT"
msgid "Section name. Click to open Edit Sections dialog."
msgstr "Afdeling naam. Muisklik om Wysig Afdelings dialoog te open."
#. rLN6T
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_TOC_HINT"
msgid "Table of Contents. Click to open Table of Contents dialog."
msgstr "Inhoudsopgawe. Muisklik om Inhoudsopgawe te open."
#. gnk6E
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_NUMBERING_HINT"
msgid "Numbering Level. Click to open Numbering dialog."
msgstr "Numering Vlak. Muisklik om Numering dialoog te open."
#. aT6VC
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_LIST_STYLE_HINT"
msgid "List Style and Level."
msgstr "Lys Stylformaat en Vlak."
#. G5sCs
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_FORMULA_HINT"
msgid "Formula"
msgstr "Formule"
#. rBgY5
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ROW_COLUMN_HINT"
msgid "Row and Column"
msgstr "Ry en Kolom"
#. Bc5Sg
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "Zoemfaktor. Klik regs om die zoemfaktor te verander, of klik om die zoemdialoog te open."
#. HCjAM
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "Zoem in"
#. 2YBJE
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "Zoem uit"
#. n9EyG
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "Hele bladsy"
#. 2UBAF
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "Bladsywydte"
#. YBg9X
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "Optimale aansig"
#. Wi5Fy
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "Style ingesluit"
#. BJSzf
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "Paragraafst~yle"
#. ARuQM
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "Selst_yle"
#. 7ChAu
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "Soek vir formattering"
#. K6Ave
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "Vervang met formattering"
#. USdBy
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "Einde van die document is bereik"
#. CVSwo
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "Aan die einde van die dokument, hervat aan die begin"
#. yCJzd
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "Einde van die blad bereik"
#. Diftw
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "Soeksleutel nie gevind nie"
#. xACuY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "Navigasie-element nie gevind nie"
#. CGo5w
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "Begin van die dokument is bereik"
#. nDCC4
-#: include/svx/strings.hrc:1358
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "Het die begin van die dokument bereik, hervat aan die einde"
#. FNdxE
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr "Het die eerste herinnering bereik, hervat vanaf die laaste"
#. hAzCn
-#: include/svx/strings.hrc:1360
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr "Het die laaste herinnering bereik, hervat vanaf die eerste"
#. ihDqY
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. sDL47
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1364
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr "Kleurvervanger"
#. 7FcWA
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr "3D-Effekte"
#. j6dA6
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "Verkeerde wagwoord"
#. JGJ9F
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "Wagwoorde pas nie"
#. VHTRb
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "Soliede klein sirkelvormige koeëltjies"
#. AiNrB
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "Soliede groot sirkelvormige koeëltjies"
#. Vtk8J
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "Soliede ruitvormige koeëltjies"
#. bQFBw
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "Soliede groot vierkantige koeëltjies"
#. 5eJDd
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "Regswysende pyltjies ingevul"
#. D8zQC
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "Regswysende pyltjie-koeëltjies"
#. QCULV
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "Kruisies as kolparagrawe"
#. XuXC7
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "Regmerkies as kolparagrawe"
#. cUEoG
#. do not translate this; instead describe the nth numbering style (LC_NumberingLevel) defined by your locale
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "Nommer 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "Nommer 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "Nommer (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "Bokas Romeinse syfer I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "Bokasletter A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "Onderkasletter a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "Onderkasletter (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "Onderkas Romeinse syfer i. ii. iii."
#. VAgDM
#. do not translate this; instead describe the nth outline style (LC_OutLineNumberingLevel) defined by your locale
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1391
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Uppercase Roman, uppercase letters, numeric, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Hoofletter Romeins, hoof-letters, numeriese, kleinletters, kleinletter Romeins, soliede klein-sirkel kolpunt"
#. DbqB2
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Uppercase letters, numeric, lowercase letters, numeric, solid small circular bullet"
msgstr "Hoofletter, numeriese, kleinletters, soliede klein-sirkel kolpunt"
#. FTvR2
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric"
msgstr "Numeries"
#. EiF5E
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr "Numeriese, nommer, kleinletters, soliede klein-sirkel kolpunt"
#. DZGS4
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr "Hoofletters, hoof-letter Romeins, kleinletters, kleinletter Romeins, soliede klein-sirkel kolpunt"
#. upcZy
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Numeric, lowercase letters, numeric, uppercase letters, solid small circular bullet"
msgstr "Numeries, kleinletters, nommers, hoofletters, soliede klein-sirkel kolpunt"
#. TV9Mc
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "Numeries met alle subvlakke"
#. tiXu5
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "Regswysende koeëltjie, regswysende pyltjiekoeëltjie, soliede ruitvormige koeëltjie, soliede klein sirkelvormige koeëltjie"
#. nEJiF
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "Hierdie zip-lêer kon nie geskep word nie."
#. PqEay
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_SAFEMODE_USER_PROFILE_EXPORTED"
msgid "Your user profile has been exported as 'libreoffice-profile.zip'."
msgstr "U gebruikersprofiel is uitgevoer as 'libreoffice-profile.zip'."
#. CC6Sw
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "Tabelontwerpstyle"
#. c69eB
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "Aksies om te ontdoen: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "Aksies om te herdoen: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "Soek"
#. WbEFL
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "Selfde kas"
#. 59ENV
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "Geformatterde skerm"
#. hAmnh
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) × $(HEIGHT) ($(WIDTH_IN_PX) × $(HEIGHT_IN_PX) px)"
msgstr "$(WIDTH) × $(HEIGHT) ($(WIDTH_IN_PX) × $(HEIGHT_IN_PX) pixels)"
#. ntSYA
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) × $(HEIGHT) at $(DPI) DPI"
msgstr "$(WIDTH) × $(HEIGHT) at $(DPI) Dots Per Duim"
#. EvHUn
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) KiB"
msgstr "$(CAPACITY) KB"
#. 5qx2C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) KiB ($(REDUCTION)% reduction)"
msgstr "$(CAPACITY) KB ($(REDUCTION)% reduction)"
#. ESUpG
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1418
msgctxt "STR_IMAGE_GIF"
msgid "GIF image"
msgstr "GIF beeld"
#. yWL9G
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_IMAGE_JPEG"
msgid "JPEG image"
msgstr "JPEG beeld"
#. oGKBg
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1420
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "PNG-beeld"
#. Fkrjs
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "TIFF-beeld"
#. VWyEb
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "WMF-beeld"
#. pCpoE
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "MET-beeld"
#. DELaB
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "PCT-beeld"
#. 3AZAG
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "SVG-beeld"
#. aCEJW
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "BMP-beeld"
#. NBoWH
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr "WebP beeld"
#. p2L8C
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "Onbekend"
#. 8LBFX
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1430
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "Wissel"
#. xLF42
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "Beeld modus"
#. fw5hA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "Rooi"
#. CiQvY
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "Groen"
#. BhvBe
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "Blou"
#. HSP36
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "Helderheid"
#. w5BYP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "Kontras"
#. EZUjS
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "Deursigtigheid"
#. LdkNB
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Snoei"
#. TJmBu
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "Verstek oriëntasie"
#. WQqju
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "Van bo na onder"
#. ipfz6
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "Onder na bo"
#. MLR44
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "Gestapel"
#. vUDeh
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "Linkerkantlyn: "
#. EFBbE
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "Boonste kantlyn: "
#. 7HeyP
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "Regterkantlyn: "
#. HCuWQ
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "Onderste kantlyn: "
#. zD9BB
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "Bladsybeskrywing: "
#. a4eSJ
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Hoofletters"
#. DuQGP
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "Onderkas"
#. nWQ7R
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "Bokas Romein"
#. PxkPZ
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "Onderkas Romein"
#. B7YEa
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabies"
#. vPbGB
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1456
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "Geen"
#. akGGo
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "Landskap"
#. bbcaZ
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1458
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "Regop"
#. BQtGg
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1459
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "Links"
#. JWFLj
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "Regs"
#. bxvGx
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1461
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "Alle"
#. S3nm4
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1462
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "Spieëlbeeld"
#. dcvEJ
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "Outeur: "
#. 2siC9
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1464
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "Datum: "
#. pWoLe
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "Teks: "
#. pAABc
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "Karakteragtergrond"
#. Deknh
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "Kleurpalet"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr "Skyfie nommers:"
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8152,2157 +8158,2157 @@ msgstr ""
"Wil u eerder die gewysigde weergawe stoor?"
#. KycVH
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basiese Latyn"
#. bcjRA
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latyn-1"
#. h6THj
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latyn uitgebrei-A"
#. o4EF9
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latyn uitgebrei-B"
#. W3CGs
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA-uitbreidings"
#. yZjF6
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "Spasiewysigingsletters"
#. EASZR
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "Kombinerende diakritiese tekens"
#. wBjC4
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basiese Grieks"
#. Dh8Es
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Griekse simbole en Kopties"
#. jGT5E
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillies"
#. DQgLS
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armeens"
#. kXEQY
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basiese Hebreeus"
#. Cb8g4
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebreeus uitgebrei"
#. ZmDCd
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basiese Arabies"
#. hZDFV
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabies uitgebrei"
#. c3CqD
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengaals"
#. iWzLc
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Goedjarati"
#. Cdwzw
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Odia"
#. BhEGN
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Teloegoe"
#. J5qn4
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malabaars"
#. C5yzo
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thais"
#. EvjbD
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basiese Georgies"
#. npAc8
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgies uitgebrei"
#. AHAB4
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangoel Jamo"
#. dqrF5
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additional"
msgstr "Latyn Uitgebreide Addisioneel"
#. uVYXp
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Grieks uitgebrei"
#. LEQg6
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "Algemene leestekens"
#. D9KFj
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "Superskrifte en subskrifte"
#. yaxYV
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "Geldeenheidsimbole"
#. jzA5i
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "Kombinerende diakritiese simbole"
#. CHNBZ
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "Letteragtige simbole"
#. cDkEd
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "Getalvorms"
#. j25Fp
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "Pyltjies"
#. p5Tbx
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "Wiskundige operateure"
#. ckgof
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "Diverse tegniese"
#. 8rXdw
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "Beheer prentjies"
#. D4J8A
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "Optiese karakterherkenning"
#. hXwgf
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "Ingeslote alfanumeriese karakters"
#. AD9HJ
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "Kassietekening"
#. vViaR
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "Blokelemente"
#. ok7ks
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "Geometriese vorms"
#. sKty5
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "Diverse simbole"
#. yDpNT
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "CJK-simbole en leestekens"
#. Bo4iK
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangoel-versoenbaarheid Jamo"
#. yeRDE
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Diverse"
#. kPFs9
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "Ingeslote CJK-letters en -maande"
#. 6tAx6
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "CJK-versoenbaarheid"
#. VakXP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangoel"
#. XzS6D
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified-ideogramme"
#. JVCP5
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified-ideogramme uitbreiding-A"
#. Y33VK
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "Area vir private gebruik"
#. 8yYiM
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK-versoenbare ideogramme"
#. BEfFQ
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "Alfabetiese aanbiedingsvorms"
#. NCsAG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabiese aanbiedingsvorms-A"
#. adi8G
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "Kombinerende halftekens"
#. vLBhn
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "CJK-versoenbaarheidsvorms"
#. i6R3B
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "Klein vormvariante"
#. 7EDCh
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabiese aanbiedingsvorms-B"
#. WWoWx
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "Halfbreedte- en volbreedtevorms"
#. dkDXh
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "Spesiales"
#. GQSEx
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi lettergrepe"
#. BL66x
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi-Radikale"
#. cuQ2k
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Oue skuinsdruk"
#. wtKAB
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Goties"
#. GPFqC
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret-Alfabet"
#. 7AovD
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Bizantynse musieksymbole"
#. G3GQF
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "Musieksimbole"
#. YzBDD
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "Wiskundige alfanumeriese simbole"
#. 3XZRw
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified-ideogramme uitbreiding-B"
#. nZnQc
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified-ideogramme uitbreiding-C"
#. HBwZE
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified-ideogramme uitbreiding-D"
#. TTFkh
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK versoenbare-ideogramme aanvulling"
#. 2jALB
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Etikette"
#. 2iHJN
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillies aanvulling"
#. ABgr9
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "Variasie kiesers"
#. a4q6S
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "Aanvullende privaatgebruik gebied-A"
#. k638K
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "Aanvullende privaatgebruik gebied-B"
#. pKFTg
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Thai Le"
#. nujxa
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer simbole"
#. neD93
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Fonetiese uitbreidings"
#. C6LwC
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "Allerlei simbole en pyle"
#. giR4r
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing heksagram symbole"
#. EqFxm
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Liniêr B-lettergrepe"
#. VeZNe
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Liniêr B-Ideogramme"
#. Tvkgh
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Egeïese getalle"
#. CuThH
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugarities"
#. nBtk5
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavianse-Alfabet"
#. vvMNk
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmaans"
#. aiySp
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhalees"
#. PEGiu
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetaans"
#. tRBTP
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Birmaans"
#. 8sgGF
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runies"
#. jhzoc
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Siries"
#. B66QG
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Etiopies"
#. AE5wq
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Kanadese inheemse lettergrepe"
#. d5JWE
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongools"
#. XnzyB
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "Diverse wiskundige simbole-A"
#. R5W9H
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "Aanvullende pyltjies-A"
#. QYf7A
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "Braille-patrone"
#. 63BBg
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "Aanvullende pyltjies-B"
#. ykowm
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "Diverse wiskundige simbole-B"
#. GGdze
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK-radikale aanvullend"
#. WLLAP
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kanxi-woordstamvorme"
#. EyZR2
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideografiese beskrywende karakters"
#. o3AQ6
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo uitgebrei"
#. MQoBs
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana fonetiese simbole"
#. fCpRM
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK-strepe"
#. zyW2q
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Cypriotiese lettergrepe"
#. GWxb8
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing Symbole"
#. 8ZJmr
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Variasie kiesers, Toevoeging"
#. RR6Er
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Antieke-Griekse musikale notasie"
#. K3GsF
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Antieke Griekse Getalle"
#. y4HCg
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Arabiese Toevoeging"
#. KUnXb
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginees"
#. zDaXa
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "Gekombineerde diakritiese tekenaanvullings"
#. 9Z24A
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Kopties"
#. CANHf
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "Etiopiese toevoeging"
#. X8DEc
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "Etiopiese toevoeging"
#. fYpFz
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Georgiese Toevoeging"
#. 3Gzxx
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagoljica"
#. zKCVG
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "Wysiging van toontekens"
#. B2yF8
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "Nuwe Tai Lue"
#. J4KdA
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Antiek Persies"
#. eGPjC
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Fonetiese Uitbreidings Toevoeging"
#. XboFE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Toegevoegde Leestekens"
#. tBJi3
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "Vertikale vorms"
#. ihUDF
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "N’Ko"
#. Z3AAi
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinees"
#. 428ER
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latynse uitbreiding-C"
#. SqFfT
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latynse uitbreiding-D"
#. yMmow
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phagspa"
#. V6CsB
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Fenisiese"
#. GNBwz
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Spykerskrif"
#. VBPZE
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Spykerskrif Getalle en Leestekens"
#. 9msGJ
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Telraam-getalle"
#. i6Gx9
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Soendanees"
#. WrXXX
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cyrilliese verlengde-A"
#. ZkKwE
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cyrilliese verlengde-B"
#. GoQpd
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham dialek"
#. qYaAV
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Antieke Simbole"
#. At8Tk
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Skyf van Phaistos"
#. ryGAF
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lykian"
#. EYLa8
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carish"
#. TPN6m
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydisch"
#. G5GLd
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong-teëls"
#. EyMaF
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino-teëltjies"
#. r2YQs
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritaans"
#. feZ2Q
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Verenigde Kanadese inheemse Klinkers uitgebrei"
#. H4FpF
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Vediese Toevoegings"
#. bVNYf
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu dialek"
#. riEM3
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamun"
#. CQMqK
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Algemene Indiese nommervorme"
#. gDEUp
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari uitgebrei"
#. UsAq2
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo uitgebrei-A"
#. g5H7j
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Javaans"
#. upBjC
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Latynse uitbreiding-A"
#. GQ3XX
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo uitgebrei-B"
#. RTxUc
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Offisiële Aramees"
#. 7E6G8
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Oud Suid-Arabies"
#. Ab3wu
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avesties"
#. 5gN8e
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Inskripsie Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Inskripsie Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Ou Turks"
#. CLuJC
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi-getalsymbole"
#. FpFeH
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egiptiese hiërogliewe"
#. bMYVC
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Ingeslote Alfanumeriese Toevoeging"
#. Dqcpa
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Ingeslote Ideografiese Toevoeging"
#. 8eCZn
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaïs"
#. 8LVFp
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Ethiopies, uitbreiding-A"
#. cQEzt
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum Toevoeging"
#. xibkG
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana Toevoeging"
#. xyswt
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Speelkaarte"
#. TqExt
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "Diverse Simbole en Piktogramme"
#. wtMts
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "Emotikons"
#. WgGuX
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "Transport- en kaartsimbole"
#. fBitP
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "Alchemiese simbole"
#. CWvjP
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabiese uitbreiding-A"
#. D7mEf
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "Arabiese Wiskundige Alfabetiese Simbole"
#. 8ouWH
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek-uitbreidings"
#. mFAeA
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroities Kursief"
#. b5m8K
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroïtiese hiërogliewe"
#. Xrkei
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sorang-Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Sundanese Toevoeging"
#. pTsMT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa Vah"
#. GWufB
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Kaukasiese Albanees"
#. t8Bfn
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Koptiese Getaltekens"
#. kAeYs
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "Gekombineerde diakritiese tekensuitbreiding"
#. 8TGuM
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployé"
#. Yaq3z
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometriese Vorms Toegevoegd"
#. R9PgF
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latyn uitgebrei-E"
#. wNozk
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Linieêr A"
#. SjAev
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manichees"
#. UUKC4
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende Kikakui"
#. ZhzBz
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modusse"
#. jC4Ue
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Birmaans uitgebreid-B"
#. y7tCX
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabatees"
#. T29Cw
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Oud Noord-Arabies"
#. EZADa
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Oud Permies"
#. 9oFL2
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamentele Diersimbole"
#. TYGv3
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyreens"
#. dkSnn
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalter Pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Stenografiese Formaat Kontroles"
#. rdXCX
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhala argaïese getalle"
#. mz3Cs
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Aanvullende pyltjies-C"
#. iGUzh
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatoliaanse hiërogliewe"
#. GAd7H
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee Toevoeging"
#. TDgY4
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified-ideogramme uitbreiding-E"
#. ho93C
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Vroeë dinastiese spykerskrif"
#. La5yr
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatraans"
#. e3aXA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multanees"
#. D6qsK
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Oud Hongaars"
#. aVhdm
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Bykomende simbole en piktogramme"
#. B6UHz
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Sutton Tekenskrif"
#. rFgRw
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cyrillies, uitbreiding-C"
#. S69GG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagolitiese Toevoeging"
#. QeCxG
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideografiese Simbole en leestekens"
#. 45hVB
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Mongoliese Toevoeging"
#. RTgGA
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newaans"
#. JJrpR
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osaags"
#. o3qMt
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tanguties"
#. nRMFd
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tangutiese Toevoegings"
#. uFMWt
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified-ideogramme uitbreiding-F"
#. DH39v
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana uitbreiding-A"
#. jPSFu
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nushu"
#. DHbMR
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Siriese aanvulling"
#. rbMNp
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "Zanabazar-vierkant skrif"
#. i5evF
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "Skaaksimbole"
#. BYA5Y
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Dogra"
#. xDvRL
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Gunjala Gondi"
#. uzq7e
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Hanifi Rohingya"
#. FAwvP
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Indiese Siyaq getalle"
#. TYjtp
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Makasar"
#. abFR5
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Maya getalle"
#. aDjHx
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Oud Sogdiaans"
#. rUG8e
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Sogdiaans"
#. B6UKP
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr "Egiptiese hiëroglief formaat Kontrols"
#. YBxAE
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr "Elymaic"
#. ibmgu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr "Nandinagari"
#. 8A7FD
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr "Nyiakeng Puachue Hmong"
#. DajDi
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr "Ottoman Siyaq Getalle"
#. FAb6M
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr "Kleine Kana Uitbreiding"
#. bmviu
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr "Piktografiese simbole, verlenging-A"
#. SmFqD
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr "Tamil Toevoeging"
#. qNixg
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr "Wancho"
#. EDpqy
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr "Chorasmian"
#. EH9Xf
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr "Uniforme CJK-ideogramme, uitbreiding-G"
#. wBzzY
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr "Dhives Akuru"
#. CX5R4
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr "Khitan klein-skrif"
#. onKAu
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr "Lisu Toevoeging"
#. yMTF4
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr "Simbole vir Retro Rekenaars"
#. SZmB5
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr "Tangut Toevoeging"
#. zxpCG
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr "Yezidi"
#. 9UAmW
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr "Arabies Uitgebreide-B"
#. QFLaj
-#: include/svx/strings.hrc:1784
+#: include/svx/strings.hrc:1785
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr "Sipro-Minoïes"
#. CYEeS
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr "Ethiopies Uitgebreide-B"
#. ABqB6
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr "Kana Uitgebreide-B"
#. DmagG
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr "Latyn Uitgebreide-F"
#. tjuhJ
-#: include/svx/strings.hrc:1788
+#: include/svx/strings.hrc:1789
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr "Latyn Uitgebreide-G"
#. naYAA
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr "Ou Uyghur"
#. JGVtT
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr "Tangsa"
#. pkBYF
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr "Toto"
#. SEVKT
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr "Kanadese Inheemse Klinkers Uitgebreid-A"
#. NpBis
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr "Vithkuqi"
#. ssh5F
-#: include/svx/strings.hrc:1794
+#: include/svx/strings.hrc:1795
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr "Znamenny Musiek Notasie"
#. xSLkm
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-C"
msgstr "Arabies Uitgebreide-C"
#. v2KBP
-#: include/svx/strings.hrc:1796
+#: include/svx/strings.hrc:1797
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension H"
msgstr "CJK Unified Ideographs Byvoegsel H"
#. VXDJy
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-D"
msgstr "Cyrillic Byvoeging-D"
#. aWGSA
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended-A"
msgstr "Devanagari Byvoeging-A"
#. BMCBt
-#: include/svx/strings.hrc:1799
+#: include/svx/strings.hrc:1800
msgctxt "RID_SUBSETMAP"
msgid "Kaktovik Numerals"
msgstr "Kaktovik Nommers"
#. VUVDF
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SUBSETMAP"
msgid "Kawi"
msgstr "Kawi"
#. EyKCr
-#: include/svx/strings.hrc:1801
+#: include/svx/strings.hrc:1802
msgctxt "RID_SUBSETMAP"
msgid "Nag Mundari"
msgstr "Nag Mundari"
#. BGGvD
-#: include/svx/strings.hrc:1803
+#: include/svx/strings.hrc:1804
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "Links-na-regs (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "Regs-na-links (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "Gebruik bogeskikte objekinstellings"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "Links na regs (horisontaal)"
#. b6Guf
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "Regs na links (horisontaal)"
#. yQGoC
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "Regs na links (vertikaal)"
#. k7B2r
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links na regs (vertikaal)"
#. DF4B8
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "Onder-na-bo, links-na-regs (vertikaal)"
#. siSmL
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr "Fontwerk"
#. Eg8QT
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr "Digitaal onderteken deur:"
#. NyP2E
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr "Datum: %1"
#. gsDhD
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr "Transpirant:"
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Geen Kantlyne"
#. LzhYZ
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Slegs Buitenste Lyne"
#. EniNF
-#: include/svx/strings.hrc:1824
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Buitenste- en Horisontale- Lyne"
#. BuDWX
-#: include/svx/strings.hrc:1825
+#: include/svx/strings.hrc:1826
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Buitenste- en Alle Binneste-Lyne"
#. ckL2Z
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Buitenste- en Vertikale-Lyne"
#. Q9hj4
-#: include/svx/strings.hrc:1827
+#: include/svx/strings.hrc:1828
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Buitenste Grenslyne Sonder Veranderinge aan Binneste Lyne"
#. b7wCr
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Slegs Diagnale Lyne"
#. 8r98a
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagnale Onderste Grens"
#. P4FGE
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagnale Boonste Grens"
#. VxBrT
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Kruis-Dwars Grense"
#. hTi3j
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1833
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Al Vier Grense"
#. o8fB8
-#: include/svx/strings.hrc:1833
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr "Slegs Linker- en Regter Grense"
#. 6NnM2
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr "Slegs Boonste en Onderste Grense"
#. KTYVW
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1836
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Boonste en Onderste Grense, en Alle Horisontale Lyne"
#. fRcEu
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1837
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr "Slegs Linker Grens"
#. uqzE7
-#: include/svx/strings.hrc:1837
+#: include/svx/strings.hrc:1838
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr "Slegs Regter Grens"
#. 6ecLB
-#: include/svx/strings.hrc:1838
+#: include/svx/strings.hrc:1839
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr "Slegs Boonste Grens"
#. B6KZc
-#: include/svx/strings.hrc:1839
+#: include/svx/strings.hrc:1840
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr "Slegs Onderste Grens"
#. aCMGz
-#: include/svx/strings.hrc:1840
+#: include/svx/strings.hrc:1841
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Boonste en Onderste Grense, en All Binne Lyne"
#. t38dT
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Linker en Regter Grense, en Alle Binne Grense"
@@ -10311,19 +10317,19 @@ msgstr "Linker en Regter Grense, en Alle Binne Grense"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1846
+#: include/svx/strings.hrc:1847
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafiese Grootte Kontrole"
#. D66VS
-#: include/svx/strings.hrc:1847
+#: include/svx/strings.hrc:1848
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Beeld '%NAME%' het te min pieksels vir die huidige grootte (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1848
+#: include/svx/strings.hrc:1849
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Beeld '%NAME%' het te veel pieksels vir die huidige grootte (%DPIX% x %DPIY% DPI)"
@@ -12983,106 +12989,107 @@ msgid "Manage Changes"
msgstr "Bestuur wysigings"
#. Jyka9
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:77
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
msgctxt "acceptrejectchangesdialog|calcedit"
msgid "Edit Comment..."
msgstr "Redigeer opmerking..."
#. EnZSS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:80
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:92
msgctxt "acceptrejectchangesdialog|extended_tip|calcedit"
msgid "Edit the comment for the selected change."
msgstr "U kan die opmerking van die geselekteerde verandering wysig."
#. kqtia
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:101
msgctxt "acceptrejectchangesdialog|calcsort"
msgid "Sorting"
msgstr "Sortering"
#. 2DLpG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:99
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:111
msgctxt "acceptrejectchangesdialog|calcaction"
msgid "Action"
msgstr "Aksie"
#. 3YNZ7
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:107
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:119
msgctxt "acceptrejectchangesdialog|calcposition"
msgid "Position"
msgstr "Posisie"
#. wzRCk
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:116
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:128
msgctxt "acceptrejectchangesdialog|calcauthor"
msgid "Author"
msgstr "Outeur"
#. xavjS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:125
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:137
msgctxt "acceptrejectchangesdialog|calcdate"
msgid "Date"
msgstr "Datum"
#. CyvEG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:134
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:146
msgctxt "acceptrejectchangesdialog|calcdesc"
msgid "Description"
msgstr "Beskrywing"
#. VDtBL
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:151
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
msgctxt "acceptrejectchangesdialog|writeredit"
msgid "Edit Comment..."
msgstr "Redigeer opmerking..."
#. eRArW
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:154
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:166
msgctxt "acceptrejectchangesdialog|extended_tip|writeredit"
msgid "Edit the comment for the selected change."
msgstr "U kan die opmerking van die geselekteerde verandering wysig."
#. 75VLB
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:175
msgctxt "acceptrejectchangesdialog|writersort"
msgid "Sort By"
msgstr "Sorteer volgens"
#. EYaEE
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:173
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:185
msgctxt "acceptrejectchangesdialog|writeraction"
msgid "Action"
msgstr "Aksie"
#. acfbi
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:193
msgctxt "acceptrejectchangesdialog|writerauthor"
msgid "Author"
msgstr "Outeur"
#. WNQ9L
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:190
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:202
msgctxt "acceptrejectchangesdialog|writerdate"
msgid "Date"
msgstr "Datum"
#. 8qG3o
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:211
msgctxt "acceptrejectchangesdialog|writerdesc"
msgid "Comment"
msgstr "Opmerking"
#. Z9yjZ
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:220
msgctxt "acceptrejectchangesdialog|writerposition"
msgid "Document Position"
msgstr "Dokumentposisie"
-#. 4DiGj
-#: svx/uiconfig/ui/accessibilitycheckentry.ui:51
+#. AHooD
+#. This is a verb. Push this button to quickly fix an a11y problem.
+#: svx/uiconfig/ui/accessibilitycheckentry.ui:49
msgctxt "accessibilitycheckentry|accessibilityCheckEntryFixButton"
-msgid "Fix"
-msgstr "Regstel"
+msgid "Fix…"
+msgstr ""
#. k4D3g
#: svx/uiconfig/ui/addconditiondialog.ui:8
@@ -17910,6 +17917,48 @@ msgctxt "linkwarndialog|ask"
msgid "_Ask when linking a graphic"
msgstr "Vra vir koppeling van Afbeelding"
+#. pwRzj
+#: svx/uiconfig/ui/medialine.ui:36
+msgctxt "medialine|toolbutton_open"
+msgid "Open"
+msgstr ""
+
+#. ACDd4
+#: svx/uiconfig/ui/medialine.ui:49
+msgctxt "medialine|toolbutton_apply"
+msgid "Apply"
+msgstr ""
+
+#. NpB3s
+#: svx/uiconfig/ui/medialine.ui:72
+msgctxt "medialine|toolbutton_play"
+msgid "Play"
+msgstr ""
+
+#. nG5y2
+#: svx/uiconfig/ui/medialine.ui:85
+msgctxt "medialine|toolbutton_pause"
+msgid "Pause"
+msgstr ""
+
+#. Q6QEy
+#: svx/uiconfig/ui/medialine.ui:98
+msgctxt "medialine|toolbutton_stop"
+msgid "Stop"
+msgstr ""
+
+#. TEcHD
+#: svx/uiconfig/ui/medialine.ui:121
+msgctxt "medialine|toolbutton_loop"
+msgid "Repeat"
+msgstr ""
+
+#. FuWeE
+#: svx/uiconfig/ui/medialine.ui:206
+msgctxt "medialine|toolbutton_mute"
+msgid "Mute"
+msgstr ""
+
#. GFDF2
#: svx/uiconfig/ui/mediaplayback.ui:22
msgctxt "mediaplayback|label1"
@@ -17928,6 +17977,48 @@ msgctxt "mediaplayback|label3"
msgid "Volume:"
msgstr "Volume:"
+#. VVYdS
+#: svx/uiconfig/ui/mediawindow.ui:101
+msgctxt "mediawindow|toolbutton_open"
+msgid "Open"
+msgstr ""
+
+#. DWwdL
+#: svx/uiconfig/ui/mediawindow.ui:114
+msgctxt "mediawindow|toolbutton_apply"
+msgid "Apply"
+msgstr ""
+
+#. Aaaba
+#: svx/uiconfig/ui/mediawindow.ui:137
+msgctxt "mediawindow|toolbutton_play"
+msgid "Play"
+msgstr ""
+
+#. jscyJ
+#: svx/uiconfig/ui/mediawindow.ui:150
+msgctxt "mediawindow|toolbutton_pause"
+msgid "Pause"
+msgstr ""
+
+#. CMZYg
+#: svx/uiconfig/ui/mediawindow.ui:163
+msgctxt "mediawindow|toolbutton_stop"
+msgid "Stop"
+msgstr ""
+
+#. Wu5HF
+#: svx/uiconfig/ui/mediawindow.ui:186
+msgctxt "mediawindow|toolbutton_loop"
+msgid "Repeat"
+msgstr ""
+
+#. zXP86
+#: svx/uiconfig/ui/mediawindow.ui:216
+msgctxt "mediawindow|toolbutton_mute"
+msgid "Mute"
+msgstr ""
+
#. 9zT32
#: svx/uiconfig/ui/namespacedialog.ui:18
msgctxt "namespacedialog|NamespaceDialog"
@@ -20300,85 +20391,85 @@ msgid "Theme Color Edit"
msgstr "Tema-kleur Bywerk"
#. ZBvTV
-#: svx/uiconfig/ui/themecoloreditdialog.ui:109
+#: svx/uiconfig/ui/themecoloreditdialog.ui:111
msgctxt "themecoloreditdialog|labelThemeColorsName"
msgid "Name:"
msgstr "Naam:"
#. bpeMo
-#: svx/uiconfig/ui/themecoloreditdialog.ui:208
+#: svx/uiconfig/ui/themecoloreditdialog.ui:213
msgctxt "themecoloreditdialog|labelDark"
msgid "Dark 1:"
msgstr "Donker 1:"
#. JrFtB
-#: svx/uiconfig/ui/themecoloreditdialog.ui:225
+#: svx/uiconfig/ui/themecoloreditdialog.ui:230
msgctxt "themecoloreditdialog|labelLight1"
msgid "Light1:"
msgstr "Lig 1:"
#. FGBH2
-#: svx/uiconfig/ui/themecoloreditdialog.ui:242
+#: svx/uiconfig/ui/themecoloreditdialog.ui:247
msgctxt "themecoloreditdialog|labelDark2"
msgid "Dark 2:"
msgstr "Donker 2:"
#. QW9Cr
-#: svx/uiconfig/ui/themecoloreditdialog.ui:259
+#: svx/uiconfig/ui/themecoloreditdialog.ui:264
msgctxt "themecoloreditdialog|labelLight2"
msgid "Light2:"
msgstr "Lig 2:"
#. wgZiU
-#: svx/uiconfig/ui/themecoloreditdialog.ui:295
+#: svx/uiconfig/ui/themecoloreditdialog.ui:301
msgctxt "themecoloreditdialog|labelAccent1"
msgid "Accent 1:"
msgstr "Aksent 1:"
#. yKnVi
-#: svx/uiconfig/ui/themecoloreditdialog.ui:312
+#: svx/uiconfig/ui/themecoloreditdialog.ui:318
msgctxt "themecoloreditdialog|labelAccent2"
msgid "Accent 2:"
msgstr "Aksent 2:"
#. x4B79
-#: svx/uiconfig/ui/themecoloreditdialog.ui:367
+#: svx/uiconfig/ui/themecoloreditdialog.ui:375
msgctxt "themecoloreditdialog|labelAccent3"
msgid "Accent 3:"
msgstr "Aksent 3:"
#. tFUrg
-#: svx/uiconfig/ui/themecoloreditdialog.ui:384
+#: svx/uiconfig/ui/themecoloreditdialog.ui:392
msgctxt "themecoloreditdialog|labelAccent4"
msgid "Accent 4:"
msgstr "Aksent 4:"
#. uENPG
-#: svx/uiconfig/ui/themecoloreditdialog.ui:401
+#: svx/uiconfig/ui/themecoloreditdialog.ui:409
msgctxt "themecoloreditdialog|labelAccent5"
msgid "Accent 5:"
msgstr "Aksent 5:"
#. sVGF5
-#: svx/uiconfig/ui/themecoloreditdialog.ui:418
+#: svx/uiconfig/ui/themecoloreditdialog.ui:426
msgctxt "themecoloreditdialog|labelAccent6"
msgid "Accent 6:"
msgstr "Aksent 6:"
#. uAS9N
-#: svx/uiconfig/ui/themecoloreditdialog.ui:511
+#: svx/uiconfig/ui/themecoloreditdialog.ui:523
msgctxt "themecoloreditdialog|labelHyperlink"
msgid "Hyperlink:"
msgstr "Hiperskakel:"
#. etJMu
-#: svx/uiconfig/ui/themecoloreditdialog.ui:528
+#: svx/uiconfig/ui/themecoloreditdialog.ui:540
msgctxt "themecoloreditdialog|labelFollowHyperlink"
msgid "Follow Hyperlink:"
msgstr "Volg Hiperskakel:"
#. sShYV
-#: svx/uiconfig/ui/themecoloreditdialog.ui:583
+#: svx/uiconfig/ui/themecoloreditdialog.ui:597
msgctxt "themecoloreditdialog|frameLabel"
msgid "Colors"
msgstr "Kleure"
@@ -20390,7 +20481,7 @@ msgid "Theme"
msgstr "Tema"
#. UaXFU
-#: svx/uiconfig/ui/themedialog.ui:131
+#: svx/uiconfig/ui/themedialog.ui:133
msgctxt "hatchpage|extended_tip|add"
msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button."
msgstr "Voeg 'n pasgemaakte uitbreipatroon by die huidige lys. Spesifiseer die eienskappe van jou uitbreipatroon, dan klik op hierdie knoppie."
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index d93f3bbecc7..c649eead531 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/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: 2023-07-25 11:21+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-29 10:24+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976448.000000\n"
#. oKCHH
@@ -118,17 +118,17 @@ msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING"
msgid "The text formatting conveys additional meaning."
msgstr "Die teks formatering voeg addisionele betekenis by."
-#. MXVBm
+#. DpbCJ
#: sw/inc/AccessibilityCheckStrings.hrc:33
msgctxt "STR_NON_INTERACTIVE_FORMS"
-msgid "An input form is not interactive."
-msgstr "'n Invoervorm is nie interaktief nie."
+msgid "Use interactive input fields."
+msgstr ""
-#. Z6sHT
+#. bmMTB
#: sw/inc/AccessibilityCheckStrings.hrc:34
msgctxt "STR_FLOATING_TEXT"
-msgid "Avoid floating text."
-msgstr "Vermy swewende teks."
+msgid "Anchor Frames/Text boxes “As Character“."
+msgstr ""
#. 77aXx
#: sw/inc/AccessibilityCheckStrings.hrc:35
@@ -160,32 +160,44 @@ msgctxt "STR_TABLE_FORMATTING"
msgid "Avoid using empty table cells for formatting."
msgstr "Vermy leë tabel selle vir formattering."
+#. rXKK3
+#: sw/inc/AccessibilityCheckStrings.hrc:40
+msgctxt "STR_CONTENT_CONTROL_IN_HEADER"
+msgid "Avoid content controls in header or footer."
+msgstr ""
+
#. R8FRE
-#: sw/inc/AccessibilityCheckStrings.hrc:41
+#: sw/inc/AccessibilityCheckStrings.hrc:42
msgctxt "STR_DOCUMENT_DEFAULT_LANGUAGE"
msgid "Document default language is not set."
msgstr "Dokument se verstek taal is nie gestel nie."
#. MMD7M
-#: sw/inc/AccessibilityCheckStrings.hrc:42
+#: sw/inc/AccessibilityCheckStrings.hrc:43
msgctxt "STR_STYLE_NO_LANGUAGE"
msgid "Style “%STYLE_NAME%” has no language set."
msgstr "Styl \"%STYLE_NAME%\" het nie taal gestel nie."
#. euwJV
-#: sw/inc/AccessibilityCheckStrings.hrc:43
+#: sw/inc/AccessibilityCheckStrings.hrc:44
msgctxt "STR_DOCUMENT_TITLE"
msgid "Document title is not set."
msgstr "Dokument titel is nie gestel nie."
-#. 9vYAP
-#: sw/inc/AccessibilityCheckStrings.hrc:44
-msgctxt "STR_ENTER_DOCUMENT_TITLE"
+#. G79xh
+#: sw/inc/AccessibilityCheckStrings.hrc:45
+msgctxt "STR_DOCUMENT_TITLE_DLG_TITLE"
+msgid "Document title"
+msgstr ""
+
+#. Gk4jb
+#: sw/inc/AccessibilityCheckStrings.hrc:46
+msgctxt "STR_DOCUMENT_TITLE_DLG_DESC"
msgid "Enter document title:"
-msgstr "Voer in die dokumenttitel:"
+msgstr ""
#. zDpoh
-#: sw/inc/AccessibilityCheckStrings.hrc:46
+#: sw/inc/AccessibilityCheckStrings.hrc:48
msgctxt "STR_ENTER_ALT"
msgid "Enter alternative text:"
msgstr "Voer in alternatiewe teks:"
@@ -3095,828 +3107,834 @@ msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
msgstr "Figuur"
-#. CxADu
+#. cBbBE
#: sw/inc/strings.hrc:155
+msgctxt "STR_POOLCOLL_COMMENT"
+msgid "Comment"
+msgstr ""
+
+#. CxADu
+#: sw/inc/strings.hrc:156
msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS"
msgid "Addressee"
msgstr "Geadresseerde"
#. PvoVz
-#: sw/inc/strings.hrc:156
+#: sw/inc/strings.hrc:157
msgctxt "STR_POOLCOLL_SEND_ADDRESS"
msgid "Sender"
msgstr "Afsender"
#. AChE4
-#: sw/inc/strings.hrc:157
+#: sw/inc/strings.hrc:158
msgctxt "STR_POOLCOLL_TOX_IDXH"
msgid "Index Heading"
msgstr "Indeksopskrif"
#. sDGWT
-#: sw/inc/strings.hrc:158
+#: sw/inc/strings.hrc:159
msgctxt "STR_POOLCOLL_TOX_IDX1"
msgid "Index 1"
msgstr "Indeks 1"
#. Y7A62
-#: sw/inc/strings.hrc:159
+#: sw/inc/strings.hrc:160
msgctxt "STR_POOLCOLL_TOX_IDX2"
msgid "Index 2"
msgstr "Indeks 2"
#. DoCtT
-#: sw/inc/strings.hrc:160
+#: sw/inc/strings.hrc:161
msgctxt "STR_POOLCOLL_TOX_IDX3"
msgid "Index 3"
msgstr "Indeks 3"
#. AL9vf
-#: sw/inc/strings.hrc:161
+#: sw/inc/strings.hrc:162
msgctxt "STR_POOLCOLL_TOX_IDXBREAK"
msgid "Index Separator"
msgstr "Indeksskeisimbool"
#. gGWam
-#: sw/inc/strings.hrc:162
+#: sw/inc/strings.hrc:163
msgctxt "STR_POOLCOLL_TOX_CNTNTH"
msgid "Contents Heading"
msgstr "Inhoudopskrif"
#. 2kfKD
-#: sw/inc/strings.hrc:163
+#: sw/inc/strings.hrc:164
msgctxt "STR_POOLCOLL_TOX_CNTNT1"
msgid "Contents 1"
msgstr "Inhoud 1"
#. Cyovw
-#: sw/inc/strings.hrc:164
+#: sw/inc/strings.hrc:165
msgctxt "STR_POOLCOLL_TOX_CNTNT2"
msgid "Contents 2"
msgstr "Inhoud 2"
#. CeCEB
-#: sw/inc/strings.hrc:165
+#: sw/inc/strings.hrc:166
msgctxt "STR_POOLCOLL_TOX_CNTNT3"
msgid "Contents 3"
msgstr "Inhoud 3"
#. xvFCu
-#: sw/inc/strings.hrc:166
+#: sw/inc/strings.hrc:167
msgctxt "STR_POOLCOLL_TOX_CNTNT4"
msgid "Contents 4"
msgstr "Inhoud 4"
#. ZhkVH
-#: sw/inc/strings.hrc:167
+#: sw/inc/strings.hrc:168
msgctxt "STR_POOLCOLL_TOX_CNTNT5"
msgid "Contents 5"
msgstr "Inhoud 5"
#. fUc7s
-#: sw/inc/strings.hrc:168
+#: sw/inc/strings.hrc:169
msgctxt "STR_POOLCOLL_TOX_CNTNT6"
msgid "Contents 6"
msgstr "Inhoud 6"
#. njEgF
-#: sw/inc/strings.hrc:169
+#: sw/inc/strings.hrc:170
msgctxt "STR_POOLCOLL_TOX_CNTNT7"
msgid "Contents 7"
msgstr "Inhoud 7"
#. EtFWq
-#: sw/inc/strings.hrc:170
+#: sw/inc/strings.hrc:171
msgctxt "STR_POOLCOLL_TOX_CNTNT8"
msgid "Contents 8"
msgstr "Inhoud 8"
#. EbkDM
-#: sw/inc/strings.hrc:171
+#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_CNTNT9"
msgid "Contents 9"
msgstr "Inhoud 9"
#. Y7Cms
-#: sw/inc/strings.hrc:172
+#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_CNTNT10"
msgid "Contents 10"
msgstr "Inhoud 10"
#. C6qm4
-#: sw/inc/strings.hrc:173
+#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_USERH"
msgid "User Index Heading"
msgstr "Gebruikersindeks-opskrif"
#. p2GRv
-#: sw/inc/strings.hrc:174
+#: sw/inc/strings.hrc:175
msgctxt "STR_POOLCOLL_TOX_USER1"
msgid "User Index 1"
msgstr "Gebruikersindeks 1"
#. Hi9XK
-#: sw/inc/strings.hrc:175
+#: sw/inc/strings.hrc:176
msgctxt "STR_POOLCOLL_TOX_USER2"
msgid "User Index 2"
msgstr "Gebruikersindeks 2"
#. qq6Zm
-#: sw/inc/strings.hrc:176
+#: sw/inc/strings.hrc:177
msgctxt "STR_POOLCOLL_TOX_USER3"
msgid "User Index 3"
msgstr "Gebruikersindeks 3"
#. EcpEa
-#: sw/inc/strings.hrc:177
+#: sw/inc/strings.hrc:178
msgctxt "STR_POOLCOLL_TOX_USER4"
msgid "User Index 4"
msgstr "Gebruikersindeks 4"
#. nfuG3
-#: sw/inc/strings.hrc:178
+#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_USER5"
msgid "User Index 5"
msgstr "Gebruikersindeks 5"
#. FNvoZ
-#: sw/inc/strings.hrc:179
+#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_USER6"
msgid "User Index 6"
msgstr "Gebruikersindeks 6"
#. oMjqE
-#: sw/inc/strings.hrc:180
+#: sw/inc/strings.hrc:181
msgctxt "STR_POOLCOLL_TOX_USER7"
msgid "User Index 7"
msgstr "Gebruikersindeks 7"
#. CxdwC
-#: sw/inc/strings.hrc:181
+#: sw/inc/strings.hrc:182
msgctxt "STR_POOLCOLL_TOX_USER8"
msgid "User Index 8"
msgstr "Gebruikersindeks 8"
#. ksYyT
-#: sw/inc/strings.hrc:182
+#: sw/inc/strings.hrc:183
msgctxt "STR_POOLCOLL_TOX_USER9"
msgid "User Index 9"
msgstr "Gebruikersindeks 9"
#. kkbMq
-#: sw/inc/strings.hrc:183
+#: sw/inc/strings.hrc:184
msgctxt "STR_POOLCOLL_TOX_USER10"
msgid "User Index 10"
msgstr "Gebruikersindeks 10"
#. QAWEr
-#: sw/inc/strings.hrc:184
+#: sw/inc/strings.hrc:185
msgctxt "STR_POOLCOLL_TOX_CITATION"
msgid "Citation"
msgstr "Aanhaling"
#. ECpGh
-#: sw/inc/strings.hrc:185
+#: sw/inc/strings.hrc:186
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
msgid "Figure Index Heading"
msgstr "Figuur Indekse Opskrifte"
#. rA84j
-#: sw/inc/strings.hrc:186
+#: sw/inc/strings.hrc:187
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
msgid "Figure Index 1"
msgstr "Figuurindeks 1"
#. EMAde
-#: sw/inc/strings.hrc:187
+#: sw/inc/strings.hrc:188
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
msgid "Object Index Heading"
msgstr "Objekindeks-opskrif"
#. AAAot
-#: sw/inc/strings.hrc:188
+#: sw/inc/strings.hrc:189
msgctxt "STR_POOLCOLL_TOX_OBJECT1"
msgid "Object Index 1"
msgstr "Objekindeks 1"
#. sbCcn
-#: sw/inc/strings.hrc:189
+#: sw/inc/strings.hrc:190
msgctxt "STR_POOLCOLL_TOX_TABLESH"
msgid "Table Index Heading"
msgstr "Tabelindeks-opskrif"
#. 5EQKp
-#: sw/inc/strings.hrc:190
+#: sw/inc/strings.hrc:191
msgctxt "STR_POOLCOLL_TOX_TABLES1"
msgid "Table Index 1"
msgstr "Tabelindeks 1"
#. Fu2GQ
-#: sw/inc/strings.hrc:191
+#: sw/inc/strings.hrc:192
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
msgstr "Bibliografie-opskrif"
#. 7aSPU
-#: sw/inc/strings.hrc:192
+#: sw/inc/strings.hrc:193
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
msgstr "Bibliografie 1"
#. DAGNF
#. Document title style, not to be confused with Heading style
-#: sw/inc/strings.hrc:194
+#: sw/inc/strings.hrc:195
msgctxt "STR_POOLCOLL_DOC_TITEL"
msgid "Title"
msgstr "Titel"
#. Vm4an
-#: sw/inc/strings.hrc:195
+#: sw/inc/strings.hrc:196
msgctxt "STR_POOLCOLL_DOC_SUBTITEL"
msgid "Subtitle"
msgstr "Subtitel"
#. NBniG
-#: sw/inc/strings.hrc:196
+#: sw/inc/strings.hrc:197
msgctxt "STR_POOLCOLL_DOC_APPENDIX"
msgid "Appendix"
msgstr "Aanhangsel"
#. Z3kaL
-#: sw/inc/strings.hrc:197
+#: sw/inc/strings.hrc:198
msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE"
msgid "Block Quotation"
msgstr "Blok Aanhaling"
#. FPDvM
-#: sw/inc/strings.hrc:198
+#: sw/inc/strings.hrc:199
msgctxt "STR_POOLCOLL_HTML_PRE"
msgid "Preformatted Text"
msgstr "Vooraf geformateerde teks"
#. AA9gY
-#: sw/inc/strings.hrc:199
+#: sw/inc/strings.hrc:200
msgctxt "STR_POOLCOLL_HTML_HR"
msgid "Horizontal Line"
msgstr "Horisontale reël"
#. mS2ZP
-#: sw/inc/strings.hrc:200
+#: sw/inc/strings.hrc:201
msgctxt "STR_POOLCOLL_HTML_DD"
msgid "List Contents"
msgstr "Lysinhoud"
#. dC66q
-#: sw/inc/strings.hrc:201
+#: sw/inc/strings.hrc:202
msgctxt "STR_POOLCOLL_HTML_DT"
msgid "List Heading"
msgstr "Lysopskrif"
#. DHZmi
#. page style names
-#: sw/inc/strings.hrc:203
+#: sw/inc/strings.hrc:204
msgctxt "STR_POOLPAGE_STANDARD"
msgid "Default Page Style"
msgstr "Verstek Bladsy Styl"
#. JwhRA
-#: sw/inc/strings.hrc:204
+#: sw/inc/strings.hrc:205
msgctxt "STR_POOLPAGE_FIRST"
msgid "First Page"
msgstr "Eerste bladsy"
#. FLUqS
-#: sw/inc/strings.hrc:205
+#: sw/inc/strings.hrc:206
msgctxt "STR_POOLPAGE_LEFT"
msgid "Left Page"
msgstr "Linkerbladsy"
#. AV2ND
-#: sw/inc/strings.hrc:206
+#: sw/inc/strings.hrc:207
msgctxt "STR_POOLPAGE_RIGHT"
msgid "Right Page"
msgstr "Regterbladsy"
#. dKCfD
-#: sw/inc/strings.hrc:207
+#: sw/inc/strings.hrc:208
msgctxt "STR_POOLPAGE_ENVELOPE"
msgid "Envelope"
msgstr "Koevert"
#. jGSGz
-#: sw/inc/strings.hrc:208
+#: sw/inc/strings.hrc:209
msgctxt "STR_POOLPAGE_REGISTER"
msgid "Index"
msgstr "Indeks"
#. AwPSM
-#: sw/inc/strings.hrc:209
+#: sw/inc/strings.hrc:210
msgctxt "STR_POOLPAGE_HTML"
msgid "HTML"
msgstr "HTML"
#. EeSc9
-#: sw/inc/strings.hrc:210
+#: sw/inc/strings.hrc:211
msgctxt "STR_POOLPAGE_FOOTNOTE"
msgid "Footnote"
msgstr "Voetnoot"
#. nF28D
-#: sw/inc/strings.hrc:211
+#: sw/inc/strings.hrc:212
msgctxt "STR_POOLPAGE_ENDNOTE"
msgid "Endnote"
msgstr "Eindnota"
#. aGDbN
-#: sw/inc/strings.hrc:212
+#: sw/inc/strings.hrc:213
msgctxt "STR_POOLPAGE_LANDSCAPE"
msgid "Landscape"
msgstr "Landskap"
#. pUSTx
#. Numbering rules
-#: sw/inc/strings.hrc:214
+#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_NOLIST"
msgid "No List"
msgstr "Geen Lys"
#. mGZHb
-#: sw/inc/strings.hrc:215
+#: sw/inc/strings.hrc:216
msgctxt "STR_POOLNUMRULE_NUM1"
msgid "Numbering 123"
msgstr "Nommering 123"
#. AW8tm
-#: sw/inc/strings.hrc:216
+#: sw/inc/strings.hrc:217
msgctxt "STR_POOLNUMRULE_NUM2"
msgid "Numbering ABC"
msgstr "Nommering ABC"
#. k2FEN
-#: sw/inc/strings.hrc:217
+#: sw/inc/strings.hrc:218
msgctxt "STR_POOLNUMRULE_NUM3"
msgid "Numbering abc"
msgstr "Nommering abc"
#. 4Cgku
-#: sw/inc/strings.hrc:218
+#: sw/inc/strings.hrc:219
msgctxt "STR_POOLNUMRULE_NUM4"
msgid "Numbering IVX"
msgstr "Nommering IVX"
#. TgZ6E
-#: sw/inc/strings.hrc:219
+#: sw/inc/strings.hrc:220
msgctxt "STR_POOLNUMRULE_NUM5"
msgid "Numbering ivx"
msgstr "Nommering ivx"
#. M3j9C
#. Bullet \u2022
-#: sw/inc/strings.hrc:221
+#: sw/inc/strings.hrc:222
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
msgstr "Paragraaf Koeëlpunt •"
#. BAvrf
#. Bullet \u2013
-#: sw/inc/strings.hrc:223
+#: sw/inc/strings.hrc:224
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
msgstr "Paragraaf Koeëlpunt –"
#. dwqEt
#. Bullet \u2611
-#: sw/inc/strings.hrc:225
+#: sw/inc/strings.hrc:226
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet ☑"
msgstr "Kol-paragraaf ☑"
#. ETFA8
#. Bullet \u27A2
-#: sw/inc/strings.hrc:227
+#: sw/inc/strings.hrc:228
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet ➢"
msgstr "Kol-paragraaf ➢"
#. LBMJJ
#. Bullet \u2717
-#: sw/inc/strings.hrc:229
+#: sw/inc/strings.hrc:230
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet ✗"
msgstr "Kol-paragraaf ✗"
#. J7DDZ
-#: sw/inc/strings.hrc:230
+#: sw/inc/strings.hrc:231
msgctxt "STR_COLUMN_VALUESET_ITEM0"
msgid "1 column"
msgstr "1 kolom"
#. C4TAR
-#: sw/inc/strings.hrc:231
+#: sw/inc/strings.hrc:232
msgctxt "STR_COLUMN_VALUESET_ITEM1"
msgid "2 columns with equal size"
msgstr "2 kolomme met gelyke grootte"
#. 7EtFb
-#: sw/inc/strings.hrc:232
+#: sw/inc/strings.hrc:233
msgctxt "STR_COLUMN_VALUESET_ITEM2"
msgid "3 columns with equal size"
msgstr "3 kolomme met gelyke grootte"
#. oqzB2
-#: sw/inc/strings.hrc:233
+#: sw/inc/strings.hrc:234
msgctxt "STR_COLUMN_VALUESET_ITEM3"
msgid "2 columns with different size (left > right)"
msgstr "2 kolomme met verskillende grootte (links > regs)"
#. irDMZ
-#: sw/inc/strings.hrc:234
+#: sw/inc/strings.hrc:235
msgctxt "STR_COLUMN_VALUESET_ITEM4"
msgid "2 columns with different size (left < right)"
msgstr "2 kolomme met verskillende grootte (links < regs)"
#. hmuUA
#. Table styles, Writer internal, others are taken from Svx
-#: sw/inc/strings.hrc:236
+#: sw/inc/strings.hrc:237
msgctxt "STR_TABSTYLE_DEFAULT"
msgid "Default Table Style"
msgstr "Verstek Tabel Styl"
#. fCbrD
-#: sw/inc/strings.hrc:238
+#: sw/inc/strings.hrc:239
msgctxt "STR_PARAGRAPHSTYLEFAMILY"
msgid "Paragraph Styles"
msgstr "Paragraafstyle"
#. D9yAi
-#: sw/inc/strings.hrc:239
+#: sw/inc/strings.hrc:240
msgctxt "STR_CHARACTERSTYLEFAMILY"
msgid "Character Styles"
msgstr "Karakterstyle"
#. vpotA
-#: sw/inc/strings.hrc:240
+#: sw/inc/strings.hrc:241
msgctxt "STR_FRAMESTYLEFAMILY"
msgid "Frame Styles"
msgstr "Raamstyle"
#. KJ9Ct
-#: sw/inc/strings.hrc:241
+#: sw/inc/strings.hrc:242
msgctxt "STR_PAGESTYLEFAMILY"
msgid "Page Styles"
msgstr "Bladsystyle"
#. StGfs
-#: sw/inc/strings.hrc:242
+#: sw/inc/strings.hrc:243
msgctxt "STR_LISTSTYLEFAMILY"
msgid "List Styles"
msgstr "Lysstyle"
#. uYnHh
-#: sw/inc/strings.hrc:243
+#: sw/inc/strings.hrc:244
msgctxt "STR_TABLESTYLEFAMILY"
msgid "Table Styles"
msgstr "Tabelstyle"
#. 6VBtB
-#: sw/inc/strings.hrc:244
+#: sw/inc/strings.hrc:245
msgctxt "STR_ENV_TITLE"
msgid "Envelope"
msgstr "Koevert"
#. GybX9
-#: sw/inc/strings.hrc:245
+#: sw/inc/strings.hrc:246
msgctxt "STR_LAB_TITLE"
msgid "Labels"
msgstr "Etikette"
#. 2otxp
-#: sw/inc/strings.hrc:247
+#: sw/inc/strings.hrc:248
msgctxt "STR_WRITER_DOCUMENT_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-teksdokument"
#. 7q6Uy
-#: sw/inc/strings.hrc:248
+#: sw/inc/strings.hrc:249
msgctxt "STR_CANTOPEN"
msgid "Cannot open document."
msgstr "Kan nie dokument open nie."
#. 5KkLN
-#: sw/inc/strings.hrc:249
+#: sw/inc/strings.hrc:250
msgctxt "STR_CANTCREATE"
msgid "Can't create document."
msgstr "Kan nie dokument skep nie."
#. rfFYm
-#: sw/inc/strings.hrc:250
+#: sw/inc/strings.hrc:251
msgctxt "STR_DLLNOTFOUND"
msgid "Filter not found."
msgstr "Filter nie gevind nie."
#. HhLap
-#: sw/inc/strings.hrc:251
+#: sw/inc/strings.hrc:252
msgctxt "STR_LOAD_GLOBAL_DOC"
msgid "Name and Path of Master Document"
msgstr "Naam en pad van meesterdokument"
#. SSL5h
-#: sw/inc/strings.hrc:252
+#: sw/inc/strings.hrc:253
msgctxt "STR_LOAD_HTML_DOC"
msgid "Name and Path of the HTML Document"
msgstr "Naam en pad van HTML-dokument"
#. bb3o8
-#: sw/inc/strings.hrc:253
+#: sw/inc/strings.hrc:254
msgctxt "STR_JAVA_EDIT"
msgid "Edit Script"
msgstr "Redigeer skrip"
#. oBFxh
-#: sw/inc/strings.hrc:254
+#: sw/inc/strings.hrc:255
msgctxt "STR_BOOKMARK_DEF_NAME"
msgid "Bookmark"
msgstr "Boekmerk"
#. QTQk5
-#: sw/inc/strings.hrc:255
+#: sw/inc/strings.hrc:256
msgctxt "STR_BOOKMARK_YES"
msgid "Yes"
msgstr "Ja"
#. tvmJD
-#: sw/inc/strings.hrc:256
+#: sw/inc/strings.hrc:257
msgctxt "STR_BOOKMARK_NO"
msgid "No"
msgstr "Nee"
#. DCJBh
-#: sw/inc/strings.hrc:257
+#: sw/inc/strings.hrc:258
msgctxt "STR_BOOKMARK_FORBIDDENCHARS"
msgid "Forbidden characters:"
msgstr "Nie-toegelate Karakters:"
#. QEGSs
-#: sw/inc/strings.hrc:258
+#: sw/inc/strings.hrc:259
msgctxt "SW_STR_NONE"
msgid "[None]"
msgstr "[Geen]"
#. C4tz3
-#: sw/inc/strings.hrc:259
+#: sw/inc/strings.hrc:260
msgctxt "STR_CAPTION_BEGINNING"
msgid "Start"
msgstr "Begin"
#. hFNKj
-#: sw/inc/strings.hrc:260
+#: sw/inc/strings.hrc:261
msgctxt "STR_CAPTION_END"
msgid "End"
msgstr "Einde"
#. kfeBE
-#: sw/inc/strings.hrc:261
+#: sw/inc/strings.hrc:262
msgctxt "STR_CAPTION_ABOVE"
msgid "Above"
msgstr "Bo"
#. aXzbo
-#: sw/inc/strings.hrc:262
+#: sw/inc/strings.hrc:263
msgctxt "STR_CAPTION_BELOW"
msgid "Below"
msgstr "Onder"
#. 8zzCk
-#: sw/inc/strings.hrc:263
+#: sw/inc/strings.hrc:264
msgctxt "SW_STR_READONLY"
msgid "read-only"
msgstr "leesalleen"
#. QRU4j
-#: sw/inc/strings.hrc:264
+#: sw/inc/strings.hrc:265
msgctxt "STR_READONLY_PATH"
msgid "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?"
msgstr "Die “Outoteks”-gidse is leesalleen. Wil u die dialoog vir padinstellings oopmaak?"
#. ErVas
-#: sw/inc/strings.hrc:265
+#: sw/inc/strings.hrc:266
msgctxt "STR_DOC_STAT"
msgid "Statistics"
msgstr "Statistieke"
#. ZCaDo
-#: sw/inc/strings.hrc:266
+#: sw/inc/strings.hrc:267
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when heading numbering is assigned to a paragraph style"
msgstr "Hierdie opsie is gedeaktiveer wanneer opskrif nommering toegeken is aan 'n paragraaf styl"
#. cW3cP
#. Statusbar-titles
-#: sw/inc/strings.hrc:268
+#: sw/inc/strings.hrc:269
msgctxt "STR_STATSTR_W4WREAD"
msgid "Importing document..."
msgstr "Trek tans dokument in..."
#. F39Cf
-#: sw/inc/strings.hrc:269
+#: sw/inc/strings.hrc:270
msgctxt "STR_STATSTR_W4WWRITE"
msgid "Exporting document..."
msgstr "Voer tans dokument uit..."
#. LCa4C
-#: sw/inc/strings.hrc:270
+#: sw/inc/strings.hrc:271
msgctxt "STR_STATSTR_SWGWRITE"
msgid "Saving document..."
msgstr "Stoor tans dokument..."
#. ff2XN
-#: sw/inc/strings.hrc:271
+#: sw/inc/strings.hrc:272
msgctxt "STR_STATSTR_REFORMAT"
msgid "Repagination..."
msgstr "Herrangskik bladsye..."
#. Afs3H
-#: sw/inc/strings.hrc:272
+#: sw/inc/strings.hrc:273
msgctxt "STR_STATSTR_AUTOFORMAT"
msgid "Formatting document automatically..."
msgstr "Formateer dokument tans outomaties..."
#. APY2j
-#: sw/inc/strings.hrc:273
+#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_SEARCH"
msgid "Search..."
msgstr "Soek..."
#. nPLt7
-#: sw/inc/strings.hrc:274
+#: sw/inc/strings.hrc:275
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
msgstr "Brief"
#. LuH5F
-#: sw/inc/strings.hrc:275
+#: sw/inc/strings.hrc:276
msgctxt "STR_STATSTR_SPELL"
msgid "Spellcheck..."
msgstr "Speltoets..."
#. uk874
-#: sw/inc/strings.hrc:276
+#: sw/inc/strings.hrc:277
msgctxt "STR_STATSTR_HYPHEN"
msgid "Hyphenation..."
msgstr "Woordafbreking..."
#. Dku8Y
-#: sw/inc/strings.hrc:277
+#: sw/inc/strings.hrc:278
msgctxt "STR_STATSTR_TOX_INSERT"
msgid "Inserting Index..."
msgstr "Voeg tans indeks in..."
#. wvAiH
-#: sw/inc/strings.hrc:278
+#: sw/inc/strings.hrc:279
msgctxt "STR_STATSTR_TOX_UPDATE"
msgid "Updating Index..."
msgstr "Werk tans indeks by..."
#. YBupW
-#: sw/inc/strings.hrc:279
+#: sw/inc/strings.hrc:280
msgctxt "STR_STATSTR_SUMMARY"
msgid "Creating abstract..."
msgstr "Skep tans abstrak..."
#. Nd6Lf
-#: sw/inc/strings.hrc:280
+#: sw/inc/strings.hrc:281
msgctxt "STR_STATSTR_SWGPRTOLENOTIFY"
msgid "Adapt Objects..."
msgstr "Pas objekte aan..."
#. PSGuv
-#: sw/inc/strings.hrc:281
+#: sw/inc/strings.hrc:282
msgctxt "STR_TABLE_DEFNAME"
msgid "Table"
msgstr "Tabel"
#. J4m7R
-#: sw/inc/strings.hrc:282
+#: sw/inc/strings.hrc:283
msgctxt "STR_GRAPHIC_DEFNAME"
msgid "Image"
msgstr "Beeld"
#. qceuT
-#: sw/inc/strings.hrc:283
+#: sw/inc/strings.hrc:284
msgctxt "STR_OBJECT_DEFNAME"
msgid "Object"
msgstr "Objek"
#. UE4Z2
-#: sw/inc/strings.hrc:284
+#: sw/inc/strings.hrc:285
msgctxt "STR_FRAME_DEFNAME"
msgid "Frame"
msgstr "Raam"
#. qHLFq
-#: sw/inc/strings.hrc:285
+#: sw/inc/strings.hrc:286
msgctxt "STR_SHAPE_DEFNAME"
msgid "Shape"
msgstr "Vorm"
#. qcwAT
-#: sw/inc/strings.hrc:286
+#: sw/inc/strings.hrc:287
msgctxt "STR_REGION_DEFNAME"
msgid "Section"
msgstr "Afdeling"
#. ZkHpJ
-#: sw/inc/strings.hrc:287
+#: sw/inc/strings.hrc:288
msgctxt "STR_NUMRULE_DEFNAME"
msgid "Numbering"
msgstr "Nommering"
#. Vk8M5
-#: sw/inc/strings.hrc:288
+#: sw/inc/strings.hrc:289
msgctxt "STR_EMPTYPAGE"
msgid "blank page"
msgstr "skoon bladsy"
#. FBG9v
-#: sw/inc/strings.hrc:289
+#: sw/inc/strings.hrc:290
msgctxt "STR_ABSTRACT_TITLE"
msgid "Abstract: "
msgstr "Abstrak: "
#. iD2VD
-#: sw/inc/strings.hrc:290
+#: sw/inc/strings.hrc:291
msgctxt "STR_FDLG_TEMPLATE_NAME"
msgid "separated by: "
msgstr "geskei deur: "
#. CV6nr
-#: sw/inc/strings.hrc:291
+#: sw/inc/strings.hrc:292
msgctxt "STR_FDLG_OUTLINE_LEVEL"
msgid "Outline: Level "
msgstr "Skema: Vlak "
#. oEvac
-#: sw/inc/strings.hrc:292
+#: sw/inc/strings.hrc:293
msgctxt "STR_FDLG_STYLE"
msgid "Style: "
msgstr "Styl: "
#. BZdQA
-#: sw/inc/strings.hrc:293
+#: sw/inc/strings.hrc:294
msgctxt "STR_PAGEOFFSET"
msgid "Page number: "
msgstr "Bladsynommer: "
#. u6eev
-#: sw/inc/strings.hrc:294
+#: sw/inc/strings.hrc:295
msgctxt "STR_PAGEBREAK"
msgid "Break before new page"
msgstr "Breek voor nuwe bladsy"
#. hDBmF
-#: sw/inc/strings.hrc:295
+#: sw/inc/strings.hrc:296
msgctxt "STR_WESTERN_FONT"
msgid "Western text: "
msgstr "Westerse teks: "
#. w3ngS
-#: sw/inc/strings.hrc:296
+#: sw/inc/strings.hrc:297
msgctxt "STR_CJK_FONT"
msgid "Asian text: "
msgstr "Asiatiese teks: "
#. k6G7J
-#: sw/inc/strings.hrc:297
+#: sw/inc/strings.hrc:298
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
msgstr "KTL-teks: "
#. GC6Rd
-#: sw/inc/strings.hrc:298
+#: sw/inc/strings.hrc:299
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
msgid "Unknown Author"
msgstr "Onbekende outeur"
#. XUSDj
-#: sw/inc/strings.hrc:299
+#: sw/inc/strings.hrc:300
msgctxt "STR_DELETE_NOTE_AUTHOR"
msgid "Delete ~All Comments by $1"
msgstr "Skrap ~alle opmerkings deur $1"
#. 3TDWE
-#: sw/inc/strings.hrc:300
+#: sw/inc/strings.hrc:301
msgctxt "STR_HIDE_NOTE_AUTHOR"
msgid "H~ide All Comments by $1"
msgstr "Versteek alle opmerki~ngs deur $1"
#. 52Kyz
-#: sw/inc/strings.hrc:301
+#: sw/inc/strings.hrc:302
msgctxt "STR_OUTLINE_NUMBERING"
msgid "Heading Numbering"
msgstr "Opskrif Nommering"
#. DAoSH
-#: sw/inc/strings.hrc:302
+#: sw/inc/strings.hrc:303
msgctxt "STR_STATSTR_SWTRANSLATE"
msgid "Translating document..."
msgstr "Vertaal dokument..."
@@ -3924,14 +3942,14 @@ msgstr "Vertaal dokument..."
#. 8mutJ
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. Selected: 1 word, 2 characters
-#: sw/inc/strings.hrc:305
+#: sw/inc/strings.hrc:306
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
msgstr "Gemerk: $1, $2"
#. E6L2o
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
-#: sw/inc/strings.hrc:307
+#: sw/inc/strings.hrc:308
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3940,7 +3958,7 @@ msgstr[1] "$1 woorde"
#. kNQDp
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
-#: sw/inc/strings.hrc:309
+#: sw/inc/strings.hrc:310
msgctxt "STR_WORDCOUNT_CHARARG"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3950,7 +3968,7 @@ msgstr[1] "$1 karakters"
#. UgpUM
#. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG
#. e.g. 1 word, 2 characters
-#: sw/inc/strings.hrc:312
+#: sw/inc/strings.hrc:313
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
msgstr "$1, $2"
@@ -3958,7 +3976,7 @@ msgstr "$1, $2"
#. uzSNE
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
-#: sw/inc/strings.hrc:315
+#: sw/inc/strings.hrc:316
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
@@ -3968,7 +3986,7 @@ msgstr[1] "$1 woorde"
#. KuZYC
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
-#: sw/inc/strings.hrc:318
+#: sw/inc/strings.hrc:319
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
@@ -3976,91 +3994,91 @@ msgstr[0] "$1 karakter"
msgstr[1] "$1 karakters"
#. fj6gC
-#: sw/inc/strings.hrc:319
+#: sw/inc/strings.hrc:320
msgctxt "STR_CONVERT_TEXT_TABLE"
msgid "Convert Text to Table"
msgstr "Skakel teks om na tabel"
#. PknB5
-#: sw/inc/strings.hrc:320
+#: sw/inc/strings.hrc:321
msgctxt "STR_ADD_AUTOFORMAT_TITLE"
msgid "Add AutoFormat"
msgstr "Voeg Outoformaat by"
#. hqtgD
-#: sw/inc/strings.hrc:321
+#: sw/inc/strings.hrc:322
msgctxt "STR_ADD_AUTOFORMAT_LABEL"
msgid "Name"
msgstr "Naam"
#. L9jQU
-#: sw/inc/strings.hrc:322
+#: sw/inc/strings.hrc:323
msgctxt "STR_DEL_AUTOFORMAT_TITLE"
msgid "Delete AutoFormat"
msgstr "Skrap Outoformaat"
#. EGu2g
-#: sw/inc/strings.hrc:323
+#: sw/inc/strings.hrc:324
msgctxt "STR_DEL_AUTOFORMAT_MSG"
msgid "The following AutoFormat entry will be deleted:"
msgstr "Die volgende Outoformaat-inskrywing sal geskrap word:"
#. 7KuSQ
-#: sw/inc/strings.hrc:324
+#: sw/inc/strings.hrc:325
msgctxt "STR_RENAME_AUTOFORMAT_TITLE"
msgid "Rename AutoFormat"
msgstr "Hernoem Outoformaat"
#. GDdL3
-#: sw/inc/strings.hrc:325
+#: sw/inc/strings.hrc:326
msgctxt "STR_BTN_AUTOFORMAT_CLOSE"
msgid "~Close"
msgstr "~Sluit"
#. DAuNm
-#: sw/inc/strings.hrc:326
+#: sw/inc/strings.hrc:327
msgctxt "STR_JAN"
msgid "Jan"
msgstr "Jan"
#. WWzNg
-#: sw/inc/strings.hrc:327
+#: sw/inc/strings.hrc:328
msgctxt "STR_FEB"
msgid "Feb"
msgstr "Feb"
#. CCC3U
-#: sw/inc/strings.hrc:328
+#: sw/inc/strings.hrc:329
msgctxt "STR_MAR"
msgid "Mar"
msgstr "Mrt"
#. cr7Jq
-#: sw/inc/strings.hrc:329
+#: sw/inc/strings.hrc:330
msgctxt "STR_NORTH"
msgid "North"
msgstr "Noord"
#. wHYPw
-#: sw/inc/strings.hrc:330
+#: sw/inc/strings.hrc:331
msgctxt "STR_MID"
msgid "Mid"
msgstr "Mid"
#. sxDHC
-#: sw/inc/strings.hrc:331
+#: sw/inc/strings.hrc:332
msgctxt "STR_SOUTH"
msgid "South"
msgstr "Suid"
#. v65zt
-#: sw/inc/strings.hrc:332
+#: sw/inc/strings.hrc:333
msgctxt "STR_SUM"
msgid "Sum"
msgstr "Som"
#. tCZiD
-#: sw/inc/strings.hrc:333
+#: sw/inc/strings.hrc:334
msgctxt "STR_INVALID_AUTOFORMAT_NAME"
msgid ""
"You have entered an invalid name.\n"
@@ -4072,462 +4090,456 @@ msgstr ""
"Probeer weer met ’n ander naam."
#. EdGPC
-#: sw/inc/strings.hrc:334
+#: sw/inc/strings.hrc:335
msgctxt "STR_CANT_SAVE_MACROS"
msgid "This document has macros, but macros will not be saved in this file format."
msgstr "Hierdie dokument bevat makros, maar makros sal nie in hierdie lêer gestoor word nie."
#. DAwsE
-#: sw/inc/strings.hrc:335
+#: sw/inc/strings.hrc:336
msgctxt "STR_NUMERIC"
msgid "Numeric"
msgstr "Numeries"
#. QmZUu
-#: sw/inc/strings.hrc:336
+#: sw/inc/strings.hrc:337
msgctxt "STR_ROW"
msgid "Rows"
msgstr "Rye"
#. 5oTjU
-#: sw/inc/strings.hrc:337
+#: sw/inc/strings.hrc:338
msgctxt "STR_COL"
msgid "Column"
msgstr "Kolom"
#. w6733
-#: sw/inc/strings.hrc:338
+#: sw/inc/strings.hrc:339
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
msgstr "Redigeer bibliografie-inskrywing"
#. bvbhG
-#: sw/inc/strings.hrc:339
+#: sw/inc/strings.hrc:340
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
msgstr "Voeg bibliografie-inskrywing in"
#. U2BNe
-#: sw/inc/strings.hrc:340
+#: sw/inc/strings.hrc:341
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
msgid "Spacing between %1 and %2"
msgstr "Spasiëring tussen %1 en %2"
#. SBmWN
-#: sw/inc/strings.hrc:341
+#: sw/inc/strings.hrc:342
msgctxt "STR_ACCESS_COLUMN_WIDTH"
msgid "Column %1 Width"
msgstr "Kolom %1 se wydte"
#. ZLVNB
-#: sw/inc/strings.hrc:342
+#: sw/inc/strings.hrc:343
msgctxt "STR_CAPTION_TABLE"
msgid "%PRODUCTNAME Writer Table"
msgstr "%PRODUCTNAME Writer-tabel"
#. FMXrc
-#: sw/inc/strings.hrc:343
+#: sw/inc/strings.hrc:344
msgctxt "STR_CAPTION_FRAME"
msgid "%PRODUCTNAME Writer Frame"
msgstr "%PRODUCTNAME Writer-raam"
#. gEGv8
-#: sw/inc/strings.hrc:344
+#: sw/inc/strings.hrc:345
msgctxt "STR_CAPTION_GRAPHIC"
msgid "%PRODUCTNAME Writer Image"
msgstr "%PRODUCTNAME Writer-beeld"
#. k8kLw
-#: sw/inc/strings.hrc:345
+#: sw/inc/strings.hrc:346
msgctxt "STR_CAPTION_OLE"
msgid "Other OLE Objects"
msgstr "Ander OLE-objekte"
#. rP7oC
-#: sw/inc/strings.hrc:346
+#: sw/inc/strings.hrc:347
msgctxt "STR_WRONG_TABLENAME"
msgid "The name of the table must not contain spaces."
msgstr "Die naam van die tabel mag nie spasies bevat nie."
#. g9HF2
-#: sw/inc/strings.hrc:347
+#: sw/inc/strings.hrc:348
msgctxt "STR_ERR_TABLE_MERGE"
msgid "Selected table cells are too complex to merge."
msgstr "Gemerkte tabelselle is te kompleks om saam te voeg."
#. VFBKA
-#: sw/inc/strings.hrc:348
+#: sw/inc/strings.hrc:349
msgctxt "STR_SRTERR"
msgid "Cannot sort selection"
msgstr "Seleksie kan nie gesorteer word nie"
#. zK6GB
#. Miscellaneous
-#: sw/inc/strings.hrc:351
+#: sw/inc/strings.hrc:352
msgctxt "STR_EVENT_OBJECT_SELECT"
msgid "Click object"
msgstr "Kliek objek"
#. HmK3X
-#: sw/inc/strings.hrc:352
+#: sw/inc/strings.hrc:353
msgctxt "STR_EVENT_START_INS_GLOSSARY"
msgid "Before inserting AutoText"
msgstr "Voordat Outoteks ingevoeg word"
#. aEVDN
-#: sw/inc/strings.hrc:353
+#: sw/inc/strings.hrc:354
msgctxt "STR_EVENT_END_INS_GLOSSARY"
msgid "After inserting AutoText"
msgstr "Nadat Outoteks ingevoeg is"
#. GVkr6
-#: sw/inc/strings.hrc:354
+#: sw/inc/strings.hrc:355
msgctxt "STR_EVENT_MOUSEOVER_OBJECT"
msgid "Mouse over object"
msgstr "Muis oor objek"
#. MBLgk
-#: sw/inc/strings.hrc:355
+#: sw/inc/strings.hrc:356
msgctxt "STR_EVENT_MOUSECLICK_OBJECT"
msgid "Trigger hyperlink"
msgstr "Aktiveer hiperskakel"
#. BXpj4
-#: sw/inc/strings.hrc:356
+#: sw/inc/strings.hrc:357
msgctxt "STR_EVENT_MOUSEOUT_OBJECT"
msgid "Mouse leaves object"
msgstr "Muis verlaat objek"
#. AKGsc
-#: sw/inc/strings.hrc:357
+#: sw/inc/strings.hrc:358
msgctxt "STR_EVENT_IMAGE_LOAD"
msgid "Image loaded successfully"
msgstr "Beeld suksesvol gelaai"
#. U4P8F
-#: sw/inc/strings.hrc:358
+#: sw/inc/strings.hrc:359
msgctxt "STR_EVENT_IMAGE_ABORT"
msgid "Image loading terminated"
msgstr "Laai van beeld is gestaak"
#. uLNMH
-#: sw/inc/strings.hrc:359
+#: sw/inc/strings.hrc:360
msgctxt "STR_EVENT_IMAGE_ERROR"
msgid "Could not load image"
msgstr "Kon beeld nie laai nie"
#. DAGeE
-#: sw/inc/strings.hrc:360
+#: sw/inc/strings.hrc:361
msgctxt "STR_EVENT_FRM_KEYINPUT_A"
msgid "Input of alphanumeric characters"
msgstr "Invoer van alfanumeriese karakters"
#. ABr9D
-#: sw/inc/strings.hrc:361
+#: sw/inc/strings.hrc:362
msgctxt "STR_EVENT_FRM_KEYINPUT_NOA"
msgid "Input of non-alphanumeric characters"
msgstr "Invoer van niealfanumeriese karakters"
#. eyJj8
-#: sw/inc/strings.hrc:362
+#: sw/inc/strings.hrc:363
msgctxt "STR_EVENT_FRM_RESIZE"
msgid "Resize frame"
msgstr "Verstel raamgrootte"
#. RUS7J
-#: sw/inc/strings.hrc:363
+#: sw/inc/strings.hrc:364
msgctxt "STR_EVENT_FRM_MOVE"
msgid "Move frame"
msgstr "Skuif raam"
#. TF3Q9
-#: sw/inc/strings.hrc:364
+#: sw/inc/strings.hrc:365
msgctxt "STR_CONTENT_TYPE_OUTLINE"
msgid "Headings"
msgstr "Opskrifte"
#. S3JCM
-#: sw/inc/strings.hrc:365
+#: sw/inc/strings.hrc:366
msgctxt "STR_CONTENT_TYPE_TABLE"
msgid "Tables"
msgstr "Tabelle"
#. koqyc
-#: sw/inc/strings.hrc:366
+#: sw/inc/strings.hrc:367
msgctxt "STR_CONTENT_TYPE_FRAME"
msgid "Frames"
msgstr "Rame"
#. YFZFi
-#: sw/inc/strings.hrc:367
+#: sw/inc/strings.hrc:368
msgctxt "STR_CONTENT_TYPE_GRAPHIC"
msgid "Images"
msgstr "Beelde"
#. bq6DJ
-#: sw/inc/strings.hrc:368
+#: sw/inc/strings.hrc:369
msgctxt "STR_CONTENT_TYPE_OLE"
msgid "OLE objects"
msgstr "OLE-objekte"
#. BL4Es
-#: sw/inc/strings.hrc:369
+#: sw/inc/strings.hrc:370
msgctxt "STR_CONTENT_TYPE_BOOKMARK"
msgid "Bookmarks"
msgstr "Boekmerke"
#. PbsTX
-#: sw/inc/strings.hrc:370
+#: sw/inc/strings.hrc:371
msgctxt "STR_CONTENT_TYPE_REGION"
msgid "Sections"
msgstr "Afdelings"
#. 9QY8E
-#: sw/inc/strings.hrc:371
+#: sw/inc/strings.hrc:372
msgctxt "STR_CONTENT_TYPE_URLFIELD"
msgid "Hyperlinks"
msgstr "Hiperskakels"
#. wMqRF
-#: sw/inc/strings.hrc:372
+#: sw/inc/strings.hrc:373
msgctxt "STR_CONTENT_TYPE_REFERENCE"
msgid "References"
msgstr "Verwysings"
#. D7Etx
-#: sw/inc/strings.hrc:373
+#: sw/inc/strings.hrc:374
msgctxt "STR_CONTENT_TYPE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. xDXB4
-#: sw/inc/strings.hrc:374
+#: sw/inc/strings.hrc:375
msgctxt "STR_CONTENT_TYPE_DRAWOBJECT"
msgid "Drawing objects"
msgstr "Tekenobjekte"
#. GDSbW
-#: sw/inc/strings.hrc:375
+#: sw/inc/strings.hrc:376
msgctxt "STR_CONTENT_TYPE_TEXTFIELD"
msgid "Fields"
msgstr "Velde"
#. FPLbd
-#: sw/inc/strings.hrc:376
+#: sw/inc/strings.hrc:377
msgctxt "STR_CONTENT_TYPE_FOOTNOTE"
msgid "Footnotes"
msgstr "Voetnotas"
#. FGDB7
-#: sw/inc/strings.hrc:377
+#: sw/inc/strings.hrc:378
msgctxt "STR_CONTENT_TYPE_ENDNOTE"
msgid "Endnotes"
msgstr "Eindnote"
#. KRE4o
-#: sw/inc/strings.hrc:378
+#: sw/inc/strings.hrc:379
msgctxt "STR_CONTENT_TYPE_POSTIT"
msgid "Comments"
msgstr "Opmerkings"
#. zpcTg
-#: sw/inc/strings.hrc:379
+#: sw/inc/strings.hrc:380
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING1"
msgid "Heading 1"
msgstr "Opskrif 1"
#. kbfiB
-#: sw/inc/strings.hrc:380
+#: sw/inc/strings.hrc:381
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY1"
msgid "This is the content from the first chapter. This is a user directory entry."
msgstr "Hierdie is die inhoud van die eerste hoofstuk. Dit is ’n inskrywing vir ’n gebruikersindeks."
#. wcSRn
-#: sw/inc/strings.hrc:381
+#: sw/inc/strings.hrc:382
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING11"
msgid "Heading 1.1"
msgstr "Opskrif 1.1"
#. QDE2j
-#: sw/inc/strings.hrc:382
+#: sw/inc/strings.hrc:383
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11"
msgid "This is the content from subchapter 1.1. This is the entry for the table of contents."
msgstr "Dit is die inhoud van subhoofstuk 1.1. Dit is die inskrywing vir die inhoudsopgawe."
#. bymGA
-#: sw/inc/strings.hrc:383
+#: sw/inc/strings.hrc:384
msgctxt "STR_IDXEXAMPLE_IDXTXT_HEADING12"
msgid "Heading 1.2"
msgstr "Opskrif 1.2"
#. vT3Xi
-#: sw/inc/strings.hrc:384
+#: sw/inc/strings.hrc:385
msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY12"
msgid "This is the content from subchapter 1.2. This keyword is a main entry."
msgstr "Dit is die inhoud van subhoofstuk 1.2. Hierdie sleutelwoord is 'n hoofinskrywing."
#. mFDqo
-#: sw/inc/strings.hrc:385
+#: sw/inc/strings.hrc:386
msgctxt "STR_IDXEXAMPLE_IDXTXT_TABLE1"
msgid "Table 1: This is table 1"
msgstr "Tabel 1: Hierdie is tabel 1"
#. VyQfs
-#: sw/inc/strings.hrc:386
+#: sw/inc/strings.hrc:387
msgctxt "STR_IDXEXAMPLE_IDXTXT_IMAGE1"
msgid "Image 1: This is image 1"
msgstr "Beeld 1: Hierdie is beeld 1"
#. EiPU5
-#: sw/inc/strings.hrc:387
+#: sw/inc/strings.hrc:388
msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. s9w3k
-#: sw/inc/strings.hrc:388
+#: sw/inc/strings.hrc:389
msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD"
msgid "Keyword"
msgstr "Sleutelwoord"
#. 8bbUo
-#: sw/inc/strings.hrc:389
+#: sw/inc/strings.hrc:390
msgctxt "STR_IDXEXAMPLE_IDXMARK_USER_DIR_ENTRY"
msgid "User Directory Entry"
msgstr "Gebruikergidsinskrywing"
#. SoBBB
-#: sw/inc/strings.hrc:390
+#: sw/inc/strings.hrc:391
msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. cT6YY
-#: sw/inc/strings.hrc:391
+#: sw/inc/strings.hrc:392
msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS"
msgid "this"
msgstr "hierdie"
#. KNkfh
-#: sw/inc/strings.hrc:392
+#: sw/inc/strings.hrc:393
msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY"
msgid "Primary key"
msgstr "1. Primêre Sleutel"
#. 2J7Ut
-#: sw/inc/strings.hrc:393
+#: sw/inc/strings.hrc:394
msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY"
msgid "Secondary key"
msgstr "2. Sekondêre Sleutel"
#. beBJ6
-#: sw/inc/strings.hrc:394
+#: sw/inc/strings.hrc:395
msgctxt "STR_CONTENT_TYPE_SINGLE_OUTLINE"
msgid "Heading"
msgstr "Opskrif"
#. dGJ5Q
-#: sw/inc/strings.hrc:395
+#: sw/inc/strings.hrc:396
msgctxt "STR_CONTENT_TYPE_SINGLE_TABLE"
msgid "Table"
msgstr "Tabel"
#. thWKC
-#: sw/inc/strings.hrc:396
+#: sw/inc/strings.hrc:397
msgctxt "STR_CONTENT_TYPE_SINGLE_FRAME"
msgid "Frame"
msgstr "Raam"
#. o2wx8
-#: sw/inc/strings.hrc:397
+#: sw/inc/strings.hrc:398
msgctxt "STR_CONTENT_TYPE_SINGLE_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. 2duFT
-#: sw/inc/strings.hrc:398
+#: sw/inc/strings.hrc:399
msgctxt "STR_CONTENT_TYPE_SINGLE_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. qNk5D
-#: sw/inc/strings.hrc:399
+#: sw/inc/strings.hrc:400
msgctxt "STR_CONTENT_TYPE_SINGLE_BOOKMARK"
msgid "Bookmark"
msgstr "Boekmerk"
#. jdW3y
-#: sw/inc/strings.hrc:400
+#: sw/inc/strings.hrc:401
msgctxt "STR_CONTENT_TYPE_SINGLE_REGION"
msgid "Section"
msgstr "Afdeling"
#. xsFen
-#: sw/inc/strings.hrc:401
+#: sw/inc/strings.hrc:402
msgctxt "STR_CONTENT_TYPE_SINGLE_URLFIELD"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. BafFj
-#: sw/inc/strings.hrc:402
+#: sw/inc/strings.hrc:403
msgctxt "STR_CONTENT_TYPE_SINGLE_REFERENCE"
msgid "Reference"
msgstr "Verwysing"
#. 3s3yG
-#: sw/inc/strings.hrc:403
+#: sw/inc/strings.hrc:404
msgctxt "STR_CONTENT_TYPE_SINGLE_INDEX"
msgid "Index"
msgstr "Indeks"
#. Qv3eV
-#: sw/inc/strings.hrc:404
+#: sw/inc/strings.hrc:405
msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT"
msgid "Comment"
msgstr "Opmerking"
#. W3sED
-#: sw/inc/strings.hrc:405
+#: sw/inc/strings.hrc:406
msgctxt "STR_CONTENT_TYPE_SINGLE_DRAWOBJECT"
msgid "Draw object"
msgstr "Tekenobjek"
#. PTFow
-#: sw/inc/strings.hrc:406
+#: sw/inc/strings.hrc:407
msgctxt "STR_CONTENT_TYPE_SINGLE_TEXTFIELD"
msgid "Field"
msgstr "Veld"
#. gFNUw
-#: sw/inc/strings.hrc:407
+#: sw/inc/strings.hrc:408
msgctxt "STR_CONTENT_TYPE_SINGLE_FOOTNOTE"
msgid "Footnote"
msgstr "Voetnoot"
#. ChCSP
-#: sw/inc/strings.hrc:408
+#: sw/inc/strings.hrc:409
msgctxt "STR_CONTENT_TYPE_SINGLE_ENDNOTE"
msgid "Endnote"
msgstr "Eindnota"
#. dFkui
-#: sw/inc/strings.hrc:409
+#: sw/inc/strings.hrc:410
msgctxt "STR_CONTENT_FOOTNOTE"
msgid "Footnote"
msgstr "Voetnota"
#. X6DYF
-#: sw/inc/strings.hrc:410
+#: sw/inc/strings.hrc:411
msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
msgstr "Eindnota"
-#. sEQCK
-#: sw/inc/strings.hrc:411
-msgctxt "STR_FOOTNOTE_ENDNOTE_SEPARATOR_TIP"
-msgid "Footnotes are listed above this line and Endnotes are listed below"
-msgstr "Voetnotas word gelys bokant hierdie lyn en Eindnotas word onder gelys"
-
#. jThGW
#: sw/inc/strings.hrc:412
msgctxt "STR_DEFINE_NUMBERFORMAT"
@@ -4592,681 +4604,675 @@ msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
msgstr "Dokument bevat opgeneemde wysigings."
-#. 5gsCi
-#: sw/inc/strings.hrc:422
-msgctxt "STR_HEADER_FOOTER"
-msgid "Header/Footer"
-msgstr "Kopteks/Voetteks"
-
#. ytRb2
-#: sw/inc/strings.hrc:423
+#: sw/inc/strings.hrc:422
msgctxt "STR_FLDREF_FOOTNOTE"
msgid "Footnote"
msgstr "Voetnoot"
#. ou7iB
-#: sw/inc/strings.hrc:424
+#: sw/inc/strings.hrc:423
msgctxt "STR_FLDREF_ENDNOTE"
msgid "Endnote"
msgstr "Eindnota"
#. MEN2d
#. Undo
-#: sw/inc/strings.hrc:427
+#: sw/inc/strings.hrc:426
msgctxt "STR_CANT_UNDO"
msgid "not possible"
msgstr "nie moontlik nie"
#. 5GdxN
-#: sw/inc/strings.hrc:428
+#: sw/inc/strings.hrc:427
msgctxt "STR_DELETE_UNDO"
msgid "Delete $1"
msgstr "Skrap $1"
#. i6vB4
-#: sw/inc/strings.hrc:429
+#: sw/inc/strings.hrc:428
msgctxt "STR_INSERT_UNDO"
msgid "Insert $1"
msgstr "Voeg $1 in"
#. JESFv
-#: sw/inc/strings.hrc:430
+#: sw/inc/strings.hrc:429
msgctxt "STR_OVR_UNDO"
msgid "Overwrite: $1"
msgstr "Oorskryf: $1"
#. FVqpL
-#: sw/inc/strings.hrc:431
+#: sw/inc/strings.hrc:430
msgctxt "STR_SPLITNODE_UNDO"
msgid "New Paragraph"
msgstr "Nuwe paragraaf"
#. r3iVE
-#: sw/inc/strings.hrc:432
+#: sw/inc/strings.hrc:431
msgctxt "STR_MOVE_UNDO"
msgid "Move"
msgstr "Skuif"
#. Z2Ft8
-#: sw/inc/strings.hrc:433
+#: sw/inc/strings.hrc:432
msgctxt "STR_INSATTR_UNDO"
msgid "Apply attributes"
msgstr "Pas attribute toe"
#. hetuZ
-#: sw/inc/strings.hrc:434
+#: sw/inc/strings.hrc:433
msgctxt "STR_SETFMTCOLL_UNDO"
msgid "Apply Styles: $1"
msgstr "Pas style toe: $1"
#. GokWu
-#: sw/inc/strings.hrc:435
+#: sw/inc/strings.hrc:434
msgctxt "STR_RESET_ATTR_UNDO"
msgid "Reset attributes"
msgstr "Laai attribute terug"
#. mDgEJ
-#: sw/inc/strings.hrc:436
+#: sw/inc/strings.hrc:435
msgctxt "STR_INSFMT_ATTR_UNDO"
msgid "Change style: $1"
msgstr "Verander styl: $1"
#. onBFE
-#: sw/inc/strings.hrc:437
+#: sw/inc/strings.hrc:436
msgctxt "STR_INSERT_DOC_UNDO"
msgid "Insert file"
msgstr "Voeg lêer in"
#. WCCkF
-#: sw/inc/strings.hrc:438
+#: sw/inc/strings.hrc:437
msgctxt "STR_INSERT_GLOSSARY"
msgid "Insert AutoText"
msgstr "Voeg Outoteks in"
#. CyNXC
-#: sw/inc/strings.hrc:439
+#: sw/inc/strings.hrc:438
msgctxt "STR_DELBOOKMARK"
msgid "Delete bookmark: $1"
msgstr "Skrap boekmerk: $1"
#. zFANC
-#: sw/inc/strings.hrc:440
+#: sw/inc/strings.hrc:439
msgctxt "STR_DELETE_BOOKMARKS"
msgid "Delete bookmarks"
msgstr "Skrap boekmerke"
#. 54y8f
-#: sw/inc/strings.hrc:441
+#: sw/inc/strings.hrc:440
msgctxt "STR_INSBOOKMARK"
msgid "Insert bookmark: $1"
msgstr "Voeg boekmerk in: $1"
#. thkPu
-#: sw/inc/strings.hrc:442
+#: sw/inc/strings.hrc:441
msgctxt "STR_UPDATE_BOOKMARK"
msgid "Update bookmark: $1"
msgstr "Opdateer boekmerk: $1"
#. d6wEB
-#: sw/inc/strings.hrc:443
+#: sw/inc/strings.hrc:442
msgctxt "STR_UPDATE_BOOKMARKS"
msgid "Update bookmarks"
msgstr "Opdateer boekmerke"
#. i7aeN
-#: sw/inc/strings.hrc:444
+#: sw/inc/strings.hrc:443
msgctxt "STR_UPDATE_FIELD"
msgid "Update field: $1"
msgstr "Wysig veld: $1"
#. GzFSP
-#: sw/inc/strings.hrc:445
+#: sw/inc/strings.hrc:444
msgctxt "STR_UPDATE_FIELDS"
msgid "Update fields"
msgstr "Wysig velde"
#. HACdT
-#: sw/inc/strings.hrc:446
+#: sw/inc/strings.hrc:445
msgctxt "STR_DELETE_FIELDS"
msgid "Delete fields"
msgstr "Skrap velde"
#. gEXeo
-#: sw/inc/strings.hrc:447
+#: sw/inc/strings.hrc:446
msgctxt "STR_UPDATE_SECTIONS"
msgid "Update sections"
msgstr "Wysig seksies"
#. ZdcaY
-#: sw/inc/strings.hrc:448
+#: sw/inc/strings.hrc:447
msgctxt "STR_DELETE_SECTIONS"
msgid "Delete sections"
msgstr "Skrap seksies"
#. XHkEY
-#: sw/inc/strings.hrc:449
+#: sw/inc/strings.hrc:448
msgctxt "STR_SORT_TBL"
msgid "Sort table"
msgstr "Sorteer tabel"
#. gui6q
-#: sw/inc/strings.hrc:450
+#: sw/inc/strings.hrc:449
msgctxt "STR_SORT_TXT"
msgid "Sort text"
msgstr "Sorteer teks"
#. APAMG
-#: sw/inc/strings.hrc:451
+#: sw/inc/strings.hrc:450
msgctxt "STR_INSTABLE_UNDO"
msgid "Insert table: $1$2$3"
msgstr "Voeg tabel in: $1$2$3"
#. 4pGhz
-#: sw/inc/strings.hrc:452
+#: sw/inc/strings.hrc:451
msgctxt "STR_TEXTTOTABLE_UNDO"
msgid "Convert text -> table"
msgstr "Skakel om teks → tabel"
#. h3EH7
-#: sw/inc/strings.hrc:453
+#: sw/inc/strings.hrc:452
msgctxt "STR_TABLETOTEXT_UNDO"
msgid "Convert table -> text"
msgstr "Skakel om tabel → teks"
#. uKreq
-#: sw/inc/strings.hrc:454
+#: sw/inc/strings.hrc:453
msgctxt "STR_COPY_UNDO"
msgid "Copy: $1"
msgstr "Kopieer: $1"
#. BfGaZ
-#: sw/inc/strings.hrc:455
+#: sw/inc/strings.hrc:454
msgctxt "STR_REPLACE_UNDO"
msgid "Replace $1 $2 $3"
msgstr "Vervang $1 $2 $3"
#. GEC4C
-#: sw/inc/strings.hrc:456
+#: sw/inc/strings.hrc:455
msgctxt "STR_INSERT_PAGE_BREAK_UNDO"
msgid "Insert page break"
msgstr "Voeg bladsybreuk in"
#. mrWg2
-#: sw/inc/strings.hrc:457
+#: sw/inc/strings.hrc:456
msgctxt "STR_INSERT_COLUMN_BREAK_UNDO"
msgid "Insert column break"
msgstr "Voeg kolombreuk in"
#. MGqRt
-#: sw/inc/strings.hrc:458
+#: sw/inc/strings.hrc:457
msgctxt "STR_INSERT_ENV_UNDO"
msgid "Insert Envelope"
msgstr "Voeg koevert in"
#. g8ALR
-#: sw/inc/strings.hrc:459
+#: sw/inc/strings.hrc:458
msgctxt "STR_DRAG_AND_COPY"
msgid "Copy: $1"
msgstr "Kopieer: $1"
#. qHdLG
-#: sw/inc/strings.hrc:460
+#: sw/inc/strings.hrc:459
msgctxt "STR_DRAG_AND_MOVE"
msgid "Move: $1"
msgstr "Skuif: $1"
#. xqxPn
-#: sw/inc/strings.hrc:461
+#: sw/inc/strings.hrc:460
msgctxt "STR_INSERT_CHART"
msgid "Insert %PRODUCTNAME Chart"
msgstr "Voeg %PRODUCTNAME-grafiek in"
#. qWEVG
-#: sw/inc/strings.hrc:462
+#: sw/inc/strings.hrc:461
msgctxt "STR_INSERTFLY"
msgid "Insert frame"
msgstr "Voeg raam in"
#. GmqXE
-#: sw/inc/strings.hrc:463
+#: sw/inc/strings.hrc:462
msgctxt "STR_DELETEFLY"
msgid "Delete frame"
msgstr "Skrap raam"
#. z9Eai
-#: sw/inc/strings.hrc:464
+#: sw/inc/strings.hrc:463
msgctxt "STR_AUTOFORMAT"
msgid "AutoFormat"
msgstr "Outoformaat"
#. E6uaH
-#: sw/inc/strings.hrc:465
+#: sw/inc/strings.hrc:464
msgctxt "STR_TABLEHEADLINE"
msgid "Table heading"
msgstr "Tabelopskrif"
#. gnndv
-#: sw/inc/strings.hrc:466
+#: sw/inc/strings.hrc:465
msgctxt "STR_REPLACE"
msgid "Replace: $1 $2 $3"
msgstr "Vervang: $1 $2 $3"
#. WwuFC
-#: sw/inc/strings.hrc:467
+#: sw/inc/strings.hrc:466
msgctxt "STR_INSERTSECTION"
msgid "Insert section"
msgstr "Voeg afdeling in"
#. 7pzWX
-#: sw/inc/strings.hrc:468
+#: sw/inc/strings.hrc:467
msgctxt "STR_DELETESECTION"
msgid "Delete section"
msgstr "Skrap afdeling"
#. AFkoM
-#: sw/inc/strings.hrc:469
+#: sw/inc/strings.hrc:468
msgctxt "STR_CHANGESECTION"
msgid "Modify section"
msgstr "Wysig afdeling"
#. BY9gB
-#: sw/inc/strings.hrc:470
+#: sw/inc/strings.hrc:469
msgctxt "STR_CHANGEDEFATTR"
msgid "Modify default values"
msgstr "Wysig verstek waardes"
#. X7eMx
-#: sw/inc/strings.hrc:471
+#: sw/inc/strings.hrc:470
msgctxt "STR_REPLACE_STYLE"
msgid "Replace style: $1 $2 $3"
msgstr "Vervang styl: $1 $2 $3"
#. EXFvJ
-#: sw/inc/strings.hrc:472
+#: sw/inc/strings.hrc:471
msgctxt "STR_DELETE_PAGE_BREAK"
msgid "Delete page break"
msgstr "Skrap bladsybreuk"
#. kHVr9
-#: sw/inc/strings.hrc:473
+#: sw/inc/strings.hrc:472
msgctxt "STR_TEXT_CORRECTION"
msgid "Text Correction"
msgstr "Tekskorreksie"
#. VfBBy
-#: sw/inc/strings.hrc:474
+#: sw/inc/strings.hrc:473
msgctxt "STR_OUTLINE_LR"
msgid "Promote/demote outline level"
msgstr "Verhoog/verlaag skema se orde"
#. Mmk22
-#: sw/inc/strings.hrc:475
+#: sw/inc/strings.hrc:474
msgctxt "STR_OUTLINE_UD"
msgid "Move chapter up/down"
msgstr "Skuif paragraaf op/af"
#. 3UGKP
-#: sw/inc/strings.hrc:476
+#: sw/inc/strings.hrc:475
msgctxt "STR_OUTLINE_EDIT"
msgid "Modify outline"
msgstr "Wysig skema"
#. RjcRH
-#: sw/inc/strings.hrc:477
+#: sw/inc/strings.hrc:476
msgctxt "STR_INSNUM"
msgid "Insert numbering"
msgstr "Voeg nommering in"
#. RdWjx
-#: sw/inc/strings.hrc:478
+#: sw/inc/strings.hrc:477
msgctxt "STR_NUMUP"
msgid "Demote list level"
msgstr "Verlaag lys orde"
#. VpBDP
-#: sw/inc/strings.hrc:479
+#: sw/inc/strings.hrc:478
msgctxt "STR_NUMDOWN"
msgid "Promote list level"
msgstr "Verhoog lys orde"
#. FGciC
-#: sw/inc/strings.hrc:480
+#: sw/inc/strings.hrc:479
msgctxt "STR_MOVENUM"
msgid "Move paragraphs"
msgstr "Skuif paragrawe"
#. WdMCK
-#: sw/inc/strings.hrc:481
+#: sw/inc/strings.hrc:480
msgctxt "STR_INSERTDRAW"
msgid "Insert drawing object: $1"
msgstr "Voeg tekenobjek in: $1"
#. ErB3W
-#: sw/inc/strings.hrc:482
+#: sw/inc/strings.hrc:481
msgctxt "STR_NUMORNONUM"
msgid "Number On/Off"
msgstr "Nommer aan/af"
#. rEZvN
-#: sw/inc/strings.hrc:483
+#: sw/inc/strings.hrc:482
msgctxt "STR_INC_LEFTMARGIN"
msgid "Increase Indent"
msgstr "Vergroot keep"
#. aJxcG
-#: sw/inc/strings.hrc:484
+#: sw/inc/strings.hrc:483
msgctxt "STR_DEC_LEFTMARGIN"
msgid "Decrease indent"
msgstr "Verklein keep"
#. 4GP7c
-#: sw/inc/strings.hrc:485
+#: sw/inc/strings.hrc:484
msgctxt "STR_INSERTLABEL"
msgid "Insert caption: $1"
msgstr "Voeg opskrif in: $1"
#. GGFM8
-#: sw/inc/strings.hrc:486
+#: sw/inc/strings.hrc:485
msgctxt "STR_SETNUMRULESTART"
msgid "Restart numbering"
msgstr "Herbegin nommering"
#. pHfp7
-#: sw/inc/strings.hrc:487
+#: sw/inc/strings.hrc:486
msgctxt "STR_CHANGEFTN"
msgid "Modify footnote"
msgstr "Wysig voetnoot"
#. Knr9y
-#: sw/inc/strings.hrc:488
+#: sw/inc/strings.hrc:487
msgctxt "STR_ACCEPT_REDLINE"
msgid "Accept change: $1"
msgstr "Aanvaar wysiging: $1"
#. jAvjr
-#: sw/inc/strings.hrc:489
+#: sw/inc/strings.hrc:488
msgctxt "STR_REJECT_REDLINE"
msgid "Reject change: $1"
msgstr "Verwerp wysiging: $1"
#. uCGqy
-#: sw/inc/strings.hrc:490
+#: sw/inc/strings.hrc:489
msgctxt "STR_SPLIT_TABLE"
msgid "Split Table"
msgstr "Verdeel tabel"
#. TJCZ8
-#: sw/inc/strings.hrc:491
+#: sw/inc/strings.hrc:490
msgctxt "STR_DONTEXPAND"
msgid "Stop attribute"
msgstr "Stop eienskap"
#. qyCiy
-#: sw/inc/strings.hrc:492
+#: sw/inc/strings.hrc:491
msgctxt "STR_AUTOCORRECT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. f4Jfr
-#: sw/inc/strings.hrc:493
+#: sw/inc/strings.hrc:492
msgctxt "STR_MERGE_TABLE"
msgid "Merge table"
msgstr "Voeg tabel saam"
#. BLcCC
-#: sw/inc/strings.hrc:494
+#: sw/inc/strings.hrc:493
msgctxt "STR_TRANSLITERATE"
msgid "Change Case"
msgstr "Verander letterkas"
#. BTGyD
-#: sw/inc/strings.hrc:495
+#: sw/inc/strings.hrc:494
msgctxt "STR_DELNUM"
msgid "Delete numbering"
msgstr "Skrap nommering"
#. TMvTD
-#: sw/inc/strings.hrc:496
+#: sw/inc/strings.hrc:495
msgctxt "STR_DRAWUNDO"
msgid "Drawing objects: $1"
msgstr "Tekenobjekte: $1"
#. FG7rN
-#: sw/inc/strings.hrc:497
+#: sw/inc/strings.hrc:496
msgctxt "STR_DRAWGROUP"
msgid "Group draw objects"
msgstr "Groepeer tekenobjekte"
#. xZqoJ
-#: sw/inc/strings.hrc:498
+#: sw/inc/strings.hrc:497
msgctxt "STR_DRAWUNGROUP"
msgid "Ungroup drawing objects"
msgstr "Degroepeer tekenobjekte"
#. FA3Vo
-#: sw/inc/strings.hrc:499
+#: sw/inc/strings.hrc:498
msgctxt "STR_DRAWDELETE"
msgid "Delete drawing objects"
msgstr "Skrap tekenobjekte"
#. MbJSs
-#: sw/inc/strings.hrc:500
+#: sw/inc/strings.hrc:499
msgctxt "STR_REREAD"
msgid "Replace Image"
msgstr "Vervang beeld"
#. 6GmVr
-#: sw/inc/strings.hrc:501
+#: sw/inc/strings.hrc:500
msgctxt "STR_DELGRF"
msgid "Delete Image"
msgstr "Skrap beeld"
#. PAmBF
-#: sw/inc/strings.hrc:502
+#: sw/inc/strings.hrc:501
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
msgstr "Pas tabeleienskappe toe"
#. GA8gF
-#: sw/inc/strings.hrc:503
+#: sw/inc/strings.hrc:502
msgctxt "STR_UNDO_TABLE_AUTOFMT"
msgid "AutoFormat Table"
msgstr "Outoformateer tabel"
#. AAPTL
-#: sw/inc/strings.hrc:504
+#: sw/inc/strings.hrc:503
msgctxt "STR_UNDO_TABLE_INSCOL"
msgid "Insert Column"
msgstr "Voeg kolom in"
#. tA7ss
-#: sw/inc/strings.hrc:505
+#: sw/inc/strings.hrc:504
msgctxt "STR_UNDO_TABLE_INSROW"
msgid "Insert Row"
msgstr "Voeg ry in"
#. LAzxr
-#: sw/inc/strings.hrc:506
+#: sw/inc/strings.hrc:505
msgctxt "STR_UNDO_TABLE_DELBOX"
msgid "Delete row/column"
msgstr "Skrap ry/kolom"
#. yFDYp
-#: sw/inc/strings.hrc:507
+#: sw/inc/strings.hrc:506
msgctxt "STR_UNDO_COL_DELETE"
msgid "Delete column"
msgstr "Skrap kolom"
#. 9SF9L
-#: sw/inc/strings.hrc:508
+#: sw/inc/strings.hrc:507
msgctxt "STR_UNDO_ROW_DELETE"
msgid "Delete row"
msgstr "Skrap ry"
#. FnLC7
-#: sw/inc/strings.hrc:509
+#: sw/inc/strings.hrc:508
msgctxt "STR_UNDO_TABLE_SPLIT"
msgid "Split Cells"
msgstr "Verdeel selle"
#. 3Em7B
-#: sw/inc/strings.hrc:510
+#: sw/inc/strings.hrc:509
msgctxt "STR_UNDO_TABLE_MERGE"
msgid "Merge Cells"
msgstr "Voeg selle saam"
#. 3VVmF
-#: sw/inc/strings.hrc:511
+#: sw/inc/strings.hrc:510
msgctxt "STR_TABLE_NUMFORMAT"
msgid "Format cell"
msgstr "Formateer sel"
#. UbSKw
-#: sw/inc/strings.hrc:512
+#: sw/inc/strings.hrc:511
msgctxt "STR_INSERT_TOX"
msgid "Insert index/table"
msgstr "Voeg indeks/tabel in"
#. szpbj
-#: sw/inc/strings.hrc:513
+#: sw/inc/strings.hrc:512
msgctxt "STR_CLEAR_TOX_RANGE"
msgid "Remove index/table"
msgstr "Verwyder indeks/tabel"
#. cN5DN
-#: sw/inc/strings.hrc:514
+#: sw/inc/strings.hrc:513
msgctxt "STR_TABLE_TBLCPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
#. eUFgx
-#: sw/inc/strings.hrc:515
+#: sw/inc/strings.hrc:514
msgctxt "STR_TABLE_CPYTBL"
msgid "Copy table"
msgstr "Kopieer tabel"
#. TC6mz
-#: sw/inc/strings.hrc:516
+#: sw/inc/strings.hrc:515
msgctxt "STR_INS_FROM_SHADOWCRSR"
msgid "Set cursor"
msgstr "Stel wyser"
#. 4GStA
-#: sw/inc/strings.hrc:517
+#: sw/inc/strings.hrc:516
msgctxt "STR_UNDO_CHAIN"
msgid "Link frames"
msgstr "Koppel rame"
#. XV4Ap
-#: sw/inc/strings.hrc:518
+#: sw/inc/strings.hrc:517
msgctxt "STR_UNDO_UNCHAIN"
msgid "Unlink frames"
msgstr "Ontkoppel rame"
#. vUJG9
-#: sw/inc/strings.hrc:519
+#: sw/inc/strings.hrc:518
msgctxt "STR_UNDO_FTNINFO"
msgid "Modify footnote options"
msgstr "Wysig voetnootopsies"
#. AgREs
-#: sw/inc/strings.hrc:520
+#: sw/inc/strings.hrc:519
msgctxt "STR_UNDO_COMPAREDOC"
msgid "Compare Document"
msgstr "Vergelyk dokument"
#. kZATW
-#: sw/inc/strings.hrc:521
+#: sw/inc/strings.hrc:520
msgctxt "STR_UNDO_SETFLYFRMFMT"
msgid "Apply frame style: $1"
msgstr "Pas raamstyl toe: $1"
#. 4Ae2X
-#: sw/inc/strings.hrc:522
+#: sw/inc/strings.hrc:521
msgctxt "STR_UNDO_SETRUBYATTR"
msgid "Ruby Setting"
msgstr "Robyninstelling"
#. J4AUR
-#: sw/inc/strings.hrc:523
+#: sw/inc/strings.hrc:522
msgctxt "STR_INSERT_FOOTNOTE"
msgid "Insert footnote"
msgstr "Voeg voetnoot in"
#. RMgFD
-#: sw/inc/strings.hrc:524
+#: sw/inc/strings.hrc:523
msgctxt "STR_INSERT_URLBTN"
msgid "insert URL button"
msgstr "voeg URL-knoppie in"
#. UKN7k
-#: sw/inc/strings.hrc:525
+#: sw/inc/strings.hrc:524
msgctxt "STR_INSERT_URLTXT"
msgid "Insert Hyperlink"
msgstr "Voeg hiperskakel in"
#. 9odT8
-#: sw/inc/strings.hrc:526
+#: sw/inc/strings.hrc:525
msgctxt "STR_DELETE_INVISIBLECNTNT"
msgid "remove invisible content"
msgstr "verwyder onsigbare inhoud"
#. e6U2R
-#: sw/inc/strings.hrc:527
+#: sw/inc/strings.hrc:526
msgctxt "STR_TOXCHANGE"
msgid "Table/index changed"
msgstr "Tabel/indeks gewysig"
#. JpGh6
-#: sw/inc/strings.hrc:528
+#: sw/inc/strings.hrc:527
msgctxt "STR_START_QUOTE"
msgid "“"
msgstr "“"
#. kZoAG
-#: sw/inc/strings.hrc:529
+#: sw/inc/strings.hrc:528
msgctxt "STR_END_QUOTE"
msgid "”"
msgstr "”"
#. wNZDq
-#: sw/inc/strings.hrc:530
+#: sw/inc/strings.hrc:529
msgctxt "STR_LDOTS"
msgid "..."
msgstr "..."
#. yiQgo
-#: sw/inc/strings.hrc:531
+#: sw/inc/strings.hrc:530
msgctxt "STR_MULTISEL"
msgid "multiple selection"
msgstr "veelvoudige seleksie"
#. qFESB
-#: sw/inc/strings.hrc:532
+#: sw/inc/strings.hrc:531
msgctxt "STR_TYPING_UNDO"
msgid "Typing: $1"
msgstr "Tik: $1"
#. A6HSG
-#: sw/inc/strings.hrc:533
+#: sw/inc/strings.hrc:532
msgctxt "STR_PASTE_CLIPBOARD_UNDO"
msgid "Paste clipboard"
msgstr "Plak knipbord"
#. mfDMF
-#: sw/inc/strings.hrc:534
+#: sw/inc/strings.hrc:533
msgctxt "STR_YIELDS"
msgid "→"
msgstr "→"
#. wNRhZ
-#: sw/inc/strings.hrc:535
+#: sw/inc/strings.hrc:534
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
msgstr "voorkomste van"
#. hHUZi
-#: sw/inc/strings.hrc:536
+#: sw/inc/strings.hrc:535
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
@@ -5274,7 +5280,7 @@ msgstr[0] "Een keep"
msgstr[1] "$1 kepe"
#. eP6mC
-#: sw/inc/strings.hrc:537
+#: sw/inc/strings.hrc:536
msgctxt "STR_UNDO_NLS"
msgid "One line break"
msgid_plural "$1 line breaks"
@@ -5282,308 +5288,308 @@ msgstr[0] "Een lynbreuk"
msgstr[1] "$1 lynbreuke"
#. yS3nP
-#: sw/inc/strings.hrc:538
+#: sw/inc/strings.hrc:537
msgctxt "STR_UNDO_PAGEBREAKS"
msgid "page break"
msgstr "bladsybreuk"
#. Q4YVg
-#: sw/inc/strings.hrc:539
+#: sw/inc/strings.hrc:538
msgctxt "STR_UNDO_COLBRKS"
msgid "column break"
msgstr "kolombreuk"
#. L6qva
-#: sw/inc/strings.hrc:540
+#: sw/inc/strings.hrc:539
msgctxt "STR_UNDO_REDLINE_INSERT"
msgid "Insert $1"
msgstr "Voeg $1 in"
#. i8ZQo
-#: sw/inc/strings.hrc:541
+#: sw/inc/strings.hrc:540
msgctxt "STR_UNDO_REDLINE_DELETE"
msgid "Delete $1"
msgstr "Skrap $1"
#. 5KECk
-#: sw/inc/strings.hrc:542
+#: sw/inc/strings.hrc:541
msgctxt "STR_UNDO_REDLINE_FORMAT"
msgid "Attributes changed"
msgstr "Attribute gewysig"
#. N7CUk
-#: sw/inc/strings.hrc:543
+#: sw/inc/strings.hrc:542
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. DCGPF
-#: sw/inc/strings.hrc:544
+#: sw/inc/strings.hrc:543
msgctxt "STR_UNDO_REDLINE_FMTCOLL"
msgid "Style changed"
msgstr "Styl het verander"
#. p77WZ
-#: sw/inc/strings.hrc:545
+#: sw/inc/strings.hrc:544
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. nehrq
-#: sw/inc/strings.hrc:546
+#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_INSERT"
msgid "Insert Row"
msgstr "Voeg ry in"
#. Ud4qT
-#: sw/inc/strings.hrc:547
+#: sw/inc/strings.hrc:546
msgctxt "STR_UNDO_REDLINE_TABLE_ROW_DELETE"
msgid "Delete Row"
msgstr "Skrap ry"
#. GvxsC
-#: sw/inc/strings.hrc:548
+#: sw/inc/strings.hrc:547
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_INSERT"
msgid "Insert Cell"
msgstr "Voeg sel in"
#. ZMrVY
-#: sw/inc/strings.hrc:549
+#: sw/inc/strings.hrc:548
msgctxt "STR_UNDO_REDLINE_TABLE_CELL_DELETE"
msgid "Delete Cell"
msgstr "Skrap sel"
#. DqprY
-#: sw/inc/strings.hrc:550
+#: sw/inc/strings.hrc:549
msgctxt "STR_N_REDLINES"
msgid "$1 changes"
msgstr "$1 wysigings"
#. ve5ZA
-#: sw/inc/strings.hrc:551
+#: sw/inc/strings.hrc:550
msgctxt "STR_UNDO_PAGEDESC"
msgid "Change page style: $1"
msgstr "Wysig bladsystyl: $1"
#. RDkdy
-#: sw/inc/strings.hrc:552
+#: sw/inc/strings.hrc:551
msgctxt "STR_UNDO_PAGEDESC_CREATE"
msgid "Create page style: $1"
msgstr "Skep bladsystyl: $1"
#. tBVzV
-#: sw/inc/strings.hrc:553
+#: sw/inc/strings.hrc:552
msgctxt "STR_UNDO_PAGEDESC_DELETE"
msgid "Delete page style: $1"
msgstr "Skrap bladsystyl: $1"
#. wzjRB
-#: sw/inc/strings.hrc:554
+#: sw/inc/strings.hrc:553
msgctxt "STR_UNDO_PAGEDESC_RENAME"
msgid "Rename page style: $1 $2 $3"
msgstr "Hernoem bladsystyl: $1 $2 $3"
#. UcTVv
-#: sw/inc/strings.hrc:555
+#: sw/inc/strings.hrc:554
msgctxt "STR_UNDO_HEADER_FOOTER"
msgid "Header/footer changed"
msgstr "Kopstuk/voetstuk het verander"
#. tGyeC
-#: sw/inc/strings.hrc:556
+#: sw/inc/strings.hrc:555
msgctxt "STR_UNDO_FIELD"
msgid "Field changed"
msgstr "Veldname het verander"
#. xh3dq
-#: sw/inc/strings.hrc:557
+#: sw/inc/strings.hrc:556
msgctxt "STR_UNDO_TXTFMTCOL_CREATE"
msgid "Create paragraph style: $1"
msgstr "Skep paragraafstyl: $1"
#. aRf6Z
-#: sw/inc/strings.hrc:558
+#: sw/inc/strings.hrc:557
msgctxt "STR_UNDO_TXTFMTCOL_DELETE"
msgid "Delete paragraph style: $1"
msgstr "Skrap paragraafstyl: $1"
#. DtD6w
-#: sw/inc/strings.hrc:559
+#: sw/inc/strings.hrc:558
msgctxt "STR_UNDO_TXTFMTCOL_RENAME"
msgid "Rename paragraph style: $1 $2 $3"
msgstr "Hernoem paragraafstyl: $1 $2 $3"
#. J2FcF
-#: sw/inc/strings.hrc:560
+#: sw/inc/strings.hrc:559
msgctxt "STR_UNDO_CHARFMT_CREATE"
msgid "Create character style: $1"
msgstr "Skep karakterstyl: $1"
#. FjT56
-#: sw/inc/strings.hrc:561
+#: sw/inc/strings.hrc:560
msgctxt "STR_UNDO_CHARFMT_DELETE"
msgid "Delete character style: $1"
msgstr "Skrap karakterstyl: $1"
#. mT2GJ
-#: sw/inc/strings.hrc:562
+#: sw/inc/strings.hrc:561
msgctxt "STR_UNDO_CHARFMT_RENAME"
msgid "Rename character style: $1 $2 $3"
msgstr "Hernoem karakterstyl: $1 $2 $3"
#. AvK4p
-#: sw/inc/strings.hrc:563
+#: sw/inc/strings.hrc:562
msgctxt "STR_UNDO_FRMFMT_CREATE"
msgid "Create frame style: $1"
msgstr "Skep raamstyl: $1"
#. zHLcd
-#: sw/inc/strings.hrc:564
+#: sw/inc/strings.hrc:563
msgctxt "STR_UNDO_FRMFMT_DELETE"
msgid "Delete frame style: $1"
msgstr "Skrap raamstyl: $1"
#. BUdbD
-#: sw/inc/strings.hrc:565
+#: sw/inc/strings.hrc:564
msgctxt "STR_UNDO_FRMFMT_RENAME"
msgid "Rename frame style: $1 $2 $3"
msgstr "Hernoem raamstyl: $1 $2 $3"
#. GG9BH
-#: sw/inc/strings.hrc:566
+#: sw/inc/strings.hrc:565
msgctxt "STR_UNDO_NUMRULE_CREATE"
msgid "Create numbering style: $1"
msgstr "Skep nommerstyl: $1"
#. zYZW8
-#: sw/inc/strings.hrc:567
+#: sw/inc/strings.hrc:566
msgctxt "STR_UNDO_NUMRULE_DELETE"
msgid "Delete numbering style: $1"
msgstr "Skrap nommerstyl: $1"
#. QhDFe
-#: sw/inc/strings.hrc:568
+#: sw/inc/strings.hrc:567
msgctxt "STR_UNDO_NUMRULE_RENAME"
msgid "Rename numbering style: $1 $2 $3"
msgstr "Hernoem nommerstyl: $1 $2 $3"
#. oWrh9
-#: sw/inc/strings.hrc:569
+#: sw/inc/strings.hrc:568
msgctxt "STR_UNDO_BOOKMARK_RENAME"
msgid "Rename bookmark: $1 $2 $3"
msgstr "Hernoem boekmerk: $1 $2 $3"
#. WTcEw
-#: sw/inc/strings.hrc:570
+#: sw/inc/strings.hrc:569
msgctxt "STR_UNDO_INDEX_ENTRY_INSERT"
msgid "Insert index entry"
msgstr "Voeg indeksinskrywying in"
#. fbidx
-#: sw/inc/strings.hrc:571
+#: sw/inc/strings.hrc:570
msgctxt "STR_UNDO_INDEX_ENTRY_DELETE"
msgid "Delete index entry"
msgstr "Skrap indeksinskrywing"
#. WCDy7
-#: sw/inc/strings.hrc:572
+#: sw/inc/strings.hrc:571
msgctxt "STR_FIELD"
msgid "field"
msgstr "veld"
#. aC9iU
-#: sw/inc/strings.hrc:573
+#: sw/inc/strings.hrc:572
msgctxt "STR_UNDO_INSERT_TEXTBOX"
msgid "text box"
msgstr "Teksveld"
#. yNjem
#. undo: STR_PARAGRAPHS, string.text
-#: sw/inc/strings.hrc:575
+#: sw/inc/strings.hrc:574
msgctxt "STR_PARAGRAPHS"
msgid "Paragraphs"
msgstr "Paragrawe"
#. 9fb4z
-#: sw/inc/strings.hrc:576
+#: sw/inc/strings.hrc:575
msgctxt "STR_FRAME"
msgid "frame"
msgstr "raam"
#. gfjHA
-#: sw/inc/strings.hrc:577
+#: sw/inc/strings.hrc:576
msgctxt "STR_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. db5Tg
-#: sw/inc/strings.hrc:578
+#: sw/inc/strings.hrc:577
msgctxt "STR_MATH_FORMULA"
msgid "formula"
msgstr "formule"
#. BirkF
-#: sw/inc/strings.hrc:579
+#: sw/inc/strings.hrc:578
msgctxt "STR_CHART"
msgid "chart"
msgstr "grafiek"
#. YxCuu
-#: sw/inc/strings.hrc:580
+#: sw/inc/strings.hrc:579
msgctxt "STR_NOTE"
msgid "comment"
msgstr "opmerking"
#. CKqsU
-#: sw/inc/strings.hrc:581
+#: sw/inc/strings.hrc:580
msgctxt "STR_REFERENCE"
msgid "cross-reference"
msgstr "kruisverwysing"
#. q9BGR
-#: sw/inc/strings.hrc:582
+#: sw/inc/strings.hrc:581
msgctxt "STR_SCRIPT"
msgid "script"
msgstr "skrip"
#. o6FWi
-#: sw/inc/strings.hrc:583
+#: sw/inc/strings.hrc:582
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
msgstr "bibliografie-inskrywing"
#. qbRLG
-#: sw/inc/strings.hrc:584
+#: sw/inc/strings.hrc:583
msgctxt "STR_SPECIALCHAR"
msgid "special character"
msgstr "spesiale karakter"
#. qJd8G
-#: sw/inc/strings.hrc:585
+#: sw/inc/strings.hrc:584
msgctxt "STR_FOOTNOTE"
msgid "footnote"
msgstr "voetnoot"
#. bKvaD
-#: sw/inc/strings.hrc:586
+#: sw/inc/strings.hrc:585
msgctxt "STR_GRAPHIC"
msgid "image"
msgstr "beeld"
#. J7CgG
-#: sw/inc/strings.hrc:587
+#: sw/inc/strings.hrc:586
msgctxt "STR_DRAWING_OBJECTS"
msgid "drawing object(s)"
msgstr "tekenobjek(te)"
#. rYPFG
-#: sw/inc/strings.hrc:588
+#: sw/inc/strings.hrc:587
msgctxt "STR_TABLE_NAME"
msgid "table: $1$2$3"
msgstr "tabel: $1$2$3"
#. AtWxA
-#: sw/inc/strings.hrc:589
+#: sw/inc/strings.hrc:588
msgctxt "STR_CHAPTERS"
msgid "chapter"
msgid_plural "chapters"
@@ -5591,1719 +5597,1719 @@ msgstr[0] "hoofstuk"
msgstr[1] "hoofstukke"
#. 2JCL2
-#: sw/inc/strings.hrc:590
+#: sw/inc/strings.hrc:589
msgctxt "STR_PARAGRAPH_UNDO"
msgid "paragraph"
msgstr "paragraaf"
#. DvnGA
-#: sw/inc/strings.hrc:591
+#: sw/inc/strings.hrc:590
msgctxt "STR_PARAGRAPH_SIGN_UNDO"
msgid "Paragraph sign"
msgstr "Paragrarafteken"
#. oL9GG
-#: sw/inc/strings.hrc:592
+#: sw/inc/strings.hrc:591
msgctxt "STR_UNDO_FLYFRMFMT_TITLE"
msgid "Change object title of $1"
msgstr "Verander objektitel van $1"
#. 3Cv7E
-#: sw/inc/strings.hrc:593
+#: sw/inc/strings.hrc:592
msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Wysig Objek Beskrywing van $1"
#. VgNVS
-#: sw/inc/strings.hrc:594
+#: sw/inc/strings.hrc:593
msgctxt "STR_UNDO_FLYFRMFMT_DECORATIVE"
msgid "Change decorative of $1"
msgstr "Verander dekorasie van $1"
#. rWw8U
-#: sw/inc/strings.hrc:595
+#: sw/inc/strings.hrc:594
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
msgid "Create table style: $1"
msgstr "Skep bladsystyl: $1"
#. jGxgy
-#: sw/inc/strings.hrc:596
+#: sw/inc/strings.hrc:595
msgctxt "STR_UNDO_TBLSTYLE_DELETE"
msgid "Delete table style: $1"
msgstr "Skrap bladsystyl: $1"
#. 6NWP3
-#: sw/inc/strings.hrc:597
+#: sw/inc/strings.hrc:596
msgctxt "STR_UNDO_TBLSTYLE_UPDATE"
msgid "Update table style: $1"
msgstr "Werk bladsystyl by: $1"
#. JegfU
-#: sw/inc/strings.hrc:598
+#: sw/inc/strings.hrc:597
msgctxt "STR_UNDO_TABLE_DELETE"
msgid "Delete table"
msgstr "Skrap bladsy"
#. KSMpJ
-#: sw/inc/strings.hrc:599
+#: sw/inc/strings.hrc:598
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
msgstr "Voeg vorm-veld in"
#. 83pZ4
-#: sw/inc/strings.hrc:600
+#: sw/inc/strings.hrc:599
msgctxt "STR_UNDO_UPDATE_FORM_FIELD"
msgid "Update form field"
msgstr "Opdateer vorm veld"
#. Lkt9n
-#: sw/inc/strings.hrc:601
+#: sw/inc/strings.hrc:600
msgctxt "STR_UNDO_UPDATE_FORM_FIELDS"
msgid "Update form fields"
msgstr "Opdateer vorm velde"
#. R7raK
-#: sw/inc/strings.hrc:602
+#: sw/inc/strings.hrc:601
msgctxt "STR_UNDO_DELETE_FORM_FIELDS"
msgid "Delete form fields"
msgstr "Skrap vorm velde"
#. kdxGJ
-#: sw/inc/strings.hrc:603
+#: sw/inc/strings.hrc:602
msgctxt "STR_UNDO_INSERT_PAGE_NUMBER"
msgid "Insert page number"
msgstr "Bladsy nommer invoeg"
#. XztwB
-#: sw/inc/strings.hrc:604
+#: sw/inc/strings.hrc:603
msgctxt "STR_UNDO_CHANGE_THEME_COLORS"
msgid "Change document theme color"
msgstr "Wysig dokument skema kleur"
#. 2zJmG
-#: sw/inc/strings.hrc:606
+#: sw/inc/strings.hrc:605
msgctxt "STR_DROP_DOWN_FIELD_ITEM_LIMIT"
msgid "You can specify maximum of 25 items for a drop-down form field."
msgstr "U kan maksimum 25 elemente spesifiseer vir 'n Aftuimel-Vormveld."
#. CUXeF
-#: sw/inc/strings.hrc:608
+#: sw/inc/strings.hrc:607
msgctxt "STR_ACCESS_DOC_NAME"
msgid "Document view"
msgstr "Dokumentaansig"
#. FrBrC
-#: sw/inc/strings.hrc:609
+#: sw/inc/strings.hrc:608
msgctxt "STR_ACCESS_DOC_DESC"
msgid "Document view"
msgstr "Dokumentaansig"
#. BCEgS
-#: sw/inc/strings.hrc:610
+#: sw/inc/strings.hrc:609
msgctxt "STR_ACCESS_HEADER_NAME"
msgid "Header $(ARG1)"
msgstr "Kop $(ARG1)"
#. zKdDR
-#: sw/inc/strings.hrc:611
+#: sw/inc/strings.hrc:610
msgctxt "STR_ACCESS_HEADER_DESC"
msgid "Header page $(ARG1)"
msgstr "Kopbladsy $(ARG1)"
#. NhFrV
-#: sw/inc/strings.hrc:612
+#: sw/inc/strings.hrc:611
msgctxt "STR_ACCESS_FOOTER_NAME"
msgid "Footer $(ARG1)"
msgstr "Voet $(ARG1)"
#. 6GJNd
-#: sw/inc/strings.hrc:613
+#: sw/inc/strings.hrc:612
msgctxt "STR_ACCESS_FOOTER_DESC"
msgid "Footer page $(ARG1)"
msgstr "Voetbladsy $(ARG1)"
#. VGUwW
-#: sw/inc/strings.hrc:614
+#: sw/inc/strings.hrc:613
msgctxt "STR_ACCESS_FOOTNOTE_NAME"
msgid "Footnote $(ARG1)"
msgstr "Voetnoot $(ARG1)"
#. a7XMU
-#: sw/inc/strings.hrc:615
+#: sw/inc/strings.hrc:614
msgctxt "STR_ACCESS_FOOTNOTE_DESC"
msgid "Footnote $(ARG1)"
msgstr "Voetnoot $(ARG1)"
#. 3ExiP
-#: sw/inc/strings.hrc:616
+#: sw/inc/strings.hrc:615
msgctxt "STR_ACCESS_ENDNOTE_NAME"
msgid "Endnote $(ARG1)"
msgstr "Eindnoot $(ARG1)"
#. 8XdTm
-#: sw/inc/strings.hrc:617
+#: sw/inc/strings.hrc:616
msgctxt "STR_ACCESS_ENDNOTE_DESC"
msgid "Endnote $(ARG1)"
msgstr "Eindnoot $(ARG1)"
#. 4sTZN
-#: sw/inc/strings.hrc:618
+#: sw/inc/strings.hrc:617
msgctxt "STR_ACCESS_TABLE_DESC"
msgid "$(ARG1) on page $(ARG2)"
msgstr "$(ARG1) op bladsy $(ARG2)"
#. Z5Uy9
-#: sw/inc/strings.hrc:619
+#: sw/inc/strings.hrc:618
msgctxt "STR_ACCESS_PAGE_NAME"
msgid "Page $(ARG1)"
msgstr "Bladsy $(ARG1)"
#. CWroT
-#: sw/inc/strings.hrc:620
+#: sw/inc/strings.hrc:619
msgctxt "STR_ACCESS_PAGE_DESC"
msgid "Page: $(ARG1)"
msgstr "Bladsy: $(ARG1)"
#. iwfxM
-#: sw/inc/strings.hrc:621
+#: sw/inc/strings.hrc:620
msgctxt "STR_ACCESS_ANNOTATION_AUTHOR_NAME"
msgid "Author"
msgstr "Outeur"
#. sff9t
-#: sw/inc/strings.hrc:622
+#: sw/inc/strings.hrc:621
msgctxt "STR_ACCESS_ANNOTATION_DATE_NAME"
msgid "Date"
msgstr "Datum"
#. VScXC
-#: sw/inc/strings.hrc:623
+#: sw/inc/strings.hrc:622
msgctxt "STR_ACCESS_ANNOTATION_RESOLVED_NAME"
msgid "Resolved"
msgstr "Opgelos"
#. JtzA4
-#: sw/inc/strings.hrc:624
+#: sw/inc/strings.hrc:623
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_NAME"
msgid "Actions"
msgstr "Aksies"
#. cHWqM
-#: sw/inc/strings.hrc:625
+#: sw/inc/strings.hrc:624
msgctxt "STR_ACCESS_ANNOTATION_BUTTON_DESC"
msgid "Activate this button to open a list of actions which can be performed on this comment and other comments"
msgstr "Aktiveer dié knoppie om ’n lys aksies wat op dié opmerking en ander opmerkings verrig kan word te open"
#. 9YxaB
-#: sw/inc/strings.hrc:626
+#: sw/inc/strings.hrc:625
msgctxt "STR_ACCESS_PREVIEW_DOC_NAME"
msgid "Document preview"
msgstr "Dokumentvoorskou"
#. eYFFo
-#: sw/inc/strings.hrc:627
+#: sw/inc/strings.hrc:626
msgctxt "STR_ACCESS_PREVIEW_DOC_SUFFIX"
msgid "(Preview mode)"
msgstr "(Voorskoumodus)"
#. Fp7Hn
-#: sw/inc/strings.hrc:628
+#: sw/inc/strings.hrc:627
msgctxt "STR_ACCESS_DOC_WORDPROCESSING"
msgid "%PRODUCTNAME Document"
msgstr "%PRODUCTNAME-dokument"
#. CsQKH
-#: sw/inc/strings.hrc:630
+#: sw/inc/strings.hrc:629
msgctxt "STR_COMCORE_READERROR"
msgid "Read Error"
msgstr "Leesfout"
#. ztbVu
-#: sw/inc/strings.hrc:631
+#: sw/inc/strings.hrc:630
msgctxt "STR_COMCORE_CANT_SHOW"
msgid "Image cannot be displayed."
msgstr "Beeld kan nie vertoon word nie."
#. iJsFt
-#: sw/inc/strings.hrc:632
+#: sw/inc/strings.hrc:631
msgctxt "STR_ERROR_CLPBRD_READ"
msgid "Error reading from the clipboard."
msgstr "Fout tydens lees van die knipbord."
#. bXZQD
-#: sw/inc/strings.hrc:634
+#: sw/inc/strings.hrc:633
msgctxt "STR_COLUMN_BREAK"
msgid "Manual Column Break"
msgstr "Handmatige kolombreuk"
#. 7DzNG
-#: sw/inc/strings.hrc:636
+#: sw/inc/strings.hrc:635
msgctxt "STR_CHART2_ROW_LABEL_TEXT"
msgid "Row %ROWNUMBER"
msgstr "Ry %ROWNUMBER"
#. GYFVF
-#: sw/inc/strings.hrc:637
+#: sw/inc/strings.hrc:636
msgctxt "STR_CHART2_COL_LABEL_TEXT"
msgid "Column %COLUMNLETTER"
msgstr "Kolom %COLUMNLETTER"
#. GGS2b
-#: sw/inc/strings.hrc:638
+#: sw/inc/strings.hrc:637
msgctxt "STR_STYLE_FAMILY_CHARACTER"
msgid "Character"
msgstr "Karakter"
#. KBw5e
-#: sw/inc/strings.hrc:639
+#: sw/inc/strings.hrc:638
msgctxt "STR_STYLE_FAMILY_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. ERH8o
-#: sw/inc/strings.hrc:640
+#: sw/inc/strings.hrc:639
msgctxt "STR_STYLE_FAMILY_FRAME"
msgid "Frame"
msgstr "Raam"
#. Cqjn8
-#: sw/inc/strings.hrc:641
+#: sw/inc/strings.hrc:640
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Pages"
msgstr "Bladsye"
#. FFZEr
-#: sw/inc/strings.hrc:642
+#: sw/inc/strings.hrc:641
msgctxt "STR_STYLE_FAMILY_NUMBERING"
msgid "List"
msgstr "Lys"
#. NydLs
-#: sw/inc/strings.hrc:643
+#: sw/inc/strings.hrc:642
msgctxt "STR_STYLE_FAMILY_TABLE"
msgid "Table"
msgstr "Tabel"
#. XUhuM
-#: sw/inc/strings.hrc:644
+#: sw/inc/strings.hrc:643
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell"
msgstr "Sel"
#. DRqDZ
-#: sw/inc/strings.hrc:646
+#: sw/inc/strings.hrc:645
msgctxt "ST_SCRIPT_ASIAN"
msgid "Asian"
msgstr "Asiaties"
#. owFtq
-#: sw/inc/strings.hrc:647
+#: sw/inc/strings.hrc:646
msgctxt "ST_SCRIPT_CTL"
msgid "CTL"
msgstr "KTL"
#. ap5iF
-#: sw/inc/strings.hrc:648
+#: sw/inc/strings.hrc:647
msgctxt "ST_SCRIPT_WESTERN"
msgid "Western"
msgstr "Westers"
#. HD64i
-#: sw/inc/strings.hrc:649
+#: sw/inc/strings.hrc:648
msgctxt "STR_PRINTOPTUI_PRODUCTNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
#. q6egu
-#: sw/inc/strings.hrc:650
+#: sw/inc/strings.hrc:649
msgctxt "STR_PRINTOPTUI_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
#. Ka4fM
-#: sw/inc/strings.hrc:651
+#: sw/inc/strings.hrc:650
msgctxt "STR_PRINTOPTUI_PAGE_BACKGROUND"
msgid "Page ba~ckground"
msgstr "~Bladsyagtergrond"
#. YPEEH
-#: sw/inc/strings.hrc:652
+#: sw/inc/strings.hrc:651
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
msgstr "Beelde en ander graf~ika-objekte"
#. L6GSj
-#: sw/inc/strings.hrc:653
+#: sw/inc/strings.hrc:652
msgctxt "STR_PRINTOPTUI_HIDDEN"
msgid "Hidden te~xt"
msgstr "Verstee~kte teks"
#. pXiRN
-#: sw/inc/strings.hrc:654
+#: sw/inc/strings.hrc:653
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
msgstr "~Teksplekhouers"
#. JBWVd
-#: sw/inc/strings.hrc:655
+#: sw/inc/strings.hrc:654
msgctxt "STR_PRINTOPTUI_FORM_CONTROLS"
msgid "Form control~s"
msgstr "Vormkontrole~s"
#. X8Bfu
-#: sw/inc/strings.hrc:656
+#: sw/inc/strings.hrc:655
msgctxt "STR_PRINTOPTUI_COLOR"
msgid "Color"
msgstr "Kleur"
#. kQDcq
-#: sw/inc/strings.hrc:657
+#: sw/inc/strings.hrc:656
msgctxt "STR_PRINTOPTUI_PRINT_BLACK"
msgid "Print text in blac~k"
msgstr "Druk te~ks in swart"
#. DEELn
-#: sw/inc/strings.hrc:658
+#: sw/inc/strings.hrc:657
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
msgstr "Bladsye:"
#. uddbB
-#: sw/inc/strings.hrc:659
+#: sw/inc/strings.hrc:658
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
msgid "Print ~automatically inserted blank pages"
msgstr "Druk ~outomaties ingevoegde leë bladsye"
#. MTJt2
-#: sw/inc/strings.hrc:660
+#: sw/inc/strings.hrc:659
msgctxt "STR_PRINTOPTUI_ONLY_PAPER"
msgid "~Use only paper tray from printer preferences"
msgstr "Gebr~uik slegs die papierlaai van die drukvoorkeure"
#. 4uBam
-#: sw/inc/strings.hrc:661
+#: sw/inc/strings.hrc:660
msgctxt "STR_PRINTOPTUI_NONE"
msgid "None (document only)"
msgstr "Geen (slegs dokument)"
#. pbQtA
-#: sw/inc/strings.hrc:662
+#: sw/inc/strings.hrc:661
msgctxt "STR_PRINTOPTUI_COMMENTS_ONLY"
msgid "Comments only"
msgstr "Slegs opmerkings"
#. sVnbD
-#: sw/inc/strings.hrc:663
+#: sw/inc/strings.hrc:662
msgctxt "STR_PRINTOPTUI_PLACE_END"
msgid "Place at end of document"
msgstr "Plaas aan einde van dokument"
#. D4BXH
-#: sw/inc/strings.hrc:664
+#: sw/inc/strings.hrc:663
msgctxt "STR_PRINTOPTUI_PLACE_PAGE"
msgid "Place at end of page"
msgstr "Plaas aan einde van bladsy"
#. 6rzab
-#: sw/inc/strings.hrc:665
+#: sw/inc/strings.hrc:664
msgctxt "STR_PRINTOPTUI_COMMENTS"
msgid "~Comments"
msgstr "~Opmerkings"
#. cnqLU
-#: sw/inc/strings.hrc:666
+#: sw/inc/strings.hrc:665
msgctxt "STR_PRINTOPTUI_BROCHURE"
msgid "Broch~ure"
msgstr "Brosj~ure"
#. t6drz
-#: sw/inc/strings.hrc:667
+#: sw/inc/strings.hrc:666
msgctxt "STR_PRINTOPTUI_LEFT_SCRIPT"
msgid "Left-to-right script"
msgstr "Links-na-regs-skrif"
#. QgmxB
-#: sw/inc/strings.hrc:668
+#: sw/inc/strings.hrc:667
msgctxt "STR_PRINTOPTUI_RIGHT_SCRIPT"
msgid "Right-to-left script"
msgstr "Regs-na-links-skrif"
#. t4Cm7
-#: sw/inc/strings.hrc:669
+#: sw/inc/strings.hrc:668
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "~All Pages"
msgstr "Alle Bladsye"
#. ZDRM2
-#: sw/inc/strings.hrc:670
+#: sw/inc/strings.hrc:669
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
msgstr "Bladsye:"
#. rajyx
-#: sw/inc/strings.hrc:671
+#: sw/inc/strings.hrc:670
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
msgstr "Gekiesde"
#. 9EXcV
-#: sw/inc/strings.hrc:672
+#: sw/inc/strings.hrc:671
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
msgid "Place in margins"
msgstr "Plaas in kantlyne"
#. NGQw3
-#: sw/inc/strings.hrc:674
+#: sw/inc/strings.hrc:673
msgctxt "STR_FORMULA_CALC"
msgid "Functions"
msgstr "Funksies"
#. D3RCG
-#: sw/inc/strings.hrc:675
+#: sw/inc/strings.hrc:674
msgctxt "STR_FORMULA_CANCEL"
msgid "Cancel"
msgstr "Kanselleer"
#. 3Tg3C
-#: sw/inc/strings.hrc:676
+#: sw/inc/strings.hrc:675
msgctxt "STR_FORMULA_APPLY"
msgid "Apply"
msgstr "Pas toe"
#. UDkFb
-#: sw/inc/strings.hrc:677
+#: sw/inc/strings.hrc:676
msgctxt "STR_ACCESS_FORMULA_TOOLBAR"
msgid "Formula Tool Bar"
msgstr "Formule-nutsbalk"
#. Z3CB5
-#: sw/inc/strings.hrc:678
+#: sw/inc/strings.hrc:677
msgctxt "STR_ACCESS_FORMULA_TYPE"
msgid "Formula Type"
msgstr "Soort formule"
#. 3CCa7
-#: sw/inc/strings.hrc:679
+#: sw/inc/strings.hrc:678
msgctxt "STR_ACCESS_FORMULA_TEXT"
msgid "Formula Text"
msgstr "Formuleteks"
#. FXNer
-#: sw/inc/strings.hrc:681
+#: sw/inc/strings.hrc:680
msgctxt "STR_ACCESS_TL_GLOBAL"
msgid "Global View"
msgstr "Globale Oorsig"
#. aeeRP
-#: sw/inc/strings.hrc:682
+#: sw/inc/strings.hrc:681
msgctxt "STR_ACCESS_TL_CONTENT"
msgid "Content Navigation View"
msgstr "Aansig vir inhoudnavigering"
#. UAExA
-#: sw/inc/strings.hrc:683
+#: sw/inc/strings.hrc:682
msgctxt "STR_OUTLINE_LEVEL"
msgid "Outline Level"
msgstr "Skemavlak"
#. yERK6
-#: sw/inc/strings.hrc:684
+#: sw/inc/strings.hrc:683
msgctxt "STR_DRAGMODE"
msgid "Drag Mode"
msgstr "Sleepmodus"
#. PAB4k
-#: sw/inc/strings.hrc:685
+#: sw/inc/strings.hrc:684
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
msgstr "Stuur Buitelyn na die Knipbord"
#. b5tPU
-#: sw/inc/strings.hrc:686
+#: sw/inc/strings.hrc:685
msgctxt "STR_OUTLINE_TRACKING"
msgid "Outline Tracking"
msgstr "Buitelyn Spoor"
#. qzXwn
-#: sw/inc/strings.hrc:687
+#: sw/inc/strings.hrc:686
msgctxt "STR_OUTLINE_TRACKING_DEFAULT"
msgid "Default"
msgstr "Verstek"
#. HGDgJ
-#: sw/inc/strings.hrc:688
+#: sw/inc/strings.hrc:687
msgctxt "STR_OUTLINE_TRACKING_FOCUS"
msgid "Focus"
msgstr "Kokus"
#. BYRpF
-#: sw/inc/strings.hrc:689
+#: sw/inc/strings.hrc:688
msgctxt "STR_OUTLINE_TRACKING_OFF"
msgid "Off"
msgstr "Af"
#. NGgt3
-#: sw/inc/strings.hrc:690
+#: sw/inc/strings.hrc:689
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr "Klik om die skema se uitvou te verwissel"
#. 44jEc
-#: sw/inc/strings.hrc:691
+#: sw/inc/strings.hrc:690
msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "regsmuisklik om subvlakke in te sluit"
#. mnZA9
-#: sw/inc/strings.hrc:692
+#: sw/inc/strings.hrc:691
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY"
msgid "Click to toggle outline folding"
msgstr "Klik om die skema se uitvou te verwissel"
#. rkD8H
-#: sw/inc/strings.hrc:693
+#: sw/inc/strings.hrc:692
msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT"
msgid "right-click to include sub levels"
msgstr "regsmuisklik om subvlakke in te sluit"
#. oBH6y
-#: sw/inc/strings.hrc:694
+#: sw/inc/strings.hrc:693
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE"
msgid "Toggle"
msgstr "Wissel"
-#. YBDFD
-#: sw/inc/strings.hrc:695
+#. aQniE
+#: sw/inc/strings.hrc:694
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL"
-msgid "Unfold All"
-msgstr "Alles Uitvou"
+msgid "Unfold Including Sub Levels"
+msgstr ""
-#. Cj4js
-#: sw/inc/strings.hrc:696
+#. B82B2
+#: sw/inc/strings.hrc:695
msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL"
-msgid "Fold All"
-msgstr "Alles Invou"
+msgid "Fold Including Sub Levels"
+msgstr ""
#. vNEvg
-#: sw/inc/strings.hrc:697
+#: sw/inc/strings.hrc:696
msgctxt "STR_OUTLINE_LEVELS_SHOWN_TITLE"
msgid "Show Up to Outline Level"
msgstr "Vertoon op Skema Vlak"
#. 6UtZh
-#: sw/inc/strings.hrc:698
+#: sw/inc/strings.hrc:697
msgctxt "STR_OUTLINE_LEVELS_SHOWN_SPIN_LABEL"
msgid "Level (1–10):"
msgstr "Vlak (1-10):"
#. BFGYg
-#: sw/inc/strings.hrc:699
+#: sw/inc/strings.hrc:698
msgctxt "STR_OUTLINE_LEVELS_SHOWN_HELP_LABEL"
msgid "Enter maximum outline level allowed for a displayed heading."
msgstr "Voer in maksimum skema vlak wat toegelaat word vir 'n vertoonde opskrif."
#. 9Fipd
-#: sw/inc/strings.hrc:701
+#: sw/inc/strings.hrc:700
msgctxt "STR_EXPANDALL"
msgid "Expand All"
msgstr "Alles uitvou"
#. FxGVt
-#: sw/inc/strings.hrc:702
+#: sw/inc/strings.hrc:701
msgctxt "STR_COLLAPSEALL"
msgid "Collapse All"
msgstr "Alles invou"
#. xvSRm
-#: sw/inc/strings.hrc:703
+#: sw/inc/strings.hrc:702
msgctxt "STR_HYPERLINK"
msgid "Insert as Hyperlink"
msgstr "Voeg hiperskakel in"
#. sdfGe
-#: sw/inc/strings.hrc:704
+#: sw/inc/strings.hrc:703
msgctxt "STR_LINK_REGION"
msgid "Insert as Link"
msgstr "Voeg as skakel in"
#. Suaiz
-#: sw/inc/strings.hrc:705
+#: sw/inc/strings.hrc:704
msgctxt "STR_COPY_REGION"
msgid "Insert as Copy"
msgstr "Voeg as kopie in"
#. VgdhT
-#: sw/inc/strings.hrc:706
+#: sw/inc/strings.hrc:705
msgctxt "STR_DISPLAY"
msgid "Display"
msgstr "Vertoon"
#. 3VXp5
-#: sw/inc/strings.hrc:707
+#: sw/inc/strings.hrc:706
msgctxt "STR_ACTIVE_VIEW"
msgid "Active Window"
msgstr "Aktiewe venster"
#. fAAUc
-#: sw/inc/strings.hrc:708
+#: sw/inc/strings.hrc:707
msgctxt "STR_HIDDEN"
msgid "hidden"
msgstr "versteek"
#. 3VWjq
-#: sw/inc/strings.hrc:709
+#: sw/inc/strings.hrc:708
msgctxt "STR_ACTIVE"
msgid "active"
msgstr "aktief"
#. YjPvg
-#: sw/inc/strings.hrc:710
+#: sw/inc/strings.hrc:709
msgctxt "STR_INACTIVE"
msgid "inactive"
msgstr "onaktief"
#. tBPKU
-#: sw/inc/strings.hrc:711
+#: sw/inc/strings.hrc:710
msgctxt "STR_EDIT_ENTRY"
msgid "Edit..."
msgstr "Redigeer..."
#. ppC87
-#: sw/inc/strings.hrc:712
+#: sw/inc/strings.hrc:711
msgctxt "STR_UPDATE"
msgid "~Update"
msgstr "~Werk by"
#. 44Esc
-#: sw/inc/strings.hrc:713
+#: sw/inc/strings.hrc:712
msgctxt "STR_EDIT_CONTENT"
msgid "Edit"
msgstr "Redigeer"
#. w3ZrD
-#: sw/inc/strings.hrc:714
+#: sw/inc/strings.hrc:713
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
msgstr "Redigeer skakel"
#. xyPWE
-#: sw/inc/strings.hrc:715
+#: sw/inc/strings.hrc:714
msgctxt "STR_EDIT_INSERT"
msgid "Insert"
msgstr "Voeg in"
#. AT9SS
-#: sw/inc/strings.hrc:716
+#: sw/inc/strings.hrc:715
msgctxt "STR_INDEX"
msgid "~Index"
msgstr "~Indeks"
#. MnBLc
-#: sw/inc/strings.hrc:717
+#: sw/inc/strings.hrc:716
msgctxt "STR_FILE"
msgid "File"
msgstr "Lêer"
#. DdBgh
-#: sw/inc/strings.hrc:718
+#: sw/inc/strings.hrc:717
msgctxt "STR_NEW_FILE"
msgid "New Document"
msgstr "Nuwe dokument"
#. aV9Uy
-#: sw/inc/strings.hrc:719
+#: sw/inc/strings.hrc:718
msgctxt "STR_INSERT_TEXT"
msgid "Text"
msgstr "Teks"
#. 5rD3D
-#: sw/inc/strings.hrc:720
+#: sw/inc/strings.hrc:719
msgctxt "STR_DELETE"
msgid "Delete"
msgstr "Skrap"
#. 9MrsU
-#: sw/inc/strings.hrc:721
+#: sw/inc/strings.hrc:720
msgctxt "STR_DELETE_ENTRY"
msgid "~Delete"
msgstr "~Skrap"
#. A28Rb
-#: sw/inc/strings.hrc:722
+#: sw/inc/strings.hrc:721
msgctxt "STR_UPDATE_SEL"
msgid "Selection"
msgstr "Seleksie"
#. gRBxA
-#: sw/inc/strings.hrc:723
+#: sw/inc/strings.hrc:722
msgctxt "STR_UPDATE_INDEX"
msgid "Indexes"
msgstr "Indekse"
#. WKwLS
-#: sw/inc/strings.hrc:724
+#: sw/inc/strings.hrc:723
msgctxt "STR_UPDATE_LINK"
msgid "Links"
msgstr "Skakels"
#. TaaJK
-#: sw/inc/strings.hrc:725
+#: sw/inc/strings.hrc:724
msgctxt "STR_UPDATE_ALL"
msgid "All"
msgstr "Alle"
#. HpMeb
-#: sw/inc/strings.hrc:727
+#: sw/inc/strings.hrc:726
msgctxt "STR_INVISIBLE"
msgid "hidden"
msgstr "versteek"
#. XcCnB
-#: sw/inc/strings.hrc:728
+#: sw/inc/strings.hrc:727
msgctxt "STR_BROKEN_LINK"
msgid "File not found: "
msgstr "Lêer nie gevind nie: "
#. UC53U
-#: sw/inc/strings.hrc:730
+#: sw/inc/strings.hrc:729
msgctxt "STR_RESOLVED"
msgid "RESOLVED"
msgstr "OPGELOS"
#. 3ceMF
-#: sw/inc/strings.hrc:732
+#: sw/inc/strings.hrc:731
msgctxt "STR_MARGIN_TOOLTIP_LEFT"
msgid "Left: "
msgstr "Links: "
#. EiXF2
-#: sw/inc/strings.hrc:733
+#: sw/inc/strings.hrc:732
msgctxt "STR_MARGIN_TOOLTIP_RIGHT"
msgid ". Right: "
msgstr ". Regs: "
#. UFpVa
-#: sw/inc/strings.hrc:734
+#: sw/inc/strings.hrc:733
msgctxt "STR_MARGIN_TOOLTIP_INNER"
msgid "Inner: "
msgstr "Binnekant: "
#. XE7Wb
-#: sw/inc/strings.hrc:735
+#: sw/inc/strings.hrc:734
msgctxt "STR_MARGIN_TOOLTIP_OUTER"
msgid ". Outer: "
msgstr ". Buitekant: "
#. 3A8Vg
-#: sw/inc/strings.hrc:736
+#: sw/inc/strings.hrc:735
msgctxt "STR_MARGIN_TOOLTIP_TOP"
msgid ". Top: "
msgstr ". Bo: "
#. dRhyZ
-#: sw/inc/strings.hrc:737
+#: sw/inc/strings.hrc:736
msgctxt "STR_MARGIN_TOOLTIP_BOT"
msgid ". Bottom: "
msgstr ". Onder: "
#. XuC4Y
#. Error calculator
-#: sw/inc/strings.hrc:740
+#: sw/inc/strings.hrc:739
msgctxt "STR_POSTIT_PAGE"
msgid "Page"
msgstr "Bladsy"
#. AeDYh
-#: sw/inc/strings.hrc:741
+#: sw/inc/strings.hrc:740
msgctxt "STR_POSTIT_LINE"
msgid "Line"
msgstr "Reël"
#. kfJG6
-#: sw/inc/strings.hrc:742
+#: sw/inc/strings.hrc:741
msgctxt "STR_POSTIT_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. gejqG
-#: sw/inc/strings.hrc:743
+#: sw/inc/strings.hrc:742
msgctxt "STR_CALC_SYNTAX"
msgid "** Syntax Error **"
msgstr "** Sintaksfout **"
#. q6dUT
-#: sw/inc/strings.hrc:744
+#: sw/inc/strings.hrc:743
msgctxt "STR_CALC_ZERODIV"
msgid "** Division by zero **"
msgstr "** Deling deur nul **"
#. HSo6d
-#: sw/inc/strings.hrc:745
+#: sw/inc/strings.hrc:744
msgctxt "STR_CALC_BRACK"
msgid "** Wrong use of brackets **"
msgstr "** Hakies verkeerd gebruik **"
#. jcNfg
-#: sw/inc/strings.hrc:746
+#: sw/inc/strings.hrc:745
msgctxt "STR_CALC_POW"
msgid "** Square function overflow **"
msgstr "** Oorvloei in Kwadraatfunksie **"
#. C453V
-#: sw/inc/strings.hrc:747
+#: sw/inc/strings.hrc:746
msgctxt "STR_CALC_OVERFLOW"
msgid "** Overflow **"
msgstr "** Oorvloei **"
#. KEQfz
-#: sw/inc/strings.hrc:748
+#: sw/inc/strings.hrc:747
msgctxt "STR_CALC_DEFAULT"
msgid "** Error **"
msgstr "** Fout **"
#. hxrg9
-#: sw/inc/strings.hrc:749
+#: sw/inc/strings.hrc:748
msgctxt "STR_CALC_ERROR"
msgid "** Expression is faulty **"
msgstr "** Uitdrukking is foutief **"
#. 2yBhF
-#: sw/inc/strings.hrc:750
+#: sw/inc/strings.hrc:749
msgctxt "STR_GETREFFLD_REFITEMNOTFOUND"
msgid "Error: Reference source not found"
msgstr "Fout: Verwysingsbron nie gevind nie"
#. jgRW7
-#: sw/inc/strings.hrc:751
+#: sw/inc/strings.hrc:750
msgctxt "STR_TEMPLATE_NONE"
msgid "None"
msgstr "Geen"
#. KRD6s
-#: sw/inc/strings.hrc:752
+#: sw/inc/strings.hrc:751
msgctxt "STR_FIELD_FIXED"
msgid "(fixed)"
msgstr "(vaste)"
#. FCRUB
-#: sw/inc/strings.hrc:753
+#: sw/inc/strings.hrc:752
msgctxt "STR_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#. ocA84
-#: sw/inc/strings.hrc:754
+#: sw/inc/strings.hrc:753
msgctxt "STR_TOI"
msgid "Alphabetical Index"
msgstr "Alfabetiese indeks"
#. GDCRF
-#: sw/inc/strings.hrc:755
+#: sw/inc/strings.hrc:754
msgctxt "STR_TOU"
msgid "User-Defined"
msgstr "Gebruikergedefinieer"
#. vnaNc
-#: sw/inc/strings.hrc:756
+#: sw/inc/strings.hrc:755
msgctxt "STR_TOC"
msgid "Table of Contents"
msgstr "Inhoudsopgawe"
#. BESjb
-#: sw/inc/strings.hrc:757
+#: sw/inc/strings.hrc:756
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
msgstr "Bibliografie"
#. ZFBUD
-#: sw/inc/strings.hrc:758
+#: sw/inc/strings.hrc:757
msgctxt "STR_TOX_CITATION"
msgid "Citation"
msgstr "Aanhaling"
#. WAs8q
-#: sw/inc/strings.hrc:759
+#: sw/inc/strings.hrc:758
msgctxt "STR_TOX_TBL"
msgid "Index of Tables"
msgstr "Tabelindeks"
#. NFzTx
-#: sw/inc/strings.hrc:760
+#: sw/inc/strings.hrc:759
msgctxt "STR_TOX_OBJ"
msgid "Table of Objects"
msgstr "Objektabel"
#. mSyms
-#: sw/inc/strings.hrc:761
+#: sw/inc/strings.hrc:760
msgctxt "STR_TOX_ILL"
msgid "Table of Figures"
msgstr "Figuurtabel"
#. TspkU
#. SubType DocInfo
-#: sw/inc/strings.hrc:763
+#: sw/inc/strings.hrc:762
msgctxt "FLD_DOCINFO_TITEL"
msgid "Title"
msgstr "Titel"
#. ziEpC
-#: sw/inc/strings.hrc:764
+#: sw/inc/strings.hrc:763
msgctxt "FLD_DOCINFO_THEMA"
msgid "Subject"
msgstr "Onderwerp"
#. FCVZS
-#: sw/inc/strings.hrc:765
+#: sw/inc/strings.hrc:764
msgctxt "FLD_DOCINFO_KEYS"
msgid "Keywords"
msgstr "Sleutelwoorde"
#. kHC7q
-#: sw/inc/strings.hrc:766
+#: sw/inc/strings.hrc:765
msgctxt "FLD_DOCINFO_COMMENT"
msgid "Comments"
msgstr "Opmerkings"
#. i6psX
-#: sw/inc/strings.hrc:767
+#: sw/inc/strings.hrc:766
msgctxt "FLD_DOCINFO_CREATE"
msgid "Created"
msgstr "Geskep"
#. L2Bxp
-#: sw/inc/strings.hrc:768
+#: sw/inc/strings.hrc:767
msgctxt "FLD_DOCINFO_CHANGE"
msgid "Modified"
msgstr "Gewysig"
#. D2YKS
-#: sw/inc/strings.hrc:769
+#: sw/inc/strings.hrc:768
msgctxt "FLD_DOCINFO_PRINT"
msgid "Last printed"
msgstr "Laas gedruk"
#. QtuZM
-#: sw/inc/strings.hrc:770
+#: sw/inc/strings.hrc:769
msgctxt "FLD_DOCINFO_DOCNO"
msgid "Revision number"
msgstr "Hersieningsnommer"
#. YDFbi
-#: sw/inc/strings.hrc:771
+#: sw/inc/strings.hrc:770
msgctxt "FLD_DOCINFO_EDIT"
msgid "Total editing time"
msgstr "Totale redigeertyd"
#. EpZ9C
-#: sw/inc/strings.hrc:772
+#: sw/inc/strings.hrc:771
msgctxt "STR_PAGEDESC_NAME"
msgid "Convert $(ARG1)"
msgstr "Skakel $(ARG1) om"
#. nY3NU
-#: sw/inc/strings.hrc:773
+#: sw/inc/strings.hrc:772
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
msgstr "Skakel eers $(ARG1) om"
#. eQtGV
-#: sw/inc/strings.hrc:774
+#: sw/inc/strings.hrc:773
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
msgstr "Skakel dan $(ARG1) om"
#. aBwxC
-#: sw/inc/strings.hrc:775
+#: sw/inc/strings.hrc:774
msgctxt "STR_AUTH_TYPE_ARTICLE"
msgid "Article"
msgstr "Artikel"
#. di8ud
-#: sw/inc/strings.hrc:776
+#: sw/inc/strings.hrc:775
msgctxt "STR_AUTH_TYPE_BOOK"
msgid "Book"
msgstr "Boek"
#. GD5KJ
-#: sw/inc/strings.hrc:777
+#: sw/inc/strings.hrc:776
msgctxt "STR_AUTH_TYPE_BOOKLET"
msgid "Brochures"
msgstr "Brosjures"
#. mfFSf
-#: sw/inc/strings.hrc:778
+#: sw/inc/strings.hrc:777
msgctxt "STR_AUTH_TYPE_CONFERENCE"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. Et2Px
-#: sw/inc/strings.hrc:779
+#: sw/inc/strings.hrc:778
msgctxt "STR_AUTH_TYPE_INBOOK"
msgid "Book excerpt"
msgstr "Boekuittreksel"
#. ys2B8
-#: sw/inc/strings.hrc:780
+#: sw/inc/strings.hrc:779
msgctxt "STR_AUTH_TYPE_INCOLLECTION"
msgid "Book excerpt with title"
msgstr "Boekuittreksel met titel"
#. mdEqj
-#: sw/inc/strings.hrc:781
+#: sw/inc/strings.hrc:780
msgctxt "STR_AUTH_TYPE_INPROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. jNmVD
-#: sw/inc/strings.hrc:782
+#: sw/inc/strings.hrc:781
msgctxt "STR_AUTH_TYPE_JOURNAL"
msgid "Journal"
msgstr "Joernaal"
#. M3xkM
-#: sw/inc/strings.hrc:783
+#: sw/inc/strings.hrc:782
msgctxt "STR_AUTH_TYPE_MANUAL"
msgid "Techn. documentation"
msgstr "Tegniese dokumentasie"
#. EJAj4
-#: sw/inc/strings.hrc:784
+#: sw/inc/strings.hrc:783
msgctxt "STR_AUTH_TYPE_MASTERSTHESIS"
msgid "Thesis"
msgstr "Tesis"
#. NoUCv
-#: sw/inc/strings.hrc:785
+#: sw/inc/strings.hrc:784
msgctxt "STR_AUTH_TYPE_MISC"
msgid "Miscellaneous"
msgstr "Allerlei"
#. qNGGE
-#: sw/inc/strings.hrc:786
+#: sw/inc/strings.hrc:785
msgctxt "STR_AUTH_TYPE_PHDTHESIS"
msgid "Dissertation"
msgstr "Verhandeling"
#. L7W7R
-#: sw/inc/strings.hrc:787
+#: sw/inc/strings.hrc:786
msgctxt "STR_AUTH_TYPE_PROCEEDINGS"
msgid "Conference proceedings"
msgstr "Konferensieverrigtinge"
#. X8bGG
-#: sw/inc/strings.hrc:788
+#: sw/inc/strings.hrc:787
msgctxt "STR_AUTH_TYPE_TECHREPORT"
msgid "Research report"
msgstr "Navorsingsverslag"
#. 4dDC9
-#: sw/inc/strings.hrc:789
+#: sw/inc/strings.hrc:788
msgctxt "STR_AUTH_TYPE_UNPUBLISHED"
msgid "Unpublished"
msgstr "Ongepubliseer"
#. Gb38d
-#: sw/inc/strings.hrc:790
+#: sw/inc/strings.hrc:789
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
msgstr "E-pos"
#. 9HKD6
-#: sw/inc/strings.hrc:791
+#: sw/inc/strings.hrc:790
msgctxt "STR_AUTH_TYPE_WWW"
msgid "WWW document"
msgstr "WWW-dokument"
#. qA449
-#: sw/inc/strings.hrc:792
+#: sw/inc/strings.hrc:791
msgctxt "STR_AUTH_TYPE_CUSTOM1"
msgid "User-defined1"
msgstr "Gebruikergedefinieer1"
#. nyzxz
-#: sw/inc/strings.hrc:793
+#: sw/inc/strings.hrc:792
msgctxt "STR_AUTH_TYPE_CUSTOM2"
msgid "User-defined2"
msgstr "Gebruikergedefinieer2"
#. cCFTF
-#: sw/inc/strings.hrc:794
+#: sw/inc/strings.hrc:793
msgctxt "STR_AUTH_TYPE_CUSTOM3"
msgid "User-defined3"
msgstr "Gebruikergedefinieer3"
#. mrqJC
-#: sw/inc/strings.hrc:795
+#: sw/inc/strings.hrc:794
msgctxt "STR_AUTH_TYPE_CUSTOM4"
msgid "User-defined4"
msgstr "Gebruikergedefinieer4"
#. fFs86
-#: sw/inc/strings.hrc:796
+#: sw/inc/strings.hrc:795
msgctxt "STR_AUTH_TYPE_CUSTOM5"
msgid "User-defined5"
msgstr "Gebruikergedefinieer5"
#. nsCwi
-#: sw/inc/strings.hrc:797
+#: sw/inc/strings.hrc:796
msgctxt "STR_AUTH_FIELD_IDENTIFIER"
msgid "Short name"
msgstr "Kort naam"
#. CpKgc
-#: sw/inc/strings.hrc:798
+#: sw/inc/strings.hrc:797
msgctxt "STR_AUTH_FIELD_AUTHORITY_TYPE"
msgid "Type"
msgstr "Soort"
#. kUGDr
-#: sw/inc/strings.hrc:799
+#: sw/inc/strings.hrc:798
msgctxt "STR_AUTH_FIELD_ADDRESS"
msgid "Address"
msgstr "Adres"
#. DquVQ
-#: sw/inc/strings.hrc:800
+#: sw/inc/strings.hrc:799
msgctxt "STR_AUTH_FIELD_ANNOTE"
msgid "Annotation"
msgstr "Annotering"
#. sduuV
-#: sw/inc/strings.hrc:801
+#: sw/inc/strings.hrc:800
msgctxt "STR_AUTH_FIELD_AUTHOR"
msgid "Author(s)"
msgstr "Outeur(s)"
#. fXvz6
-#: sw/inc/strings.hrc:802
+#: sw/inc/strings.hrc:801
msgctxt "STR_AUTH_FIELD_BOOKTITLE"
msgid "Book title"
msgstr "Boektitel"
#. c8PFE
-#: sw/inc/strings.hrc:803
+#: sw/inc/strings.hrc:802
msgctxt "STR_AUTH_FIELD_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. GXqxF
-#: sw/inc/strings.hrc:804
+#: sw/inc/strings.hrc:803
msgctxt "STR_AUTH_FIELD_EDITION"
msgid "Edition"
msgstr "Uitgawe"
#. p7A3p
-#: sw/inc/strings.hrc:805
+#: sw/inc/strings.hrc:804
msgctxt "STR_AUTH_FIELD_EDITOR"
msgid "Editor"
msgstr "Redakteur"
#. aAFEz
-#: sw/inc/strings.hrc:806
+#: sw/inc/strings.hrc:805
msgctxt "STR_AUTH_FIELD_HOWPUBLISHED"
msgid "Publication type"
msgstr "Soort publikasie"
#. 8DwdJ
-#: sw/inc/strings.hrc:807
+#: sw/inc/strings.hrc:806
msgctxt "STR_AUTH_FIELD_INSTITUTION"
msgid "Institution"
msgstr "Instelling"
#. VWNxy
-#: sw/inc/strings.hrc:808
+#: sw/inc/strings.hrc:807
msgctxt "STR_AUTH_FIELD_JOURNAL"
msgid "Journal"
msgstr "Joernaal"
#. Da4fW
-#: sw/inc/strings.hrc:809
+#: sw/inc/strings.hrc:808
msgctxt "STR_AUTH_FIELD_MONTH"
msgid "Month"
msgstr "Maand"
#. SdSBt
-#: sw/inc/strings.hrc:810
+#: sw/inc/strings.hrc:809
msgctxt "STR_AUTH_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
#. MZYpD
-#: sw/inc/strings.hrc:811
+#: sw/inc/strings.hrc:810
msgctxt "STR_AUTH_FIELD_NUMBER"
msgid "Number"
msgstr "Nommer"
#. ZB7Go
-#: sw/inc/strings.hrc:812
+#: sw/inc/strings.hrc:811
msgctxt "STR_AUTH_FIELD_ORGANIZATIONS"
msgid "Organization"
msgstr "Organisasie"
#. C4CdP
-#: sw/inc/strings.hrc:813
+#: sw/inc/strings.hrc:812
msgctxt "STR_AUTH_FIELD_PAGES"
msgid "Page(s)"
msgstr "Bladsy(e)"
#. yFPFa
-#: sw/inc/strings.hrc:814
+#: sw/inc/strings.hrc:813
msgctxt "STR_AUTH_FIELD_PUBLISHER"
msgid "Publisher"
msgstr "Uitgewer"
#. d9u3p
-#: sw/inc/strings.hrc:815
+#: sw/inc/strings.hrc:814
msgctxt "STR_AUTH_FIELD_SCHOOL"
msgid "University"
msgstr "Universiteit"
#. Qxsdb
-#: sw/inc/strings.hrc:816
+#: sw/inc/strings.hrc:815
msgctxt "STR_AUTH_FIELD_SERIES"
msgid "Series"
msgstr "Reeks"
#. YhXPg
-#: sw/inc/strings.hrc:817
+#: sw/inc/strings.hrc:816
msgctxt "STR_AUTH_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
#. qEBhL
-#: sw/inc/strings.hrc:818
+#: sw/inc/strings.hrc:817
msgctxt "STR_AUTH_FIELD_TYPE"
msgid "Type of report"
msgstr "Soort verslag"
#. Sij9w
-#: sw/inc/strings.hrc:819
+#: sw/inc/strings.hrc:818
msgctxt "STR_AUTH_FIELD_VOLUME"
msgid "Volume"
msgstr "Volume"
#. K8miv
-#: sw/inc/strings.hrc:820
+#: sw/inc/strings.hrc:819
msgctxt "STR_AUTH_FIELD_YEAR"
msgid "Year"
msgstr "Jaar"
#. pFMSV
-#: sw/inc/strings.hrc:821
+#: sw/inc/strings.hrc:820
msgctxt "STR_AUTH_FIELD_URL"
msgid "URL"
msgstr "URL"
#. xFG3c
-#: sw/inc/strings.hrc:822
+#: sw/inc/strings.hrc:821
msgctxt "STR_AUTH_FIELD_CUSTOM1"
msgid "User-defined1"
msgstr "Gebruikergedefinieer1"
#. wtDyU
-#: sw/inc/strings.hrc:823
+#: sw/inc/strings.hrc:822
msgctxt "STR_AUTH_FIELD_CUSTOM2"
msgid "User-defined2"
msgstr "Gebruikergedefinieer2"
#. VH3Se
-#: sw/inc/strings.hrc:824
+#: sw/inc/strings.hrc:823
msgctxt "STR_AUTH_FIELD_CUSTOM3"
msgid "User-defined3"
msgstr "Gebruikergedefinieer3"
#. twuKb
-#: sw/inc/strings.hrc:825
+#: sw/inc/strings.hrc:824
msgctxt "STR_AUTH_FIELD_CUSTOM4"
msgid "User-defined4"
msgstr "Gebruikergedefinieer4"
#. WAo7Z
-#: sw/inc/strings.hrc:826
+#: sw/inc/strings.hrc:825
msgctxt "STR_AUTH_FIELD_CUSTOM5"
msgid "User-defined5"
msgstr "Gebruikergedefinieer5"
#. 3r6Wg
-#: sw/inc/strings.hrc:827
+#: sw/inc/strings.hrc:826
msgctxt "STR_AUTH_FIELD_ISBN"
msgid "ISBN"
msgstr "ISBN"
#. BhDrt
-#: sw/inc/strings.hrc:828
+#: sw/inc/strings.hrc:827
msgctxt "STR_AUTH_FIELD_LOCAL_URL"
msgid "Local copy"
msgstr "Plaaslike kopie"
#. CeSBP
-#: sw/inc/strings.hrc:829
+#: sw/inc/strings.hrc:828
msgctxt "STR_AUTH_FIELD_TARGET_TYPE"
msgid "Mark link target"
msgstr "Merk kopeling teiken"
#. GnKHG
-#: sw/inc/strings.hrc:830
+#: sw/inc/strings.hrc:829
msgctxt "STR_AUTH_FIELD_TARGET_URL"
msgid "Target URL"
msgstr "Teiken URL"
#. eFnnx
-#: sw/inc/strings.hrc:832
+#: sw/inc/strings.hrc:831
msgctxt "STR_IDXMRK_EDIT"
msgid "Edit Index Entry"
msgstr "Redigeer indeksinskrywing"
#. EHTHH
-#: sw/inc/strings.hrc:833
+#: sw/inc/strings.hrc:832
msgctxt "STR_IDXMRK_INSERT"
msgid "Insert Index Entry"
msgstr "Voeg indeksinskrywying in"
#. D2gkA
-#: sw/inc/strings.hrc:834
+#: sw/inc/strings.hrc:833
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
msgstr "Hierdie dokument bevat reeds die bibliografie-inskrywing maar met ander data. Wil u die bestaande inskrywings aanpas?"
#. mK84T
-#: sw/inc/strings.hrc:836
+#: sw/inc/strings.hrc:835
msgctxt "STR_COMMENTS_LABEL"
msgid "Comments"
msgstr "Opmerking"
#. fwecS
-#: sw/inc/strings.hrc:837
+#: sw/inc/strings.hrc:836
msgctxt "STR_SHOW_COMMENTS"
msgid "Show comments"
msgstr "Wys opmerkings"
#. HkUvy
-#: sw/inc/strings.hrc:838
+#: sw/inc/strings.hrc:837
msgctxt "STR_HIDE_COMMENTS"
msgid "Hide comments"
msgstr "Versteek opmerkings"
#. FcmEy
-#: sw/inc/strings.hrc:840
+#: sw/inc/strings.hrc:839
msgctxt "STR_DOUBLE_SHORTNAME"
msgid "Shortcut name already exists. Please choose another name."
msgstr "Kortpadnaam bestaan reeds. Kies asseblief ’n ander naam."
#. VhMST
-#: sw/inc/strings.hrc:841
+#: sw/inc/strings.hrc:840
msgctxt "STR_QUERY_DELETE"
msgid "Delete AutoText?"
msgstr "Skrap Outoteks?"
#. E5MLr
-#: sw/inc/strings.hrc:842
+#: sw/inc/strings.hrc:841
msgctxt "STR_QUERY_DELETE_GROUP1"
msgid "Delete the category "
msgstr "Skrap die kategorie "
#. qndNh
-#: sw/inc/strings.hrc:843
+#: sw/inc/strings.hrc:842
msgctxt "STR_QUERY_DELETE_GROUP2"
msgid "?"
msgstr "?"
#. B6xah
-#: sw/inc/strings.hrc:844
+#: sw/inc/strings.hrc:843
msgctxt "STR_GLOSSARY"
msgid "AutoText :"
msgstr "OutoTeks:"
#. ChetY
-#: sw/inc/strings.hrc:845
+#: sw/inc/strings.hrc:844
msgctxt "STR_SAVE_GLOSSARY"
msgid "Save AutoText"
msgstr "Stoor Outoteks"
#. QxAiF
-#: sw/inc/strings.hrc:846
+#: sw/inc/strings.hrc:845
msgctxt "STR_NO_GLOSSARIES"
msgid "There is no AutoText in this file."
msgstr "Daar is geen Outoteks in hierdie lêer nie."
#. sG8Xt
-#: sw/inc/strings.hrc:847
+#: sw/inc/strings.hrc:846
msgctxt "STR_MY_AUTOTEXT"
msgid "My AutoText"
msgstr "My Outoteks"
#. GaoqR
-#: sw/inc/strings.hrc:849
+#: sw/inc/strings.hrc:848
msgctxt "STR_NOGLOS"
msgid "AutoText for Shortcut '%1' not found."
msgstr "Outoteks vir kortpad “%1” nie gevind nie."
#. MwUEP
-#: sw/inc/strings.hrc:850
+#: sw/inc/strings.hrc:849
msgctxt "STR_NO_TABLE"
msgid "A table with no rows or no cells cannot be inserted"
msgstr "’n Tabel kan nie met geen rye of kolomme ingevoeg word nie"
#. AawM4
-#: sw/inc/strings.hrc:851
+#: sw/inc/strings.hrc:850
msgctxt "STR_TABLE_TOO_LARGE"
msgid "The table cannot be inserted because it is too large"
msgstr "Die tabel kan nie ingevoeg word nie want hy is te groot"
#. GGo8i
-#: sw/inc/strings.hrc:852
+#: sw/inc/strings.hrc:851
msgctxt "STR_ERR_INSERT_GLOS"
msgid "AutoText could not be created."
msgstr "Outoteks kon nie geskep word nie."
#. DCPSB
-#: sw/inc/strings.hrc:853
+#: sw/inc/strings.hrc:852
msgctxt "STR_CLPBRD_FORMAT_ERROR"
msgid "Requested clipboard format is not available."
msgstr "Verlangde knipbordformaat is nie beskikbaar nie."
#. YxCCF
-#: sw/inc/strings.hrc:854
+#: sw/inc/strings.hrc:853
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-teksdokument"
#. 8ygN3
-#: sw/inc/strings.hrc:855
+#: sw/inc/strings.hrc:854
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Beeld (%PRODUCTNAME %PRODUCTVERSION-teksdokument)"
#. ewPPB
-#: sw/inc/strings.hrc:856
+#: sw/inc/strings.hrc:855
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
msgstr "Objek (%PRODUCTNAME %PRODUCTVERSION-teksdokument)"
#. 9VEc3
-#: sw/inc/strings.hrc:857
+#: sw/inc/strings.hrc:856
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-skakel)"
#. svrE7
-#: sw/inc/strings.hrc:859
+#: sw/inc/strings.hrc:858
msgctxt "STR_DELETE_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
#. YGNN4
-#: sw/inc/strings.hrc:860
+#: sw/inc/strings.hrc:859
msgctxt "STR_FORMAT_ALL_NOTES"
msgid "All Comments"
msgstr "Alle opmerkings"
#. GDH49
-#: sw/inc/strings.hrc:861
+#: sw/inc/strings.hrc:860
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
msgstr "Opmerkings deur "
#. RwAcm
-#: sw/inc/strings.hrc:862
+#: sw/inc/strings.hrc:861
msgctxt "STR_NODATE"
msgid "(no date)"
msgstr "(geen datum)"
#. ytxKG
-#: sw/inc/strings.hrc:863
+#: sw/inc/strings.hrc:862
msgctxt "STR_NOAUTHOR"
msgid "(no author)"
msgstr "(geen outeur)"
#. nAwMG
-#: sw/inc/strings.hrc:864
+#: sw/inc/strings.hrc:863
msgctxt "STR_REPLY"
msgid "Reply to $1"
msgstr "Antwoord aan $1"
#. CVVa6
-#: sw/inc/strings.hrc:866
+#: sw/inc/strings.hrc:865
msgctxt "ST_TITLE_EDIT"
msgid "Edit Address Block"
msgstr "Redigeer adresblok"
#. njGGA
-#: sw/inc/strings.hrc:867
+#: sw/inc/strings.hrc:866
msgctxt "ST_TITLE_MALE"
msgid "Custom Salutation (Male Recipients)"
msgstr "Eie aanhef (manlike ontvangers)"
#. ZVuKY
-#: sw/inc/strings.hrc:868
+#: sw/inc/strings.hrc:867
msgctxt "ST_TITLE_FEMALE"
msgid "Custom Salutation (Female Recipients)"
msgstr "Eie aanhef (vroulike ontvangers)"
#. h4yuq
-#: sw/inc/strings.hrc:869
+#: sw/inc/strings.hrc:868
msgctxt "ST_SALUTATIONELEMENTS"
msgid "Salutation e~lements"
msgstr "Aanhefe~lemente"
#. kWhqT
-#: sw/inc/strings.hrc:870
+#: sw/inc/strings.hrc:869
msgctxt "ST_INSERTSALUTATIONFIELD"
msgid "Add to salutation"
msgstr "Voeg by aanhef"
#. hvF3V
-#: sw/inc/strings.hrc:871
+#: sw/inc/strings.hrc:870
msgctxt "ST_REMOVESALUTATIONFIELD"
msgid "Remove from salutation"
msgstr "Verwyder uit aanhef"
#. A6XaR
-#: sw/inc/strings.hrc:872
+#: sw/inc/strings.hrc:871
msgctxt "ST_DRAGSALUTATION"
msgid "1. ~Drag salutation elements into the box below"
msgstr "1. ~Sleep aanhefelemente na die boksie hieronder"
#. 4VJWL
-#: sw/inc/strings.hrc:873
+#: sw/inc/strings.hrc:872
msgctxt "ST_SALUTATION"
msgid "Salutation"
msgstr "Aanhef"
#. Vj6XT
-#: sw/inc/strings.hrc:874
+#: sw/inc/strings.hrc:873
msgctxt "ST_PUNCTUATION"
msgid "Punctuation Mark"
msgstr "Leesteken"
#. bafeG
-#: sw/inc/strings.hrc:875
+#: sw/inc/strings.hrc:874
msgctxt "ST_TEXT"
msgid "Text"
msgstr "Teks"
#. tt6sA
-#: sw/inc/strings.hrc:876
+#: sw/inc/strings.hrc:875
msgctxt "ST_SALUTATIONMATCHING"
msgid "Assign the fields from your data source to match the salutation elements."
msgstr "Wys die velde toe uit u databron wat pas by die adreselemente."
#. zrUsN
-#: sw/inc/strings.hrc:877
+#: sw/inc/strings.hrc:876
msgctxt "ST_SALUTATIONPREVIEW"
msgid "Salutation preview"
msgstr "Aanhefvoorskou"
#. 2UVE6
-#: sw/inc/strings.hrc:878
+#: sw/inc/strings.hrc:877
msgctxt "ST_ADDRESSELEMENT"
msgid "Address elements"
msgstr "Adreselemente"
#. Bd6pd
-#: sw/inc/strings.hrc:879
+#: sw/inc/strings.hrc:878
msgctxt "ST_SALUTATIONELEMENT"
msgid "Salutation elements"
msgstr "Aanhefelemente"
#. 9krzf
-#: sw/inc/strings.hrc:880
+#: sw/inc/strings.hrc:879
msgctxt "ST_MATCHESTO"
msgid "Matches to field:"
msgstr "Pas by veld:"
#. oahCQ
-#: sw/inc/strings.hrc:881
+#: sw/inc/strings.hrc:880
msgctxt "ST_PREVIEW"
msgid "Preview"
msgstr "Voorskou"
#. ijdxe
-#: sw/inc/strings.hrc:882
+#: sw/inc/strings.hrc:881
msgctxt "ST_DELETE_CONFIRM"
msgid "Do you want to delete this registered data source?"
msgstr "Wil u die geregistreerde Databron verwyder?"
#. kE5C3
-#: sw/inc/strings.hrc:884
+#: sw/inc/strings.hrc:883
msgctxt "STR_NOTASSIGNED"
msgid " not yet matched "
msgstr " nog nie gepas nie "
#. Y6FhG
-#: sw/inc/strings.hrc:885
+#: sw/inc/strings.hrc:884
msgctxt "STR_FILTER_ALL"
msgid "All files"
msgstr "Alle lêers"
#. fCAvo
-#: sw/inc/strings.hrc:886
+#: sw/inc/strings.hrc:885
msgctxt "STR_FILTER_ALL_DATA"
msgid "Address lists"
msgstr "Adres-lyste"
#. Wjpry
-#: sw/inc/strings.hrc:887
+#: sw/inc/strings.hrc:886
msgctxt "STR_FILTER_SXB"
msgid "%PRODUCTNAME Base"
msgstr "%PRODUCTNAME, Base"
#. CVU2n
-#: sw/inc/strings.hrc:888
+#: sw/inc/strings.hrc:887
msgctxt "STR_FILTER_SXC"
msgid "%PRODUCTNAME Calc"
msgstr "%PRODUCTNAME, Calc"
#. ccsQt
-#: sw/inc/strings.hrc:889
+#: sw/inc/strings.hrc:888
msgctxt "STR_FILTER_SXW"
msgid "%PRODUCTNAME Writer"
msgstr "%PRODUCTNAME, Writer"
#. Jwqok
-#: sw/inc/strings.hrc:890
+#: sw/inc/strings.hrc:889
msgctxt "STR_FILTER_DBF"
msgid "dBase"
msgstr "dBase"
#. wEWC3
-#: sw/inc/strings.hrc:891
+#: sw/inc/strings.hrc:890
msgctxt "STR_FILTER_XLS"
msgid "Microsoft Excel"
msgstr "Microsoft Excel"
#. e3ndC
-#: sw/inc/strings.hrc:892
+#: sw/inc/strings.hrc:891
msgctxt "STR_FILTER_DOC"
msgid "Microsoft Word"
msgstr "Microsoft Word"
#. 9aA4Y
-#: sw/inc/strings.hrc:893
+#: sw/inc/strings.hrc:892
msgctxt "STR_FILTER_TXT"
msgid "Plain text"
msgstr "Normale teks"
#. 5iEeN
-#: sw/inc/strings.hrc:894
+#: sw/inc/strings.hrc:893
msgctxt "STR_FILTER_CSV"
msgid "Text Comma Separated"
msgstr "Komma Geskeide Teks"
#. D8MYt
-#: sw/inc/strings.hrc:895
+#: sw/inc/strings.hrc:894
msgctxt "STR_FILTER_MDB"
msgid "Microsoft Access"
msgstr "Microsoft Access"
#. nRKEu
-#: sw/inc/strings.hrc:896
+#: sw/inc/strings.hrc:895
msgctxt "STR_FILTER_ACCDB"
msgid "Microsoft Access 2007"
msgstr "Microsoft Access 2007"
#. uDNRt
-#: sw/inc/strings.hrc:897
+#: sw/inc/strings.hrc:896
msgctxt "ST_CONFIGUREMAIL"
msgid ""
"In order to be able to send mail merge documents by email, %PRODUCTNAME requires information about the email account to be used.\n"
@@ -7315,91 +7321,91 @@ msgstr ""
"Wil u die epos rekeninginligting nou invoer?"
#. r9BVg
-#: sw/inc/strings.hrc:898
+#: sw/inc/strings.hrc:897
msgctxt "ST_FILTERNAME"
msgid "%PRODUCTNAME Address List (.csv)"
msgstr "%PRODUCTNAME-adreslys (.csv)"
#. jiJuZ
-#: sw/inc/strings.hrc:900
+#: sw/inc/strings.hrc:899
msgctxt "ST_STARTING"
msgid "Select Starting Document"
msgstr "Kies begindokument"
#. FiUyK
-#: sw/inc/strings.hrc:901
+#: sw/inc/strings.hrc:900
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
msgstr "Kies die dokumenttipe"
#. QwrpS
-#: sw/inc/strings.hrc:902
+#: sw/inc/strings.hrc:901
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
msgstr "Voeg adresblok in"
#. omRZF
-#: sw/inc/strings.hrc:903
+#: sw/inc/strings.hrc:902
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
msgstr "Kies adreslys"
#. YrDuD
-#: sw/inc/strings.hrc:904
+#: sw/inc/strings.hrc:903
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
msgstr "Skep aanhef"
#. tTr4B
-#: sw/inc/strings.hrc:905
+#: sw/inc/strings.hrc:904
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
msgstr "Pas uitleg aan"
#. S4p5M
-#: sw/inc/strings.hrc:906
+#: sw/inc/strings.hrc:905
msgctxt "ST_EXCLUDE"
msgid "Exclude recipient"
msgstr "Sluit ontvanger uit"
#. N5YUH
-#: sw/inc/strings.hrc:907
+#: sw/inc/strings.hrc:906
msgctxt "ST_FINISH"
msgid "~Finish"
msgstr "~Klaar"
#. L5FEG
-#: sw/inc/strings.hrc:908
+#: sw/inc/strings.hrc:907
msgctxt "ST_MMWTITLE"
msgid "Mail Merge Wizard"
msgstr "Massapos-slimmerd"
#. CEhZj
-#: sw/inc/strings.hrc:910
+#: sw/inc/strings.hrc:909
msgctxt "ST_TABLE"
msgid "Table"
msgstr "Tabel"
#. v9hEB
-#: sw/inc/strings.hrc:911
+#: sw/inc/strings.hrc:910
msgctxt "ST_QUERY"
msgid "Query"
msgstr "Navraag"
#. HxGAu
-#: sw/inc/strings.hrc:913
+#: sw/inc/strings.hrc:912
msgctxt "STR_QUERY_SPELL_CONTINUE"
msgid "Continue checking at beginning of document?"
msgstr "Wil u weer van die dokument se begin af toets?"
#. gE7CA
-#: sw/inc/strings.hrc:914
+#: sw/inc/strings.hrc:913
msgctxt "STR_SPELLING_COMPLETED"
msgid "The spellcheck is complete."
msgstr "Die speltoets is klaar."
#. 2SuqF
-#: sw/inc/strings.hrc:915
+#: sw/inc/strings.hrc:914
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
msgstr "Geen woordeboek beskikbaar nie"
@@ -7409,252 +7415,252 @@ msgstr "Geen woordeboek beskikbaar nie"
#. Description: strings for the types
#. --------------------------------------------------------------------
#. range document
-#: sw/inc/strings.hrc:921
+#: sw/inc/strings.hrc:920
msgctxt "STR_DATEFLD"
msgid "Date"
msgstr "Datum"
#. V9cQp
-#: sw/inc/strings.hrc:922
+#: sw/inc/strings.hrc:921
msgctxt "STR_TIMEFLD"
msgid "Time"
msgstr "Tyd"
#. 2zgWi
-#: sw/inc/strings.hrc:923
+#: sw/inc/strings.hrc:922
msgctxt "STR_FILENAMEFLD"
msgid "File name"
msgstr "Lêernaam"
#. FdSaU
-#: sw/inc/strings.hrc:924
+#: sw/inc/strings.hrc:923
msgctxt "STR_DBNAMEFLD"
msgid "Database Name"
msgstr "Databasisnaam"
#. cGn9h
-#: sw/inc/strings.hrc:925
+#: sw/inc/strings.hrc:924
msgctxt "STR_CHAPTERFLD"
msgid "~Heading"
msgstr "-Opskrif"
#. wYWy2
-#: sw/inc/strings.hrc:926
+#: sw/inc/strings.hrc:925
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
msgstr "Bladsynommer"
#. EXC6N
-#: sw/inc/strings.hrc:927
+#: sw/inc/strings.hrc:926
msgctxt "STR_DOCSTATFLD"
msgid "Statistics"
msgstr "Statistieke"
#. EW86G
-#: sw/inc/strings.hrc:928
+#: sw/inc/strings.hrc:927
msgctxt "STR_AUTHORFLD"
msgid "Author"
msgstr "Outeur"
#. 5aFak
-#: sw/inc/strings.hrc:929
+#: sw/inc/strings.hrc:928
msgctxt "STR_TEMPLNAMEFLD"
msgid "Templates"
msgstr "Sjablone"
#. 3wdud
-#: sw/inc/strings.hrc:930
+#: sw/inc/strings.hrc:929
msgctxt "STR_EXTUSERFLD"
msgid "Sender"
msgstr "Afsender"
#. LxZEm
#. range functions
-#: sw/inc/strings.hrc:932
+#: sw/inc/strings.hrc:931
msgctxt "STR_SETFLD"
msgid "Set variable"
msgstr "Stel veranderlike"
#. ckA26
-#: sw/inc/strings.hrc:933
+#: sw/inc/strings.hrc:932
msgctxt "STR_GETFLD"
msgid "Show variable"
msgstr "Wys veranderlike"
#. Fjzgu
-#: sw/inc/strings.hrc:934
+#: sw/inc/strings.hrc:933
msgctxt "STR_FORMELFLD"
msgid "Insert Formula"
msgstr "Voeg formule in"
#. AXoAT
-#: sw/inc/strings.hrc:935
+#: sw/inc/strings.hrc:934
msgctxt "STR_INPUTFLD"
msgid "Input field"
msgstr "Toevoerveld"
#. VfqNE
-#: sw/inc/strings.hrc:936
+#: sw/inc/strings.hrc:935
msgctxt "STR_SETINPUTFLD"
msgid "Input field (variable)"
msgstr "Toevoerveld (veranderlike)"
#. E8JAd
-#: sw/inc/strings.hrc:937
+#: sw/inc/strings.hrc:936
msgctxt "STR_USRINPUTFLD"
msgid "Input field (user)"
msgstr "Toevoerveld (gebruiker)"
#. 8LGEQ
-#: sw/inc/strings.hrc:938
+#: sw/inc/strings.hrc:937
msgctxt "STR_CONDTXTFLD"
msgid "Conditional text"
msgstr "Voorwaardelike teks"
#. jrZ7i
-#: sw/inc/strings.hrc:939
+#: sw/inc/strings.hrc:938
msgctxt "STR_DDEFLD"
msgid "DDE field"
msgstr "DDE-veld"
#. 9WAT9
-#: sw/inc/strings.hrc:940
+#: sw/inc/strings.hrc:939
msgctxt "STR_MACROFLD"
msgid "Execute macro"
msgstr "Voer makro uit"
#. qEBxa
-#: sw/inc/strings.hrc:941
+#: sw/inc/strings.hrc:940
msgctxt "STR_SEQFLD"
msgid "Number range"
msgstr "Getalomvang"
#. ACE5s
-#: sw/inc/strings.hrc:942
+#: sw/inc/strings.hrc:941
msgctxt "STR_SETREFPAGEFLD"
msgid "Set page variable"
msgstr "Stel bladsyveranderlike"
#. ayB3N
-#: sw/inc/strings.hrc:943
+#: sw/inc/strings.hrc:942
msgctxt "STR_GETREFPAGEFLD"
msgid "Show page variable"
msgstr "Wys bladsyveranderlike"
#. DBM4P
-#: sw/inc/strings.hrc:944
+#: sw/inc/strings.hrc:943
msgctxt "STR_INTERNETFLD"
msgid "Load URL"
msgstr "Laai URL"
#. LJFF5
-#: sw/inc/strings.hrc:945
+#: sw/inc/strings.hrc:944
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
msgstr "Plekhouer"
#. zZCg6
-#: sw/inc/strings.hrc:946
+#: sw/inc/strings.hrc:945
msgctxt "STR_COMBINED_CHARS"
msgid "Combine characters"
msgstr "Kombineer karakters"
#. 9MGU6
-#: sw/inc/strings.hrc:947
+#: sw/inc/strings.hrc:946
msgctxt "STR_DROPDOWN"
msgid "Input list"
msgstr "Toevoerlys"
#. 7BWSk
#. range references
-#: sw/inc/strings.hrc:949
+#: sw/inc/strings.hrc:948
msgctxt "STR_SETREFFLD"
msgid "Set Reference"
msgstr "Stel verwysing"
#. FJ2X8
-#: sw/inc/strings.hrc:950
+#: sw/inc/strings.hrc:949
msgctxt "STR_GETREFFLD"
msgid "Insert Reference"
msgstr "Voeg verwysing in"
#. sztLS
#. range database
-#: sw/inc/strings.hrc:952
+#: sw/inc/strings.hrc:951
msgctxt "STR_DBFLD"
msgid "Mail merge fields"
msgstr "Massapos-velde"
#. JP2DU
-#: sw/inc/strings.hrc:953
+#: sw/inc/strings.hrc:952
msgctxt "STR_DBNEXTSETFLD"
msgid "Next record"
msgstr "Volgende rekord"
#. GizhA
-#: sw/inc/strings.hrc:954
+#: sw/inc/strings.hrc:953
msgctxt "STR_DBNUMSETFLD"
msgid "Any record"
msgstr "Enige rekord"
#. aMGxm
-#: sw/inc/strings.hrc:955
+#: sw/inc/strings.hrc:954
msgctxt "STR_DBSETNUMBERFLD"
msgid "Record number"
msgstr "Rekordnommer"
#. DtYzi
-#: sw/inc/strings.hrc:956
+#: sw/inc/strings.hrc:955
msgctxt "STR_PREVPAGEFLD"
msgid "Previous page"
msgstr "Vorige bladsy"
#. UCSej
-#: sw/inc/strings.hrc:957
+#: sw/inc/strings.hrc:956
msgctxt "STR_NEXTPAGEFLD"
msgid "Next page"
msgstr "Volgende bladsy"
#. M8Fac
-#: sw/inc/strings.hrc:958
+#: sw/inc/strings.hrc:957
msgctxt "STR_HIDDENTXTFLD"
msgid "Hidden text"
msgstr "Versteekte teks"
#. WvBF2
#. range user fields
-#: sw/inc/strings.hrc:960
+#: sw/inc/strings.hrc:959
msgctxt "STR_USERFLD"
msgid "User Field"
msgstr "Gebruikerveld"
#. XELYN
-#: sw/inc/strings.hrc:961
+#: sw/inc/strings.hrc:960
msgctxt "STR_POSTITFLD"
msgid "Note"
msgstr "Nota"
#. MB6kt
-#: sw/inc/strings.hrc:962
+#: sw/inc/strings.hrc:961
msgctxt "STR_SCRIPTFLD"
msgid "Script"
msgstr "Skrip"
#. BWU6A
-#: sw/inc/strings.hrc:963
+#: sw/inc/strings.hrc:962
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
msgstr "Bibliografie-inskrywing"
#. 7EGCR
-#: sw/inc/strings.hrc:964
+#: sw/inc/strings.hrc:963
msgctxt "STR_HIDDENPARAFLD"
msgid "Hidden Paragraph"
msgstr "Versteekte paragraaf"
#. dRBRK
#. range DocumentInfo
-#: sw/inc/strings.hrc:966
+#: sw/inc/strings.hrc:965
msgctxt "STR_DOCINFOFLD"
msgid "DocInformation"
msgstr "DokInligting"
@@ -7663,87 +7669,87 @@ msgstr "DokInligting"
#. --------------------------------------------------------------------
#. Description: SubCmd-Strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:970
+#: sw/inc/strings.hrc:969
msgctxt "FLD_DATE_STD"
msgid "Date"
msgstr "Datum"
#. qMCEh
-#: sw/inc/strings.hrc:971
+#: sw/inc/strings.hrc:970
msgctxt "FLD_DATE_FIX"
msgid "Date (fixed)"
msgstr "Datum (vas)"
#. AXmyw
-#: sw/inc/strings.hrc:972
+#: sw/inc/strings.hrc:971
msgctxt "FLD_TIME_STD"
msgid "Time"
msgstr "Tyd"
#. 6dxVs
-#: sw/inc/strings.hrc:973
+#: sw/inc/strings.hrc:972
msgctxt "FLD_TIME_FIX"
msgid "Time (fixed)"
msgstr "Tyd (vas)"
#. U3SW8
#. SubCmd Statistic
-#: sw/inc/strings.hrc:975
+#: sw/inc/strings.hrc:974
msgctxt "FLD_STAT_TABLE"
msgid "Tables"
msgstr "Tabelle"
#. 7qW4K
-#: sw/inc/strings.hrc:976
+#: sw/inc/strings.hrc:975
msgctxt "FLD_STAT_CHAR"
msgid "Characters"
msgstr "Karakters"
#. zDRCp
-#: sw/inc/strings.hrc:977
+#: sw/inc/strings.hrc:976
msgctxt "FLD_STAT_WORD"
msgid "Words"
msgstr "Woorde"
#. 2wgLC
-#: sw/inc/strings.hrc:978
+#: sw/inc/strings.hrc:977
msgctxt "FLD_STAT_PARA"
msgid "Paragraphs"
msgstr "Paragrawe"
#. JPGG7
-#: sw/inc/strings.hrc:979
+#: sw/inc/strings.hrc:978
msgctxt "FLD_STAT_GRF"
msgid "Image"
msgstr "Beeld"
#. Eu6Ns
-#: sw/inc/strings.hrc:980
+#: sw/inc/strings.hrc:979
msgctxt "FLD_STAT_OBJ"
msgid "OLE objects"
msgstr "OLE objekte"
#. bDG6R
-#: sw/inc/strings.hrc:981
+#: sw/inc/strings.hrc:980
msgctxt "FLD_STAT_PAGE"
msgid "Pages"
msgstr "Bladsye"
#. yqhF5
#. SubCmd DDETypes
-#: sw/inc/strings.hrc:983
+#: sw/inc/strings.hrc:982
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
msgstr "Outomatiese DDE"
#. xPP2E
-#: sw/inc/strings.hrc:984
+#: sw/inc/strings.hrc:983
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
msgstr "Handmatige DDE"
#. spdXd
-#: sw/inc/strings.hrc:985
+#: sw/inc/strings.hrc:984
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
msgstr "[Teks]"
@@ -7752,103 +7758,103 @@ msgstr "[Teks]"
#. --------------------------------------------------------------------
#. Description: SubType Extuser
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:990
+#: sw/inc/strings.hrc:989
msgctxt "FLD_EU_FIRMA"
msgid "Company"
msgstr "Maatskappy"
#. WWxTK
-#: sw/inc/strings.hrc:991
+#: sw/inc/strings.hrc:990
msgctxt "FLD_EU_VORNAME"
msgid "First Name"
msgstr "Naam"
#. 4tdAc
-#: sw/inc/strings.hrc:992
+#: sw/inc/strings.hrc:991
msgctxt "FLD_EU_NAME"
msgid "Last Name"
msgstr "Van"
#. xTV7n
-#: sw/inc/strings.hrc:993
+#: sw/inc/strings.hrc:992
msgctxt "FLD_EU_ABK"
msgid "Initials"
msgstr "Voorletters"
#. AKD3k
-#: sw/inc/strings.hrc:994
+#: sw/inc/strings.hrc:993
msgctxt "FLD_EU_STRASSE"
msgid "Street"
msgstr "Straat"
#. ErMju
-#: sw/inc/strings.hrc:995
+#: sw/inc/strings.hrc:994
msgctxt "FLD_EU_LAND"
msgid "Country"
msgstr "Land"
#. ESbkx
-#: sw/inc/strings.hrc:996
+#: sw/inc/strings.hrc:995
msgctxt "FLD_EU_PLZ"
msgid "Zip code"
msgstr "Poskode"
#. WDAc2
-#: sw/inc/strings.hrc:997
+#: sw/inc/strings.hrc:996
msgctxt "FLD_EU_ORT"
msgid "City"
msgstr "Stad"
#. pg7MV
-#: sw/inc/strings.hrc:998
+#: sw/inc/strings.hrc:997
msgctxt "FLD_EU_TITEL"
msgid "Title"
msgstr "Titel"
#. DwLhZ
-#: sw/inc/strings.hrc:999
+#: sw/inc/strings.hrc:998
msgctxt "FLD_EU_POS"
msgid "Position"
msgstr "Posisie"
#. LDTdu
-#: sw/inc/strings.hrc:1000
+#: sw/inc/strings.hrc:999
msgctxt "FLD_EU_TELPRIV"
msgid "Tel. (Home)"
msgstr "Foon (tuis)"
#. JBZyj
-#: sw/inc/strings.hrc:1001
+#: sw/inc/strings.hrc:1000
msgctxt "FLD_EU_TELFIRMA"
msgid "Tel. (Work)"
msgstr "Foon (werk)"
#. 5EmGH
-#: sw/inc/strings.hrc:1002
+#: sw/inc/strings.hrc:1001
msgctxt "FLD_EU_FAX"
msgid "Fax"
msgstr "Faks"
#. AtN9J
-#: sw/inc/strings.hrc:1003
+#: sw/inc/strings.hrc:1002
msgctxt "FLD_EU_EMAIL"
msgid "Email"
msgstr "E-pos"
#. 6GBRm
-#: sw/inc/strings.hrc:1004
+#: sw/inc/strings.hrc:1003
msgctxt "FLD_EU_STATE"
msgid "State"
msgstr "Provinsie"
#. pbrdQ
-#: sw/inc/strings.hrc:1005
+#: sw/inc/strings.hrc:1004
msgctxt "FLD_PAGEREF_OFF"
msgid "off"
msgstr "af"
#. wC8SE
-#: sw/inc/strings.hrc:1006
+#: sw/inc/strings.hrc:1005
msgctxt "FLD_PAGEREF_ON"
msgid "on"
msgstr "aan"
@@ -7858,37 +7864,37 @@ msgstr "aan"
#. Description: path name
#. --------------------------------------------------------------------
#. Format FileName
-#: sw/inc/strings.hrc:1011
+#: sw/inc/strings.hrc:1010
msgctxt "FMT_FF_NAME"
msgid "File name"
msgstr "Lêernaam"
#. RBpz3
-#: sw/inc/strings.hrc:1012
+#: sw/inc/strings.hrc:1011
msgctxt "FMT_FF_NAME_NOEXT"
msgid "File name without extension"
msgstr "Lêernaam sonder uitbreiding"
#. BCzy8
-#: sw/inc/strings.hrc:1013
+#: sw/inc/strings.hrc:1012
msgctxt "FMT_FF_PATHNAME"
msgid "Path/File name"
msgstr "Pad/lêernaam"
#. ChFwM
-#: sw/inc/strings.hrc:1014
+#: sw/inc/strings.hrc:1013
msgctxt "FMT_FF_PATH"
msgid "Path"
msgstr "Pad"
#. R6KrL
-#: sw/inc/strings.hrc:1015
+#: sw/inc/strings.hrc:1014
msgctxt "FMT_FF_UI_NAME"
msgid "Template name"
msgstr "Sjabloonnaam"
#. ANM2H
-#: sw/inc/strings.hrc:1016
+#: sw/inc/strings.hrc:1015
msgctxt "FMT_FF_UI_RANGE"
msgid "Category"
msgstr "Kategorie"
@@ -7897,25 +7903,25 @@ msgstr "Kategorie"
#. --------------------------------------------------------------------
#. Description: format chapter
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1020
+#: sw/inc/strings.hrc:1019
msgctxt "FMT_CHAPTER_NAME"
msgid "Heading contents"
msgstr "Opskrif inhoud"
#. B9gFR
-#: sw/inc/strings.hrc:1021
+#: sw/inc/strings.hrc:1020
msgctxt "FMT_CHAPTER_NO"
msgid "Heading number"
msgstr "Opskrif nommer"
#. vFtwZ
-#: sw/inc/strings.hrc:1022
+#: sw/inc/strings.hrc:1021
msgctxt "FMT_CHAPTER_NO_NOSEPARATOR"
msgid "Heading number without separator"
msgstr "Opskrif nommer sonder skeiding"
#. BVPZY
-#: sw/inc/strings.hrc:1023
+#: sw/inc/strings.hrc:1022
msgctxt "FMT_CHAPTER_NAMENO"
msgid "Heading number and contents"
msgstr "Opskrif nommer en inhoud"
@@ -7924,55 +7930,55 @@ msgstr "Opskrif nommer en inhoud"
#. --------------------------------------------------------------------
#. Description: formats
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1027
+#: sw/inc/strings.hrc:1026
msgctxt "FMT_NUM_ABC"
msgid "A B C"
msgstr "A B C"
#. jm7G7
-#: sw/inc/strings.hrc:1028
+#: sw/inc/strings.hrc:1027
msgctxt "FMT_NUM_SABC"
msgid "a b c"
msgstr "a b c"
#. ETgy7
-#: sw/inc/strings.hrc:1029
+#: sw/inc/strings.hrc:1028
msgctxt "FMT_NUM_ABC_N"
msgid "A .. AA .. AAA"
msgstr "A .. AA .. AAA"
#. m84Fb
-#: sw/inc/strings.hrc:1030
+#: sw/inc/strings.hrc:1029
msgctxt "FMT_NUM_SABC_N"
msgid "a .. aa .. aaa"
msgstr "a .. aa .. aaa"
#. d9YtB
-#: sw/inc/strings.hrc:1031
+#: sw/inc/strings.hrc:1030
msgctxt "FMT_NUM_ROMAN"
msgid "Roman (I II III)"
msgstr "Romeinse syfers (I II III)"
#. vA5RT
-#: sw/inc/strings.hrc:1032
+#: sw/inc/strings.hrc:1031
msgctxt "FMT_NUM_SROMAN"
msgid "Roman (i ii iii)"
msgstr "Romeinse syfers (i ii iii)"
#. 3ZDgc
-#: sw/inc/strings.hrc:1033
+#: sw/inc/strings.hrc:1032
msgctxt "FMT_NUM_ARABIC"
msgid "Arabic (1 2 3)"
msgstr "Arabiese syfers (1 2 3)"
#. CHmdp
-#: sw/inc/strings.hrc:1034
+#: sw/inc/strings.hrc:1033
msgctxt "FMT_NUM_PAGEDESC"
msgid "As Page Style"
msgstr "Soos bladsystyl"
#. xBKwZ
-#: sw/inc/strings.hrc:1035
+#: sw/inc/strings.hrc:1034
msgctxt "FMT_NUM_PAGESPECIAL"
msgid "Text"
msgstr "Teks"
@@ -7981,13 +7987,13 @@ msgstr "Teks"
#. --------------------------------------------------------------------
#. Description: Author
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1039
+#: sw/inc/strings.hrc:1038
msgctxt "FMT_AUTHOR_NAME"
msgid "Name"
msgstr "Naam"
#. RCnZb
-#: sw/inc/strings.hrc:1040
+#: sw/inc/strings.hrc:1039
msgctxt "FMT_AUTHOR_SCUT"
msgid "Initials"
msgstr "Voorletters"
@@ -7996,49 +8002,49 @@ msgstr "Voorletters"
#. --------------------------------------------------------------------
#. Description: set variable
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1044
+#: sw/inc/strings.hrc:1043
msgctxt "FMT_SETVAR_SYS"
msgid "System"
msgstr "Stelsel"
#. qKXLW
-#: sw/inc/strings.hrc:1045
+#: sw/inc/strings.hrc:1044
msgctxt "FMT_SETVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. E86ZD
-#: sw/inc/strings.hrc:1046
+#: sw/inc/strings.hrc:1045
msgctxt "FMT_GETVAR_NAME"
msgid "Name"
msgstr "Naam"
#. FB3Rp
-#: sw/inc/strings.hrc:1047
+#: sw/inc/strings.hrc:1046
msgctxt "FMT_GETVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. KiBai
-#: sw/inc/strings.hrc:1048
+#: sw/inc/strings.hrc:1047
msgctxt "FMT_USERVAR_CMD"
msgid "Formula"
msgstr "Formule"
#. 9AsdS
-#: sw/inc/strings.hrc:1049
+#: sw/inc/strings.hrc:1048
msgctxt "FMT_USERVAR_TEXT"
msgid "Text"
msgstr "Teks"
#. GokUf
-#: sw/inc/strings.hrc:1050
+#: sw/inc/strings.hrc:1049
msgctxt "FMT_DBFLD_DB"
msgid "Database"
msgstr "Databasis"
#. UBADL
-#: sw/inc/strings.hrc:1051
+#: sw/inc/strings.hrc:1050
msgctxt "FMT_DBFLD_SYS"
msgid "System"
msgstr "Stelsel"
@@ -8047,19 +8053,19 @@ msgstr "Stelsel"
#. --------------------------------------------------------------------
#. Description: storage fields
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1055
+#: sw/inc/strings.hrc:1054
msgctxt "FMT_REG_AUTHOR"
msgid "Author"
msgstr "Outeur"
#. aqFVp
-#: sw/inc/strings.hrc:1056
+#: sw/inc/strings.hrc:1055
msgctxt "FMT_REG_TIME"
msgid "Time"
msgstr "Tyd"
#. FaZKx
-#: sw/inc/strings.hrc:1057
+#: sw/inc/strings.hrc:1056
msgctxt "FMT_REG_DATE"
msgid "Date"
msgstr "Datum"
@@ -8068,79 +8074,79 @@ msgstr "Datum"
#. --------------------------------------------------------------------
#. Description: formats references
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1061
+#: sw/inc/strings.hrc:1060
msgctxt "FMT_REF_TEXT"
msgid "Referenced text"
msgstr "Verwysde teks"
#. eeSAu
-#: sw/inc/strings.hrc:1062
+#: sw/inc/strings.hrc:1061
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
msgstr "Bladsy nommer (ongestileerd)"
#. MaB3q
-#: sw/inc/strings.hrc:1063
+#: sw/inc/strings.hrc:1062
msgctxt "FMT_REF_CHAPTER"
msgid "Chapter"
msgstr "Hoofstuk"
#. VBMno
-#: sw/inc/strings.hrc:1064
+#: sw/inc/strings.hrc:1063
msgctxt "FMT_REF_UPDOWN"
msgid "“Above”/“Below”"
msgstr "\"Bolangs\"/\"Onderlangs\""
#. 96emU
-#: sw/inc/strings.hrc:1065
+#: sw/inc/strings.hrc:1064
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
msgstr "Bladsy nommer (gestilleerd)"
#. CQitd
-#: sw/inc/strings.hrc:1066
+#: sw/inc/strings.hrc:1065
msgctxt "FMT_REF_ONLYNUMBER"
msgid "Category and Number"
msgstr "Kategorie en nommer"
#. BsvCn
-#: sw/inc/strings.hrc:1067
+#: sw/inc/strings.hrc:1066
msgctxt "FMT_REF_ONLYCAPTION"
msgid "Caption Text"
msgstr "Byskrifteks"
#. Xbm7G
-#: sw/inc/strings.hrc:1068
+#: sw/inc/strings.hrc:1067
msgctxt "FMT_REF_ONLYSEQNO"
msgid "Number"
msgstr "Nommer"
#. QBGit
-#: sw/inc/strings.hrc:1069
+#: sw/inc/strings.hrc:1068
msgctxt "FMT_REF_NUMBER"
msgid "Number"
msgstr "Nommer"
#. CGkV7
-#: sw/inc/strings.hrc:1070
+#: sw/inc/strings.hrc:1069
msgctxt "FMT_REF_NUMBER_NO_CONTEXT"
msgid "Number (no context)"
msgstr "Nommer (geen konteks)"
#. XgSb3
-#: sw/inc/strings.hrc:1071
+#: sw/inc/strings.hrc:1070
msgctxt "FMT_REF_NUMBER_FULL_CONTEXT"
msgid "Number (full context)"
msgstr "Nommer (volledige konteks)"
#. zQTNF
-#: sw/inc/strings.hrc:1073
+#: sw/inc/strings.hrc:1072
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
msgstr "Artikel a/az + "
#. 97Vs7
-#: sw/inc/strings.hrc:1074
+#: sw/inc/strings.hrc:1073
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
msgstr "Artikel A/Az + "
@@ -8149,31 +8155,31 @@ msgstr "Artikel A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1078
+#: sw/inc/strings.hrc:1077
msgctxt "FMT_MARK_TEXT"
msgid "Text"
msgstr "Teks"
#. rAQoE
-#: sw/inc/strings.hrc:1079
+#: sw/inc/strings.hrc:1078
msgctxt "FMT_MARK_TABLE"
msgid "Table"
msgstr "Tabel"
#. biUa2
-#: sw/inc/strings.hrc:1080
+#: sw/inc/strings.hrc:1079
msgctxt "FMT_MARK_FRAME"
msgid "Frame"
msgstr "Raam"
#. 7mkZb
-#: sw/inc/strings.hrc:1081
+#: sw/inc/strings.hrc:1080
msgctxt "FMT_MARK_GRAFIC"
msgid "Image"
msgstr "Beeld"
#. GgbFY
-#: sw/inc/strings.hrc:1082
+#: sw/inc/strings.hrc:1081
msgctxt "FMT_MARK_OLE"
msgid "Object"
msgstr "Objek"
@@ -8182,169 +8188,169 @@ msgstr "Objek"
#. --------------------------------------------------------------------
#. Description: ExchangeStrings for Edit/NameFT
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1086
+#: sw/inc/strings.hrc:1085
msgctxt "STR_COND"
msgid "~Condition"
msgstr "~Voorwaarde"
#. X9cqJ
-#: sw/inc/strings.hrc:1087
+#: sw/inc/strings.hrc:1086
msgctxt "STR_TEXT"
msgid "Then, Else"
msgstr "Dan, Anders"
#. bo8yF
-#: sw/inc/strings.hrc:1088
+#: sw/inc/strings.hrc:1087
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
msgstr "DDE-stelling"
#. LixXA
-#: sw/inc/strings.hrc:1089
+#: sw/inc/strings.hrc:1088
msgctxt "STR_INSTEXT"
msgid "Hidden t~ext"
msgstr "Versteekte t~eks"
#. EX3bJ
-#: sw/inc/strings.hrc:1090
+#: sw/inc/strings.hrc:1089
msgctxt "STR_MACNAME"
msgid "~Macro name"
msgstr "~Makronaam"
#. dNZtd
-#: sw/inc/strings.hrc:1091
+#: sw/inc/strings.hrc:1090
msgctxt "STR_PROMPT"
msgid "~Reference"
msgstr "~Verwysing"
#. bfRPa
-#: sw/inc/strings.hrc:1092
+#: sw/inc/strings.hrc:1091
msgctxt "STR_COMBCHRS_FT"
msgid "Ch~aracters"
msgstr "K~arakters"
#. j2G5G
-#: sw/inc/strings.hrc:1093
+#: sw/inc/strings.hrc:1092
msgctxt "STR_OFFSET"
msgid "O~ffset"
msgstr "Regstelling"
#. vEgGo
-#: sw/inc/strings.hrc:1094
+#: sw/inc/strings.hrc:1093
msgctxt "STR_VALUE"
msgid "Value"
msgstr "Waarde"
#. YQesU
-#: sw/inc/strings.hrc:1095
+#: sw/inc/strings.hrc:1094
msgctxt "STR_FORMULA"
msgid "Formula"
msgstr "Formule"
#. Eq5xq
-#: sw/inc/strings.hrc:1096
+#: sw/inc/strings.hrc:1095
msgctxt "STR_CUSTOM_FIELD"
msgid "Custom"
msgstr "Doelgemaak"
#. 32NzA
-#: sw/inc/strings.hrc:1098
+#: sw/inc/strings.hrc:1097
msgctxt "STR_CUSTOM_LABEL"
msgid "[User]"
msgstr "[Gebruiker]"
#. dYQTU
-#: sw/inc/strings.hrc:1100
+#: sw/inc/strings.hrc:1099
msgctxt "STR_HDIST"
msgid "H. Pitch"
msgstr "H. Hoogte"
#. xELZY
-#: sw/inc/strings.hrc:1101
+#: sw/inc/strings.hrc:1100
msgctxt "STR_VDIST"
msgid "V. Pitch"
msgstr "V. Hoogte"
#. F9Ldz
-#: sw/inc/strings.hrc:1102
+#: sw/inc/strings.hrc:1101
msgctxt "STR_WIDTH"
msgid "Width"
msgstr "Wydte"
#. rdxcb
-#: sw/inc/strings.hrc:1103
+#: sw/inc/strings.hrc:1102
msgctxt "STR_HEIGHT"
msgid "Height"
msgstr "Hoogte"
#. DQm2h
-#: sw/inc/strings.hrc:1104
+#: sw/inc/strings.hrc:1103
msgctxt "STR_LEFT"
msgid "Left margin"
msgstr "Linkerkantlyn"
#. imDMU
-#: sw/inc/strings.hrc:1105
+#: sw/inc/strings.hrc:1104
msgctxt "STR_UPPER"
msgid "Top margin"
msgstr "Bokantlyn"
#. ayQss
-#: sw/inc/strings.hrc:1106
+#: sw/inc/strings.hrc:1105
msgctxt "STR_COLS"
msgid "Columns"
msgstr "Kolomme"
#. 3moLd
-#: sw/inc/strings.hrc:1107
+#: sw/inc/strings.hrc:1106
msgctxt "STR_ROWS"
msgid "Rows"
msgstr "Rye"
#. XWMSH
-#: sw/inc/strings.hrc:1109
+#: sw/inc/strings.hrc:1108
msgctxt "STR_WORDCOUNT_HINT"
msgid "Word and character count. Click to open Word Count dialog."
msgstr "Woord- en karaktertelling. Klik om die Woordtellingdialoog oop te maak."
#. nxGNq
-#: sw/inc/strings.hrc:1110
+#: sw/inc/strings.hrc:1109
msgctxt "STR_VIEWLAYOUT_ONE"
msgid "Single-page view"
msgstr "Enkelbladaansig"
#. 57ju6
-#: sw/inc/strings.hrc:1111
+#: sw/inc/strings.hrc:1110
msgctxt "STR_VIEWLAYOUT_MULTI"
msgid "Multiple-page view"
msgstr "Multibladaansig"
#. tbig8
-#: sw/inc/strings.hrc:1112
+#: sw/inc/strings.hrc:1111
msgctxt "STR_VIEWLAYOUT_BOOK"
msgid "Book view"
msgstr "Boekaansig"
#. xBHUG
-#: sw/inc/strings.hrc:1113
+#: sw/inc/strings.hrc:1112
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
msgstr "Bladsynommer in dokument. Klik om die “Gaan na bladsy”-dialoog oop te maak, of klik regs vir boekmerklys."
#. XaF3v
-#: sw/inc/strings.hrc:1114
+#: sw/inc/strings.hrc:1113
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
msgstr "Bladsynommer in dokument (bladsynommer op gedrukte dokument). Klik om die “Gaan na bladsy”-dialoog oop te maak."
#. EWtd2
-#: sw/inc/strings.hrc:1115
+#: sw/inc/strings.hrc:1114
msgctxt "STR_TMPLCTRL_HINT"
msgid "Page Style. Right-click to change style or click to open Style dialog."
msgstr "Bladsystyl. Klik regs om die styl te verander of klik om die styldialoog oop te maak."
#. ng6cd
-#: sw/inc/strings.hrc:1116
+#: sw/inc/strings.hrc:1115
msgctxt "STR_ACCESSIBILITY_CHECK_HINT"
msgid ""
"Status of the accessibility check.\n"
@@ -8355,1456 +8361,1384 @@ msgstr ""
#. jQAym
#. Strings for textual attributes.
-#: sw/inc/strings.hrc:1119
+#: sw/inc/strings.hrc:1118
msgctxt "STR_DROP_OVER"
msgid "Drop Caps over"
msgstr "Hoofletters oor"
#. PLAVt
-#: sw/inc/strings.hrc:1120
+#: sw/inc/strings.hrc:1119
msgctxt "STR_DROP_LINES"
msgid "rows"
msgstr "rye"
#. sg6Za
-#: sw/inc/strings.hrc:1121
+#: sw/inc/strings.hrc:1120
msgctxt "STR_NO_DROP_LINES"
msgid "No Drop Caps"
msgstr "Geen vallende hoofletters"
#. gueRC
-#: sw/inc/strings.hrc:1122
+#: sw/inc/strings.hrc:1121
msgctxt "STR_NO_PAGEDESC"
msgid "No page break"
msgstr "Geen bladsybreuk"
#. G3CQN
-#: sw/inc/strings.hrc:1123
+#: sw/inc/strings.hrc:1122
msgctxt "STR_NO_MIRROR"
msgid "Don't mirror"
msgstr "Moenie weerspieël nie"
#. MVEk8
-#: sw/inc/strings.hrc:1124
+#: sw/inc/strings.hrc:1123
msgctxt "STR_VERT_MIRROR"
msgid "Flip vertically"
msgstr "Swaai vertikaal om"
#. Dns6t
-#: sw/inc/strings.hrc:1125
+#: sw/inc/strings.hrc:1124
msgctxt "STR_HORI_MIRROR"
msgid "Flip horizontal"
msgstr "Swaai horisontaal om"
#. ZUKCy
-#: sw/inc/strings.hrc:1126
+#: sw/inc/strings.hrc:1125
msgctxt "STR_BOTH_MIRROR"
msgid "Horizontal and Vertical Flip"
msgstr "Horisontale en vertikale omswaai"
#. LoQic
-#: sw/inc/strings.hrc:1127
+#: sw/inc/strings.hrc:1126
msgctxt "STR_MIRROR_TOGGLE"
msgid "+ mirror horizontal on even pages"
msgstr "+ horisontale weerspieëling op ewe bladsye"
#. kbnTf
-#: sw/inc/strings.hrc:1128
+#: sw/inc/strings.hrc:1127
msgctxt "STR_CHARFMT"
msgid "Character Style"
msgstr "Karakterstyl"
#. D99ZJ
-#: sw/inc/strings.hrc:1129
+#: sw/inc/strings.hrc:1128
msgctxt "STR_NO_CHARFMT"
msgid "No Character Style"
msgstr "Geen karakterstyl"
#. fzG3P
-#: sw/inc/strings.hrc:1130
+#: sw/inc/strings.hrc:1129
msgctxt "STR_FOOTER"
msgid "Footer"
msgstr "Voet"
#. 9RCsQ
-#: sw/inc/strings.hrc:1131
+#: sw/inc/strings.hrc:1130
msgctxt "STR_NO_FOOTER"
msgid "No footer"
msgstr "Geen voet"
#. zFTin
-#: sw/inc/strings.hrc:1132
+#: sw/inc/strings.hrc:1131
msgctxt "STR_HEADER"
msgid "Header"
msgstr "Kop"
#. PcYEB
-#: sw/inc/strings.hrc:1133
+#: sw/inc/strings.hrc:1132
msgctxt "STR_NO_HEADER"
msgid "No header"
msgstr "Geen kop"
#. 8Jgfg
-#: sw/inc/strings.hrc:1134
+#: sw/inc/strings.hrc:1133
msgctxt "STR_SURROUND_IDEAL"
msgid "Optimal"
msgstr "Optimaal"
#. HEuGy
-#: sw/inc/strings.hrc:1135
+#: sw/inc/strings.hrc:1134
msgctxt "STR_SURROUND_NONE"
msgid "None"
msgstr "Geen"
#. 4tA4q
-#: sw/inc/strings.hrc:1136
+#: sw/inc/strings.hrc:1135
msgctxt "STR_SURROUND_THROUGH"
msgid "Through"
msgstr "Deur"
#. ypvD6
-#: sw/inc/strings.hrc:1137
+#: sw/inc/strings.hrc:1136
msgctxt "STR_SURROUND_PARALLEL"
msgid "Parallel"
msgstr "Parallel"
#. hyEQ5
-#: sw/inc/strings.hrc:1138
+#: sw/inc/strings.hrc:1137
msgctxt "STR_SURROUND_LEFT"
msgid "Before"
msgstr "Voor"
#. bGBtQ
-#: sw/inc/strings.hrc:1139
+#: sw/inc/strings.hrc:1138
msgctxt "STR_SURROUND_RIGHT"
msgid "After"
msgstr "Daarna"
#. SrG3D
-#: sw/inc/strings.hrc:1140
+#: sw/inc/strings.hrc:1139
msgctxt "STR_SURROUND_ANCHORONLY"
msgid "(Anchor only)"
msgstr "(Slegs anker)"
#. 9Ywzb
-#: sw/inc/strings.hrc:1141
+#: sw/inc/strings.hrc:1140
msgctxt "STR_FRM_WIDTH"
msgid "Width:"
msgstr "Wydte:"
#. 2GYT7
-#: sw/inc/strings.hrc:1142
+#: sw/inc/strings.hrc:1141
msgctxt "STR_FRM_FIXEDHEIGHT"
msgid "Fixed height:"
msgstr "Vaste hoogte:"
#. QrFMi
-#: sw/inc/strings.hrc:1143
+#: sw/inc/strings.hrc:1142
msgctxt "STR_FRM_MINHEIGHT"
msgid "Min. height:"
msgstr "Min. hoogte:"
#. kLiYd
-#: sw/inc/strings.hrc:1144
+#: sw/inc/strings.hrc:1143
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
msgstr "aan paragraaf"
#. A8nAb
-#: sw/inc/strings.hrc:1145
+#: sw/inc/strings.hrc:1144
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
msgstr "as karakter"
#. Uszmm
-#: sw/inc/strings.hrc:1146
+#: sw/inc/strings.hrc:1145
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
msgstr "Na karakter"
#. hDUSa
-#: sw/inc/strings.hrc:1147
+#: sw/inc/strings.hrc:1146
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
msgstr "aan bladsy"
#. JMHRz
-#: sw/inc/strings.hrc:1148
+#: sw/inc/strings.hrc:1147
msgctxt "STR_POS_X"
msgid "X Coordinate:"
msgstr "X-koördinaat:"
#. oCZWW
-#: sw/inc/strings.hrc:1149
+#: sw/inc/strings.hrc:1148
msgctxt "STR_POS_Y"
msgid "Y Coordinate:"
msgstr "Y-koördinaat:"
#. YNKE6
-#: sw/inc/strings.hrc:1150
+#: sw/inc/strings.hrc:1149
msgctxt "STR_VERT_TOP"
msgid "at top"
msgstr "bo"
#. GPTAu
-#: sw/inc/strings.hrc:1151
+#: sw/inc/strings.hrc:1150
msgctxt "STR_VERT_CENTER"
msgid "Centered vertically"
msgstr "Vertikaal gesentreer"
#. fcpTS
-#: sw/inc/strings.hrc:1152
+#: sw/inc/strings.hrc:1151
msgctxt "STR_VERT_BOTTOM"
msgid "at bottom"
msgstr "onder"
#. 37hos
-#: sw/inc/strings.hrc:1153
+#: sw/inc/strings.hrc:1152
msgctxt "STR_LINE_TOP"
msgid "Top of line"
msgstr "Bokant van reël"
#. MU7hC
-#: sw/inc/strings.hrc:1154
+#: sw/inc/strings.hrc:1153
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
msgstr "Reël gesentreer"
#. ZvEq7
-#: sw/inc/strings.hrc:1155
+#: sw/inc/strings.hrc:1154
msgctxt "STR_LINE_BOTTOM"
msgid "Bottom of line"
msgstr "Onderkant van reël"
#. jypsG
-#: sw/inc/strings.hrc:1156
+#: sw/inc/strings.hrc:1155
msgctxt "STR_REGISTER_ON"
msgid "Page line-spacing"
msgstr "Bladsy lyn-spasiëring"
#. Cui3U
-#: sw/inc/strings.hrc:1157
+#: sw/inc/strings.hrc:1156
msgctxt "STR_REGISTER_OFF"
msgid "Not page line-spacing"
msgstr "Nie-bladsy lynspasiëring"
#. 4RL9X
-#: sw/inc/strings.hrc:1158
+#: sw/inc/strings.hrc:1157
msgctxt "STR_HORI_RIGHT"
msgid "at the right"
msgstr "regs"
#. wzGK7
-#: sw/inc/strings.hrc:1159
+#: sw/inc/strings.hrc:1158
msgctxt "STR_HORI_CENTER"
msgid "Centered horizontally"
msgstr "Horisontaal gesentreer"
#. ngRmB
-#: sw/inc/strings.hrc:1160
+#: sw/inc/strings.hrc:1159
msgctxt "STR_HORI_LEFT"
msgid "at the left"
msgstr "links"
#. JyHkM
-#: sw/inc/strings.hrc:1161
+#: sw/inc/strings.hrc:1160
msgctxt "STR_HORI_INSIDE"
msgid "inside"
msgstr "binnekant"
#. iXSZZ
-#: sw/inc/strings.hrc:1162
+#: sw/inc/strings.hrc:1161
msgctxt "STR_HORI_OUTSIDE"
msgid "outside"
msgstr "buitekant"
#. kDY9Z
-#: sw/inc/strings.hrc:1163
+#: sw/inc/strings.hrc:1162
msgctxt "STR_HORI_FULL"
msgid "Full width"
msgstr "Volle breedte"
#. Hvn8D
-#: sw/inc/strings.hrc:1164
+#: sw/inc/strings.hrc:1163
msgctxt "STR_COLUMNS"
msgid "Columns"
msgstr "Kolomme"
#. 6j6TA
-#: sw/inc/strings.hrc:1165
+#: sw/inc/strings.hrc:1164
msgctxt "STR_LINE_WIDTH"
msgid "Separator Width:"
msgstr "Wydte van skeisimbool:"
#. dvdDt
-#: sw/inc/strings.hrc:1166
+#: sw/inc/strings.hrc:1165
msgctxt "STR_MAX_FTN_HEIGHT"
msgid "Max. footnote area:"
msgstr "Maks. voetnoot-area:"
#. BWqF3
-#: sw/inc/strings.hrc:1167
+#: sw/inc/strings.hrc:1166
msgctxt "STR_EDIT_IN_READONLY"
msgid "Editable in read-only document"
msgstr "Redigeerbaar in leesalleen-dokument"
#. SCL5F
-#: sw/inc/strings.hrc:1168
+#: sw/inc/strings.hrc:1167
msgctxt "STR_LAYOUT_SPLIT"
msgid "Split"
msgstr "Verdeel"
#. CFmBk
-#: sw/inc/strings.hrc:1169
+#: sw/inc/strings.hrc:1168
msgctxt "STR_NUMRULE_ON"
msgid "List Style: (%LISTSTYLENAME)"
msgstr "Lys Styl: (%LISTSTYLENAME)"
#. HvZBm
-#: sw/inc/strings.hrc:1170
+#: sw/inc/strings.hrc:1169
msgctxt "STR_NUMRULE_OFF"
msgid "List Style: (None)"
msgstr "Lys Styl: (Geen)"
#. QDaFk
-#: sw/inc/strings.hrc:1171
+#: sw/inc/strings.hrc:1170
msgctxt "STR_CONNECT1"
msgid "linked to "
msgstr "geskakel met "
#. rWmT8
-#: sw/inc/strings.hrc:1172
+#: sw/inc/strings.hrc:1171
msgctxt "STR_CONNECT2"
msgid "and "
msgstr "en "
#. H2Kwq
-#: sw/inc/strings.hrc:1173
+#: sw/inc/strings.hrc:1172
msgctxt "STR_LINECOUNT"
msgid "Count lines"
msgstr "Tel reëls"
#. yjSiJ
-#: sw/inc/strings.hrc:1174
+#: sw/inc/strings.hrc:1173
msgctxt "STR_DONTLINECOUNT"
msgid "don't count lines"
msgstr "moenie reëls tel nie"
#. HE4BV
-#: sw/inc/strings.hrc:1175
+#: sw/inc/strings.hrc:1174
msgctxt "STR_LINCOUNT_START"
msgid "restart line count with: "
msgstr "herbegin reëltelling by: "
#. 7Q8qC
-#: sw/inc/strings.hrc:1176
+#: sw/inc/strings.hrc:1175
msgctxt "STR_LUMINANCE"
msgid "Brightness: "
msgstr "Helderheid: "
#. sNxPE
-#: sw/inc/strings.hrc:1177
+#: sw/inc/strings.hrc:1176
msgctxt "STR_CHANNELR"
msgid "Red: "
msgstr "Rooi: "
#. u73NC
-#: sw/inc/strings.hrc:1178
+#: sw/inc/strings.hrc:1177
msgctxt "STR_CHANNELG"
msgid "Green: "
msgstr "Groen: "
#. qQsPp
-#: sw/inc/strings.hrc:1179
+#: sw/inc/strings.hrc:1178
msgctxt "STR_CHANNELB"
msgid "Blue: "
msgstr "Blou: "
#. BS4nZ
-#: sw/inc/strings.hrc:1180
+#: sw/inc/strings.hrc:1179
msgctxt "STR_CONTRAST"
msgid "Contrast: "
msgstr "Kontras: "
#. avJBK
-#: sw/inc/strings.hrc:1181
+#: sw/inc/strings.hrc:1180
msgctxt "STR_GAMMA"
msgid "Gamma: "
msgstr "Gamma: "
#. HQCJZ
-#: sw/inc/strings.hrc:1182
+#: sw/inc/strings.hrc:1181
msgctxt "STR_TRANSPARENCY"
msgid "Transparency: "
msgstr "Deursigtigheid: "
#. 5jDK3
-#: sw/inc/strings.hrc:1183
+#: sw/inc/strings.hrc:1182
msgctxt "STR_INVERT"
msgid "Invert"
msgstr "Keer om"
#. DVSAx
-#: sw/inc/strings.hrc:1184
+#: sw/inc/strings.hrc:1183
msgctxt "STR_INVERT_NOT"
msgid "do not invert"
msgstr "moenie omkeer nie"
#. Z7tXB
-#: sw/inc/strings.hrc:1185
+#: sw/inc/strings.hrc:1184
msgctxt "STR_DRAWMODE"
msgid "Graphics mode: "
msgstr "Grafikamodus: "
#. RXuUF
-#: sw/inc/strings.hrc:1186
+#: sw/inc/strings.hrc:1185
msgctxt "STR_DRAWMODE_STD"
msgid "Standard"
msgstr "Standaard"
#. kbALJ
-#: sw/inc/strings.hrc:1187
+#: sw/inc/strings.hrc:1186
msgctxt "STR_DRAWMODE_GREY"
msgid "Grayscales"
msgstr "Grys skale"
#. eSHEj
-#: sw/inc/strings.hrc:1188
+#: sw/inc/strings.hrc:1187
msgctxt "STR_DRAWMODE_BLACKWHITE"
msgid "Black & White"
msgstr "Swart-en-wit"
#. tABTr
-#: sw/inc/strings.hrc:1189
+#: sw/inc/strings.hrc:1188
msgctxt "STR_DRAWMODE_WATERMARK"
msgid "Watermark"
msgstr "Watermerk"
#. 8SwC3
-#: sw/inc/strings.hrc:1190
+#: sw/inc/strings.hrc:1189
msgctxt "STR_ROTATION"
msgid "Rotation"
msgstr "Rotasie"
#. hWEeF
-#: sw/inc/strings.hrc:1191
+#: sw/inc/strings.hrc:1190
msgctxt "STR_GRID_NONE"
msgid "No grid"
msgstr "Geen rooster"
#. HEuEv
-#: sw/inc/strings.hrc:1192
+#: sw/inc/strings.hrc:1191
msgctxt "STR_GRID_LINES_ONLY"
msgid "Grid (lines only)"
msgstr "Rooster (slegs reëls)"
#. VFgMq
-#: sw/inc/strings.hrc:1193
+#: sw/inc/strings.hrc:1192
msgctxt "STR_GRID_LINES_CHARS"
msgid "Grid (lines and characters)"
msgstr "Rooster (reëls en karakters)"
#. VRJrB
-#: sw/inc/strings.hrc:1194
+#: sw/inc/strings.hrc:1193
msgctxt "STR_FOLLOW_TEXT_FLOW"
msgid "Follow text flow"
msgstr "Volg teksvloei"
#. Sb3Je
-#: sw/inc/strings.hrc:1195
+#: sw/inc/strings.hrc:1194
msgctxt "STR_DONT_FOLLOW_TEXT_FLOW"
msgid "Do not follow text flow"
msgstr "Moenie teksvloei volg nie"
#. yXFKP
-#: sw/inc/strings.hrc:1196
+#: sw/inc/strings.hrc:1195
msgctxt "STR_CONNECT_BORDER_ON"
msgid "Merge borders"
msgstr "Voeg rande saam"
#. vwHbS
-#: sw/inc/strings.hrc:1197
+#: sw/inc/strings.hrc:1196
msgctxt "STR_CONNECT_BORDER_OFF"
msgid "Do not merge borders"
msgstr "Moenie rande saamvoeg nie"
-#. 3874B
-#: sw/inc/strings.hrc:1199
-msgctxt "ST_TBL"
-msgid "Table"
-msgstr "Tabel"
-
-#. T9JAj
-#: sw/inc/strings.hrc:1200
-msgctxt "ST_FRM"
-msgid "Frame"
-msgstr "Raam"
-
#. Fsnm6
-#: sw/inc/strings.hrc:1201
+#: sw/inc/strings.hrc:1198
msgctxt "ST_PGE"
msgid "Page"
msgstr "Bladsy"
-#. pKFCz
-#: sw/inc/strings.hrc:1202
-msgctxt "ST_DRW"
-msgid "Drawing"
-msgstr "Tekening"
-
#. amiSY
-#: sw/inc/strings.hrc:1203
+#: sw/inc/strings.hrc:1199
msgctxt "ST_CTRL"
msgid "Control"
msgstr "Beheer"
-#. GEw9u
-#: sw/inc/strings.hrc:1204
-msgctxt "ST_REG"
-msgid "Section"
-msgstr "Afdeling"
-
-#. bEiyL
-#: sw/inc/strings.hrc:1205
-msgctxt "ST_BKM"
-msgid "Bookmark"
-msgstr "Boekmerk"
-
-#. 6gXCo
-#: sw/inc/strings.hrc:1206
-msgctxt "ST_GRF"
-msgid "Graphics"
-msgstr "Grafika"
-
-#. d5eSc
-#: sw/inc/strings.hrc:1207
-msgctxt "ST_OLE"
-msgid "OLE object"
-msgstr "OLE-objek"
-
-#. h5QQ8
-#: sw/inc/strings.hrc:1208
-msgctxt "ST_OUTL"
-msgid "Headings"
-msgstr "Opskrifte"
-
#. Cbktp
-#: sw/inc/strings.hrc:1209
+#: sw/inc/strings.hrc:1200
msgctxt "ST_SEL"
msgid "Selection"
msgstr "Seleksie"
-#. nquvS
-#: sw/inc/strings.hrc:1210
-msgctxt "ST_FTN"
-msgid "Footnote"
-msgstr "Voetnoot"
-
#. GpAUo
-#: sw/inc/strings.hrc:1211
+#: sw/inc/strings.hrc:1201
msgctxt "ST_MARK"
msgid "Reminder"
msgstr "Herinnering"
-#. nDFKa
-#: sw/inc/strings.hrc:1212
-msgctxt "ST_POSTIT"
-msgid "Comment"
-msgstr "Opmerking"
-
#. qpbDE
-#: sw/inc/strings.hrc:1213
+#: sw/inc/strings.hrc:1202
msgctxt "ST_SRCH_REP"
msgid "Repeat search"
msgstr "Herhaal soektog"
-#. ipxfH
-#: sw/inc/strings.hrc:1214
-msgctxt "ST_INDEX_ENTRY"
-msgid "Index entry"
-msgstr "Indeksinskrywing"
-
#. sfmff
-#: sw/inc/strings.hrc:1215
+#: sw/inc/strings.hrc:1203
msgctxt "ST_TABLE_FORMULA"
msgid "Table formula"
msgstr "Tabelformule"
#. DtkuT
-#: sw/inc/strings.hrc:1216
+#: sw/inc/strings.hrc:1204
msgctxt "ST_TABLE_FORMULA_ERROR"
msgid "Wrong table formula"
msgstr "Verkeerde tabelformule"
#. A6Vgk
-#: sw/inc/strings.hrc:1217
+#: sw/inc/strings.hrc:1205
msgctxt "ST_RECENCY"
msgid "Recency"
msgstr "Onlangsheid"
-#. pCp7u
-#: sw/inc/strings.hrc:1218
-msgctxt "ST_FIELD"
-msgid "Field"
-msgstr "Veld"
-
#. LYuHA
-#: sw/inc/strings.hrc:1219
+#: sw/inc/strings.hrc:1206
msgctxt "ST_FIELD_BYTYPE"
msgid "Field by type"
msgstr "Veld volgens Tipe"
#. ECFxw
#. Strings for the quickhelp of the View-PgUp/Down-Buttons
-#: sw/inc/strings.hrc:1221
+#: sw/inc/strings.hrc:1208
msgctxt "STR_IMGBTN_TBL_DOWN"
msgid "Next table"
msgstr "Volgende tabel"
#. yhnpi
-#: sw/inc/strings.hrc:1222
+#: sw/inc/strings.hrc:1209
msgctxt "STR_IMGBTN_FRM_DOWN"
msgid "Next frame"
msgstr "Volgende raam"
#. M4BCA
-#: sw/inc/strings.hrc:1223
+#: sw/inc/strings.hrc:1210
msgctxt "STR_IMGBTN_PGE_DOWN"
msgid "Next page"
msgstr "Volgende bladsy"
#. UWeq4
-#: sw/inc/strings.hrc:1224
+#: sw/inc/strings.hrc:1211
msgctxt "STR_IMGBTN_DRW_DOWN"
msgid "Next drawing"
msgstr "Volgende tekening"
#. ZVCrD
-#: sw/inc/strings.hrc:1225
+#: sw/inc/strings.hrc:1212
msgctxt "STR_IMGBTN_CTRL_DOWN"
msgid "Next control"
msgstr "Volgende kontrole"
#. NGAqr
-#: sw/inc/strings.hrc:1226
+#: sw/inc/strings.hrc:1213
msgctxt "STR_IMGBTN_REG_DOWN"
msgid "Next section"
msgstr "Volgende afdeling"
#. Mwcvm
-#: sw/inc/strings.hrc:1227
+#: sw/inc/strings.hrc:1214
msgctxt "STR_IMGBTN_BKM_DOWN"
msgid "Next bookmark"
msgstr "Volgende boekmerk"
#. xbxDs
-#: sw/inc/strings.hrc:1228
+#: sw/inc/strings.hrc:1215
msgctxt "STR_IMGBTN_GRF_DOWN"
msgid "Next graphic"
msgstr "Volgende grafika"
#. 4ovAF
-#: sw/inc/strings.hrc:1229
+#: sw/inc/strings.hrc:1216
msgctxt "STR_IMGBTN_OLE_DOWN"
msgid "Next OLE object"
msgstr "Volgende OLE-objek"
#. YzK6w
-#: sw/inc/strings.hrc:1230
+#: sw/inc/strings.hrc:1217
msgctxt "STR_IMGBTN_OUTL_DOWN"
msgid "Next heading"
msgstr "Volgende opskrif"
#. skdRc
-#: sw/inc/strings.hrc:1231
+#: sw/inc/strings.hrc:1218
msgctxt "STR_IMGBTN_SEL_DOWN"
msgid "Next selection"
msgstr "Volgende seleksie"
#. RBFga
-#: sw/inc/strings.hrc:1232
+#: sw/inc/strings.hrc:1219
msgctxt "STR_IMGBTN_FTN_DOWN"
msgid "Next footnote"
msgstr "Volgende voetnoot"
#. GNLrx
-#: sw/inc/strings.hrc:1233
+#: sw/inc/strings.hrc:1220
msgctxt "STR_IMGBTN_MARK_DOWN"
msgid "Next Reminder"
msgstr "Volgende herinnering"
#. mFCfp
-#: sw/inc/strings.hrc:1234
+#: sw/inc/strings.hrc:1221
msgctxt "STR_IMGBTN_POSTIT_DOWN"
msgid "Next Comment"
msgstr "Volgende opmerking"
#. gbnwp
-#: sw/inc/strings.hrc:1235
+#: sw/inc/strings.hrc:1222
msgctxt "STR_IMGBTN_SRCH_REP_DOWN"
msgid "Continue search forward"
msgstr "Soek verder vorentoe"
#. TXYkA
-#: sw/inc/strings.hrc:1236
+#: sw/inc/strings.hrc:1223
msgctxt "STR_IMGBTN_INDEX_ENTRY_DOWN"
msgid "Next index entry"
msgstr "Volgende indeksinskrywing"
#. EyvbV
-#: sw/inc/strings.hrc:1237
+#: sw/inc/strings.hrc:1224
msgctxt "STR_IMGBTN_TBL_UP"
msgid "Previous table"
msgstr "Vorige tabel"
#. cC5vJ
-#: sw/inc/strings.hrc:1238
+#: sw/inc/strings.hrc:1225
msgctxt "STR_IMGBTN_FRM_UP"
msgid "Previous frame"
msgstr "Vorige raam"
#. eQPFD
-#: sw/inc/strings.hrc:1239
+#: sw/inc/strings.hrc:1226
msgctxt "STR_IMGBTN_PGE_UP"
msgid "Previous page"
msgstr "Vorige bladsy"
#. p5jbU
-#: sw/inc/strings.hrc:1240
+#: sw/inc/strings.hrc:1227
msgctxt "STR_IMGBTN_DRW_UP"
msgid "Previous drawing"
msgstr "Vorige tekening"
#. 2WMmZ
-#: sw/inc/strings.hrc:1241
+#: sw/inc/strings.hrc:1228
msgctxt "STR_IMGBTN_CTRL_UP"
msgid "Previous control"
msgstr "Vorige kontrole"
#. 6uGDP
-#: sw/inc/strings.hrc:1242
+#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_REG_UP"
msgid "Previous section"
msgstr "Vorige afdeling"
#. YYCtk
-#: sw/inc/strings.hrc:1243
+#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_BKM_UP"
msgid "Previous bookmark"
msgstr "Vorige boekmerk"
#. nFLdX
-#: sw/inc/strings.hrc:1244
+#: sw/inc/strings.hrc:1231
msgctxt "STR_IMGBTN_GRF_UP"
msgid "Previous graphic"
msgstr "Vorige grafika"
#. VuxvB
-#: sw/inc/strings.hrc:1245
+#: sw/inc/strings.hrc:1232
msgctxt "STR_IMGBTN_OLE_UP"
msgid "Previous OLE object"
msgstr "Vorige OLE-objek"
#. QSuct
-#: sw/inc/strings.hrc:1246
+#: sw/inc/strings.hrc:1233
msgctxt "STR_IMGBTN_OUTL_UP"
msgid "Previous heading"
msgstr "Vorige opskrif"
#. CzLBr
-#: sw/inc/strings.hrc:1247
+#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_SEL_UP"
msgid "Previous selection"
msgstr "Vorige seleksie"
#. B7PoL
-#: sw/inc/strings.hrc:1248
+#: sw/inc/strings.hrc:1235
msgctxt "STR_IMGBTN_FTN_UP"
msgid "Previous footnote"
msgstr "Vorige voetnoot"
#. AgtLD
-#: sw/inc/strings.hrc:1249
+#: sw/inc/strings.hrc:1236
msgctxt "STR_IMGBTN_MARK_UP"
msgid "Previous Reminder"
msgstr "Vorige herinnering"
#. GJQ6F
-#: sw/inc/strings.hrc:1250
+#: sw/inc/strings.hrc:1237
msgctxt "STR_IMGBTN_POSTIT_UP"
msgid "Previous Comment"
msgstr "Vorige opmerking"
#. GWnfD
-#: sw/inc/strings.hrc:1251
+#: sw/inc/strings.hrc:1238
msgctxt "STR_IMGBTN_SRCH_REP_UP"
msgid "Continue search backwards"
msgstr "Soek verder agtertoe"
#. uDtcG
-#: sw/inc/strings.hrc:1252
+#: sw/inc/strings.hrc:1239
msgctxt "STR_IMGBTN_INDEX_ENTRY_UP"
msgid "Previous index entry"
msgstr "Vorige indeksinskrywing"
#. VR6DX
-#: sw/inc/strings.hrc:1253
+#: sw/inc/strings.hrc:1240
msgctxt "STR_IMGBTN_TBLFML_UP"
msgid "Previous table formula"
msgstr "Vorige tabelformule"
#. GqESF
-#: sw/inc/strings.hrc:1254
+#: sw/inc/strings.hrc:1241
msgctxt "STR_IMGBTN_TBLFML_DOWN"
msgid "Next table formula"
msgstr "Volgende tabelformule"
#. gBgxo
-#: sw/inc/strings.hrc:1255
+#: sw/inc/strings.hrc:1242
msgctxt "STR_IMGBTN_TBLFML_ERR_UP"
msgid "Previous faulty table formula"
msgstr "Vorige foutiewe tabelformule"
#. UAon9
-#: sw/inc/strings.hrc:1256
+#: sw/inc/strings.hrc:1243
msgctxt "STR_IMGBTN_TBLFML_ERR_DOWN"
msgid "Next faulty table formula"
msgstr "Volgende foutiewe tabelformule"
#. L2Apv
-#: sw/inc/strings.hrc:1257
+#: sw/inc/strings.hrc:1244
msgctxt "STR_IMGBTN_RECENCY_UP"
msgid "Go back"
msgstr "Gaan terug"
#. jCsGs
-#: sw/inc/strings.hrc:1258
+#: sw/inc/strings.hrc:1245
msgctxt "STR_IMGBTN_RECENCY_DOWN"
msgid "Go forward"
msgstr "Gaan vooruit"
#. o3BBz
-#: sw/inc/strings.hrc:1259
+#: sw/inc/strings.hrc:1246
msgctxt "STR_IMGBTN_FIELD_UP"
msgid "Previous field"
msgstr "Vorige veld"
#. bQ33Z
-#: sw/inc/strings.hrc:1260
+#: sw/inc/strings.hrc:1247
msgctxt "STR_IMGBTN_FIELD_DOWN"
msgid "Next field"
msgstr "Volgende Veld"
#. bhUaK
-#: sw/inc/strings.hrc:1261
+#: sw/inc/strings.hrc:1248
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
msgstr "Vorige veld '%FIELDTYPE'"
#. A8HWi
-#: sw/inc/strings.hrc:1262
+#: sw/inc/strings.hrc:1249
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
msgstr "Volgende veld '%FIELDTYPE'"
#. hSYa3
-#: sw/inc/strings.hrc:1264
+#: sw/inc/strings.hrc:1251
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
msgstr "Ingevoeg"
#. LnFkq
-#: sw/inc/strings.hrc:1265
+#: sw/inc/strings.hrc:1252
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
msgstr "Geskrap"
#. cTNEn
-#: sw/inc/strings.hrc:1266
+#: sw/inc/strings.hrc:1253
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
msgstr "Geformateer"
#. YWr7C
-#: sw/inc/strings.hrc:1267
+#: sw/inc/strings.hrc:1254
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
msgstr "Tabel het verander"
#. 6xVDN
-#: sw/inc/strings.hrc:1268
+#: sw/inc/strings.hrc:1255
msgctxt "STR_REDLINE_FMTCOLL"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. 32AND
-#: sw/inc/strings.hrc:1269
+#: sw/inc/strings.hrc:1256
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
msgstr "Paragraafformatering het verander"
#. wLDkj
-#: sw/inc/strings.hrc:1270
+#: sw/inc/strings.hrc:1257
msgctxt "STR_REDLINE_TABLE_ROW_INSERT"
msgid "Row Inserted"
msgstr "Ry ingevoeg"
#. Eb5Gb
-#: sw/inc/strings.hrc:1271
+#: sw/inc/strings.hrc:1258
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
msgstr "Ry geskrap"
#. RyLHZ
-#: sw/inc/strings.hrc:1272
+#: sw/inc/strings.hrc:1259
msgctxt "STR_REDLINE_TABLE_COLUMN_INSERT"
msgid "Column Inserted"
msgstr "Kolom Ingevoeg"
#. FqpCw
-#: sw/inc/strings.hrc:1273
+#: sw/inc/strings.hrc:1260
msgctxt "STR_REDLINE_TABLE_COLUMN_DELETE"
msgid "Column Deleted"
msgstr "Kolom Geskrap"
#. i5ZJt
-#: sw/inc/strings.hrc:1274
+#: sw/inc/strings.hrc:1261
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
msgstr "Sel ingevoeg"
#. 4gE3z
-#: sw/inc/strings.hrc:1275
+#: sw/inc/strings.hrc:1262
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
msgstr "Ry geskrap"
#. BLEBh
-#: sw/inc/strings.hrc:1276
+#: sw/inc/strings.hrc:1263
msgctxt "STR_REDLINE_INSERT_MOVED"
msgid "Moved (insertion)"
msgstr "Geskuif (Invoeging)"
#. o39AA
-#: sw/inc/strings.hrc:1277
+#: sw/inc/strings.hrc:1264
msgctxt "STR_REDLINE_DELETE_MOVED"
msgid "Moved (deletion)"
msgstr "Geskuif (skrapping)"
#. DRCyp
-#: sw/inc/strings.hrc:1278
+#: sw/inc/strings.hrc:1265
msgctxt "STR_ENDNOTE"
msgid "Endnote: "
msgstr "Eindnoot: "
#. qpW2q
-#: sw/inc/strings.hrc:1279
+#: sw/inc/strings.hrc:1266
msgctxt "STR_FTNNOTE"
msgid "Footnote: "
msgstr "Voetnoot: "
#. 3RFUd
-#: sw/inc/strings.hrc:1280
+#: sw/inc/strings.hrc:1267
msgctxt "STR_SMARTTAG_CLICK"
msgid "%s-click to open Smart Tag menu"
msgstr "[%s+Kliek], om die 'Smart Tag' kieslys oop te maak"
#. QCD36
-#: sw/inc/strings.hrc:1281
+#: sw/inc/strings.hrc:1268
msgctxt "STR_HEADER_TITLE"
msgid "Header (%1)"
msgstr "Kop (%1)"
#. AYjgB
-#: sw/inc/strings.hrc:1282
+#: sw/inc/strings.hrc:1269
msgctxt "STR_FIRST_HEADER_TITLE"
msgid "First Page Header (%1)"
msgstr "Eerste bladsykop (%1)"
#. qVX2k
-#: sw/inc/strings.hrc:1283
+#: sw/inc/strings.hrc:1270
msgctxt "STR_LEFT_HEADER_TITLE"
msgid "Left Page Header (%1)"
msgstr "Linkerbladsykop (%1)"
#. DSg3b
-#: sw/inc/strings.hrc:1284
+#: sw/inc/strings.hrc:1271
msgctxt "STR_RIGHT_HEADER_TITLE"
msgid "Right Page Header (%1)"
msgstr "Regterbladsykop (%1)"
#. 6GzuM
-#: sw/inc/strings.hrc:1285
+#: sw/inc/strings.hrc:1272
msgctxt "STR_FOOTER_TITLE"
msgid "Footer (%1)"
msgstr "Voet (%1)"
#. FDVNH
-#: sw/inc/strings.hrc:1286
+#: sw/inc/strings.hrc:1273
msgctxt "STR_FIRST_FOOTER_TITLE"
msgid "First Page Footer (%1)"
msgstr "Eerste bladsyvoet (%1)"
#. SL7r3
-#: sw/inc/strings.hrc:1287
+#: sw/inc/strings.hrc:1274
msgctxt "STR_LEFT_FOOTER_TITLE"
msgid "Left Page Footer (%1)"
msgstr "Linkerbladsyvoet (%1)"
#. CBvih
-#: sw/inc/strings.hrc:1288
+#: sw/inc/strings.hrc:1275
msgctxt "STR_RIGHT_FOOTER_TITLE"
msgid "Right Page Footer (%1)"
msgstr "Regterbladsyvoet (%1)"
#. s8v3h
-#: sw/inc/strings.hrc:1289
+#: sw/inc/strings.hrc:1276
msgctxt "STR_DELETE_HEADER"
msgid "Delete Header..."
msgstr "Skrap kop..."
#. wL3Fr
-#: sw/inc/strings.hrc:1290
+#: sw/inc/strings.hrc:1277
msgctxt "STR_FORMAT_HEADER"
msgid "Format Header..."
msgstr "Formateer kop..."
#. DrAUe
-#: sw/inc/strings.hrc:1291
+#: sw/inc/strings.hrc:1278
msgctxt "STR_DELETE_FOOTER"
msgid "Delete Footer..."
msgstr "Skrap voet..."
#. 9Xgou
-#: sw/inc/strings.hrc:1292
+#: sw/inc/strings.hrc:1279
msgctxt "STR_FORMAT_FOOTER"
msgid "Format Footer..."
msgstr "Formateer voet..."
#. ApT5B
-#: sw/inc/strings.hrc:1294
+#: sw/inc/strings.hrc:1281
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
msgstr "Onbeweeglike Tabel"
#. wVAZJ
-#: sw/inc/strings.hrc:1296
+#: sw/inc/strings.hrc:1283
msgctxt "STR_PAGE_BREAK_BUTTON"
msgid "Edit page break"
msgstr "Redigeer bladsybreuk"
#. uvDKE
-#: sw/inc/strings.hrc:1298
+#: sw/inc/strings.hrc:1285
msgctxt "STR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "Beeldlêer kan nie oopgemaak word nie"
#. iJuAv
-#: sw/inc/strings.hrc:1299
+#: sw/inc/strings.hrc:1286
msgctxt "STR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "Beeldlêer kan nie gelees word nie"
#. Bwwho
-#: sw/inc/strings.hrc:1300
+#: sw/inc/strings.hrc:1287
msgctxt "STR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "Onbekende beeldformaat"
#. bfog5
-#: sw/inc/strings.hrc:1301
+#: sw/inc/strings.hrc:1288
msgctxt "STR_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "Hierdie beeldlêerweergawe word nie ondersteun nie"
#. xy4Vm
-#: sw/inc/strings.hrc:1302
+#: sw/inc/strings.hrc:1289
msgctxt "STR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "Beeldfilter nie gevind nie"
#. tEqyq
-#: sw/inc/strings.hrc:1303
+#: sw/inc/strings.hrc:1290
msgctxt "STR_GRFILTER_TOOBIG"
msgid "Not enough memory to insert the image."
msgstr "Nie genoeg geheue om die beeld in te voeg nie."
#. 5ihue
-#: sw/inc/strings.hrc:1304
+#: sw/inc/strings.hrc:1291
msgctxt "STR_INSERT_GRAPHIC"
msgid "Insert Image"
msgstr "Voeg beeld in"
#. GWzLN
-#: sw/inc/strings.hrc:1305
+#: sw/inc/strings.hrc:1292
msgctxt "STR_REDLINE_COMMENT"
msgid "Comment: "
msgstr "Opmerking: "
#. CoJc8
-#: sw/inc/strings.hrc:1306
+#: sw/inc/strings.hrc:1293
msgctxt "STR_REDLINE_INSERTED"
msgid "Insertion"
msgstr "Invoeging"
#. dfMEF
-#: sw/inc/strings.hrc:1307
+#: sw/inc/strings.hrc:1294
msgctxt "STR_REDLINE_DELETED"
msgid "Deletion"
msgstr "Skrapping"
#. NytQQ
-#: sw/inc/strings.hrc:1308
+#: sw/inc/strings.hrc:1295
msgctxt "STR_REDLINE_AUTOFMT"
msgid "AutoCorrect"
msgstr "Outokorrigeer"
#. YRAQL
-#: sw/inc/strings.hrc:1309
+#: sw/inc/strings.hrc:1296
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
msgstr "Formate"
#. ELCVU
-#: sw/inc/strings.hrc:1310
+#: sw/inc/strings.hrc:1297
msgctxt "STR_REDLINE_TABLECHG"
msgid "Table Changes"
msgstr "Tabelveranderinge"
#. PzfQF
-#: sw/inc/strings.hrc:1311
+#: sw/inc/strings.hrc:1298
msgctxt "STR_REDLINE_FMTCOLLSET"
msgid "Applied Paragraph Styles"
msgstr "Toegepaste paragraafstyle"
#. WghdP
-#: sw/inc/strings.hrc:1312
+#: sw/inc/strings.hrc:1299
msgctxt "STR_REDLINE_COMMENT_ADDED"
msgid "Comment added"
msgstr "Opmerking bygevoeg."
#. 2KNu9
-#: sw/inc/strings.hrc:1313
+#: sw/inc/strings.hrc:1300
msgctxt "STR_REDLINE_COMMENT_DELETED"
msgid "Comment deleted"
msgstr "Opmerking geskrap."
#. sgEbW
-#: sw/inc/strings.hrc:1314
+#: sw/inc/strings.hrc:1301
msgctxt "STR_PAGE"
msgid "Page "
msgstr "Bladsy "
#. QHfpZ
-#: sw/inc/strings.hrc:1315
+#: sw/inc/strings.hrc:1302
msgctxt "STR_PAGES_TWO_CONJUNCTION"
msgid "and"
msgstr "en"
#. 3DpEx
-#: sw/inc/strings.hrc:1316
+#: sw/inc/strings.hrc:1303
msgctxt "STR_PAGE_COUNT"
msgid "Page %1 of %2"
msgstr "Bladsy %1 van %2"
#. kMeye
-#: sw/inc/strings.hrc:1317
+#: sw/inc/strings.hrc:1304
msgctxt "STR_PAGE_COUNT_EXTENDED"
msgid "Page %1 of %2 [Page %3]"
msgstr "Bladsy %1 van %2 [Bladsy %3]"
#. gqFYf
-#: sw/inc/strings.hrc:1318
+#: sw/inc/strings.hrc:1305
msgctxt "STR_PAGES_COUNT"
msgid "Pages %1 - %2 of %3"
msgstr "Bladsye %1 - %2 of %3"
#. BqLqv
-#: sw/inc/strings.hrc:1319
+#: sw/inc/strings.hrc:1306
msgctxt "STR_PAGES_COUNT_EXTENDED"
msgid "Pages %1 - %2 of %3 [Pages %4 - %5]"
msgstr "Bladsye %1 - %2 of %3 [Bladsye %4 - %5]"
#. FjgDc
-#: sw/inc/strings.hrc:1320
+#: sw/inc/strings.hrc:1307
msgctxt "STR_PAGE_COUNT_CUSTOM"
msgid "Page %1 (%2) of %3"
msgstr "Bladsye %1 (%2) of %3"
#. jBinK
-#: sw/inc/strings.hrc:1321
+#: sw/inc/strings.hrc:1308
msgctxt "STR_PAGE_COUNT_CUSTOM_EXTENDED"
msgid "Page %1 (%2) of %3 [Page %4 (%5)]"
msgstr "Bladsy %1 (%2) of %3 [Bladsy %4 (%5)]"
#. 5EAe9
-#: sw/inc/strings.hrc:1322
+#: sw/inc/strings.hrc:1309
msgctxt "STR_PAGES_COUNT_CUSTOM"
msgid "Pages %1 - %2 (%3 - %4) of %5"
msgstr "Bladsye %1 - %2 (%3 - %4) of %5"
#. 6pfhH
-#: sw/inc/strings.hrc:1323
+#: sw/inc/strings.hrc:1310
msgctxt "STR_PAGES_COUNT_CUSTOM_EXTENDED"
msgid "Pages %1 - %2 (%3 - %4) of %5 [Pages %6 - %7 (%8 - %9)]"
msgstr "Bladsye %1 - %2 (%3 - %4) of %5 [Pages %6 - %7 (%8 - %9)]"
#. a7tDc
-#: sw/inc/strings.hrc:1324
+#: sw/inc/strings.hrc:1311
msgctxt "STR_PAGE_COUNT_PRINTED"
msgid "Page %1 of %2 (Page %3 of %4 to print)"
msgstr "Bladsy %1 van %2 (Bladsy %3 van %4 vir drukwerk)"
#. KjML8
#. Strings for gallery/background
-#: sw/inc/strings.hrc:1326
+#: sw/inc/strings.hrc:1313
msgctxt "STR_SWBG_PARAGRAPH"
msgid "Paragraph"
msgstr "Paragraaf"
#. aAtmp
-#: sw/inc/strings.hrc:1327
+#: sw/inc/strings.hrc:1314
msgctxt "STR_SWBG_GRAPHIC"
msgid "Image"
msgstr "Beeld"
#. UBDMK
-#: sw/inc/strings.hrc:1328
+#: sw/inc/strings.hrc:1315
msgctxt "STR_SWBG_OLE"
msgid "OLE object"
msgstr "OLE-objek"
#. xEWbo
-#: sw/inc/strings.hrc:1329
+#: sw/inc/strings.hrc:1316
msgctxt "STR_SWBG_FRAME"
msgid "Frame"
msgstr "Raam"
#. hfJns
-#: sw/inc/strings.hrc:1330
+#: sw/inc/strings.hrc:1317
msgctxt "STR_SWBG_TABLE"
msgid "Table"
msgstr "Tabel"
#. GRqNY
-#: sw/inc/strings.hrc:1331
+#: sw/inc/strings.hrc:1318
msgctxt "STR_SWBG_TABLE_ROW"
msgid "Table row"
msgstr "Tabelry"
#. CDQY4
-#: sw/inc/strings.hrc:1332
+#: sw/inc/strings.hrc:1319
msgctxt "STR_SWBG_TABLE_CELL"
msgid "Table cell"
msgstr "Tabelsel"
#. 2Db9T
-#: sw/inc/strings.hrc:1333
+#: sw/inc/strings.hrc:1320
msgctxt "STR_SWBG_PAGE"
msgid "Page"
msgstr "Bladsy"
#. 63FuG
-#: sw/inc/strings.hrc:1334
+#: sw/inc/strings.hrc:1321
msgctxt "STR_SWBG_HEADER"
msgid "Header"
msgstr "Kop"
#. aDuAY
-#: sw/inc/strings.hrc:1335
+#: sw/inc/strings.hrc:1322
msgctxt "STR_SWBG_FOOTER"
msgid "Footer"
msgstr "Voet"
#. uAp9i
#. End: strings for gallery/background
-#: sw/inc/strings.hrc:1338
+#: sw/inc/strings.hrc:1325
msgctxt "STR_WRITER_WEBDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION HTML Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-HTML-dokument"
#. y2GBv
-#: sw/inc/strings.hrc:1340
+#: sw/inc/strings.hrc:1327
msgctxt "STR_TITLE"
msgid "Title"
msgstr "Titel"
#. AipGR
-#: sw/inc/strings.hrc:1341
+#: sw/inc/strings.hrc:1328
msgctxt "STR_ALPHA"
msgid "Separator"
msgstr "Skeier"
#. CoSEf
-#: sw/inc/strings.hrc:1342
+#: sw/inc/strings.hrc:1329
msgctxt "STR_LEVEL"
msgid "Level "
msgstr "Vlak "
#. JdTF4
-#: sw/inc/strings.hrc:1343
+#: sw/inc/strings.hrc:1330
msgctxt "STR_FILE_NOT_FOUND"
msgid "The file, \"%1\" in the \"%2\" path could not be found."
msgstr "Die lêer “%1” in die “%2” pad kon nie gevind word nie."
#. zRWDZ
-#: sw/inc/strings.hrc:1344
+#: sw/inc/strings.hrc:1331
msgctxt "STR_USER_DEFINED_INDEX"
msgid "User-Defined Index"
msgstr "Gebruikergedefinieerde indeks"
#. t5uWs
-#: sw/inc/strings.hrc:1345
+#: sw/inc/strings.hrc:1332
msgctxt "STR_NOSORTKEY"
msgid "<None>"
msgstr "<geen>"
#. vSSnJ
-#: sw/inc/strings.hrc:1346
+#: sw/inc/strings.hrc:1333
msgctxt "STR_NO_CHAR_STYLE"
msgid "<None>"
msgstr "<geen>"
#. NSx98
-#: sw/inc/strings.hrc:1347
+#: sw/inc/strings.hrc:1334
msgctxt "STR_DELIM"
msgid "S"
msgstr "S"
#. WxBG7
-#: sw/inc/strings.hrc:1348
+#: sw/inc/strings.hrc:1335
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "N#"
msgstr "N#"
#. 8EgTx
-#: sw/inc/strings.hrc:1349
+#: sw/inc/strings.hrc:1336
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
msgstr "E"
#. gxt8B
-#: sw/inc/strings.hrc:1350
+#: sw/inc/strings.hrc:1337
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
msgstr "T"
#. pGAb4
-#: sw/inc/strings.hrc:1351
+#: sw/inc/strings.hrc:1338
msgctxt "STR_TOKEN_PAGE_NUMS"
msgid "#"
msgstr "#"
#. jCQgT
-#: sw/inc/strings.hrc:1352
+#: sw/inc/strings.hrc:1339
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "HI"
msgstr "HI"
#. XWaFn
-#: sw/inc/strings.hrc:1353
+#: sw/inc/strings.hrc:1340
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
msgstr "BH"
#. xp6D6
-#: sw/inc/strings.hrc:1354
+#: sw/inc/strings.hrc:1341
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
msgstr "LE"
#. AogDK
-#: sw/inc/strings.hrc:1355
+#: sw/inc/strings.hrc:1342
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
msgstr "A"
#. GnDd5
-#: sw/inc/strings.hrc:1356
+#: sw/inc/strings.hrc:1343
msgctxt "STR_TOKEN_HELP_ENTRY_NO"
msgid "Numbering"
msgstr "Nommering"
#. FH365
-#: sw/inc/strings.hrc:1357
+#: sw/inc/strings.hrc:1344
msgctxt "STR_TOKEN_HELP_ENTRY"
msgid "Entry"
msgstr "Inskrywing"
#. xZjtZ
-#: sw/inc/strings.hrc:1358
+#: sw/inc/strings.hrc:1345
msgctxt "STR_TOKEN_HELP_TAB_STOP"
msgid "Tab stop"
msgstr "Inkeep"
#. aXW8y
-#: sw/inc/strings.hrc:1359
+#: sw/inc/strings.hrc:1346
msgctxt "STR_TOKEN_HELP_TEXT"
msgid "Text"
msgstr "Teks"
#. MCUd2
-#: sw/inc/strings.hrc:1360
+#: sw/inc/strings.hrc:1347
msgctxt "STR_TOKEN_HELP_PAGE_NUMS"
msgid "Page number"
msgstr "Bladsynommer"
#. BzpRR
-#: sw/inc/strings.hrc:1361
+#: sw/inc/strings.hrc:1348
msgctxt "STR_TOKEN_HELP_CHAPTER_INFO"
msgid "Heading info"
msgstr "Opskrif info"
#. DRBSD
-#: sw/inc/strings.hrc:1362
+#: sw/inc/strings.hrc:1349
msgctxt "STR_TOKEN_HELP_LINK_START"
msgid "Hyperlink start"
msgstr "Begin van hiperskakel"
#. Ytn5g
-#: sw/inc/strings.hrc:1363
+#: sw/inc/strings.hrc:1350
msgctxt "STR_TOKEN_HELP_LINK_END"
msgid "Hyperlink end"
msgstr "Einde van hiperskakel"
#. hRo3J
-#: sw/inc/strings.hrc:1364
+#: sw/inc/strings.hrc:1351
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
msgstr "Bibliografie-inskrywing: "
#. ZKG5v
-#: sw/inc/strings.hrc:1365
+#: sw/inc/strings.hrc:1352
msgctxt "STR_CHARSTYLE"
msgid "Character Style: "
msgstr "Karakterstyl: "
#. d9BES
-#: sw/inc/strings.hrc:1366
+#: sw/inc/strings.hrc:1353
msgctxt "STR_STRUCTURE"
msgid "Structure text"
msgstr "Teks Struktuur"
#. kwoGP
-#: sw/inc/strings.hrc:1367
+#: sw/inc/strings.hrc:1354
msgctxt "STR_ADDITIONAL_ACCNAME_STRING1"
msgid "Press Ctrl+Alt+A to move focus for more operations"
msgstr "Druk Ctrl+Alt+A om fokus te skuif vir meer bewerkings"
#. Avm9y
-#: sw/inc/strings.hrc:1368
+#: sw/inc/strings.hrc:1355
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
msgstr "Druk linker- of regterpyltjie om die struktuurkontroles te kies"
#. 59eRi
-#: sw/inc/strings.hrc:1369
+#: sw/inc/strings.hrc:1356
msgctxt "STR_ADDITIONAL_ACCNAME_STRING3"
msgid "Press Ctrl+Alt+B to move focus back to the current structure control"
msgstr "Druk Ctrl+Alt+B om fokus terug te skuif na die huidige struktuurkontrole"
#. 8AagG
-#: sw/inc/strings.hrc:1370
+#: sw/inc/strings.hrc:1357
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
msgstr "Keuringslêer vir indeks (* .sdi)"
@@ -9813,277 +9747,277 @@ msgstr "Keuringslêer vir indeks (* .sdi)"
#. -----------------------------------------------------------------------
#. Description: character alignment for frmsh.cxx - context menu
#. -----------------------------------------------------------------------
-#: sw/inc/strings.hrc:1375
+#: sw/inc/strings.hrc:1362
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
msgstr "Basislyn ~bo"
#. 5GiEA
-#: sw/inc/strings.hrc:1376
+#: sw/inc/strings.hrc:1363
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
msgstr "~Basislyn onder"
#. sdyVF
-#: sw/inc/strings.hrc:1377
+#: sw/inc/strings.hrc:1364
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
msgstr "~Gesentreerde basislyn"
#. 8oPgS
-#: sw/inc/strings.hrc:1378
+#: sw/inc/strings.hrc:1365
msgctxt "STR_FRMUI_OLE_INSERT"
msgid "Insert OLE object"
msgstr "Voeg OLE objek in"
#. pmqbK
-#: sw/inc/strings.hrc:1379
+#: sw/inc/strings.hrc:1366
msgctxt "STR_FRMUI_OLE_EDIT"
msgid "Edit OLE object"
msgstr "Wysig OLE objek"
#. 3QFYB
-#: sw/inc/strings.hrc:1380
+#: sw/inc/strings.hrc:1367
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
msgstr " (Sjabloon: "
#. oUhnK
-#: sw/inc/strings.hrc:1381
+#: sw/inc/strings.hrc:1368
msgctxt "STR_FRMUI_BORDER"
msgid "Borders"
msgstr "Rande"
#. T2SH2
-#: sw/inc/strings.hrc:1382
+#: sw/inc/strings.hrc:1369
msgctxt "STR_FRMUI_PATTERN"
msgid "Background"
msgstr "Agtergrond"
#. K6Yvs
-#: sw/inc/strings.hrc:1384
+#: sw/inc/strings.hrc:1371
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
msgstr "(Paragraafstyl: "
#. Fsanh
-#: sw/inc/strings.hrc:1385
+#: sw/inc/strings.hrc:1372
msgctxt "STR_ILLEGAL_PAGENUM"
msgid "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages."
msgstr "Bladsynommers kan nie op die huidige bladsy toegepas word nie. Ewe getalle kan op linkerbladsye gebruik word en onewe getalle op regterbladsye."
#. VZnJf
-#: sw/inc/strings.hrc:1387
+#: sw/inc/strings.hrc:1374
msgctxt "STR_WRITER_GLOBALDOC_FULLTYPE"
msgid "%PRODUCTNAME %PRODUCTVERSION Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION-meesterdokument"
#. kWe9j
-#: sw/inc/strings.hrc:1389
+#: sw/inc/strings.hrc:1376
msgctxt "STR_QUERY_CONNECT"
msgid "A file connection will delete the contents of the current section. Connect anyway?"
msgstr "’n Lêerkoppeling sal die inhoud van die huidige afdeling skrap. Nogtans koppel?"
#. dLuAF
-#: sw/inc/strings.hrc:1390
+#: sw/inc/strings.hrc:1377
msgctxt "STR_WRONG_PASSWORD"
msgid "The password entered is invalid."
msgstr "Die getikte wagwoord is ongeldig."
#. oUR7Y
-#: sw/inc/strings.hrc:1391
+#: sw/inc/strings.hrc:1378
msgctxt "STR_WRONG_PASSWD_REPEAT"
msgid "The password has not been set."
msgstr "Die wagwoord is nie gestel nie."
#. GBVqD
-#: sw/inc/strings.hrc:1393
+#: sw/inc/strings.hrc:1380
msgctxt "STR_HYP_OK"
msgid "Hyphenation completed"
msgstr "Woordafbreking klaar"
#. rZBXF
-#: sw/inc/strings.hrc:1394
+#: sw/inc/strings.hrc:1381
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
msgstr "Geen (moenie spelling kontroleer nie)"
#. Z8EjG
-#: sw/inc/strings.hrc:1395
+#: sw/inc/strings.hrc:1382
msgctxt "STR_RESET_TO_DEFAULT_LANGUAGE"
msgid "Reset to Default Language"
msgstr "Stel terug na verstektaal"
#. YEXdS
-#: sw/inc/strings.hrc:1396
+#: sw/inc/strings.hrc:1383
msgctxt "STR_LANGSTATUS_MORE"
msgid "More..."
msgstr "Meer..."
#. QecQ3
-#: sw/inc/strings.hrc:1397
+#: sw/inc/strings.hrc:1384
msgctxt "STR_IGNORE_SELECTION"
msgid "~Ignore"
msgstr "~Ignoreer"
#. aaiBM
-#: sw/inc/strings.hrc:1398
+#: sw/inc/strings.hrc:1385
msgctxt "STR_EXPLANATION_LINK"
msgid "Explanations..."
msgstr "Verduidelikings..."
#. kSDGu
-#: sw/inc/strings.hrc:1400
+#: sw/inc/strings.hrc:1387
msgctxt "STR_QUERY_SPECIAL_FORCED"
msgid "Check special regions is deactivated. Check anyway?"
msgstr "Kontrole van spesiale streke is gedeaktiveer. Kontroleer in elk geval?"
#. KiAdJ
-#: sw/inc/strings.hrc:1401
+#: sw/inc/strings.hrc:1388
msgctxt "STR_NO_MERGE_ENTRY"
msgid "Could not merge documents."
msgstr "Kon nie dokumente saamvoeg nie."
#. FqsCt
-#: sw/inc/strings.hrc:1402
+#: sw/inc/strings.hrc:1389
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
msgstr "Die %PRODUCTNAME Base-komponent ontbreek en is nodig om massapos te gebruik."
#. wcuf4
-#: sw/inc/strings.hrc:1403
+#: sw/inc/strings.hrc:1390
msgctxt "STR_ERR_SRCSTREAM"
msgid "The source cannot be loaded."
msgstr "Die bron kan nie gelaai word nie."
#. K9qMS
-#: sw/inc/strings.hrc:1404
+#: sw/inc/strings.hrc:1391
msgctxt "STR_ERR_NO_FAX"
msgid "No fax printer has been set under Tools/Options/%1/Print."
msgstr "Geen faksdrukker is onder Nutsgoed/Opsies/%1/Druk gestel nie."
#. XWQ8w
-#: sw/inc/strings.hrc:1405
+#: sw/inc/strings.hrc:1392
msgctxt "STR_WEBOPTIONS"
msgid "HTML document"
msgstr "HTML-dokument"
#. qVZBx
-#: sw/inc/strings.hrc:1406
+#: sw/inc/strings.hrc:1393
msgctxt "STR_TEXTOPTIONS"
msgid "Text document"
msgstr "Teksdokument"
#. qmmPU
-#: sw/inc/strings.hrc:1407
+#: sw/inc/strings.hrc:1394
msgctxt "STR_SCAN_NOSOURCE"
msgid "Source not specified."
msgstr "Bron nie gespesifiseer nie."
#. 2LgDJ
-#: sw/inc/strings.hrc:1408
+#: sw/inc/strings.hrc:1395
msgctxt "STR_NUM_LEVEL"
msgid "Level "
msgstr "Vlak "
#. AcAD8
-#: sw/inc/strings.hrc:1409
+#: sw/inc/strings.hrc:1396
msgctxt "STR_NUM_OUTLINE"
msgid "Outline "
msgstr "Skema "
#. DE9FZ
-#: sw/inc/strings.hrc:1410
+#: sw/inc/strings.hrc:1397
msgctxt "STR_EDIT_FOOTNOTE"
msgid "Edit Footnote/Endnote"
msgstr "Redigeer voetnoot/eindnoot"
#. EzBCZ
-#: sw/inc/strings.hrc:1411
+#: sw/inc/strings.hrc:1398
msgctxt "STR_NB_REPLACED"
msgid "Search key replaced XX times."
msgstr "Soeksleutel is XX maal vervang."
#. 5GCGF
-#: sw/inc/strings.hrc:1412
+#: sw/inc/strings.hrc:1399
msgctxt "STR_SEARCH_KEY_FOUND_TIMES"
msgid "Search key found %1 times."
msgstr "Soek sleutelwoord gevind %1 kere."
#. fgywB
-#: sw/inc/strings.hrc:1413
+#: sw/inc/strings.hrc:1400
msgctxt "STR_SRCVIEW_ROW"
msgid "Row "
msgstr "Ry "
#. GUc4a
-#: sw/inc/strings.hrc:1414
+#: sw/inc/strings.hrc:1401
msgctxt "STR_SRCVIEW_COL"
msgid "Column "
msgstr "Kolom "
#. yMyuo
-#: sw/inc/strings.hrc:1415
+#: sw/inc/strings.hrc:1402
msgctxt "STR_SAVEAS_SRC"
msgid "~Export source..."
msgstr "~Voer bron uit..."
#. ywFCb
-#: sw/inc/strings.hrc:1416
+#: sw/inc/strings.hrc:1403
msgctxt "STR_SAVEACOPY_SRC"
msgid "~Export copy of source..."
msgstr "~Voer kopie van bron uit..."
#. BT3M3
-#: sw/inc/strings.hrc:1418
+#: sw/inc/strings.hrc:1405
msgctxt "ST_CONTINUE"
msgid "~Continue"
msgstr "~Gaan voort"
#. hnqAm
-#: sw/inc/strings.hrc:1419
+#: sw/inc/strings.hrc:1406
msgctxt "ST_CLOSE_DIALOG"
msgid "~Close"
msgstr "~Sluit"
#. ZR9aw
-#: sw/inc/strings.hrc:1420
+#: sw/inc/strings.hrc:1407
msgctxt "ST_SENDINGTO"
msgid "Sending to: %1"
msgstr "Stuur aan: %1"
#. YCNYb
-#: sw/inc/strings.hrc:1421
+#: sw/inc/strings.hrc:1408
msgctxt "ST_COMPLETED"
msgid "Successfully sent"
msgstr "Suksesvol vesend"
#. fmHmE
-#: sw/inc/strings.hrc:1422
+#: sw/inc/strings.hrc:1409
msgctxt "ST_FAILED"
msgid "Sending failed"
msgstr "Stuur het misluk"
#. EAxAu
-#: sw/inc/strings.hrc:1423
+#: sw/inc/strings.hrc:1410
msgctxt "ST_ADDRESS_INVALID"
msgid "Address invalid"
msgstr "Adres ongeldig"
#. yAAPM
-#: sw/inc/strings.hrc:1425
+#: sw/inc/strings.hrc:1412
msgctxt "STR_SENDER_TOKENS"
msgid "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;"
msgstr "MAATSKAPPY;CR;VOORNAAM; ;VAN;CR;ADRES;CR;STAD; ;PROV; ;POSKODE;CR;LAND;CR;"
#. mWrXk
-#: sw/inc/strings.hrc:1427
+#: sw/inc/strings.hrc:1414
msgctxt "STR_TBL_FORMULA"
msgid "Text formula"
msgstr "Teksformule"
#. RmBFW
-#: sw/inc/strings.hrc:1429
+#: sw/inc/strings.hrc:1416
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
msgstr "Geen Item gespesifiseer"
@@ -10092,7 +10026,7 @@ msgstr "Geen Item gespesifiseer"
#. --------------------------------------------------------------------
#. Description: Classification strings
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1435
+#: sw/inc/strings.hrc:1422
msgctxt "STR_CLASSIFICATION_LEVEL_CHANGED"
msgid "Document classification has changed because a paragraph classification level is higher"
msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasievlak hoër is"
@@ -10101,139 +10035,139 @@ msgstr "Die dokumentklassifikasie het verander omdat ’n paragraafklassifikasie
#. --------------------------------------------------------------------
#. Description: Paragraph Signature
#. --------------------------------------------------------------------
-#: sw/inc/strings.hrc:1440
+#: sw/inc/strings.hrc:1427
msgctxt "STR_VALID"
msgid " Valid "
msgstr " Geldig "
#. xAKRC
-#: sw/inc/strings.hrc:1441
+#: sw/inc/strings.hrc:1428
msgctxt "STR_INVALID"
msgid "Invalid"
msgstr "Ongeldig"
#. pDAHz
-#: sw/inc/strings.hrc:1442
+#: sw/inc/strings.hrc:1429
msgctxt "STR_INVALID_SIGNATURE"
msgid "Invalid Signature"
msgstr "Ongeldige handtekening"
#. etEEx
-#: sw/inc/strings.hrc:1443
+#: sw/inc/strings.hrc:1430
msgctxt "STR_SIGNED_BY"
msgid "Signed-by"
msgstr "Onderteken deur"
#. BK7ub
-#: sw/inc/strings.hrc:1444
+#: sw/inc/strings.hrc:1431
msgctxt "STR_PARAGRAPH_SIGNATURE"
msgid "Paragraph Signature"
msgstr "Paragraafhandtekening"
#. kZKCf
-#: sw/inc/strings.hrc:1446
+#: sw/inc/strings.hrc:1433
msgctxt "labeldialog|cards"
msgid "Business Cards"
msgstr "Visitekaartjies"
#. ECFij
-#: sw/inc/strings.hrc:1448
+#: sw/inc/strings.hrc:1435
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
msgstr "E-Pos-Instellings"
#. PwrB9
-#: sw/inc/strings.hrc:1450
+#: sw/inc/strings.hrc:1437
msgctxt "optredlinepage|insertedpreview"
msgid "Insert"
msgstr "Voeg in"
#. NL48o
-#: sw/inc/strings.hrc:1451
+#: sw/inc/strings.hrc:1438
msgctxt "optredlinepage|deletedpreview"
msgid "Delete"
msgstr "Skrap"
#. PW4Bz
-#: sw/inc/strings.hrc:1452
+#: sw/inc/strings.hrc:1439
msgctxt "optredlinepage|changedpreview"
msgid "Attributes"
msgstr "Attribute"
#. yfgiq
-#: sw/inc/strings.hrc:1454
+#: sw/inc/strings.hrc:1441
msgctxt "createautomarkdialog|searchterm"
msgid "Search term"
msgstr "Soekterm"
#. fhLzk
-#: sw/inc/strings.hrc:1455
+#: sw/inc/strings.hrc:1442
msgctxt "createautomarkdialog|alternative"
msgid "Alternative entry"
msgstr "Alternatiewe inskrywing"
#. gD4D3
-#: sw/inc/strings.hrc:1456
+#: sw/inc/strings.hrc:1443
msgctxt "createautomarkdialog|key1"
msgid "1st key"
msgstr "1e sleutel"
#. BFszo
-#: sw/inc/strings.hrc:1457
+#: sw/inc/strings.hrc:1444
msgctxt "createautomarkdialog|key2"
msgid "2nd key"
msgstr "2e sleutel"
#. EoAB8
-#: sw/inc/strings.hrc:1458
+#: sw/inc/strings.hrc:1445
msgctxt "createautomarkdialog|comment"
msgid "Comment"
msgstr "Opmerking"
#. Shstx
-#: sw/inc/strings.hrc:1459
+#: sw/inc/strings.hrc:1446
msgctxt "createautomarkdialog|casesensitive"
msgid "Match case"
msgstr "Selfde kas"
#. 8Cjvb
-#: sw/inc/strings.hrc:1460
+#: sw/inc/strings.hrc:1447
msgctxt "createautomarkdialog|wordonly"
msgid "Word only"
msgstr "Slegs woord"
#. zD8rb
-#: sw/inc/strings.hrc:1461
+#: sw/inc/strings.hrc:1448
msgctxt "createautomarkdialog|yes"
msgid "Yes"
msgstr "Ja"
#. 4tTop
-#: sw/inc/strings.hrc:1462
+#: sw/inc/strings.hrc:1449
msgctxt "createautomarkdialog|no"
msgid "No"
msgstr "Nee"
#. KhKwa
-#: sw/inc/strings.hrc:1464
+#: sw/inc/strings.hrc:1451
msgctxt "sidebarwrap|customlabel"
msgid "Custom"
msgstr "Doelgemaak"
#. aHi89
-#: sw/inc/strings.hrc:1465
+#: sw/inc/strings.hrc:1452
msgctxt "STR_CONTENT_CONTROL_PLACEHOLDER"
msgid "Click here to enter text"
msgstr "Klik hier o0m teks in te voer."
#. N3ocz
-#: sw/inc/strings.hrc:1466
+#: sw/inc/strings.hrc:1453
msgctxt "STR_DROPDOWN_CONTENT_CONTROL_PLACEHOLDER"
msgid "Choose an item"
msgstr "Selekteer 'n item."
#. AQEZK
-#: sw/inc/strings.hrc:1467
+#: sw/inc/strings.hrc:1454
msgctxt "STR_DATE_CONTENT_CONTROL_PLACEHOLDER"
msgid "Choose a date"
msgstr "Selekteer 'n datum."
@@ -10241,199 +10175,199 @@ msgstr "Selekteer 'n datum."
#. eNMYS
#. accessibility descriptions that use %PRODUCTNAME, we set these explicitly because querying a11y descs
#. in order to change %PRODUCTNAME at runtime is expensive, so limit doing that as much as possible.
-#: sw/inc/strings.hrc:1471
+#: sw/inc/strings.hrc:1458
msgctxt "insertcaption|extended_tip|auto"
msgid "Opens the Caption dialog. It has the same information as the dialog you get by menu %PRODUCTNAME Writer - AutoCaption in the Options dialog box."
msgstr "Open die \"Byskrif\"-dialoog. Dit bevat dieselfde infomasie as die dialoog wat u oproep via keuselys: \"%PRODUCTNAME Writer → AutoCaption...\" in die \"Options\"-dialoog."
#. 2iTJE
-#: sw/inc/strings.hrc:1473
+#: sw/inc/strings.hrc:1460
msgctxt "STR_A11Y_DESIGN_MODE_TITLE"
msgid "The forms are not editable"
msgstr "Die vorms kan nie gewysig word nie"
#. QJbEq
-#: sw/inc/strings.hrc:1474
+#: sw/inc/strings.hrc:1461
msgctxt "STR_A11Y_DESIGN_MODE_PRIMARY"
msgid "Would you like to switch to design mode?"
msgstr "Wil u oorgaan na ontwerp modus?"
#. 6zBuF
-#: sw/inc/strings.hrc:1475
+#: sw/inc/strings.hrc:1462
msgctxt "STR_A11Y_DESIGN_MODE_SECONDARY"
msgid "You need to switch to design mode to edit forms."
msgstr "U moet oorgaan na ontwerp modus om vorms te kan redigeer."
#. LGFZa
-#: sw/inc/strings.hrc:1477
+#: sw/inc/strings.hrc:1464
msgctxt "STR_MARK_COPY"
msgid "%1 Copy "
msgstr "%1 Kopieer "
#. kF23A
-#: sw/inc/strings.hrc:1479
+#: sw/inc/strings.hrc:1466
msgctxt "STR_INFORODLG_FOLDED_PRIMARY"
msgid "You are trying to delete folded (hidden) content."
msgstr "Jy probeer gevoude (versteekte) inhoud uitvee."
#. h2E9u
-#: sw/inc/strings.hrc:1480
+#: sw/inc/strings.hrc:1467
msgctxt "STR_INFORODLG_FOLDED_SECONDARY"
msgid "To delete this content, first unfold it so you can see what you intend to delete."
msgstr "Om hierdie inhoud uit te vee, vou dit eers oop sodat jy kan sien wat jy van plan is om uit te vee."
#. JCQRL
-#: sw/inc/strings.hrc:1482
+#: sw/inc/strings.hrc:1469
msgctxt "STR_PARAGRAPH_DIRECT_FORMATTING"
msgid "Paragraph Direct Formatting"
msgstr "Paragraaf Direk Formateer"
#. 5FKBR
-#: sw/inc/strings.hrc:1483
+#: sw/inc/strings.hrc:1470
msgctxt "STR_CHARACTER_DIRECT_FORMATTING"
msgid "Character Direct Formatting"
msgstr "Karakter Direkte Formatering"
#. qc9xU
-#: sw/inc/strings.hrc:1484
+#: sw/inc/strings.hrc:1471
msgctxt "STR_CHARACTER_DIRECT_FORMATTING_TAG"
msgid "df"
msgstr "df"
#. YiRsr
-#: sw/inc/utlui.hrc:29
+#: sw/inc/utlui.hrc:30
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Remove empty paragraphs"
msgstr "Verwyder leë paragrawe"
#. zWFE6
-#: sw/inc/utlui.hrc:30
+#: sw/inc/utlui.hrc:31
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Use replacement table"
msgstr "Gebruik vervangingstabel"
#. EQfLp
-#: sw/inc/utlui.hrc:31
+#: sw/inc/utlui.hrc:32
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Correct TWo INitial CApitals"
msgstr "Korrigeer TWee AAnvangshoofletters"
#. JBCDA
-#: sw/inc/utlui.hrc:32
+#: sw/inc/utlui.hrc:33
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Capitalize first letter of sentences"
msgstr "Hoofletters aan die begin van sinne"
#. eGLb9
-#: sw/inc/utlui.hrc:33
+#: sw/inc/utlui.hrc:34
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace \"standard\" quotes with %1custom%2 quotes"
msgstr "Vervang \"standaard\"-aanhalingstekens met %1doelgemaakte%2 aanhalingstekens"
#. dgZCx
-#: sw/inc/utlui.hrc:34
+#: sw/inc/utlui.hrc:35
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace Custom Styles"
msgstr "Vervang doelgemaakte style"
#. zXHk9
-#: sw/inc/utlui.hrc:35
+#: sw/inc/utlui.hrc:36
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Bullets replaced"
msgstr "Koeëls is vervang"
#. p7V6t
-#: sw/inc/utlui.hrc:36
+#: sw/inc/utlui.hrc:37
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic _underline_"
msgstr "Outomatiese _onderstreping_"
#. Hzt7q
-#: sw/inc/utlui.hrc:37
+#: sw/inc/utlui.hrc:38
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Automatic *bold*"
msgstr "Outomatiese *vetdruk*"
#. oMfhs
-#: sw/inc/utlui.hrc:38
+#: sw/inc/utlui.hrc:39
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1/2 ... with ½ ..."
msgstr "Vervang 1/2 ... met ½ ..."
#. UCK6y
-#: sw/inc/utlui.hrc:39
+#: sw/inc/utlui.hrc:40
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "URL recognition"
msgstr "URL-herkenning"
#. MD9fC
-#: sw/inc/utlui.hrc:40
+#: sw/inc/utlui.hrc:41
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace dashes"
msgstr "Vervang aandagstrepe"
#. YABTx
-#: sw/inc/utlui.hrc:41
+#: sw/inc/utlui.hrc:42
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Replace 1st... with 1^st..."
msgstr "Vervang 1ste... met 1^ste..."
#. ebBjY
-#: sw/inc/utlui.hrc:42
+#: sw/inc/utlui.hrc:43
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine single line paragraphs"
msgstr "Kombineer enkelreëlparagrawe"
#. QmEbH
-#: sw/inc/utlui.hrc:43
+#: sw/inc/utlui.hrc:44
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Body Text\" Style"
msgstr "Stel die styl as \"Inhoudsteks\""
#. jMfBD
-#: sw/inc/utlui.hrc:44 sw/inc/utlui.hrc:46
+#: sw/inc/utlui.hrc:45 sw/inc/utlui.hrc:47
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Body Text, Indented\" Style"
msgstr "Stel die styl as \"Inhoudsteks, Ingekeep\""
#. qEb3E
-#: sw/inc/utlui.hrc:45
+#: sw/inc/utlui.hrc:46
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Hanging Indent\" Style"
msgstr "Stel die styl as \"Hangende Inkeping\""
#. qv2KD
-#: sw/inc/utlui.hrc:47
+#: sw/inc/utlui.hrc:48
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Heading $(ARG1)\" Style"
msgstr "Stel styl vir “Opskrif $(ARG1)”"
#. orFXE
-#: sw/inc/utlui.hrc:48
+#: sw/inc/utlui.hrc:49
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Set \"Bullet\" or \"Numbering\" Style"
msgstr "Stel styl vir “koeëltjies” of “nommering”"
#. yGoaB
-#: sw/inc/utlui.hrc:49
+#: sw/inc/utlui.hrc:50
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Combine paragraphs"
msgstr "Kombineer paragrawe"
#. rpT9U
-#: sw/inc/utlui.hrc:50
+#: sw/inc/utlui.hrc:51
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Add non breaking space"
msgstr "Voeg niebrekende spasie in"
#. FHPwi
-#: sw/inc/utlui.hrc:51
+#: sw/inc/utlui.hrc:52
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "Transliterates RTL Hungarian text to Old Hungarian script"
msgstr "Vertaal RNL Hongaarse teks na Ou Hongaarse skrif"
#. 62jqE
-#: sw/inc/utlui.hrc:52
+#: sw/inc/utlui.hrc:53
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
msgid "DOI citation recognition"
msgstr "DOI sitasie herkenning"
@@ -10474,11 +10408,11 @@ msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperskakel"
-#. VanGE
+#. 9xUft
#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_fakes_label"
-msgid "Fakes"
-msgstr "Namaaksels"
+msgid "Simulated captions"
+msgstr ""
#. 4MrEA
#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
@@ -21658,391 +21592,391 @@ msgid "New User Index"
msgstr "Nuwe gebruikersindeks"
#. pyNZP
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3173
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3224
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_Lêer"
#. uFrkV
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3192
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3243
msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
#. QC5EA
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3247
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3298
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Lêer"
#. 4gzad
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4509
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4560
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Tuis"
#. JAhp6
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4596
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4647
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Tuis"
#. NA9SG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5722
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5773
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
#. b4aNG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5827
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5878
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Voeg ~in"
#. 4t2ES
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6893
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6983
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Uit~leg"
#. 4sDuv
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7068
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uit~leg"
#. iLbkU
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7691
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7781
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
#. GEwcS
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7775
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7865
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing~s"
#. fDqyq
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8690
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8780
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. rsvWQ
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8775
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8865
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. Lzxon
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9626
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9716
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. WyVST
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9711
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9801
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. RgE7C
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10854
+#: sw/uiconfig/swriter/ui/notebookbar.ui:10944
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
#. nFByf
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10938
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11028
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
#. ePiUn
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12164
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12254
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Beeld"
#. tfZvk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12261
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12351
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
#. CAFm3
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13580
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13670
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_eken"
#. eBYpc
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13687
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13777
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~eken"
#. UPA2b
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14554
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14644
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
#. gMACj
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14639
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14729
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
#. YLmxD
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15418
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15508
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
#. A9AmF
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15522
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15612
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. SDFU4
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15953
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16043
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
#. uMQuW
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16035
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16125
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
#. 3sRtM
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16843
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16933
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. HbNSG
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16927
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17017
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. mrTYB
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16984
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17074
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Gtj2Y
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17058
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17148
msgctxt "WriterNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. FzYUk
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18005
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18095
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. 68iAK
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18089
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18179
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
#. guA3a
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3138
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3195
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "Lêer"
#. PU9ct
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3187
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3244
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "Lêer"
#. McDEQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4682
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4739
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "Begin"
#. MSVBh
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4734
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4791
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "Begin"
#. zveKA
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5760
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5817
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
#. CDXv3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5815
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5872
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "Invoeg"
#. a5p4d
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6594
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6651
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Uitleg"
#. TbQMa
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6646
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6703
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "Uitleg"
#. R5zY7
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7391
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7448
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
#. iEmZn
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7442
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7499
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing"
#. jYD7j
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8259
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8316
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
#. Lbj5B
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8311
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8368
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
#. 35kA2
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8978
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9035
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
#. ZGh8C
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9030
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9087
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Vertoon Merker"
#. W5JNf
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10339
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10396
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
#. UBApt
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10391
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10448
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "Tabel"
#. fDEwj
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11729
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11786
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Im_age"
msgstr "Beeld"
#. ekWoX
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11782
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11839
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Beeld"
#. 8eQN8
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13221
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "T_eken"
#. FBf68
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13219
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13276
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "Teken"
#. DoVwy
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14252
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14309
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
#. JXKiY
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14308
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14365
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "Objek"
#. q8wnS
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15049
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15106
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
#. 7HDt3
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15105
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15162
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "Media"
#. vSDok
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15764
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15821
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Druk"
#. goiqQ
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15819
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15876
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Druk"
#. EBGs5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17202
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17259
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Vorm"
#. EKA8X
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17257
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17314
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. 8SvE5
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17336
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17393
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. WH5NR
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17394
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:17451
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. 8fhwb
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18395
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18452
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. kpc43
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18447
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:18504
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -23576,11 +23510,11 @@ msgctxt "optcompatpage|format"
msgid "Add spacing between paragraphs and tables"
msgstr "Spasieer tussen paragrawe en tabelle"
-#. b8Byk
+#. KaYuf
#: sw/uiconfig/swriter/ui/optcompatpage.ui:226
msgctxt "optcompatpage|format"
-msgid "Add paragraph and table spacing at tops of pages"
-msgstr "Voeg paragraaf- en tabelspasies in boaan bladsye"
+msgid "Add paragraph and table spacing at top of first page and page breaks"
+msgstr ""
#. QuEtV
#: sw/uiconfig/swriter/ui/optcompatpage.ui:227
@@ -23654,32 +23588,38 @@ msgctxt "optcompatpage|format"
msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr "Versteek paragrawe met databasisvelde (bv. massapos) met ’n leë waarde"
-#. YBG9Y
+#. XFTqo
#: sw/uiconfig/swriter/ui/optcompatpage.ui:239
msgctxt "optcompatpage|format"
+msgid "Render non-breaking spaces (NBSP) as standard-space-width (off for fixed size)"
+msgstr "Gee nie-breek spasies (NBSP) as standaard-spasie-breedte (onaktief vir vaste breedte)"
+
+#. YBG9Y
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:240
+msgctxt "optcompatpage|format"
msgid "<User settings>"
msgstr "<Gebruikerinstellings>"
#. i4UkP
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:249
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:250
msgctxt "optcompatpage|default"
msgid "Use as _Default"
msgstr "Gebruik as _verstek"
#. ZVuBe
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:257
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:258
msgctxt "extended_tip|default"
msgid "Click to use the current settings on this tab page as the default for further sessions with Writer."
msgstr "Klik om die huidige instellings op hierdie bladbladsy as die verstek vir verdere sessies met Writer te gebruik."
#. XAXU2
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:272
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:273
msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
msgstr "Versoenbaarheidsopsies vir “%DOCNAME”"
#. XAThv
-#: sw/uiconfig/swriter/ui/optcompatpage.ui:287
+#: sw/uiconfig/swriter/ui/optcompatpage.ui:288
msgctxt "extended_tip|OptCompatPage"
msgid "Specifies compatibility settings for text documents. These options help in fine-tuning Writer when importing Microsoft Word documents."
msgstr "Spesifiseer versoenbaarheidsinstellings vir teksdokumente. Hierdie opsies help Writer verfyn met die invoer van Microsoft Word-dokumente."
@@ -25432,6 +25372,18 @@ msgctxt "pagemargincontrol|label1"
msgid "Custom"
msgstr "Doelgemaak"
+#. LKnbm
+#: sw/uiconfig/swriter/ui/pagemargincontrol.ui:474
+msgctxt "pagemargincontrol|moreoptions"
+msgid "_More Options"
+msgstr ""
+
+#. SGvTq
+#: sw/uiconfig/swriter/ui/pagemargincontrol.ui:478
+msgctxt "pagemargincontrol|moreoptions|tooltip_text"
+msgid "More Options"
+msgstr ""
+
#. DVeaU
#: sw/uiconfig/swriter/ui/pagenumberdlg.ui:8
msgctxt "pagenumberdlg|PageNumberDialog"
@@ -29248,86 +29200,152 @@ msgctxt "titlepage|label7"
msgid "Place title pages at:"
msgstr "Plaas titelbladsye:"
+#. Vx88Z
+#: sw/uiconfig/swriter/ui/titlepage.ui:165
+msgctxt "titlepage|extended_tip|NF_PAGE_COUNT"
+msgid "Set the number of title pages to insert."
+msgstr ""
+
#. y5Tiz
-#: sw/uiconfig/swriter/ui/titlepage.ui:191
+#: sw/uiconfig/swriter/ui/titlepage.ui:196
msgctxt "titlepage|RB_USE_EXISTING_PAGES"
msgid "Converting existing pages to title pages"
msgstr "Omskep bestaande bladsye in Titel bladsye"
+#. BJnEY
+#: sw/uiconfig/swriter/ui/titlepage.ui:206
+msgctxt "titlepage|extended_tip|RB_USE_EXISTING_PAGES"
+msgid "Change the current page style to First Page and the following pages will have the Default Page Style."
+msgstr ""
+
#. B4uzg
-#: sw/uiconfig/swriter/ui/titlepage.ui:208
+#: sw/uiconfig/swriter/ui/titlepage.ui:218
msgctxt "titlepage|RB_INSERT_NEW_PAGES"
msgid "Insert new title pages"
msgstr "Voeg nuwe Titel bladsye in"
+#. 2pKvd
+#: sw/uiconfig/swriter/ui/titlepage.ui:228
+msgctxt "titlepage|extended_tip|RB_INSERT_NEW_PAGES"
+msgid "Insert a page break and change the current page style to First Page."
+msgstr ""
+
#. 9UqEG
-#: sw/uiconfig/swriter/ui/titlepage.ui:225
+#: sw/uiconfig/swriter/ui/titlepage.ui:240
msgctxt "titlepage|RB_DOCUMENT_START"
msgid "Document start"
msgstr "Aan dokumentbegin"
+#. d5wQ6
+#: sw/uiconfig/swriter/ui/titlepage.ui:252
+msgctxt "titlepage|extended_tip|RB_DOCUMENT_START"
+msgid "The title pages are inserted before the first page of the document."
+msgstr ""
+
#. UE6DM
-#: sw/uiconfig/swriter/ui/titlepage.ui:244
+#: sw/uiconfig/swriter/ui/titlepage.ui:264
msgctxt "titlepage|RB_PAGE_START"
msgid "Page"
msgstr "Bladsy"
+#. 5MCqs
+#: sw/uiconfig/swriter/ui/titlepage.ui:276
+msgctxt "titlepage|extended_tip|RB_PAGE_START"
+msgid "The title pages are inserted at the page specified by its current numbering."
+msgstr ""
+
#. S3vFc
-#: sw/uiconfig/swriter/ui/titlepage.ui:272
+#: sw/uiconfig/swriter/ui/titlepage.ui:297
msgctxt "titlepage|label1"
msgid "Make Title Pages"
msgstr "Maak titelbladsye"
#. JKtfh
-#: sw/uiconfig/swriter/ui/titlepage.ui:301
+#: sw/uiconfig/swriter/ui/titlepage.ui:326
msgctxt "titlepage|CB_RESTART_NUMBERING"
msgid "Reset page numbering after title pages"
msgstr "Stel bladsynommers terug na titelbladsye"
+#. Z4Ef6
+#: sw/uiconfig/swriter/ui/titlepage.ui:334
+msgctxt "titlepage|extended_tip|CB_RESTART_NUMBERING"
+msgid "When checked, stop current numbering page count and restart numbering after the last inserted title page."
+msgstr ""
+
#. FY2CJ
-#: sw/uiconfig/swriter/ui/titlepage.ui:324
+#: sw/uiconfig/swriter/ui/titlepage.ui:354
msgctxt "titlepage|FT_PAGE_COUNT"
msgid "Page number:"
msgstr "Bladsynommer:"
+#. zfzEK
+#: sw/uiconfig/swriter/ui/titlepage.ui:376
+msgctxt "titlepage|extended_tip|NF_RESTART_NUMBERING"
+msgid "Set the page number of the page following the last title page."
+msgstr ""
+
#. JdY9e
-#: sw/uiconfig/swriter/ui/titlepage.ui:360
+#: sw/uiconfig/swriter/ui/titlepage.ui:395
msgctxt "titlepage|CB_SET_PAGE_NUMBER"
msgid "Set page number for first title page"
msgstr "Stel bladsynommer vir eerste titelbladsy"
+#. ATkRE
+#: sw/uiconfig/swriter/ui/titlepage.ui:403
+msgctxt "titlepage|extended_tip|CB_SET_PAGE_NUMBER"
+msgid "When checked, set the page number for the first title page inserted."
+msgstr ""
+
#. TxHWZ
-#: sw/uiconfig/swriter/ui/titlepage.ui:383
+#: sw/uiconfig/swriter/ui/titlepage.ui:423
msgctxt "titlepage|FT_PAGE_PAGES"
msgid "Page number:"
msgstr "Bladsynommer:"
+#. BnCXc
+#: sw/uiconfig/swriter/ui/titlepage.ui:445
+msgctxt "titlepage|extended_tip|NF_SET_PAGE_NUMBER"
+msgid "Set the page number for the first title page."
+msgstr ""
+
#. nJXn9
-#: sw/uiconfig/swriter/ui/titlepage.ui:423
+#: sw/uiconfig/swriter/ui/titlepage.ui:468
msgctxt "titlepage|label2"
msgid "Page Numbering"
msgstr "Bladsynommers"
#. rQqDD
-#: sw/uiconfig/swriter/ui/titlepage.ui:453
+#: sw/uiconfig/swriter/ui/titlepage.ui:498
msgctxt "titlepage|label4"
msgid "_Style:"
msgstr "_Styl:"
+#. DQFWh
+#: sw/uiconfig/swriter/ui/titlepage.ui:514
+msgctxt "titlepage|extended_tip|LB_PAGE_PROPERTIES"
+msgid "Select the page style from the available pages styles in the document."
+msgstr ""
+
#. 4XAV9
-#: sw/uiconfig/swriter/ui/titlepage.ui:476
+#: sw/uiconfig/swriter/ui/titlepage.ui:526
msgctxt "titlepage|PB_PAGE_PROPERTIES"
msgid "Edit..."
msgstr "Redigeer..."
+#. rxjQG
+#: sw/uiconfig/swriter/ui/titlepage.ui:532
+msgctxt "titlepage|extended_tip|PB_PAGE_PROPERTIES"
+msgid "Click to edit the page style."
+msgstr ""
+
#. puRGq
-#: sw/uiconfig/swriter/ui/titlepage.ui:493
+#: sw/uiconfig/swriter/ui/titlepage.ui:548
msgctxt "titlepage|label3"
msgid "Edit Page Properties"
msgstr "Redigeer bladsy-eienskappe"
#. pGbpm
-#: sw/uiconfig/swriter/ui/titlepage.ui:525
+#: sw/uiconfig/swriter/ui/titlepage.ui:577
msgctxt "titlepage|extended_tip|DLG_TITLEPAGE"
msgid "Insert title pages in your document."
msgstr "Voeg in Titel bladsye in u dokument."
@@ -31036,8 +31054,14 @@ msgctxt "wordcount|standardizedpages"
msgid "Standardized pages"
msgstr "Gestandaardiseerde bladsye"
+#. BvVDH
+#: sw/uiconfig/swriter/ui/wordcount.ui:326
+msgctxt "wordcount|lbComments"
+msgid "Comments"
+msgstr ""
+
#. mQfaX
-#: sw/uiconfig/swriter/ui/wordcount.ui:343
+#: sw/uiconfig/swriter/ui/wordcount.ui:369
msgctxt "wordcount|extended_tip|WordCountDialog"
msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection."
msgstr "Tel die aantal woorde en karakters, met of sonder spasies, in die huidige seleksie en in die hele dokument. Die telling word deurlopend bygehou as u verdere inskrywings doen of die keuse verander."
diff --git a/source/af/uui/messages.po b/source/af/uui/messages.po
index a7c99e66dee..21969d9c569 100644
--- a/source/af/uui/messages.po
+++ b/source/af/uui/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: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-10-21 14:19+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560969657.000000\n"
#. DLY8p
@@ -40,17 +40,14 @@ msgctxt "RID_UUI_ERRHDL"
msgid "Target already exists."
msgstr "Teiken bestaan reeds."
-#. KneVX
+#. yMuBR
#: uui/inc/ids.hrc:41
msgctxt "RID_UUI_ERRHDL"
msgid ""
-"You are about to save/export a password protected BASIC library containing module(s) \n"
+"You are saving a password protected Basic library containing the following large module(s): \n"
"$(ARG1)\n"
-"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
+"Storing those large module(s) in binary format, which is necessary for password protection, makes them unreadable in versions older than LibreOffice 5.0.3. If you want this please split the module into smaller pieces."
msgstr ""
-"Jy is op die punt om 'n wagwoord beskermde BASIC-biblioteek te stoor/uitskryf wat module(s) bevat\n"
-"$(ARG1)\n"
-"wat te groot is om in binêre formaat te stoor. As jy wil hê dat gebruikers wat nie toegang tot die biblioteekwagwoord het nie, makro's in daardie module(s) kan laat loop, moet jy daardie modules in kleiner modules opdeel. Wil jy voortgaan om hierdie biblioteek te stoor/uitskryf?"
#. 3rNDF
#: uui/inc/ids.hrc:43
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index 1d1dcc9c026..25c066ba759 100644
--- a/source/af/vcl/messages.po
+++ b/source/af/vcl/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: 2023-06-26 15:07+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-07-02 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.15.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547709865.000000\n"
#. k5jTM
@@ -601,31 +601,31 @@ msgid "_Yes"
msgstr "_Ja"
#. CXDQa
-#: vcl/inc/printaccessoryview.hrc:27
+#: vcl/inc/printaccessoryview.hrc:29
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Preview"
msgstr "Voorskou"
#. BgxCz
-#: vcl/inc/printaccessoryview.hrc:28
+#: vcl/inc/printaccessoryview.hrc:30
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Page number"
msgstr "Bladsynommer"
#. BEgxh
-#: vcl/inc/printaccessoryview.hrc:29
+#: vcl/inc/printaccessoryview.hrc:31
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Number of pages"
msgstr "Aantal bladsye"
#. xV2vm
-#: vcl/inc/printaccessoryview.hrc:30
+#: vcl/inc/printaccessoryview.hrc:32
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "More"
msgstr "Meer"
#. QWCDs
-#: vcl/inc/printaccessoryview.hrc:31
+#: vcl/inc/printaccessoryview.hrc:33
msgctxt "SV_PRINT_NATIVE_STRINGS"
msgid "Print selection only"
msgstr "Druk slegs seleksie"
@@ -1117,163 +1117,169 @@ msgctxt "STR_UNSAVED_DOCUMENTS"
msgid "There are unsaved documents"
msgstr "Daar is ongestoorde dokumente"
+#. LXCUf
+#: vcl/inc/strings.hrc:128
+msgctxt "editmenu|specialchar"
+msgid "_Special Character..."
+msgstr "_Spesiale karakter..."
+
#. V2EuY
#. To translators: This is the first entry of a sequence of measurement unit names
-#: vcl/inc/units.hrc:28
+#: vcl/inc/units.hrc:31
msgctxt "SV_FUNIT_STRINGS"
msgid "mm"
msgstr "mm"
#. fH7MJ
-#: vcl/inc/units.hrc:29
+#: vcl/inc/units.hrc:32
msgctxt "SV_FUNIT_STRINGS"
msgid "cm"
msgstr "cm"
#. B5tmt
-#: vcl/inc/units.hrc:30
+#: vcl/inc/units.hrc:33
msgctxt "SV_FUNIT_STRINGS"
msgid "m"
msgstr "m"
#. XyxEA
-#: vcl/inc/units.hrc:31
+#: vcl/inc/units.hrc:34
msgctxt "SV_FUNIT_STRINGS"
msgid "km"
msgstr "km"
#. z6nfj
-#: vcl/inc/units.hrc:32
+#: vcl/inc/units.hrc:35
msgctxt "SV_FUNIT_STRINGS"
msgid "twips"
msgstr "Twips"
#. gi2y8
-#: vcl/inc/units.hrc:33
+#: vcl/inc/units.hrc:36
msgctxt "SV_FUNIT_STRINGS"
msgid "twip"
msgstr "Twip"
#. Rk9tP
-#: vcl/inc/units.hrc:34
+#: vcl/inc/units.hrc:37
msgctxt "SV_FUNIT_STRINGS"
msgid "pt"
msgstr "pt"
#. J6AgQ
-#: vcl/inc/units.hrc:35
+#: vcl/inc/units.hrc:38
msgctxt "SV_FUNIT_STRINGS"
msgid "pc"
msgstr "pc"
#. oC8K4
#. To translators: double prime symbol for inch
-#: vcl/inc/units.hrc:37
+#: vcl/inc/units.hrc:40
msgctxt "SV_FUNIT_STRINGS"
msgid "″"
msgstr "\""
#. AEhCN
-#: vcl/inc/units.hrc:38
+#: vcl/inc/units.hrc:41
msgctxt "SV_FUNIT_STRINGS"
msgid "\""
msgstr "\""
#. wmf3u
-#: vcl/inc/units.hrc:39
+#: vcl/inc/units.hrc:42
msgctxt "SV_FUNIT_STRINGS"
msgid "in"
msgstr "dm"
#. GEHxy
-#: vcl/inc/units.hrc:40
+#: vcl/inc/units.hrc:43
msgctxt "SV_FUNIT_STRINGS"
msgid "inch"
msgstr "duim"
#. 4AEJE
#. To translators: prime symbol for foot
-#: vcl/inc/units.hrc:42
+#: vcl/inc/units.hrc:45
msgctxt "SV_FUNIT_STRINGS"
msgid "′"
msgstr "'"
#. RYzjD
-#: vcl/inc/units.hrc:43
+#: vcl/inc/units.hrc:46
msgctxt "SV_FUNIT_STRINGS"
msgid "'"
msgstr "'"
#. a64NT
-#: vcl/inc/units.hrc:44
+#: vcl/inc/units.hrc:47
msgctxt "SV_FUNIT_STRINGS"
msgid "ft"
msgstr "vt"
#. fbTuQ
-#: vcl/inc/units.hrc:45
+#: vcl/inc/units.hrc:48
msgctxt "SV_FUNIT_STRINGS"
msgid "foot"
msgstr "voet"
#. BvZ6A
-#: vcl/inc/units.hrc:46
+#: vcl/inc/units.hrc:49
msgctxt "SV_FUNIT_STRINGS"
msgid "feet"
msgstr "voet"
#. S4uRP
-#: vcl/inc/units.hrc:47
+#: vcl/inc/units.hrc:50
msgctxt "SV_FUNIT_STRINGS"
msgid "miles"
msgstr "myl"
#. hCKye
-#: vcl/inc/units.hrc:48
+#: vcl/inc/units.hrc:51
msgctxt "SV_FUNIT_STRINGS"
msgid "mile"
msgstr "myl"
#. UXbT9
-#: vcl/inc/units.hrc:49
+#: vcl/inc/units.hrc:52
msgctxt "SV_FUNIT_STRINGS"
msgid "ch"
msgstr "kar"
#. 9vsPY
-#: vcl/inc/units.hrc:50
+#: vcl/inc/units.hrc:53
msgctxt "SV_FUNIT_STRINGS"
msgid "line"
msgstr "reëls"
#. z2hxz
-#: vcl/inc/units.hrc:51
+#: vcl/inc/units.hrc:54
msgctxt "SV_FUNIT_STRINGS"
msgid "pixels"
msgstr "pixels"
#. BpgcD
-#: vcl/inc/units.hrc:52
+#: vcl/inc/units.hrc:55
msgctxt "SV_FUNIT_STRINGS"
msgid "pixel"
msgstr "pixel"
#. eJWWH
#. To translators: degree
-#: vcl/inc/units.hrc:54
+#: vcl/inc/units.hrc:57
msgctxt "SV_FUNIT_STRINGS"
msgid "°"
msgstr "°"
#. heHMt
-#: vcl/inc/units.hrc:55
+#: vcl/inc/units.hrc:58
msgctxt "SV_FUNIT_STRINGS"
msgid "sec"
msgstr "sek."
#. zE8rv
#. To translators: This is the last entry of the sequence of measurement unit names
-#: vcl/inc/units.hrc:57
+#: vcl/inc/units.hrc:60
msgctxt "SV_FUNIT_STRINGS"
msgid "ms"
msgstr "ms"
@@ -1806,12 +1812,6 @@ msgctxt "editmenu|selectall"
msgid "Select _All"
msgstr "Kies _alles"
-#. LXCUf
-#: vcl/uiconfig/ui/editmenu.ui:72
-msgctxt "editmenu|specialchar"
-msgid "_Special Character..."
-msgstr "_Spesiale karakter..."
-
#. eESV5
#: vcl/uiconfig/ui/errornocontentdialog.ui:7
msgctxt "errornocontentdialog|ErrorNoContentDialog"
@@ -2468,74 +2468,32 @@ msgctxt "printerdevicepage|label10"
msgid "Co_lor:"
msgstr "K_leur:"
-#. LG4Fe
-#: vcl/uiconfig/ui/printerdevicepage.ui:202
-msgctxt "printerdevicepage|label9"
-msgid "Printer language _type:"
-msgstr "Soort drukker_taal:"
-
-#. yDrz5
-#: vcl/uiconfig/ui/printerdevicepage.ui:218
-msgctxt "printerdevicepage|liststore1"
-msgid "Automatic : %s"
-msgstr "Outomaties: %s"
-
-#. Wy3NQ
-#: vcl/uiconfig/ui/printerdevicepage.ui:219
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript (Level from driver)"
-msgstr "PostScript (vlak vanaf aandrywer)"
-
-#. nStXM
-#: vcl/uiconfig/ui/printerdevicepage.ui:220
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript Level 1"
-msgstr "PostScript vlak 1"
-
-#. gYGZU
-#: vcl/uiconfig/ui/printerdevicepage.ui:221
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript Level 2"
-msgstr "PostScript vlak 2"
-
-#. JWNYo
-#: vcl/uiconfig/ui/printerdevicepage.ui:222
-msgctxt "printerdevicepage|liststore1"
-msgid "PostScript Level 3"
-msgstr "PostScript vlak 3"
-
-#. oaC9C
-#: vcl/uiconfig/ui/printerdevicepage.ui:223
-msgctxt "printerdevicepage|liststore1"
-msgid "PDF"
-msgstr "PDF"
-
#. yCnjf
-#: vcl/uiconfig/ui/printerdevicepage.ui:236
+#: vcl/uiconfig/ui/printerdevicepage.ui:203
msgctxt "printerdevicepage|colorspace"
msgid "From driver"
msgstr "Vanaf aandrywer"
#. WXFof
-#: vcl/uiconfig/ui/printerdevicepage.ui:237
+#: vcl/uiconfig/ui/printerdevicepage.ui:204
msgctxt "printerdevicepage|colorspace"
msgid "Color"
msgstr "Kleur"
#. VGAv4
-#: vcl/uiconfig/ui/printerdevicepage.ui:238
+#: vcl/uiconfig/ui/printerdevicepage.ui:205
msgctxt "printerdevicepage|colorspace"
msgid "Grayscale"
msgstr "Grysskaal"
#. eG4W8
-#: vcl/uiconfig/ui/printerdevicepage.ui:251
+#: vcl/uiconfig/ui/printerdevicepage.ui:218
msgctxt "printerdevicepage|colordepth"
msgid "8 Bit"
msgstr "8 bis"
#. HAD2U
-#: vcl/uiconfig/ui/printerdevicepage.ui:252
+#: vcl/uiconfig/ui/printerdevicepage.ui:219
msgctxt "printerdevicepage|colordepth"
msgid "24 Bit"
msgstr "24 bis"
diff --git a/source/af/xmlsecurity/messages.po b/source/af/xmlsecurity/messages.po
index 4221cdd5048..ab3d64b26a0 100644
--- a/source/af/xmlsecurity/messages.po
+++ b/source/af/xmlsecurity/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: 2023-05-03 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2021-02-01 16:18+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/af/>\n"
@@ -94,8 +94,14 @@ msgctxt "STR_THUMBPRINT_MD5"
msgid "Thumbprint MD5"
msgstr "Duimnael-MD5"
-#. YFxBG
+#. s3fND
#: xmlsecurity/inc/strings.hrc:38
+msgctxt "STR_XMLSECDLG_OPENED_CRTMGR"
+msgid "You have opened the certificate manager at\n"
+msgstr ""
+
+#. YFxBG
+#: xmlsecurity/inc/strings.hrc:39
msgctxt "STR_XMLSECDLG_OLD_ODF_FORMAT"
msgid ""
"This document contains signatures in ODF 1.1 (OpenOffice.org 2.x) format. Signing documents in %PRODUCTNAME %PRODUCTVERSION requires ODF 1.2 format version. Thus no signatures can be added or removed to this document.\n"
@@ -107,7 +113,7 @@ msgstr ""
"Stoor dokument in ODF 1.2-formaat en voeg alle verlangde handtekeninge weer in."
#. cfswe
-#: xmlsecurity/inc/strings.hrc:42
+#: xmlsecurity/inc/strings.hrc:43
msgctxt "STR_XMLSECDLG_QUERY_REMOVEDOCSIGNBEFORESIGN"
msgid ""
"Adding or removing a macro signature will remove all document signatures.\n"
@@ -117,7 +123,7 @@ msgstr ""
"Wil u regtig voortgaan?"
#. CgnGz
-#: xmlsecurity/inc/strings.hrc:44
+#: xmlsecurity/inc/strings.hrc:45
msgctxt "STR_XMLSECDLG_QUERY_REALLYREMOVE"
msgid ""
"Document signature cannot be restored, once removed.\n"
@@ -127,97 +133,97 @@ msgstr ""
"Wil u regtig die geselekteerde handtekening verwyder?"
#. 4brTC
-#: xmlsecurity/inc/strings.hrc:47
+#: xmlsecurity/inc/strings.hrc:48
msgctxt "STR_XMLSECDLG_SIGNING_FAILED"
msgid "An error occurred while adding the signature."
msgstr "Fout het onstaan tydens die handtekening se byvoeging."
#. 6Qkuk
-#: xmlsecurity/inc/strings.hrc:48
+#: xmlsecurity/inc/strings.hrc:49
msgctxt "STR_XMLSECDLG_NO_CERT_MANAGER"
msgid "Could not find any certificate manager."
msgstr "Kan nie 'n sertifikaatbestuurder vind nie."
#. nUWMF
-#: xmlsecurity/inc/strings.hrc:49
+#: xmlsecurity/inc/strings.hrc:50
msgctxt "STR_XMLSECDLG_NO_CERT_FOUND"
msgid "Could not find the certificate."
msgstr "Kan nie die sertifikaat vind nie."
#. hXMQx
-#: xmlsecurity/inc/strings.hrc:51
+#: xmlsecurity/inc/strings.hrc:52
msgctxt "RID_XMLSECWB_NO_MOZILLA_PROFILE"
msgid "Digital signatures functionality could not be used, because no Mozilla user profile was found. Please check the Mozilla installation."
msgstr "Digitale handtekeninge kon nie gebruik word nie omdat daar geen Mozilla-gebruikersprofiel is. Kontroleer die Mozilla-installasie."
#. dNPzJ
-#: xmlsecurity/inc/strings.hrc:53
+#: xmlsecurity/inc/strings.hrc:54
msgctxt "selectcertificatedialog|STR_DIGITAL_SIGNATURE"
msgid "Digital signature"
msgstr "Digitale handtekening"
#. ojssM
-#: xmlsecurity/inc/strings.hrc:54
+#: xmlsecurity/inc/strings.hrc:55
msgctxt "selectcertificatedialog|STR_NON_REPUDIATION"
msgid "Non-repudiation"
msgstr "Onmiskenbaar"
#. kYHCr
-#: xmlsecurity/inc/strings.hrc:55
+#: xmlsecurity/inc/strings.hrc:56
msgctxt "selectcertificatedialog|STR_KEY_ENCIPHERMENT"
msgid "Key encipherment"
msgstr "Sleutel enkripsie"
#. sEQDG
-#: xmlsecurity/inc/strings.hrc:56
+#: xmlsecurity/inc/strings.hrc:57
msgctxt "selectcertificatedialog|STR_DATA_ENCIPHERMENT"
msgid "Data encipherment"
msgstr "Data enkripsie"
#. dpZvA
-#: xmlsecurity/inc/strings.hrc:57
+#: xmlsecurity/inc/strings.hrc:58
msgctxt "selectcertificatedialog|STR_KEY_AGREEMENT"
msgid "Key Agreement"
msgstr "Sleutel Uitruiling"
#. dREUL
-#: xmlsecurity/inc/strings.hrc:58
+#: xmlsecurity/inc/strings.hrc:59
msgctxt "selectcertificatedialog|STR_KEY_CERT_SIGN"
msgid "Certificate signature verification"
msgstr "Handtekening Sertifikaat Verifikasie"
#. GQcAW
-#: xmlsecurity/inc/strings.hrc:59
+#: xmlsecurity/inc/strings.hrc:60
msgctxt "selectcertificatedialog|STR_CRL_SIGN"
msgid "CRL signature verification"
msgstr "CRL Handtekening Verifikasie"
#. i8FJM
-#: xmlsecurity/inc/strings.hrc:60
+#: xmlsecurity/inc/strings.hrc:61
msgctxt "selectcertificatedialog|STR_ENCIPHER_ONLY"
msgid "Only for encipherment"
msgstr "Slegs vir Enkripsie"
#. 4oZqX
-#: xmlsecurity/inc/strings.hrc:61
+#: xmlsecurity/inc/strings.hrc:62
msgctxt "selectcertificatedialog|str_sign"
msgid "Sign"
msgstr "Teken"
#. tMAzV
-#: xmlsecurity/inc/strings.hrc:62
+#: xmlsecurity/inc/strings.hrc:63
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
msgstr "Selekteer"
#. Gr5gE
-#: xmlsecurity/inc/strings.hrc:63
+#: xmlsecurity/inc/strings.hrc:64
msgctxt "selectcertificatedialog|str_encrypt"
msgid "Encrypt"
msgstr "Enkripteer"
#. FSe5D
-#: xmlsecurity/inc/strings.hrc:65
+#: xmlsecurity/inc/strings.hrc:66
msgctxt "STR_BROKEN_MACRO_CERTIFICATE_DATA"
msgid ""
"Macro security problem!\n"
@@ -736,85 +742,91 @@ msgid "Trusted File Locations"
msgstr "Vertroude lêerliggings"
#. 8PVzB
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:24
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:20
msgctxt "selectcertificatedialog|SelectCertificateDialog"
msgid "Select Certificate"
msgstr "Kies sertifikaat"
#. 5iWSE
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:102
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:98
msgctxt "selectcertificatedialog|sign"
msgid "Select the certificate you want to use for signing:"
msgstr "Kies die sertifikaat wat u wil gebruik om te onderteken:"
#. jcCAA
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:113
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:109
msgctxt "selectcertificatedialog|encrypt"
msgid "Select the certificate you want to use for encryption:"
msgstr "Kies die sertifikaat wat u wil gebruik vir enkripsie:"
#. 69438
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:145
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:141
msgctxt "selectcertificatedialog|issuedto"
msgid "Issued to"
msgstr "Uitgereik aan"
#. qiZ9B
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:158
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:156
msgctxt "selectcertificatedialog|issuedby"
msgid "Issued by"
msgstr "Uitgereik deur"
-#. 7GEah
+#. tAbBf
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:171
msgctxt "selectcertificatedialog|type"
-msgid "Type"
-msgstr "Soort"
-
-#. BCy3f
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:184
-msgctxt "selectcertificatedialog|expiration"
msgid "Expiration date"
-msgstr "Vervaldatum"
-
-#. MtTXb
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:197
-msgctxt "selectcertificatedialog|usage"
-msgid "Certificate usage"
-msgstr "Gebruik die Sertifikaat"
+msgstr ""
#. ANyft
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:208
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:184
msgctxt "selectcertificatedialog|extended_tip|signatures"
msgid "Select the certificate that you want to digitally sign the current document with."
msgstr "Kies die sertifikaat waarmee u die huidige dokument digitaal wil onderteken."
+#. 5imAy
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:204
+msgctxt "selectcertificatedialog|extended_tip|searchbox"
+msgid "Search for certificate by issuer name or email."
+msgstr ""
+
+#. dbgmP
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:222
+msgctxt "selectcertificatedialog|label2"
+msgid "Description:"
+msgstr "Beskrywing:"
+
+#. LbnAV
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:238
+msgctxt "selectcertificatedialog|extended_tip|description"
+msgid "Type a purpose for the signature."
+msgstr "Voer 'n doel vir die handtekening in."
+
#. uwjMQ
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:221
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:262
msgctxt "selectcertificatedialog|viewcert"
msgid "View Certificate..."
msgstr "Bekyk sertifikaat..."
#. zqWDZ
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:228
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:269
msgctxt "selectcertificatedialog|extended_tip|viewcert"
msgid "Opens the View Certificate dialog where you can examine the selected certificate."
msgstr "Maak die \"Toon Sertifikaat\"-dialoog oop waarin u die geselekteerde sertifikaat kan nagaan."
-#. dbgmP
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:246
-msgctxt "selectcertificatedialog|label2"
-msgid "Description:"
-msgstr "Beskrywing:"
+#. VhBN9
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:281
+msgctxt "selectcertificatedialog|reloadcert"
+msgid "Reload Certificates"
+msgstr ""
-#. LbnAV
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:262
-msgctxt "selectcertificatedialog|extended_tip|description"
-msgid "Type a purpose for the signature."
-msgstr "Voer 'n doel vir die handtekening in."
+#. AGWLN
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:288
+msgctxt "selectcertificatedialog|extended_tip|reloadcert"
+msgid "Reload the list of certificates."
+msgstr ""
#. snAQh
-#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:297
+#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:320
msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog"
msgid "Select the certificate that you want to digitally sign the current document with."
msgstr "Kies die sertifikaat waarmee u die huidige dokument digitaal wil onderteken."
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index ad527e575a7..6213f259b97 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/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: 2023-07-06 10:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2023-02-05 17:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -147,184 +147,118 @@ msgctxt "stock"
msgid "_Yes"
msgstr "_አዎ"
-#. E6GDh
-#: cui/inc/strings.hrc:23
-msgctxt "RID_SVXSTR_KEY_CONFIG_DIR"
-msgid "Configuration"
-msgstr "ማዋቀሪያ"
-
#. z7dmW
-#: cui/inc/strings.hrc:24
+#: cui/inc/strings.hrc:23
msgctxt "RID_SVXSTR_KEY_WORK_PATH"
msgid "My Documents"
msgstr "የኔ ሰነዶች"
#. wnMWp
-#: cui/inc/strings.hrc:25
+#: cui/inc/strings.hrc:24
msgctxt "RID_SVXSTR_KEY_GRAPHICS_PATH"
msgid "Images"
msgstr "ምስሎች"
-#. AnM4M
-#: cui/inc/strings.hrc:26
-msgctxt "RID_SVXSTR_KEY_BITMAP_PATH"
-msgid "Icons"
-msgstr "ምልክቶች"
-
-#. bpvbo
-#: cui/inc/strings.hrc:27
-msgctxt "RID_SVXSTR_KEY_PALETTE_PATH"
-msgid "Palettes"
-msgstr "ማሰናጃ"
-
#. shiKT
-#: cui/inc/strings.hrc:28
+#: cui/inc/strings.hrc:25
msgctxt "RID_SVXSTR_KEY_BACKUP_PATH"
msgid "Backups"
msgstr "ተተኪዎች"
-#. ai8eF
-#: cui/inc/strings.hrc:29
-msgctxt "RID_SVXSTR_KEY_MODULES_PATH"
-msgid "Modules"
-msgstr "ክፍሎች"
-
#. WyhJD
-#: cui/inc/strings.hrc:30
+#: cui/inc/strings.hrc:26
msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH"
msgid "Templates"
msgstr "ቴምፕሌቶች"
#. mNj9y
-#: cui/inc/strings.hrc:31
+#: cui/inc/strings.hrc:27
msgctxt "RID_SVXSTR_KEY_GLOSSARY_PATH"
msgid "AutoText"
msgstr "በራሱ ጽሁፍ"
#. co7GJ
-#: cui/inc/strings.hrc:32
+#: cui/inc/strings.hrc:28
msgctxt "RID_SVXSTR_KEY_DICTIONARY_PATH"
msgid "Dictionaries"
msgstr "መዝገበ ቃላቶች"
#. MbjWM
-#: cui/inc/strings.hrc:33
+#: cui/inc/strings.hrc:29
msgctxt "RID_SVXSTR_KEY_HELP_DIR"
msgid "Help"
msgstr "እርዳታ"
#. u2bQB
-#: cui/inc/strings.hrc:34
+#: cui/inc/strings.hrc:30
msgctxt "RID_SVXSTR_KEY_GALLERY_DIR"
msgid "Gallery"
msgstr "አዳራሽ"
-#. 2umbs
-#: cui/inc/strings.hrc:35
-msgctxt "RID_SVXSTR_KEY_STORAGE_DIR"
-msgid "Message Storage"
-msgstr "መልእክት ማጠራቀሚያ"
-
#. oMdF8
-#: cui/inc/strings.hrc:36
+#: cui/inc/strings.hrc:31
msgctxt "RID_SVXSTR_KEY_TEMP_PATH"
msgid "Temporary files"
msgstr "ጊዜያዊ ፋይሎች"
-#. 4DDzW
-#: cui/inc/strings.hrc:37
-msgctxt "RID_SVXSTR_KEY_PLUGINS_PATH"
-msgid "Plug-ins"
-msgstr "ተሰኪ-ዎች"
-
-#. v5YHp
-#: cui/inc/strings.hrc:38
-msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR"
-msgid "Folder Bookmarks"
-msgstr "የ ፎልደር ምልክት ማድረጊያዎች"
-
-#. AJkga
-#: cui/inc/strings.hrc:39
-msgctxt "RID_SVXSTR_KEY_FILTER_PATH"
-msgid "Filters"
-msgstr "ማጣሪያዎች"
-
-#. 2DKUC
-#: cui/inc/strings.hrc:40
-msgctxt "RID_SVXSTR_KEY_ADDINS_PATH"
-msgid "Add-ins"
-msgstr "ተጨማ-ሪዎች"
-
-#. Tm2DM
-#: cui/inc/strings.hrc:41
-msgctxt "RID_SVXSTR_KEY_USERCONFIG_PATH"
-msgid "User Configuration"
-msgstr "ተጠቃሚ ማዋቀሪያዎች"
-
-#. ATuL4
-#: cui/inc/strings.hrc:42
-msgctxt "RID_SVXSTR_KEY_USERDICTIONARY_DIR"
-msgid "User-defined dictionaries"
-msgstr "ተጠቃሚው የተወሰነ መዝገበ ቃላት"
-
#. qxBAu
-#: cui/inc/strings.hrc:43
+#: cui/inc/strings.hrc:32
msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH"
msgid "Classification"
msgstr "መመደቢያ"
#. FrDws
-#: cui/inc/strings.hrc:44
+#: cui/inc/strings.hrc:33
msgctxt "RID_SVXSTR_KEY_AUTOCORRECT_DIR"
msgid "AutoCorrect"
msgstr "በራሱ አራሚ"
#. jD48Q
-#: cui/inc/strings.hrc:45
+#: cui/inc/strings.hrc:34
msgctxt "RID_SVXSTR_KEY_LINGUISTIC_DIR"
msgid "Writing aids"
msgstr "የ መጻፊያ እርዳታዎች"
#. VNK5b
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:47
+#: cui/inc/strings.hrc:36
msgctxt "RID_SVXSTR_NEW_MENU"
msgid "New Menu %n"
msgstr "አዲስ ዝርዝር %n"
#. dJXBJ
#. %n will be replaced at runtime by a number starting with 1 and increasing as necessary
-#: cui/inc/strings.hrc:49
+#: cui/inc/strings.hrc:38
msgctxt "RID_SVXSTR_NEW_TOOLBAR"
msgid "New Toolbar %n"
msgstr "አዲስ እቃ መደርደሪያ %n"
#. PCa2G
-#: cui/inc/strings.hrc:50
+#: cui/inc/strings.hrc:39
msgctxt "RID_SVXSTR_MOVE_MENU"
msgid "Move Menu"
msgstr "ዝርዝር ማንቀሳቀሻ"
#. KbZFf
-#: cui/inc/strings.hrc:51
+#: cui/inc/strings.hrc:40
msgctxt "RID_SVXSTR_ADD_SUBMENU"
msgid "Add Submenu"
msgstr "ንዑስ ዝርዝር መጨመሪያ"
#. w2qNv
-#: cui/inc/strings.hrc:52
+#: cui/inc/strings.hrc:41
msgctxt "RID_SVXSTR_SUBMENU_NAME"
msgid "Submenu name"
msgstr "የ ንዑስ ዝርዝር ስም"
#. qJgZw
-#: cui/inc/strings.hrc:53
+#: cui/inc/strings.hrc:42
msgctxt "RID_SVXSTR_DELETE_ICON_CONFIRM"
msgid "Are you sure to delete the image?"
msgstr "በእርግጥ ምስሉን ማጥፋት ይፈልጋሉ?"
#. d6e9K
-#: cui/inc/strings.hrc:54
+#: cui/inc/strings.hrc:43
msgctxt "RID_SVXSTR_REPLACE_ICON_WARNING"
msgid ""
"The icon %ICONNAME is already contained in the image list.\n"
@@ -334,19 +268,19 @@ msgstr ""
"አሁን ያለውን ምልክት መቀየር ይፈልጋሉ?"
#. FRvQe
-#: cui/inc/strings.hrc:55
+#: cui/inc/strings.hrc:44
msgctxt "RID_SVXSTR_REPLACE_ICON_CONFIRM"
msgid "Confirm Icon Replacement"
msgstr "ምልክት መቀየሩን ያረጋግጡ"
#. xC2Wc
-#: cui/inc/strings.hrc:56
+#: cui/inc/strings.hrc:45
msgctxt "RID_SVXSTR_YESTOALL"
msgid "Yes to All"
msgstr "ለሁሉም አዎ"
#. jCwDZ
-#: cui/inc/strings.hrc:57
+#: cui/inc/strings.hrc:46
msgctxt "RID_SXVSTR_CONFIRM_DELETE_TOOLBAR"
msgid "There are no more commands on the toolbar. Do you want to delete the toolbar?"
msgstr "በቱልባሩ ላይ ምንም ትእዛዝ የለም: ቱልባሩን ማጥፋት ይፈልጋሉ?"
@@ -355,935 +289,935 @@ msgstr "በቱልባሩ ላይ ምንም ትእዛዝ የለም: ቱልባሩን
#. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder
#. and will be replaced at runtime by the name of the selected application
#. or document.
-#: cui/inc/strings.hrc:62
+#: cui/inc/strings.hrc:51
msgctxt "RID_SVXSTR_CONFIRM_MENU_RESET"
msgid "The menu configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "ዝርዝር ማዋቀሪያው ወደ %SAVE IN SELECTION% ነባር አቀማመጥ ይመለሳል: መቀጠል ይፈልጋሉ?"
#. RYeCk
-#: cui/inc/strings.hrc:63
+#: cui/inc/strings.hrc:52
msgctxt "RID_SVXSTR_CONFIRM_TOOLBAR_RESET"
msgid "The toolbar configuration for %SAVE IN SELECTION% will be reset to the default settings. Do you want to continue?"
msgstr "የ እቃ ማዋቀሪያው ለ %SAVE IN SELECTION% ወደ ነባር ማሰናጃው ይመለሳል: መቀጠል ይፈልጋሉ?"
#. JgGvm
-#: cui/inc/strings.hrc:64
+#: cui/inc/strings.hrc:53
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT"
msgid "This will delete all changes previously made to this toolbar. Do you really want to reset the toolbar?"
msgstr "ይህ ቀደም ብለው የ ቀየሩትን ለውጦች በሙሉ ያጠፋዋል: የ እቃ መደርደሪያውን እንደነበረ መመለስ ይፈልጋሉ?"
#. 4s9MJ
-#: cui/inc/strings.hrc:65
+#: cui/inc/strings.hrc:54
msgctxt "RID_SVXSTR_CONFIRM_RESTORE_DEFAULT_MENU"
msgid "This will delete all changes previously made to this context menu. Do you really want to reset?"
msgstr "ይህ ቀደም ብለው በ አገባብ ዝርዝር ውስጥ የ ቀየሩትን ለውጦች በሙሉ ያጠፋዋል: እርስዎ በ እርግጥ እንደ ነበረ መመለስ ይፈልጋሉ?"
#. G2mu7
-#: cui/inc/strings.hrc:66
+#: cui/inc/strings.hrc:55
msgctxt "RID_SVXSTR_LABEL_NEW_NAME"
msgid "~New name"
msgstr "~አዲስ ስም"
#. Ahhg9
-#: cui/inc/strings.hrc:67
+#: cui/inc/strings.hrc:56
msgctxt "RID_SVXSTR_RENAME_MENU"
msgid "Rename Menu"
msgstr "ዝርዝሩን እንደገና መሰየሚያ"
#. CmDaN
-#: cui/inc/strings.hrc:68
+#: cui/inc/strings.hrc:57
msgctxt "RID_SVXSTR_RENAME_TOOLBAR"
msgid "Rename Toolbar"
msgstr "እቃ መደርደሪያ እንደገና መሰየሚያ"
#. GsaZE
-#: cui/inc/strings.hrc:69
+#: cui/inc/strings.hrc:58
msgctxt "RID_SVXSTR_ALL_COMMANDS"
msgid "All Commands"
msgstr "ሁሉም ትእዛዞች"
#. A7cUy
-#: cui/inc/strings.hrc:70
+#: cui/inc/strings.hrc:59
msgctxt "RID_SVXSTR_TABBED"
msgid "Tabbed"
msgstr "በ ምልክት"
#. xqrfE
-#: cui/inc/strings.hrc:71
+#: cui/inc/strings.hrc:60
msgctxt "RID_SVXSTR_TABBED_COMPACT"
msgid "Tabbed Compact"
msgstr "በ ምልክት አነስተኛ"
#. fLLH2
-#: cui/inc/strings.hrc:72
+#: cui/inc/strings.hrc:61
msgctxt "RID_SVXSTR_GROUPEDBAR"
msgid "Groupedbar"
msgstr "በ ቡድን መደርደሪያ"
#. AnFxX
-#: cui/inc/strings.hrc:73
+#: cui/inc/strings.hrc:62
msgctxt "RID_SVXSTR_GROUPEDBAR_COMPACT"
msgid "Groupedbar Compact"
msgstr "በ ቡድን መደርደሪያ አነስተኛ"
#. GN45E
-#: cui/inc/strings.hrc:75
+#: cui/inc/strings.hrc:64
msgctxt "RID_SVXSTR_HYPDLG_CLOSEBUT"
msgid "Close"
msgstr "መዝጊያ"
#. dkH9d
-#: cui/inc/strings.hrc:76
+#: cui/inc/strings.hrc:65
msgctxt "RID_SVXSTR_HYPDLG_MACROACT1"
msgid "Mouse over object"
msgstr "አይጥ በእቃዎች ላይ"
#. 4QYHe
-#: cui/inc/strings.hrc:77
+#: cui/inc/strings.hrc:66
msgctxt "RID_SVXSTR_HYPDLG_MACROACT2"
msgid "Trigger hyperlink"
msgstr "hyperlink ማስነሻ"
#. WMQPj
-#: cui/inc/strings.hrc:78
+#: cui/inc/strings.hrc:67
msgctxt "RID_SVXSTR_HYPDLG_MACROACT3"
msgid "Mouse leaves object"
msgstr "አይጥ እቃዎችን ሲተው"
#. ES4Pj
-#: cui/inc/strings.hrc:79
+#: cui/inc/strings.hrc:68
msgctxt "RID_SVXSTR_HYPERDLG_FORM_BUTTON"
msgid "Button"
msgstr "ቁልፍ"
#. MPHHF
-#: cui/inc/strings.hrc:80
+#: cui/inc/strings.hrc:69
msgctxt "RID_SVXSTR_HYPERDLG_FROM_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. 9nkb2
-#: cui/inc/strings.hrc:81
+#: cui/inc/strings.hrc:70
msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "ፋይሉ ቀደም ሲል ነበር ደርቤ ልጻፍበት?"
#. smWax
-#: cui/inc/strings.hrc:83
+#: cui/inc/strings.hrc:72
msgctxt "RID_SVXSTR_SELECT_FILE_IFRAME"
msgid "Select File for Floating Frame"
msgstr "ይምረጡ ፋይል ለማንሳፈፊያ ጠርዝ"
#. F74rR
-#: cui/inc/strings.hrc:84
+#: cui/inc/strings.hrc:73
msgctxt "RID_SVXSTR_ALLFUNCTIONS"
msgid "All commands"
msgstr "ሁሉንም ትእዛዞች"
#. EeB6i
-#: cui/inc/strings.hrc:85
+#: cui/inc/strings.hrc:74
msgctxt "RID_SVXSTR_MACROS"
msgid "Macros"
msgstr "ማክሮስ"
#. mkEjQ
-#: cui/inc/strings.hrc:86
+#: cui/inc/strings.hrc:75
msgctxt "RID_SVXSTR_MYMACROS"
msgid "My Macros"
msgstr "የ እኔ ማክሮስ"
#. nn7Gm
-#: cui/inc/strings.hrc:87
+#: cui/inc/strings.hrc:76
msgctxt "RID_SVXSTR_PRODMACROS"
msgid "Application Macros"
msgstr "የ ማክሮስ መተግበሪያ"
#. RGCGW
-#: cui/inc/strings.hrc:88
+#: cui/inc/strings.hrc:77
msgctxt "RID_SVXSTR_NOMACRODESC"
msgid "There is no description available for this macro."
msgstr "ለዚህ ማክሮ ምንም መግለጫ አልተገኘም"
#. AFniE
-#: cui/inc/strings.hrc:89
+#: cui/inc/strings.hrc:78
msgctxt "RID_SVXSTR_SELECTOR_RUN"
msgid "Run"
msgstr "ማስኬጃ"
#. whwAN
-#: cui/inc/strings.hrc:90
+#: cui/inc/strings.hrc:79
msgctxt "RID_SVXSTR_ROW"
msgid "Insert Rows"
msgstr "ረድፎች ማስገቢያ"
#. Su38S
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:92
+#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_INSERTROW_BEFORE"
msgid "Above selection"
msgstr "ከ ምርጫው በላይ"
#. oBHui
-#: cui/inc/strings.hrc:93
+#: cui/inc/strings.hrc:82
msgctxt "RID_SVXSTR_INSERTROW_AFTER"
msgid "Below selection"
msgstr "ከ ምርጫው በታች"
#. c8nou
-#: cui/inc/strings.hrc:94
+#: cui/inc/strings.hrc:83
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "ከ የምወዳቸው ውስጥ ማስወገጃ"
#. XpjRm
-#: cui/inc/strings.hrc:95
+#: cui/inc/strings.hrc:84
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "የ ጎደሉ ባህሪዎች"
#. 7tBGT
-#: cui/inc/strings.hrc:96
+#: cui/inc/strings.hrc:85
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "ወደ የምወደው መጨመሪያ"
#. AvBBC
#. PPI is pixel per inch, %1 is a number
-#: cui/inc/strings.hrc:98
+#: cui/inc/strings.hrc:87
msgctxt "RID_SVXSTR_PPI"
msgid "(%1 PPI)"
msgstr "(%1 PPI)"
#. thimC
-#: cui/inc/strings.hrc:99
+#: cui/inc/strings.hrc:88
msgctxt "RID_SVXSTR_COL"
msgid "Insert Columns"
msgstr "አምዶች ማስገቢያ"
#. AgqiD
#. tdf#119293 Labels depending on row/col
-#: cui/inc/strings.hrc:101
+#: cui/inc/strings.hrc:90
msgctxt "RID_SVXSTR_INSERTCOL_BEFORE"
msgid "Before selection"
msgstr "ከ ምርጫው በፊት"
#. nXnb3
-#: cui/inc/strings.hrc:102
+#: cui/inc/strings.hrc:91
msgctxt "RID_SVXSTR_INSERTCOL_AFTER"
msgid "After selection"
msgstr "ከ ምርጫው በኋላ"
#. QrFJZ
-#: cui/inc/strings.hrc:103
+#: cui/inc/strings.hrc:92
msgctxt "RID_SVXSTR_AUTO_ENTRY"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. X9CWA
-#: cui/inc/strings.hrc:104
+#: cui/inc/strings.hrc:93
msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
msgid "Link"
msgstr "አገናኝ"
#. QCgnw
-#: cui/inc/strings.hrc:105
+#: cui/inc/strings.hrc:94
msgctxt "RID_SVXSTR_LOADACCELCONFIG"
msgid "Load Keyboard Configuration"
msgstr "የ ፊደል ገበታ ማዋቀሪያ መጫኛ"
#. eWQoY
-#: cui/inc/strings.hrc:106
+#: cui/inc/strings.hrc:95
msgctxt "RID_SVXSTR_SAVEACCELCONFIG"
msgid "Save Keyboard Configuration"
msgstr "የ ፊደል ገበታ ማዋቀሪያ ማስቀመጫ"
#. ggFZE
-#: cui/inc/strings.hrc:107
+#: cui/inc/strings.hrc:96
msgctxt "RID_SVXSTR_FILTERNAME_CFG"
msgid "Configuration (*.cfg)"
msgstr "ማዋቀሪያ (*.cfg)"
#. DigQB
-#: cui/inc/strings.hrc:108
+#: cui/inc/strings.hrc:97
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_NOENTRIES"
msgid "Targets do not exist in the document."
msgstr "ዒላማዎቹ በሰነዱ ውስጥ አልተገኙም"
#. pCbRV
-#: cui/inc/strings.hrc:109
+#: cui/inc/strings.hrc:98
msgctxt "RID_SVXSTR_HYPDLG_ERR_LERR_DOCNOTOPEN"
msgid "Couldn't open the document."
msgstr "ሰነዱን መክፈት አልተቻለም"
#. zAUfq
-#: cui/inc/strings.hrc:110
+#: cui/inc/strings.hrc:99
msgctxt "RID_SVXSTR_EDITHINT"
msgid "[Enter text here]"
msgstr "[ጽሑፍ እዚህ ያስገቡ]"
#. ResDx
-#: cui/inc/strings.hrc:111
+#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_HANGUL"
msgid "Hangul"
msgstr "Hangul"
#. 3t3AC
-#: cui/inc/strings.hrc:112
+#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_HANJA"
msgid "Hanja"
msgstr "Hanja"
#. XKYHn
-#: cui/inc/strings.hrc:113
+#: cui/inc/strings.hrc:102
msgctxt "RID_SVXSTR_GROUP_STYLES"
msgid "Styles"
msgstr "ዘዴዎች"
#. 3Qq2E
-#: cui/inc/strings.hrc:114
+#: cui/inc/strings.hrc:103
msgctxt "RID_SVXSTR_GROUP_SIDEBARDECKS"
msgid "Sidebar Decks"
msgstr "የ ጎን መደርደሪያ ማሳረፊያ"
#. hFEBv
-#: cui/inc/strings.hrc:116
+#: cui/inc/strings.hrc:105
msgctxt "RID_SVXSTR_EVENT_STARTAPP"
msgid "Start Application"
msgstr "መተግበሪያውን ማስጀመሪያ"
#. 6tUvx
-#: cui/inc/strings.hrc:117
+#: cui/inc/strings.hrc:106
msgctxt "RID_SVXSTR_EVENT_CLOSEAPP"
msgid "Close Application"
msgstr "መተግበሪያውን መዝጊያ"
#. 6NsQz
-#: cui/inc/strings.hrc:118
+#: cui/inc/strings.hrc:107
msgctxt "RID_SVXSTR_EVENT_NEWDOC"
msgid "New Document"
msgstr "አዲስ ሰነድ"
#. G6b2e
-#: cui/inc/strings.hrc:119
+#: cui/inc/strings.hrc:108
msgctxt "RID_SVXSTR_EVENT_CLOSEDOC"
msgid "Document closed"
msgstr "ሰነዱ ተዘግቷል"
#. yvsTa
-#: cui/inc/strings.hrc:120
+#: cui/inc/strings.hrc:109
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEDOC"
msgid "Document is going to be closed"
msgstr "ሰነዱ ሊዘጋ ነው"
#. DKpfj
-#: cui/inc/strings.hrc:121
+#: cui/inc/strings.hrc:110
msgctxt "RID_SVXSTR_EVENT_OPENDOC"
msgid "Open Document"
msgstr "ሰነድ መክፈቻ"
#. DTDDm
-#: cui/inc/strings.hrc:122
+#: cui/inc/strings.hrc:111
msgctxt "RID_SVXSTR_EVENT_SAVEDOC"
msgid "Save Document"
msgstr "ሰነድ ማስቀመጫ"
#. Trc82
-#: cui/inc/strings.hrc:123
+#: cui/inc/strings.hrc:112
msgctxt "RID_SVXSTR_EVENT_SAVEASDOC"
msgid "Save Document As"
msgstr "ሰነዱን ማስቀመጫ እንደ"
#. GCbZt
-#: cui/inc/strings.hrc:124
+#: cui/inc/strings.hrc:113
msgctxt "RID_SVXSTR_EVENT_SAVEDOCDONE"
msgid "Document has been saved"
msgstr "ሰነዱ ተቀምጧል"
#. mYtMa
-#: cui/inc/strings.hrc:125
+#: cui/inc/strings.hrc:114
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCDONE"
msgid "Document has been saved as"
msgstr "ሰነዱ ተቀምጧል እንደ"
#. t8F8W
-#: cui/inc/strings.hrc:126
+#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_EVENT_ACTIVATEDOC"
msgid "Activate Document"
msgstr "ሰነዱን ማስነሻ"
#. T7QE3
-#: cui/inc/strings.hrc:127
+#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_EVENT_DEACTIVATEDOC"
msgid "Deactivate Document"
msgstr "ሰነዱን ማቦዘኛ"
#. AQXyC
-#: cui/inc/strings.hrc:128
+#: cui/inc/strings.hrc:117
msgctxt "RID_SVXSTR_EVENT_PRINTDOC"
msgid "Print Document"
msgstr "ሰነዱን ማተሚያ"
#. 8uXuz
-#: cui/inc/strings.hrc:129
+#: cui/inc/strings.hrc:118
msgctxt "RID_SVXSTR_EVENT_MODIFYCHANGED"
msgid "'Modified' status was changed"
msgstr "'ተሻሽሏል' ሁኔታው ተቀይሯል"
#. 5CKDG
-#: cui/inc/strings.hrc:130
+#: cui/inc/strings.hrc:119
msgctxt "RID_SVXSTR_EVENT_MAILMERGE"
msgid "Printing of form letters started"
msgstr "በ ደብዳቤዎች ፎርም ማተም ጀምሯል"
#. AZ2io
-#: cui/inc/strings.hrc:131
+#: cui/inc/strings.hrc:120
msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END"
msgid "Printing of form letters finished"
msgstr "በ ደብዳቤዎች ፎርም ማተም ጨርሷል"
#. dHtbz
-#: cui/inc/strings.hrc:132
+#: cui/inc/strings.hrc:121
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE"
msgid "Merging of form fields started"
msgstr "የ ፎርም ሜዳዎችን ማዋሀድ ጀምሯል"
#. uGCdD
-#: cui/inc/strings.hrc:133
+#: cui/inc/strings.hrc:122
msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED"
msgid "Merging of form fields finished"
msgstr "የ ፎርም ሜዳዎችን ማዋሀድ ጨርሷል"
#. srLLa
-#: cui/inc/strings.hrc:134
+#: cui/inc/strings.hrc:123
msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE"
msgid "Changing the page count"
msgstr "የ ገጽ መቁጠሪያ በ መቀየር ላይ"
#. AsuQF
-#: cui/inc/strings.hrc:135
+#: cui/inc/strings.hrc:124
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED"
msgid "Loaded a sub component"
msgstr "ንዑስ አካላት ተጭነዋል"
#. Gf22f
-#: cui/inc/strings.hrc:136
+#: cui/inc/strings.hrc:125
msgctxt "RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED"
msgid "Closed a sub component"
msgstr "ንዑስ አካላት ተዘግተዋል"
#. QayEb
-#: cui/inc/strings.hrc:137
+#: cui/inc/strings.hrc:126
msgctxt "RID_SVXSTR_EVENT_APPROVEPARAMETER"
msgid "Fill parameters"
msgstr "ደንቦች መሙያ"
#. mL59X
-#: cui/inc/strings.hrc:138
+#: cui/inc/strings.hrc:127
msgctxt "RID_SVXSTR_EVENT_ACTIONPERFORMED"
msgid "Execute action"
msgstr "ተግባር መፈጸሚያ"
#. KtHBE
-#: cui/inc/strings.hrc:139
+#: cui/inc/strings.hrc:128
msgctxt "RID_SVXSTR_EVENT_AFTERUPDATE"
msgid "After updating"
msgstr "ከተሻሻለ በኋላ"
#. b6CCj
-#: cui/inc/strings.hrc:140
+#: cui/inc/strings.hrc:129
msgctxt "RID_SVXSTR_EVENT_BEFOREUPDATE"
msgid "Before updating"
msgstr "ከመሻሻሉ በፊት"
#. KTBcp
-#: cui/inc/strings.hrc:141
+#: cui/inc/strings.hrc:130
msgctxt "RID_SVXSTR_EVENT_APPROVEROWCHANGE"
msgid "Before record action"
msgstr "ከመዝገቡ ተግባር በፊት"
#. Fhyio
-#: cui/inc/strings.hrc:142
+#: cui/inc/strings.hrc:131
msgctxt "RID_SVXSTR_EVENT_ROWCHANGE"
msgid "After record action"
msgstr "ከመዝገቡ ተግባር በኋላ"
#. PmJgM
-#: cui/inc/strings.hrc:143
+#: cui/inc/strings.hrc:132
msgctxt "RID_SVXSTR_EVENT_CONFIRMDELETE"
msgid "Confirm deletion"
msgstr "ማጥፋቱን ያረጋግጡ"
#. gcREA
-#: cui/inc/strings.hrc:144
+#: cui/inc/strings.hrc:133
msgctxt "RID_SVXSTR_EVENT_ERROROCCURRED"
msgid "Error occurred"
msgstr "ስህተት ተፈጥሯል"
#. oAwDt
-#: cui/inc/strings.hrc:145
+#: cui/inc/strings.hrc:134
msgctxt "RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED"
msgid "While adjusting"
msgstr "በማስተካከል ላይ እንዳለ"
#. AyfwP
-#: cui/inc/strings.hrc:146
+#: cui/inc/strings.hrc:135
msgctxt "RID_SVXSTR_EVENT_FOCUSGAINED"
msgid "When receiving focus"
msgstr "ትኩረት በሚያገኝበት ጊዜ"
#. BD96B
-#: cui/inc/strings.hrc:147
+#: cui/inc/strings.hrc:136
msgctxt "RID_SVXSTR_EVENT_FOCUSLOST"
msgid "When losing focus"
msgstr "ትኩረት በሚያጣበት ጊዜ"
#. wEhfE
-#: cui/inc/strings.hrc:148
+#: cui/inc/strings.hrc:137
msgctxt "RID_SVXSTR_EVENT_ITEMSTATECHANGED"
msgid "Item status changed"
msgstr "የ እቃው ሁኔታ ተቀይሯል"
#. FRW7b
-#: cui/inc/strings.hrc:149
+#: cui/inc/strings.hrc:138
msgctxt "RID_SVXSTR_EVENT_KEYTYPED"
msgid "Key pressed"
msgstr "ቁልፍ ተጭነዋል"
#. 4kZCD
-#: cui/inc/strings.hrc:150
+#: cui/inc/strings.hrc:139
msgctxt "RID_SVXSTR_EVENT_KEYUP"
msgid "Key released"
msgstr "ቁልፍ ለቀዋል"
#. ZiS2D
-#: cui/inc/strings.hrc:151
+#: cui/inc/strings.hrc:140
msgctxt "RID_SVXSTR_EVENT_LOADED"
msgid "When loading"
msgstr "በመጫን ላይ እንዳለ"
#. vEjAG
-#: cui/inc/strings.hrc:152
+#: cui/inc/strings.hrc:141
msgctxt "RID_SVXSTR_EVENT_RELOADING"
msgid "Before reloading"
msgstr "እንደገና ከ መጫኑ በፊት"
#. 5FvrE
-#: cui/inc/strings.hrc:153
+#: cui/inc/strings.hrc:142
msgctxt "RID_SVXSTR_EVENT_RELOADED"
msgid "When reloading"
msgstr "እንደገና በሚጫን ጊዜ"
#. CDcYt
-#: cui/inc/strings.hrc:154
+#: cui/inc/strings.hrc:143
msgctxt "RID_SVXSTR_EVENT_MOUSEDRAGGED"
msgid "Mouse moved while key pressed"
msgstr "አይጡ ተንቀሳቅሷል ቁልፉን በመጫን ላይ እንዳሉ"
#. CPpyk
-#: cui/inc/strings.hrc:155
+#: cui/inc/strings.hrc:144
msgctxt "RID_SVXSTR_EVENT_MOUSEENTERED"
msgid "Mouse inside"
msgstr "አይጥ ውስጥ"
#. 4hGfp
-#: cui/inc/strings.hrc:156
+#: cui/inc/strings.hrc:145
msgctxt "RID_SVXSTR_EVENT_MOUSEEXITED"
msgid "Mouse outside"
msgstr "አይጥ ውጪ"
#. QEuWr
-#: cui/inc/strings.hrc:157
+#: cui/inc/strings.hrc:146
msgctxt "RID_SVXSTR_EVENT_MOUSEMOVED"
msgid "Mouse moved"
msgstr "አይጡ ተንቀሳቅሷል"
#. 8YA3S
-#: cui/inc/strings.hrc:158
+#: cui/inc/strings.hrc:147
msgctxt "RID_SVXSTR_EVENT_MOUSEPRESSED"
msgid "Mouse button pressed"
msgstr "የአይጥ ቁልፍ ተጭነዋል"
#. RMuJe
-#: cui/inc/strings.hrc:159
+#: cui/inc/strings.hrc:148
msgctxt "RID_SVXSTR_EVENT_MOUSERELEASED"
msgid "Mouse button released"
msgstr "የአይጥ ቁልፍ ለቅቀዋል"
#. 5iPHQ
-#: cui/inc/strings.hrc:160
+#: cui/inc/strings.hrc:149
msgctxt "RID_SVXSTR_EVENT_POSITIONING"
msgid "Before record change"
msgstr "መዝገቡ ከመቀየሩ በፊት"
#. yrBiz
-#: cui/inc/strings.hrc:161
+#: cui/inc/strings.hrc:150
msgctxt "RID_SVXSTR_EVENT_POSITIONED"
msgid "After record change"
msgstr "መዝገቡ ከተቀየረ በኋላ"
#. bdBH4
-#: cui/inc/strings.hrc:162
+#: cui/inc/strings.hrc:151
msgctxt "RID_SVXSTR_EVENT_RESETTED"
msgid "After resetting"
msgstr "እንደ ነበር ከ ተመለሰ በኋላ"
#. eVsFk
-#: cui/inc/strings.hrc:163
+#: cui/inc/strings.hrc:152
msgctxt "RID_SVXSTR_EVENT_APPROVERESETTED"
msgid "Prior to reset"
msgstr "እንደ ነበር ከ መመለሱ በፊት"
#. 2oAoV
-#: cui/inc/strings.hrc:164
+#: cui/inc/strings.hrc:153
msgctxt "RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED"
msgid "Approve action"
msgstr "ተግባሩን ማጽደቂያ"
#. hQAzK
-#: cui/inc/strings.hrc:165
+#: cui/inc/strings.hrc:154
msgctxt "RID_SVXSTR_EVENT_SUBMITTED"
msgid "Before submitting"
msgstr "ከማስገባትዎ በፊት"
#. CFPSo
-#: cui/inc/strings.hrc:166
+#: cui/inc/strings.hrc:155
msgctxt "RID_SVXSTR_EVENT_TEXTCHANGED"
msgid "Text modified"
msgstr "ጽሑፉ ተሻሽሏል"
#. 2ADMH
-#: cui/inc/strings.hrc:167
+#: cui/inc/strings.hrc:156
msgctxt "RID_SVXSTR_EVENT_UNLOADING"
msgid "Before unloading"
msgstr "ከ መውረዱ በፊት"
#. F8BL3
-#: cui/inc/strings.hrc:168
+#: cui/inc/strings.hrc:157
msgctxt "RID_SVXSTR_EVENT_UNLOADED"
msgid "When unloading"
msgstr "በሚወርድበት ጊዜ"
#. M6fPe
-#: cui/inc/strings.hrc:169
+#: cui/inc/strings.hrc:158
msgctxt "RID_SVXSTR_EVENT_CHANGED"
msgid "Changed"
msgstr "ተቀይሯል"
#. gZyVB
-#: cui/inc/strings.hrc:170
+#: cui/inc/strings.hrc:159
msgctxt "RID_SVXSTR_EVENT_CREATEDOC"
msgid "Document created"
msgstr "ሰነዱ ተፈጥሯል"
#. BcPDW
-#: cui/inc/strings.hrc:171
+#: cui/inc/strings.hrc:160
msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED"
msgid "Document loading finished"
msgstr "ሰነዱ መጫኑን ጨርሷል"
#. ir7AQ
-#: cui/inc/strings.hrc:172
+#: cui/inc/strings.hrc:161
msgctxt "RID_SVXSTR_EVENT_SAVEDOCFAILED"
msgid "Saving of document failed"
msgstr "ሰነዱን ማስቀመጥ አልተቻለም"
#. BFtTF
-#: cui/inc/strings.hrc:173
+#: cui/inc/strings.hrc:162
msgctxt "RID_SVXSTR_EVENT_SAVEASDOCFAILED"
msgid "'Save as' has failed"
msgstr "'ማስቀመጥ' አልተቻለም እንደ"
#. N9e6u
-#: cui/inc/strings.hrc:174
+#: cui/inc/strings.hrc:163
msgctxt "RID_SVXSTR_EVENT_COPYTODOC"
msgid "Storing or exporting copy of document"
msgstr "የሰነዱን ኮፒ በማስቀመጥ ወይም በመላክ ላይ"
#. okb9H
-#: cui/inc/strings.hrc:175
+#: cui/inc/strings.hrc:164
msgctxt "RID_SVXSTR_EVENT_COPYTODOCDONE"
msgid "Document copy has been created"
msgstr "የሰነዱ ኮፒ ተፈጥሯል"
#. DrYTY
-#: cui/inc/strings.hrc:176
+#: cui/inc/strings.hrc:165
msgctxt "RID_SVXSTR_EVENT_COPYTODOCFAILED"
msgid "Creating of document copy failed"
msgstr "የሰነዱን ኮፒ መፍጠር አልተቻለም"
#. BBJJQ
-#: cui/inc/strings.hrc:177
+#: cui/inc/strings.hrc:166
msgctxt "RID_SVXSTR_EVENT_VIEWCREATED"
msgid "View created"
msgstr "የተፈጠረውን መመልከቻ"
#. XN9Az
-#: cui/inc/strings.hrc:178
+#: cui/inc/strings.hrc:167
msgctxt "RID_SVXSTR_EVENT_PREPARECLOSEVIEW"
msgid "View is going to be closed"
msgstr "መመልከቻው ሊዘጋ ነው"
#. a9qty
-#: cui/inc/strings.hrc:179
+#: cui/inc/strings.hrc:168
msgctxt "RID_SVXSTR_EVENT_CLOSEVIEW"
msgid "View closed"
msgstr "የተዘጋውን መመልከቻ"
#. dDunN
-#: cui/inc/strings.hrc:180
+#: cui/inc/strings.hrc:169
msgctxt "RID_SVXSTR_EVENT_TITLECHANGED"
msgid "Document title changed"
msgstr "የ ሰነዱ አርእስት ተቀይሯል"
#. 6D6BS
-#: cui/inc/strings.hrc:181
+#: cui/inc/strings.hrc:170
msgctxt "RID_SVXSTR_EVENT_SELECTIONCHANGED"
msgid "Selection changed"
msgstr "ምርጫው ተቀይሯል"
#. XArW3
-#: cui/inc/strings.hrc:182
+#: cui/inc/strings.hrc:171
msgctxt "RID_SVXSTR_EVENT_DOUBLECLICK"
msgid "Double click"
msgstr "ሁለት ጊዜ ይጫኑ"
#. oDkyz
-#: cui/inc/strings.hrc:183
+#: cui/inc/strings.hrc:172
msgctxt "RID_SVXSTR_EVENT_RIGHTCLICK"
msgid "Right click"
msgstr "በ ቀኝ ይጫኑ"
#. tVSz9
-#: cui/inc/strings.hrc:184
+#: cui/inc/strings.hrc:173
msgctxt "RID_SVXSTR_EVENT_CALCULATE"
msgid "Formulas calculated"
msgstr "መቀመሪያ ተሰልቷል"
#. ESxTQ
-#: cui/inc/strings.hrc:185
+#: cui/inc/strings.hrc:174
msgctxt "RID_SVXSTR_EVENT_CONTENTCHANGED"
msgid "Content changed"
msgstr "የተቀየሩ ይዞታዎች"
#. Zimeo
-#: cui/inc/strings.hrc:187
+#: cui/inc/strings.hrc:176
msgctxt "RID_STR_SEARCH_ANYWHERE"
msgid "anywhere in the field"
msgstr "በ ሜዳው ማናቸውም ቦታ"
#. qCKMY
-#: cui/inc/strings.hrc:188
+#: cui/inc/strings.hrc:177
msgctxt "RID_STR_SEARCH_BEGINNING"
msgid "beginning of field"
msgstr "በ ሜዳው መጀመሪያ"
#. CKVTF
-#: cui/inc/strings.hrc:189
+#: cui/inc/strings.hrc:178
msgctxt "RID_STR_SEARCH_END"
msgid "end of field"
msgstr "የ ሜዳ መጨረሻ"
#. FZwxu
-#: cui/inc/strings.hrc:190
+#: cui/inc/strings.hrc:179
msgctxt "RID_STR_SEARCH_WHOLE"
msgid "entire field"
msgstr "በ ሜዳው ሙሉ"
#. AFUFs
-#: cui/inc/strings.hrc:191
+#: cui/inc/strings.hrc:180
msgctxt "RID_STR_FROM_TOP"
msgid "From top"
msgstr "ከ ላይ"
#. FBDbX
-#: cui/inc/strings.hrc:192
+#: cui/inc/strings.hrc:181
msgctxt "RID_STR_FROM_BOTTOM"
msgid "From bottom"
msgstr "ከ ታች በኩል"
#. brdgV
-#: cui/inc/strings.hrc:193
+#: cui/inc/strings.hrc:182
msgctxt "RID_STR_SEARCH_NORECORD"
msgid "No records corresponding to your data found."
msgstr "ከ እርስዎ ዳታ ጋር የሚመሳሰል ምንም አይነት መዝገብ አልተገኘም"
#. VkTjA
-#: cui/inc/strings.hrc:194
+#: cui/inc/strings.hrc:183
msgctxt "RID_STR_SEARCH_GENERAL_ERROR"
msgid "An unknown error occurred. The search could not be finished."
msgstr "ያልታወቀ ስህተት ተፈጥሯል: ፍለጋውን መጨረስ አልተቻለም"
#. jiQdw
-#: cui/inc/strings.hrc:195
+#: cui/inc/strings.hrc:184
msgctxt "RID_STR_OVERFLOW_FORWARD"
msgid "Overflow, search continued at the beginning"
msgstr "ሞልቶ ፈሰሰ: መፈለጊያ ከ መጀመሪያው ጀምሮ ቀጥሏል"
#. EzK3y
-#: cui/inc/strings.hrc:196
+#: cui/inc/strings.hrc:185
msgctxt "RID_STR_OVERFLOW_BACKWARD"
msgid "Overflow, search continued at the end"
msgstr "ሞልቶ ፈሰሰ: መፈለጊያ እስከ መጨረሻው ድረስ ቀጥሏል"
#. zwiat
-#: cui/inc/strings.hrc:197
+#: cui/inc/strings.hrc:186
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
msgstr "መዝገቦችን በመቁጠር ላይ"
#. 7cVWa
-#: cui/inc/strings.hrc:199
+#: cui/inc/strings.hrc:188
msgctxt "RID_SVXSTR_GALLERY_NOFILES"
msgid "<No Files>"
msgstr "<ፋይሎች የሉም>"
#. AnJUu
-#: cui/inc/strings.hrc:200
+#: cui/inc/strings.hrc:189
msgctxt "RID_SVXSTR_GALLERYPROPS_OBJECT"
msgid "Object;Objects"
msgstr "እቃ ;እቃዎች"
#. GQXSM
-#: cui/inc/strings.hrc:201
+#: cui/inc/strings.hrc:190
msgctxt "RID_SVXSTR_GALLERY_READONLY"
msgid "(read-only)"
msgstr "(ለንባብ ብቻ)"
#. sAwgA
-#: cui/inc/strings.hrc:202
+#: cui/inc/strings.hrc:191
msgctxt "RID_SVXSTR_GALLERY_ALLFILES"
msgid "<All Files>"
msgstr "<ሁሉም ፋይሎች>"
#. YkCky
-#: cui/inc/strings.hrc:203
+#: cui/inc/strings.hrc:192
msgctxt "RID_SVXSTR_GALLERY_ID_EXISTS"
msgid "This ID already exists..."
msgstr "ይህ መለያ ቀደም ሲል ነበር ..."
#. w3AUk
-#: cui/inc/strings.hrc:205
+#: cui/inc/strings.hrc:194
msgctxt "RID_MULTIPATH_DBL_ERR"
msgid "The path %1 already exists."
msgstr "መንገዱ %1 ቀደም ሲል ነበር"
#. 54BsS
-#: cui/inc/strings.hrc:206
+#: cui/inc/strings.hrc:195
msgctxt "RID_SVXSTR_ARCHIVE_TITLE"
msgid "Select Archives"
msgstr "ማህደሮች ይምረጡ"
#. NDB5V
-#: cui/inc/strings.hrc:207
+#: cui/inc/strings.hrc:196
msgctxt "RID_SVXSTR_ARCHIVE_HEADLINE"
msgid "Archives"
msgstr "ማህደሮች"
#. ffPAq
-#: cui/inc/strings.hrc:208
+#: cui/inc/strings.hrc:197
msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR"
msgid "The file %1 already exists."
msgstr "ፋይሉ %1 ቀደም ሲል ነበር"
#. 5FyxP
-#: cui/inc/strings.hrc:209
+#: cui/inc/strings.hrc:198
msgctxt "RID_SVXSTR_ADD_IMAGE"
msgid "Add Image"
msgstr "ምስል መጨመሪያ"
#. eUzGk
-#: cui/inc/strings.hrc:211
+#: cui/inc/strings.hrc:200
msgctxt "RID_SVXSTR_ONE_PASSWORD_MISMATCH"
msgid "The confirmation password did not match the password. Set the password again by entering the same password in both boxes."
msgstr "የ ማረጋገጫው መግቢያ ቃል ከ መግቢያ ቃሉ ጋር አይመሳሰልም: የ መግቢያ ቃል እንደገና ያሰናዱ በሁለቱም ሳጥኖች ውስጥ አንድ አይነት የመግቢያ ቃል ያስገቡ"
#. mN9jE
-#: cui/inc/strings.hrc:212
+#: cui/inc/strings.hrc:201
msgctxt "RID_SVXSTR_TWO_PASSWORDS_MISMATCH"
msgid "The confirmation passwords did not match the original passwords. Set the passwords again."
msgstr "የ ማረጋገጫው መግቢያ ቃል ከ ዋናው መግቢያ ቃሉ ጋር አይመሳሰልም: የ መግቢያ ቃል እንደገና ያሰናዱ"
#. 48ez3
-#: cui/inc/strings.hrc:213
+#: cui/inc/strings.hrc:202
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON"
msgid "Please enter a password to open or to modify, or check the open read-only option to continue."
msgstr "እባክዎን የ መግቢያ ቃል ያስገቡ ለ መክፈት ወይንም ለ ማሻሽል ወይንም ለ መቀጠል ለ ንባብ ብቻ ምርጫዎችን ይመርምሩ"
#. aAbAN
-#: cui/inc/strings.hrc:214
+#: cui/inc/strings.hrc:203
msgctxt "RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2"
msgid "Set the password by entering the same password in both boxes."
msgstr "የ መግቢያ ቃል ያሰናዱ በሁለቱም ሳጥኖች ውስጥ አንድ አይነት የመግቢያ ቃል ያስገቡ"
#. ZXcFw
-#: cui/inc/strings.hrc:215
+#: cui/inc/strings.hrc:204
msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR"
msgid "Password length limit of %1 reached"
msgstr "የ መግቢያ ቃል እርዝመት መጠን ከ %1 ደርሷል:"
#. Fko49
-#: cui/inc/strings.hrc:217
+#: cui/inc/strings.hrc:206
msgctxt "STR_AUTOLINK"
msgid "Automatic"
msgstr "ራሱ በራሱ"
#. WYHFb
-#: cui/inc/strings.hrc:218
+#: cui/inc/strings.hrc:207
msgctxt "STR_MANUALLINK"
msgid "Manual"
msgstr "በእጅ"
#. PFN4j
-#: cui/inc/strings.hrc:219
+#: cui/inc/strings.hrc:208
msgctxt "STR_BROKENLINK"
msgid "Not available"
msgstr "ዝግጁ አይደለም"
#. 5ymS3
-#: cui/inc/strings.hrc:220
+#: cui/inc/strings.hrc:209
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
msgstr "በእርግጥ የተመረጠውን አገናኝ ማስወገድ ይፈልጋሉ?"
#. wyMwT
-#: cui/inc/strings.hrc:221
+#: cui/inc/strings.hrc:210
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
msgstr "በእርግጥ የተመረጠውን አገናኝ ማስወገድ ይፈልጋሉ?"
#. CN74h
-#: cui/inc/strings.hrc:222
+#: cui/inc/strings.hrc:211
msgctxt "STR_WAITINGLINK"
msgid "Waiting"
msgstr "በመጠበቅ ላይ"
#. QJKgF
-#: cui/inc/strings.hrc:224
+#: cui/inc/strings.hrc:213
msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS"
msgid "Save Screenshot As..."
msgstr "ማስቀመጫ የ መመልከቻ ፎቶ እንደ..."
#. CAaFf
#. $(ROW) can be a number or the caption of the row in quotes
-#: cui/inc/strings.hrc:227
+#: cui/inc/strings.hrc:216
msgctxt "RID_SVXSTR_DIAGRAM_ROW"
msgid "Data Series $(ROW)"
msgstr "ተከታታይ ዳታ $(ROW)"
#. HzhXp
-#: cui/inc/strings.hrc:229
+#: cui/inc/strings.hrc:218
msgctxt "RID_SVXSTR_YES"
msgid "Yes"
msgstr "አዎ"
#. RuQiB
-#: cui/inc/strings.hrc:230
+#: cui/inc/strings.hrc:219
msgctxt "RID_SVXSTR_NO"
msgid "No"
msgstr "አይ"
#. irLeD
-#: cui/inc/strings.hrc:232
+#: cui/inc/strings.hrc:221
msgctxt "STR_LINKEDDOC_DOESNOTEXIST"
msgid ""
"The file\n"
@@ -1295,7 +1229,7 @@ msgstr ""
"አልተገኘም"
#. iQYnX
-#: cui/inc/strings.hrc:233
+#: cui/inc/strings.hrc:222
msgctxt "STR_LINKEDDOC_NO_SYSTEM_FILE"
msgid ""
"The file\n"
@@ -1307,7 +1241,7 @@ msgstr ""
"በአካባቢ የፋይል ስርአት ውስጥ አልተገኘም"
#. 4PaJ2
-#: cui/inc/strings.hrc:234
+#: cui/inc/strings.hrc:223
msgctxt "STR_NAME_CONFLICT"
msgid ""
"The name '$file$' is already used for another database.\n"
@@ -1317,163 +1251,163 @@ msgstr ""
"እባክዎን የተለየ ስም ይምረጡ"
#. KFB7q
-#: cui/inc/strings.hrc:235
+#: cui/inc/strings.hrc:224
msgctxt "RID_SVXSTR_QUERY_DELETE_CONFIRM"
msgid "Do you want to delete the entry?"
msgstr "ማስገቢያውን ማጥፋት ይፈልጋሉ?"
#. gg9gD
-#: cui/inc/strings.hrc:237
+#: cui/inc/strings.hrc:226
msgctxt "RID_SVXSTR_DELQUERY"
msgid "Do you want to delete the following object?"
msgstr "የሚቀጥለውን እቃ ማጥፋት ይፈልጋሉ?"
#. 42ivC
-#: cui/inc/strings.hrc:238
+#: cui/inc/strings.hrc:227
msgctxt "RID_SVXSTR_DELQUERY_TITLE"
msgid "Confirm Deletion"
msgstr "ማጥፋቱን ያረጋግጡ"
#. kn5KE
-#: cui/inc/strings.hrc:239
+#: cui/inc/strings.hrc:228
msgctxt "RID_SVXSTR_DELFAILED"
msgid "The selected object could not be deleted."
msgstr "የተመረጠውን እቃ ማጥፋት አይቻልም"
#. T7T8x
-#: cui/inc/strings.hrc:240
+#: cui/inc/strings.hrc:229
msgctxt "RID_SVXSTR_DELFAILED_TITLE"
msgid "Error Deleting Object"
msgstr "ስህተት እቃውን በማጥፋት ላይ"
#. SCgXy
-#: cui/inc/strings.hrc:241
+#: cui/inc/strings.hrc:230
msgctxt "RID_SVXSTR_CREATEFAILED"
msgid "The object could not be created."
msgstr "እቃውን መፍጠር አልተቻለም"
#. TmiCU
-#: cui/inc/strings.hrc:242
+#: cui/inc/strings.hrc:231
msgctxt "RID_SVXSTR_CREATEFAILEDDUP"
msgid " Object with the same name already exists."
msgstr " እቃው በዚህ ስም ቀደም ሲል ነበር"
#. ffc5M
-#: cui/inc/strings.hrc:243
+#: cui/inc/strings.hrc:232
msgctxt "RID_SVXSTR_CREATEFAILED_TITLE"
msgid "Error Creating Object"
msgstr "ስህተት እቃውን በመፍጠር ላይ"
#. hpB8B
-#: cui/inc/strings.hrc:244
+#: cui/inc/strings.hrc:233
msgctxt "RID_SVXSTR_RENAMEFAILED"
msgid "The object could not be renamed."
msgstr "እቃውን እንደገና መሰየም አይቻልም"
#. eevjm
-#: cui/inc/strings.hrc:245
+#: cui/inc/strings.hrc:234
msgctxt "RID_SVXSTR_RENAMEFAILED_TITLE"
msgid "Error Renaming Object"
msgstr "ስህተት እቃውን እንደገና በ መሰየም ላይ"
#. fTHFY
-#: cui/inc/strings.hrc:246
+#: cui/inc/strings.hrc:235
msgctxt "RID_SVXSTR_ERROR_TITLE"
msgid "%PRODUCTNAME Error"
msgstr "%PRODUCTNAME ስህተት"
#. e6BgS
-#: cui/inc/strings.hrc:247
+#: cui/inc/strings.hrc:236
msgctxt "RID_SVXSTR_ERROR_LANG_NOT_SUPPORTED"
msgid "The scripting language %LANGUAGENAME is not supported."
msgstr "የ ጽሁፍ ቋንቋው %LANGUAGENAME የ ተደገፈ አይደለም"
#. EUek9
-#: cui/inc/strings.hrc:248
+#: cui/inc/strings.hrc:237
msgctxt "RID_SVXSTR_ERROR_RUNNING"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "ስህተት ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME."
#. KVQAh
-#: cui/inc/strings.hrc:249
+#: cui/inc/strings.hrc:238
msgctxt "RID_SVXSTR_EXCEPTION_RUNNING"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "የተለየ ሁኔታ ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME."
#. 5bFCQ
-#: cui/inc/strings.hrc:250
+#: cui/inc/strings.hrc:239
msgctxt "RID_SVXSTR_ERROR_AT_LINE"
msgid "An error occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "ስህተት ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME script %SCRIPTNAME በመስመር ላይ: %LINENUMBER."
#. KTptU
-#: cui/inc/strings.hrc:251
+#: cui/inc/strings.hrc:240
msgctxt "RID_SVXSTR_EXCEPTION_AT_LINE"
msgid "An exception occurred while running the %LANGUAGENAME script %SCRIPTNAME at line: %LINENUMBER."
msgstr "የተለየ ሁኔታ ተፈጥሯል በማስኬድ ላይ እንዳለ %LANGUAGENAME ጽሁፍ %SCRIPTNAME በ መስመር ላይ: %LINENUMBER."
#. BZDbp
-#: cui/inc/strings.hrc:252
+#: cui/inc/strings.hrc:241
msgctxt "RID_SVXSTR_FRAMEWORK_ERROR_RUNNING"
msgid "A Scripting Framework error occurred while running the %LANGUAGENAME script %SCRIPTNAME."
msgstr "የ ጽሁፍ ክፈፍ ስራ ስህተት ተፈጥሯል %LANGUAGENAME ጽሁፍ %SCRIPTNAME."
#. AAghx
-#: cui/inc/strings.hrc:253
+#: cui/inc/strings.hrc:242
msgctxt "RID_SVXSTR_ERROR_TYPE_LABEL"
msgid "Type:"
msgstr "አይነት:"
#. GAsca
-#: cui/inc/strings.hrc:254
+#: cui/inc/strings.hrc:243
msgctxt "RID_SVXSTR_ERROR_MESSAGE_LABEL"
msgid "Message:"
msgstr "መልእክት:"
#. ZcxRY
-#: cui/inc/strings.hrc:256
+#: cui/inc/strings.hrc:245
msgctxt "RID_SVXSTR_CHG_MATH"
msgid "MathType to %PRODUCTNAME Math or reverse"
msgstr "MathType to %PRODUCTNAME ሂሳብ ወይንም ወደ ነበረበት መመለሻ"
#. Ttggs
-#: cui/inc/strings.hrc:257
+#: cui/inc/strings.hrc:246
msgctxt "RID_SVXSTR_CHG_WRITER"
msgid "WinWord to %PRODUCTNAME Writer or reverse"
msgstr "WinWord to %PRODUCTNAME መጻፊያ ወይንም ወደ ነበረበት መመለሻ"
#. ZJRKY
-#: cui/inc/strings.hrc:258
+#: cui/inc/strings.hrc:247
msgctxt "RID_SVXSTR_CHG_CALC"
msgid "Excel to %PRODUCTNAME Calc or reverse"
msgstr "Excel to %PRODUCTNAME ሰንጠረዥ ወይንም ወደ ነበረበት መመለሻ"
#. VmuND
-#: cui/inc/strings.hrc:259
+#: cui/inc/strings.hrc:248
msgctxt "RID_SVXSTR_CHG_IMPRESS"
msgid "PowerPoint to %PRODUCTNAME Impress or reverse"
msgstr "PowerPoint to %PRODUCTNAME ማስደነቂያ ወይንም ወደ ነበረበት መመለሻ"
#. sE8as
-#: cui/inc/strings.hrc:260
+#: cui/inc/strings.hrc:249
msgctxt "RID_SVXSTR_CHG_SMARTART"
msgid "SmartArt to %PRODUCTNAME shapes or reverse"
msgstr "SmartArt to %PRODUCTNAME ቅርጾች ወይንም ወደ ነበረበት መመለሻ"
#. AEgXY
-#: cui/inc/strings.hrc:261
+#: cui/inc/strings.hrc:250
msgctxt "RID_SVXSTR_CHG_VISIO"
msgid "Visio to %PRODUCTNAME Draw or reverse"
msgstr "Visio ወደ %PRODUCTNAME መሳያ ወይንም መገልበጫ:"
#. Zarkq
-#: cui/inc/strings.hrc:262
+#: cui/inc/strings.hrc:251
msgctxt "RID_SVXSTR_CHG_PDF"
msgid "PDF to %PRODUCTNAME Draw or reverse"
msgstr "PDF ወደ %PRODUCTNAME መሳያ ወይንም መገልነጫ:"
#. dDtDU
-#: cui/inc/strings.hrc:264
+#: cui/inc/strings.hrc:253
msgctxt "RID_SVXSTR_OPT_DOUBLE_DICTS"
msgid ""
"The specified name already exists.\n"
@@ -1483,7 +1417,7 @@ msgstr ""
"እባክዎን አዲስ ስም ያስገቡ"
#. kzhkA
-#: cui/inc/strings.hrc:265
+#: cui/inc/strings.hrc:254
msgctxt "RID_SVXSTR_OPT_INVALID_DICT_NAME"
msgid ""
"The specified name is invalid.\n"
@@ -1505,145 +1439,145 @@ msgstr ""
#. For example, adding "Grammar By" word "fund" to the new user
#. word "crowdfund", the spell checker will recognize "crowdfund"
#. with suffixes of "fund": "crowdfunding", "crowdfund's" etc.
-#: cui/inc/strings.hrc:280
+#: cui/inc/strings.hrc:269
msgctxt "RID_SVXSTR_OPT_GRAMMAR_BY"
msgid "~Grammar By"
msgstr "~ሰዋሰው በ"
#. LPb5d
-#: cui/inc/strings.hrc:281
+#: cui/inc/strings.hrc:270
msgctxt "STR_MODIFY"
msgid "~Replace"
msgstr "~መቀየሪያ"
#. anivV
-#: cui/inc/strings.hrc:282
+#: cui/inc/strings.hrc:271
msgctxt "RID_SVXSTR_CONFIRM_SET_LANGUAGE"
msgid "Do you want to change the '%1' dictionary language?"
msgstr "መቀየር ይፈልጋሉ '%1' የቋንቋውን መዝገበ ቃላት"
#. XEFrB
-#: cui/inc/strings.hrc:284
+#: cui/inc/strings.hrc:273
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE"
msgid "Do you really want to delete the color scheme?"
msgstr "በእርግጥ የቀለም እቅዱን ማጥፋት ይፈልጋሉ?"
#. ybdED
-#: cui/inc/strings.hrc:285
+#: cui/inc/strings.hrc:274
msgctxt "RID_SVXSTR_COLOR_CONFIG_DELETE_TITLE"
msgid "Color Scheme Deletion"
msgstr "የ ቀለም እቅድ ማጥፊያ"
#. DoNBE
-#: cui/inc/strings.hrc:286
+#: cui/inc/strings.hrc:275
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE1"
msgid "Save scheme"
msgstr "እቅዱን ማስቀመጫ"
#. tFrki
-#: cui/inc/strings.hrc:287
+#: cui/inc/strings.hrc:276
msgctxt "RID_SVXSTR_COLOR_CONFIG_SAVE2"
msgid "Name of color scheme"
msgstr "የ ቀለም ገጽታ ስም"
#. BAGbe
-#: cui/inc/strings.hrc:289
+#: cui/inc/strings.hrc:278
msgctxt "RID_SVXSTR_SPELL"
msgid "Spelling"
msgstr "ፊደል ማረሚያ"
#. uBohu
-#: cui/inc/strings.hrc:290
+#: cui/inc/strings.hrc:279
msgctxt "RID_SVXSTR_HYPH"
msgid "Hyphenation"
msgstr "ጭረት"
#. XGkt6
-#: cui/inc/strings.hrc:291
+#: cui/inc/strings.hrc:280
msgctxt "RID_SVXSTR_THES"
msgid "Thesaurus"
msgstr "ተመሳሳይ"
#. EFrDA
-#: cui/inc/strings.hrc:292
+#: cui/inc/strings.hrc:281
msgctxt "RID_SVXSTR_GRAMMAR"
msgid "Grammar"
msgstr "ሰዋሰው"
#. zbEv9
-#: cui/inc/strings.hrc:293
+#: cui/inc/strings.hrc:282
msgctxt "RID_SVXSTR_CAPITAL_WORDS"
msgid "Check uppercase words"
msgstr "መመርመሪያ በ ላይኛው ጉዳይ ፊደል የ ተጻፈ ቃላት"
#. BbDNe
-#: cui/inc/strings.hrc:294
+#: cui/inc/strings.hrc:283
msgctxt "RID_SVXSTR_WORDS_WITH_DIGITS"
msgid "Check words with numbers "
msgstr "ቃሎች ከ ቁጥር ጋር መመርመሪያ "
#. bPDyB
-#: cui/inc/strings.hrc:295
+#: cui/inc/strings.hrc:284
msgctxt "RID_SVXSTR_SPELL_SPECIAL"
msgid "Check special regions"
msgstr "መመርመሪያ የ ተለዩ አካባቢዎች"
#. BQxwc
-#: cui/inc/strings.hrc:296
+#: cui/inc/strings.hrc:285
msgctxt "RID_SVXSTR_SPELL_CLOSED_COMPOUND"
msgid "Accept possible closed compound words"
msgstr ""
#. WLmfd
-#: cui/inc/strings.hrc:297
+#: cui/inc/strings.hrc:286
msgctxt "RID_SVXSTR_SPELL_HYPHENATED_COMPOUND"
msgid "Accept possible hyphenated compound words"
msgstr ""
#. XjifG
-#: cui/inc/strings.hrc:298
+#: cui/inc/strings.hrc:287
msgctxt "RID_SVXSTR_SPELL_AUTO"
msgid "Check spelling as you type"
msgstr "ፊደል ማረሚያ በሚጽፉ ጊዜ"
#. J3ENq
-#: cui/inc/strings.hrc:299
+#: cui/inc/strings.hrc:288
msgctxt "RID_SVXSTR_GRAMMAR_AUTO"
msgid "Check grammar as you type"
msgstr "መመርመሪያ ሰዋሰው በሚጽፉ ጊዜ"
#. f6v3L
-#: cui/inc/strings.hrc:300
+#: cui/inc/strings.hrc:289
msgctxt "RID_SVXSTR_NUM_MIN_WORDLEN"
msgid "Minimal number of characters for hyphenation: "
msgstr "አነስተኛ ቁጥር ለ ጭረት ባህሪዎች: "
#. BCrEf
-#: cui/inc/strings.hrc:301
+#: cui/inc/strings.hrc:290
msgctxt "RID_SVXSTR_NUM_PRE_BREAK"
msgid "Characters before line break: "
msgstr "ባህሪው ከ መስመር መጨረሻው በፊት: "
#. Kgioh
-#: cui/inc/strings.hrc:302
+#: cui/inc/strings.hrc:291
msgctxt "RID_SVXSTR_NUM_POST_BREAK"
msgid "Characters after line break: "
msgstr "ባህሪው ከ መስመር መጨረሻው በኋላ: "
#. AewrH
-#: cui/inc/strings.hrc:303
+#: cui/inc/strings.hrc:292
msgctxt "RID_SVXSTR_HYPH_AUTO"
msgid "Hyphenate without inquiry"
msgstr "ጭረት ሳይጠየቅ መፈጸሚያ"
#. qCKn9
-#: cui/inc/strings.hrc:304
+#: cui/inc/strings.hrc:293
msgctxt "RID_SVXSTR_HYPH_SPECIAL"
msgid "Hyphenate special regions"
msgstr "ጭረት የ ተለዩ አካባቢዎች"
#. weKUF
-#: cui/inc/strings.hrc:306
+#: cui/inc/strings.hrc:295
msgctxt "RID_SVXSTR_JRE_NOT_RECOGNIZED"
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
@@ -1653,7 +1587,7 @@ msgstr ""
"እባክዎን የተለየ ፎልደር ይምረጡ"
#. jFLdB
-#: cui/inc/strings.hrc:307
+#: cui/inc/strings.hrc:296
msgctxt "RID_SVXSTR_JRE_FAILED_VERSION"
msgid ""
"The Java runtime environment you selected is not the required version.\n"
@@ -1663,13 +1597,13 @@ msgstr ""
"እባክዎን የተለየ ፎልደር ይምረጡ"
#. 79uiz
-#: cui/inc/strings.hrc:308
+#: cui/inc/strings.hrc:297
msgctxt "RID_SVXSTR_JAVA_START_PARAM"
msgid "Edit Parameter"
msgstr "ደንብ ማረሚያ"
#. fsbAN
-#: cui/inc/strings.hrc:310
+#: cui/inc/strings.hrc:299
msgctxt "RID_SVXSTR_OPT_PROXYPORTS"
msgid ""
"Invalid value!\n"
@@ -1681,37 +1615,37 @@ msgstr ""
"ከፍተኛው ዋጋ ለ port number is 65535."
#. UCFD6
-#: cui/inc/strings.hrc:312
+#: cui/inc/strings.hrc:301
msgctxt "RID_SVXSTR_DESC_GRADIENT"
msgid "Please enter a name for the gradient:"
msgstr "እባክዎን ለአዲሱ gradient ስም ያስገቡ:"
#. UDvKR
-#: cui/inc/strings.hrc:313
+#: cui/inc/strings.hrc:302
msgctxt "RID_SVXSTR_DESC_NEW_BITMAP"
msgid "Please enter a name for the bitmap:"
msgstr "እባክዎን ለአዲሱ bitmap ስም ያስገቡ:"
#. QXqJD
-#: cui/inc/strings.hrc:314
+#: cui/inc/strings.hrc:303
msgctxt "RID_SVXSTR_DESC_EXT_BITMAP"
msgid "Please enter a name for the external bitmap:"
msgstr "እባክዎን ስም ያስገቡ ለውጪው bitmap:"
#. SrS6X
-#: cui/inc/strings.hrc:315
+#: cui/inc/strings.hrc:304
msgctxt "RID_SVXSTR_DESC_NEW_PATTERN"
msgid "Please enter a name for the pattern:"
msgstr "እባክዎን ለ አዲሱ ንድፍ ስም ያስገቡ:"
#. yD7AW
-#: cui/inc/strings.hrc:316
+#: cui/inc/strings.hrc:305
msgctxt "RID_SVXSTR_DESC_LINESTYLE"
msgid "Please enter a name for the line style:"
msgstr "እባክዎን ለ አዲሱ መስመር ዘዴ ስም ያስገቡ:"
#. FQDrh
-#: cui/inc/strings.hrc:317
+#: cui/inc/strings.hrc:306
msgctxt "RID_SVXSTR_ASK_CHANGE_LINESTYLE"
msgid ""
"The line style was modified without saving. \n"
@@ -1721,483 +1655,495 @@ msgstr ""
"የ ተመረጠውን የ መስመር ዘዴ ያሻሽሉ ወይንም አዲስ የ መስመር ዘዴ ይጨምሩ"
#. Z5Dkg
-#: cui/inc/strings.hrc:318
+#: cui/inc/strings.hrc:307
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
msgstr "እባክዎን ለ በርካታ መስመር ስም ያስገቡ:"
#. rvyBi
-#: cui/inc/strings.hrc:319
+#: cui/inc/strings.hrc:308
msgctxt "RID_SVXSTR_CHANGE"
msgid "Modify"
msgstr "ማሻሻያ"
#. ZDhBm
-#: cui/inc/strings.hrc:320
+#: cui/inc/strings.hrc:309
msgctxt "RID_SVXSTR_ADD"
msgid "Add"
msgstr "መጨመሪያ"
#. QgAFH
-#: cui/inc/strings.hrc:321
+#: cui/inc/strings.hrc:310
msgctxt "RID_SVXSTR_DESC_COLOR"
msgid "Please enter a name for the new color:"
msgstr "እባክዎን ለ አዲሱ ቀለም ስም ያስገቡ:"
#. GKnJR
-#: cui/inc/strings.hrc:322
+#: cui/inc/strings.hrc:311
msgctxt "RID_SVXSTR_TABLE"
msgid "Table"
msgstr "ሰንጠረዥ"
#. s9ED3
-#: cui/inc/strings.hrc:323
+#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_DESC_LINEEND"
msgid "Please enter a name for the new arrow style:"
msgstr "እባክዎን ለ አዲሱ የ ቀስት ዘዴ ስም ያስገቡ:"
#. xD9BU
-#: cui/inc/strings.hrc:324
+#: cui/inc/strings.hrc:313
msgctxt "RID_SVXSTR_CHARNAME_NOSTYLE"
msgid "No %1"
msgstr "አይ %1"
#. GVkFG
-#: cui/inc/strings.hrc:325
+#: cui/inc/strings.hrc:314
msgctxt "RID_SVXSTR_CHARNAME_FAMILY"
msgid "Family:"
msgstr "ቤተሰብ:"
#. 6uDkp
-#: cui/inc/strings.hrc:326
+#: cui/inc/strings.hrc:315
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
msgstr "ፊደል:"
#. KFXAV
-#: cui/inc/strings.hrc:327
+#: cui/inc/strings.hrc:316
msgctxt "RID_SVXSTR_CHARNAME_STYLE"
msgid "Style:"
msgstr "ዘዴ:"
#. gDu75
-#: cui/inc/strings.hrc:328
+#: cui/inc/strings.hrc:317
msgctxt "RID_SVXSTR_CHARNAME_TYPEFACE"
msgid "Typeface:"
msgstr "Typeface:"
#. BcWHA
-#: cui/inc/strings.hrc:329
+#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_USE_REPLACE"
msgid "Use replacement table"
msgstr "ሰንጠረዥ መቀየሪያ ይጠቀሙ"
#. L8BEE
-#: cui/inc/strings.hrc:330
+#: cui/inc/strings.hrc:319
msgctxt "RID_SVXSTR_CPTL_STT_WORD"
msgid "Correct TWo INitial CApitals"
msgstr "Words with TWo INitial CApitals"
#. p5h3s
-#: cui/inc/strings.hrc:331
+#: cui/inc/strings.hrc:320
msgctxt "RID_SVXSTR_CPTL_STT_SENT"
msgid "Capitalize first letter of every sentence"
msgstr "ሁሉንም አረፍተ ነገር በ አቢይ ፊደል መጀመሪያውን መጻፊያ"
#. prrWd
-#: cui/inc/strings.hrc:332
+#: cui/inc/strings.hrc:321
msgctxt "RID_SVXSTR_BOLD_UNDER"
msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr "ራሱ በራሱ *ማድመቂያ*: /ማዝመሚያ/: -በላዩ ላይ መሰረዣ- እና _ከ ስሩ ማስመሪያ_"
#. a89xT
-#: cui/inc/strings.hrc:333
+#: cui/inc/strings.hrc:322
msgctxt "RID_SVXSTR_NO_DBL_SPACES"
msgid "Ignore double spaces"
msgstr "ድርብ ክፍተት መተው"
#. qEA6h
-#: cui/inc/strings.hrc:334
+#: cui/inc/strings.hrc:323
msgctxt "RID_SVXSTR_DETECT_URL"
msgid "URL Recognition"
msgstr "URL Recognition"
#. ErZiP
-#: cui/inc/strings.hrc:335
+#: cui/inc/strings.hrc:324
msgctxt "RID_SVXSTR_DETECT_DOI"
msgid "DOI citation recognition"
msgstr ""
#. JfySE
-#: cui/inc/strings.hrc:336
+#: cui/inc/strings.hrc:325
msgctxt "RID_SVXSTR_DASH"
msgid "Replace dashes"
msgstr "ዳሾችን መቀየሪያ"
#. u2BuA
-#: cui/inc/strings.hrc:337
+#: cui/inc/strings.hrc:326
msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK"
msgid "Correct accidental use of cAPS LOCK key"
msgstr "የ cAPS LOCK key በስህተት ሲጠቀሙ ማረሚያ"
#. GZqG9
-#: cui/inc/strings.hrc:338
+#: cui/inc/strings.hrc:327
msgctxt "RID_SVXSTR_NON_BREAK_SPACE"
msgid "Add non-breaking space before specific punctuation marks in French text"
msgstr "መጨመሪያ ምንም-ያልተሰበረ ክፍተት ከ ስርአተ ነጥብ በፊት ምልክት ማድረጊያ ለ ፈረንሳይኛ ጽሁፍ"
#. NDmW9
-#: cui/inc/strings.hrc:339
+#: cui/inc/strings.hrc:328
msgctxt "RID_SVXSTR_ORDINAL"
msgid "Format ordinal numbers suffixes (1st -> 1^st)"
msgstr "መደበኛ የ ቁጥር መድረሻ አቀራረብ (1st -> 1^st)"
#. 6oHuF
-#: cui/inc/strings.hrc:340
+#: cui/inc/strings.hrc:329
msgctxt "RID_SVXSTR_OLD_HUNGARIAN"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
msgstr "Transliterate to Old Hungarian if the text direction is from right to left"
#. CNtDd
-#: cui/inc/strings.hrc:341
+#: cui/inc/strings.hrc:330
msgctxt "RID_SVXSTR_ANGLE_QUOTES"
msgid "Replace << and >> with angle quotes"
msgstr "መቀየሪያ << እና >> በ አንግል ጥቅስ ምልክት"
#. Rc6Zg
-#: cui/inc/strings.hrc:342
+#: cui/inc/strings.hrc:331
msgctxt "RID_SVXSTR_DEL_EMPTY_PARA"
msgid "Remove blank paragraphs"
msgstr "ባዶ አንቀጾችን ማስወገጃ"
#. F6HCc
-#: cui/inc/strings.hrc:343
+#: cui/inc/strings.hrc:332
msgctxt "RID_SVXSTR_USER_STYLE"
msgid "Replace Custom Styles"
msgstr "ዘዴዎች ማስተካከያ መቀየሪያ"
#. itDJG
-#: cui/inc/strings.hrc:344
+#: cui/inc/strings.hrc:333
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
msgstr "ነጥቦች መቀየሪያ በ: %1"
#. BvroE
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
-#: cui/inc/strings.hrc:346
+#: cui/inc/strings.hrc:335
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than %1"
msgstr "ነጠላ መስመር አንቀጾችን መቀላቀያ እርዝመቱ ከዚህ በላይ ከሆነ %1"
#. M9kNQ
-#: cui/inc/strings.hrc:347
+#: cui/inc/strings.hrc:336
msgctxt "RID_SVXSTR_NUM"
msgid "Bulleted and numbered lists. Bullet symbol: %1"
msgstr "የ ነጥቦች እና ቁጥር የ ተሰጠው ዝርዝር: የ ነጥቦች ምልክት: %1"
+#. BAEej
+#: cui/inc/strings.hrc:337
+msgctxt "RID_SVXSTR_NUM_FORMAT_AFTER_SPACE"
+msgid "Bulleted and numbered lists immediate after pressing space"
+msgstr ""
+
#. BJVGT
-#: cui/inc/strings.hrc:348
+#: cui/inc/strings.hrc:338
msgctxt "RID_SVXSTR_BORDER"
msgid "Apply border"
msgstr "ድንበር መፈጸሚያ"
#. bXpcq
-#: cui/inc/strings.hrc:349
+#: cui/inc/strings.hrc:339
msgctxt "RID_SVXSTR_CREATE_TABLE"
msgid "Create table"
msgstr "ሰንጠረዥ መፍጠሪያ"
#. RvEBo
-#: cui/inc/strings.hrc:350
+#: cui/inc/strings.hrc:340
msgctxt "RID_SVXSTR_REPLACE_TEMPLATES"
msgid "Apply Styles"
msgstr "ዘዴዎች መፈጸሚያ"
#. 6MGUe
-#: cui/inc/strings.hrc:351
+#: cui/inc/strings.hrc:341
msgctxt "RID_SVXSTR_DEL_SPACES_AT_STT_END"
msgid "Delete spaces and tabs at beginning and end of paragraph"
msgstr "በ አንቀጾች መጀመሪያ እና መጨረሻ ክፍተቶችን እና tabs ን ማጥፊያ"
#. R9Kke
-#: cui/inc/strings.hrc:352
+#: cui/inc/strings.hrc:342
msgctxt "RID_SVXSTR_DEL_SPACES_BETWEEN_LINES"
msgid "Delete spaces and tabs at end and start of line"
msgstr "በ መስመር መጀመሪያ እና መጨረሻ ክፍተቶችን እና tabs ን ማጥፊያ"
#. GFpkR
-#: cui/inc/strings.hrc:353
+#: cui/inc/strings.hrc:343
msgctxt "RID_SVXSTR_CONNECTOR"
msgid "Connector"
msgstr "አገናኝ"
#. XDp8d
-#: cui/inc/strings.hrc:354
+#: cui/inc/strings.hrc:344
msgctxt "RID_SVXSTR_DIMENSION_LINE"
msgid "Dimension line"
msgstr "የ አቅጣጫ መስመር"
#. Mxt3D
-#: cui/inc/strings.hrc:355
+#: cui/inc/strings.hrc:345
msgctxt "RID_SVXSTR_STARTQUOTE"
msgid "Start Quote"
msgstr "የ ጥቅስ መጀመሪያ"
#. o8nY6
-#: cui/inc/strings.hrc:356
+#: cui/inc/strings.hrc:346
msgctxt "RID_SVXSTR_ENDQUOTE"
msgid "End Quote"
msgstr "የ ጥቅስ መጨረሻ"
#. cZX7G
-#: cui/inc/strings.hrc:358
+#: cui/inc/strings.hrc:348
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ጥላ የለም"
#. bzAHG
-#: cui/inc/strings.hrc:359
+#: cui/inc/strings.hrc:349
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ከ ታች በ ቀኝ በኩል ጥላ ማጥላት"
#. FjBGC
-#: cui/inc/strings.hrc:360
+#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ከ ላይ በ ቀኝ በኩል ጥላ ማጥላት"
#. 5BkoC
-#: cui/inc/strings.hrc:361
+#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ከ ታች በ ግራ በኩል ጥላ ማጥላት"
#. GYB8M
-#: cui/inc/strings.hrc:362
+#: cui/inc/strings.hrc:352
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ከ ላይ በ ግራ በኩል ጥላ ማጥላት"
#. xTvak
-#: cui/inc/strings.hrc:363
+#: cui/inc/strings.hrc:353
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "የ ተፈረመው በ: %1"
#. Uc7wm
-#: cui/inc/strings.hrc:365
+#: cui/inc/strings.hrc:355
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. 8bnrf
-#: cui/inc/strings.hrc:367
+#: cui/inc/strings.hrc:357
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "የ ተመዘገቡ ዳታቤዞች"
#. xySty
-#: cui/inc/strings.hrc:369
+#: cui/inc/strings.hrc:359
msgctxt "RID_SVXSTR_CANNOTCONVERTURL_ERR"
msgid "The URL <%1> cannot be converted to a filesystem path."
msgstr "ይህን URL <%1> ወደ ፋይል ስርአት መቀየር አይቻልም:"
#. YfSb4
-#: cui/inc/strings.hrc:371
+#: cui/inc/strings.hrc:361
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2023 LibreOffice contributors."
msgstr "Copyright © 2000–2023 LibreOffice contributors."
#. WCnhx
-#: cui/inc/strings.hrc:372
+#: cui/inc/strings.hrc:362
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ይህ ስርጭት የቀረበው በ %OOOVENDOR."
#. Lz9nx
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:363
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "የ LibreOffice መሰረት OpenOffice.org ነው"
#. 9aeNR
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:364
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
msgstr "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org"
#. q5Myk
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:365
msgctxt "aboutdialog|uilocale"
msgid "UI: $LOCALE"
msgstr "UI: $LOCALE"
#. 3vXzF
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:367
msgctxt "optpathspage|editpaths"
msgid "Edit Paths: %1"
msgstr "መንገዶችን ማረሚያ: %1"
#. 8ZaCL
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:369
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Label"
msgstr "ምልክት"
#. GceL6
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:370
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Command"
msgstr "ትእዛዝ"
#. dRqYc
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:371
msgctxt "RID_SVXSTR_COMMANDLABEL"
msgid "Tooltip"
msgstr "ፍንጭ"
#. NBDBv
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL"
msgid "Experimental"
msgstr "ለ ሙከራ"
#. 3FZFt
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_QRCODEDATALONG"
msgid "The URL or text is too long for the current error correction level. Either shorten the text or decrease the correction level."
msgstr "URL ወይንም ጽሁፉ በጣም እረጅም ነው: ለ አሁኑ ስህተት ማረሚያ ጽሁፉን ያሳጥሩ ወይንም የ ማረሚያ ደረጃውን ይቀንሱ:"
#. AD8QJ
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_DELETEUSERCOLOR1"
msgid "You can only delete user-defined colors"
msgstr "እርስዎ ማጥፋት የሚችሉት በ ተጠቃሚ-የ ተገለጸውን ቀለም ብቻ ነው:"
#. 4LWGV
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_DELETEUSERCOLOR2"
msgid "Please select the color to delete"
msgstr "እባክዎን ማጥፋት የሚፈጉትን ቀለም ይምረጡ:"
#. FjQQ5
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON"
msgid "Install"
msgstr "መግጠሚያ"
#. 2GUFq
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON"
msgid "Installed"
msgstr "ተገጥሟል"
#. TmK5f
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING"
msgid "Installing"
msgstr "በ መግጠም ላይ"
#. izdAK
-#: cui/inc/strings.hrc:391
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING"
msgid "Searching..."
msgstr "በ መፈለግ ላይ..."
#. HYT6K
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_ADDITIONS_LOADING"
msgid "Loading..."
msgstr "በ መጫን ላይ..."
#. 88Ect
-#: cui/inc/strings.hrc:393
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_ADDITIONS_DIALOG_TITLE_PREFIX"
msgid "Extensions"
msgstr "ተጨማሪዎች"
#. LWw9B
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_ADDITIONS_DICTIONARY"
msgid "Extensions: Dictionary"
msgstr "ተጨማሪ: መዝገበ ቃላት"
#. MEZpu
-#: cui/inc/strings.hrc:395
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_ADDITIONS_GALLERY"
msgid "Extensions: Gallery"
msgstr "ተጨማሪ: አዳራሽ"
#. R8obE
-#: cui/inc/strings.hrc:396
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_ADDITIONS_ICONS"
msgid "Extensions: Icons"
msgstr "ተጨማሪ: ምልክት"
#. AqGWn
-#: cui/inc/strings.hrc:397
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_ADDITIONS_PALETTES"
msgid "Extensions: Color Palette"
msgstr "ተጨማሪ: ቀለም ማሰናጃ"
#. mncuJ
-#: cui/inc/strings.hrc:398
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_ADDITIONS_TEMPLATES"
msgid "Extensions: Templates"
msgstr "ተጨማሪ: ቴምፕሌቶች"
#. KTtQE
-#: cui/inc/strings.hrc:400
+#: cui/inc/strings.hrc:390
msgctxt "RID_SVXSTR_UI_APPLYALL"
msgid "Apply to %MODULE"
msgstr "መፈጸሚያ ወደ %MODULE"
#. Xr3W9
-#: cui/inc/strings.hrc:402
+#: cui/inc/strings.hrc:392
msgctxt "RID_SVXSTR_OLE_INSERT"
msgid "Inserting OLE object..."
msgstr "የ OLE እቃ በ ማስገባት ላይ..."
#. QMiCF
-#: cui/inc/strings.hrc:404
+#: cui/inc/strings.hrc:394
msgctxt "RID_CUISTR_CLICK_RESULT"
msgid "(Click on any test to view its resultant bitmap image)"
msgstr ""
#. BT9KG
-#: cui/inc/strings.hrc:405
+#: cui/inc/strings.hrc:395
msgctxt "RID_CUISTR_ZIPFAIL"
msgid "Creation of ZIP file failed."
msgstr "ZIP ፋይል መፍጠር አልተቻለም"
#. 9QSQr
-#: cui/inc/strings.hrc:406
+#: cui/inc/strings.hrc:396
msgctxt "RID_CUISTR_SAVED"
msgid "The results have been successfully saved in the file 'GraphicTestResults.zip'!"
msgstr ""
#. vsprc
-#: cui/inc/strings.hrc:407
+#: cui/inc/strings.hrc:397
msgctxt "RID_CUISTR_OPT_READONLY"
msgid "This property is locked for editing."
msgstr ""
#. RAA72
-#: cui/inc/strings.hrc:409
+#: cui/inc/strings.hrc:399
msgctxt "RID_LANGUAGETOOL_LEAVE_EMPTY"
msgid "Leave this field empty to use the free version"
msgstr ""
#. SJCiC
-#: cui/inc/strings.hrc:410
+#: cui/inc/strings.hrc:400
msgctxt "RID_LANGUAGETOOL_REST_LEAVE_EMPTY"
msgid "Leave this field empty to use LanguageTool protocol"
msgstr ""
+#. GeMAG
+#: cui/inc/strings.hrc:402
+msgctxt "RID_CUISTR_A11Y_DESC_BACKUP"
+msgid "Specifies if the backup copy should be stored in the same folder as the original document. If not selected, the backup copy is stored in the folder specified in Tools - Options - %PRODUCTNAME - Paths - Backups."
+msgstr ""
+
#. FoBUc
#. Translatable names of color schemes
-#: cui/inc/strings.hrc:413
+#: cui/inc/strings.hrc:405
msgctxt "RID_COLOR_SCHEME_LIBREOFFICE_AUTOMATIC"
msgid "Automatic"
msgstr ""
@@ -2608,11 +2554,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text."
msgstr ""
-#. TD8Ux
+#. yv67G
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
-msgstr "የ ግርጌ ማስታወሻ አቀራረብ ለ ማስተካከል በ መሳሪያዎች ▸ የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ…"
+msgid "Customize footnote appearance with Tools ▸ Footnote/Endnote Settings…"
+msgstr ""
#. muc5F
#: cui/inc/tipoftheday.hrc:123
@@ -2831,11 +2777,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
msgstr ""
-#. GSVYQ
+#. zkswJ
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
-msgstr "የ እርስዎን የ ግርጌ ማስታወሻ ቁጥር መስጠት ያስችሎታል በየ ገጹ: በየ ምእራፉ: በየ ሰነዱ ውስጥ: መሳሪያዎች ▸ የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ ▸ የ ግርጌ ማስታወሻ tab ▸ መቁጠሪያ:"
+msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnote/Endnote Settings ▸ Footnotes tab ▸ Counting."
+msgstr ""
#. gpVRV
#: cui/inc/tipoftheday.hrc:160
@@ -3584,51 +3530,57 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don’t like the position of some icons on your toolbar? Change it with Tools ▸ Customize ▸ Toolbars tab ▸ Target."
msgstr ""
+#. jFitB
+#: cui/inc/tipoftheday.hrc:280
+msgctxt "RID_CUI_TIPOFTHEDAY"
+msgid "Can’t find a command in the menus? Try Shift+ESC."
+msgstr ""
+
#. hsZPg
-#: cui/inc/tipoftheday.hrc:282
+#: cui/inc/tipoftheday.hrc:283
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
msgstr "%PRODUCTNAME እርዳታ"
#. NG4jW
-#: cui/inc/tipoftheday.hrc:283
+#: cui/inc/tipoftheday.hrc:284
msgctxt "STR_MORE_LINK"
msgid "More info"
msgstr "ተጨማሪ መረጃ"
#. sCREc
-#: cui/inc/tipoftheday.hrc:284
+#: cui/inc/tipoftheday.hrc:285
msgctxt "STR_UNO_LINK"
msgid "Run this action now..."
msgstr "ይህን ተግባር አሁን ማስኬጃ..."
#. P6JME
-#: cui/inc/tipoftheday.hrc:285
+#: cui/inc/tipoftheday.hrc:286
msgctxt "STR_TITLE"
msgid "Tip of the Day: %CURRENT/%TOTAL"
msgstr "የ እለቱ ጠቃሚ ምክር: %CURRENT/%TOTAL"
#. C6Dsn
-#: cui/inc/tipoftheday.hrc:286
+#: cui/inc/tipoftheday.hrc:287
msgctxt "STR_CMD"
msgid "⌘ Cmd"
msgstr "⌘ Cmd"
#. RpVWs
#. use narrow no-break space U+202F here
-#: cui/inc/tipoftheday.hrc:287
+#: cui/inc/tipoftheday.hrc:288
msgctxt "STR_CTRL"
msgid "Ctrl"
msgstr "Ctrl"
#. mZWSR
-#: cui/inc/tipoftheday.hrc:288
+#: cui/inc/tipoftheday.hrc:289
msgctxt "STR_CMD"
msgid "Alt"
msgstr "Alt"
#. QtEGa
-#: cui/inc/tipoftheday.hrc:289
+#: cui/inc/tipoftheday.hrc:290
msgctxt "STR_CTRL"
msgid "⌥ Opt"
msgstr "⌥ Opt"
@@ -5214,115 +5166,115 @@ msgid "Sets the fill properties of the selected drawing object."
msgstr "ለ ተመረጠው የ መሳያ እቃ የ መሙያ ባህሪዎች ማሰናጃ:"
#. as89H
-#: cui/uiconfig/ui/areatabpage.ui:34
+#: cui/uiconfig/ui/areatabpage.ui:33
msgctxt "areatabpage|tablelb"
msgid "Cell"
msgstr "ክፍል"
#. yowxv
-#: cui/uiconfig/ui/areatabpage.ui:35
+#: cui/uiconfig/ui/areatabpage.ui:34
msgctxt "areatabpage|tablelb"
msgid "Row"
msgstr "ረድፍ"
#. sEdWf
-#: cui/uiconfig/ui/areatabpage.ui:36
+#: cui/uiconfig/ui/areatabpage.ui:35
msgctxt "areatabpage|tablelb"
msgid "Table"
msgstr "ሰንጠረዥ"
#. WxC4H
-#: cui/uiconfig/ui/areatabpage.ui:40
+#: cui/uiconfig/ui/areatabpage.ui:39
msgctxt "areatabpage|extended_tip|tablelb"
msgid "Set the fill options for the selected drawing object or document element."
msgstr ""
#. 2kC9i
-#: cui/uiconfig/ui/areatabpage.ui:52
+#: cui/uiconfig/ui/areatabpage.ui:51
msgctxt "areatabpage|btnnone"
msgid "None"
msgstr "ምንም"
#. kTpV7
-#: cui/uiconfig/ui/areatabpage.ui:58
+#: cui/uiconfig/ui/areatabpage.ui:57
msgctxt "areatabpage|extended_tip|btnnone"
msgid "Do not fill the selected object."
msgstr "የ ተመረጠውን እቃ አትሙላ:"
#. AiEuM
-#: cui/uiconfig/ui/areatabpage.ui:70
+#: cui/uiconfig/ui/areatabpage.ui:69
msgctxt "areatabpage|btncolor"
msgid "Color"
msgstr "ቀለም"
#. xhtbg
-#: cui/uiconfig/ui/areatabpage.ui:76
+#: cui/uiconfig/ui/areatabpage.ui:75
msgctxt "areatabpage|extended_tip|btncolor"
msgid "Fills the object with a color selected on this page."
msgstr ""
#. zXDcA
-#: cui/uiconfig/ui/areatabpage.ui:88
+#: cui/uiconfig/ui/areatabpage.ui:87
msgctxt "areatabpage|btngradient"
msgid "Gradient"
msgstr "ከፍታ"
#. AGYbc
-#: cui/uiconfig/ui/areatabpage.ui:94
+#: cui/uiconfig/ui/areatabpage.ui:93
msgctxt "areatabpage|extended_tip|btngradient"
msgid "Fills the object with a gradient selected on this page."
msgstr "እቃውን እዚህ ገጽ ላይ በ ተመረጠው ከፍታ መሙያ:"
#. q5cAU
-#: cui/uiconfig/ui/areatabpage.ui:106
+#: cui/uiconfig/ui/areatabpage.ui:105
msgctxt "areatabpage|btnbitmap"
msgid "Image"
msgstr "ምስል"
#. ELAno
-#: cui/uiconfig/ui/areatabpage.ui:112
+#: cui/uiconfig/ui/areatabpage.ui:111
msgctxt "areatabpage|extended_tip|btnbitmap"
msgid "Fills the object with a bitmap image selected on this page."
msgstr ""
#. 9q7GD
-#: cui/uiconfig/ui/areatabpage.ui:124
+#: cui/uiconfig/ui/areatabpage.ui:123
msgctxt "areatabpage|btnpattern"
msgid "Pattern"
msgstr "ንድፍ"
#. 2mrDx
-#: cui/uiconfig/ui/areatabpage.ui:130
+#: cui/uiconfig/ui/areatabpage.ui:129
msgctxt "areatabpage|extended_tip|btnpattern"
msgid "Fills the object with a dot pattern selected on this page."
msgstr ""
#. 5y6vj
-#: cui/uiconfig/ui/areatabpage.ui:142
+#: cui/uiconfig/ui/areatabpage.ui:141
msgctxt "areatabpage|btnhatch"
msgid "Hatch"
msgstr "በርካታ መስመር"
#. irCyE
-#: cui/uiconfig/ui/areatabpage.ui:148
+#: cui/uiconfig/ui/areatabpage.ui:147
msgctxt "areatabpage|extended_tip|btnhatch"
msgid "Fills the object with a hatching pattern selected on this page."
msgstr ""
#. Tap6L
-#: cui/uiconfig/ui/areatabpage.ui:160
+#: cui/uiconfig/ui/areatabpage.ui:159
msgctxt "areatabpage|btnusebackground"
msgid "Use Background"
msgstr ""
#. BEBkY
-#: cui/uiconfig/ui/areatabpage.ui:166
+#: cui/uiconfig/ui/areatabpage.ui:165
msgctxt "areatabpage|extended_tip|btnusebackground"
msgid "Displays the underlying slide background."
msgstr ""
#. TFDzi
-#: cui/uiconfig/ui/areatabpage.ui:220
+#: cui/uiconfig/ui/areatabpage.ui:219
msgctxt "areatabpage|extended_tip|AreaTabPage"
msgid "Set the fill options for the selected drawing object or document element."
msgstr ""
@@ -7942,85 +7894,91 @@ msgid "Connection Pool"
msgstr "ግንኙነቱ ማጠራቀሚያ"
#. XfFi7
-#: cui/uiconfig/ui/croppage.ui:82
+#: cui/uiconfig/ui/croppage.ui:80
msgctxt "croppage|keepscale"
msgid "Keep _scale"
msgstr "_መጠኑን መጠበቂያ"
#. fCWwt
-#: cui/uiconfig/ui/croppage.ui:97
+#: cui/uiconfig/ui/croppage.ui:95
msgctxt "croppage|keepsize"
msgid "Keep image si_ze"
msgstr "የ ምስሉን መጠን መጠ_በቂያ"
#. JcdEh
-#: cui/uiconfig/ui/croppage.ui:121
+#: cui/uiconfig/ui/croppage.ui:118
msgctxt "croppage|label2"
msgid "_Left:"
msgstr "በ _ግራ:"
#. J8z8h
-#: cui/uiconfig/ui/croppage.ui:149
+#: cui/uiconfig/ui/croppage.ui:146
msgctxt "croppage|label3"
msgid "_Right:"
msgstr "_በ ቀኝ:"
#. GxnM4
-#: cui/uiconfig/ui/croppage.ui:190
+#: cui/uiconfig/ui/croppage.ui:186
msgctxt "croppage|label4"
msgid "_Top:"
msgstr "ከ _ላይ:"
#. VAUDo
-#: cui/uiconfig/ui/croppage.ui:204
+#: cui/uiconfig/ui/croppage.ui:200
msgctxt "croppage|label5"
msgid "_Bottom:"
msgstr "ከ _ታች:"
#. BSBCG
-#: cui/uiconfig/ui/croppage.ui:303
+#: cui/uiconfig/ui/croppage.ui:298
msgctxt "croppage|origsize"
msgid "_Original Size"
msgstr "_ዋናው መጠን"
+#. dZqd5
+#: cui/uiconfig/ui/croppage.ui:319
+msgctxt "croppage|uncrop"
+msgid "Reset Crop"
+msgstr ""
+
#. 8CoGW
-#: cui/uiconfig/ui/croppage.ui:331
+#: cui/uiconfig/ui/croppage.ui:335
msgctxt "croppage|label1"
msgid "Crop"
msgstr "መከርከሚያ"
#. VG8gn
-#: cui/uiconfig/ui/croppage.ui:363
+#: cui/uiconfig/ui/croppage.ui:366
msgctxt "croppage|label6"
msgid "_Width:"
msgstr "_ስፋት:"
#. bcKhi
-#: cui/uiconfig/ui/croppage.ui:390
+#: cui/uiconfig/ui/croppage.ui:393
msgctxt "croppage|label7"
msgid "_Height:"
msgstr "_እርዝመት:"
#. JVnvr
-#: cui/uiconfig/ui/croppage.ui:419
+#: cui/uiconfig/ui/croppage.ui:422
msgctxt "croppage|label10"
msgid "Scale"
msgstr "መጠን"
#. Brcxv
-#: cui/uiconfig/ui/croppage.ui:450
+#: cui/uiconfig/ui/croppage.ui:452
msgctxt "croppage|label8"
msgid "_Width:"
msgstr "_ስፋት:"
#. tacwF
-#: cui/uiconfig/ui/croppage.ui:478
+#: cui/uiconfig/ui/croppage.ui:480
msgctxt "croppage|label9"
msgid "_Height:"
msgstr "_እርዝመት:"
#. aBkuE
-#: cui/uiconfig/ui/croppage.ui:508
+#: cui/uiconfig/ui/croppage.ui:510
msgctxt "croppage|label11"
msgid "Image Size"
msgstr "የ ምስሉ መጠን"
@@ -13402,254 +13360,266 @@ msgctxt "numberingoptionspage|extended_tip|sublevels"
msgid "Enter the number of previous levels to include in the numbering scheme. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering, the numbering scheme for the current level becomes: \"A.1\"."
msgstr ""
+#. oUMJp
+#: cui/uiconfig/ui/numberingoptionspage.ui:213
+msgctxt "numberingoptionspage|islegal"
+msgid "All sublevels Arabic"
+msgstr ""
+
+#. 7Hy8g
+#: cui/uiconfig/ui/numberingoptionspage.ui:221
+msgctxt "numberingoptionspage|extended_tip|islegal"
+msgid "Use Arabic numerals for all sublevels (\"Legal\" numbering)."
+msgstr ""
+
#. ST2Co
-#: cui/uiconfig/ui/numberingoptionspage.ui:220
+#: cui/uiconfig/ui/numberingoptionspage.ui:239
msgctxt "numberingoptionspage|extended_tip|startat"
msgid "Enter a new starting number for the current level."
msgstr "ለ አሁኑ ደረጃ አዲስ የ ቁጥር ማስጀመሪያ ያስገቡ "
#. xWX3x
-#: cui/uiconfig/ui/numberingoptionspage.ui:233
+#: cui/uiconfig/ui/numberingoptionspage.ui:252
msgctxt "numberingoptionspage|startatft"
msgid "Start at:"
msgstr "መጀመሪያ በ:"
#. PuJvD
-#: cui/uiconfig/ui/numberingoptionspage.ui:249
+#: cui/uiconfig/ui/numberingoptionspage.ui:268
msgctxt "numberingoptionspage|extended_tip|numfmtlb"
msgid "Select a numbering scheme for the selected levels."
msgstr ""
#. EDSiA
-#: cui/uiconfig/ui/numberingoptionspage.ui:262
+#: cui/uiconfig/ui/numberingoptionspage.ui:281
msgctxt "numberingoptionspage|bitmapft"
msgid "Graphics:"
msgstr "ንድፎች:"
#. Hooqo
-#: cui/uiconfig/ui/numberingoptionspage.ui:276
+#: cui/uiconfig/ui/numberingoptionspage.ui:295
msgctxt "numberingoptionspage|widthft"
msgid "Width:"
msgstr "ስፋት:"
#. EetAa
-#: cui/uiconfig/ui/numberingoptionspage.ui:296
+#: cui/uiconfig/ui/numberingoptionspage.ui:315
msgctxt "numberingoptionspage|extended_tip|widthmf"
msgid "Enter a width for the graphic."
msgstr "ለ ንድፍ ስፋት ማስገቢያ"
#. PBvy6
-#: cui/uiconfig/ui/numberingoptionspage.ui:309
+#: cui/uiconfig/ui/numberingoptionspage.ui:328
msgctxt "numberingoptionspage|heightft"
msgid "Height:"
msgstr "እርዝመት:"
#. prqMN
-#: cui/uiconfig/ui/numberingoptionspage.ui:330
+#: cui/uiconfig/ui/numberingoptionspage.ui:349
msgctxt "numberingoptionspage|extended_tip|heightmf"
msgid "Enter a height for the graphic."
msgstr "ለ ንድፍ እርዝመት ማስገቢያ"
#. bRHQn
-#: cui/uiconfig/ui/numberingoptionspage.ui:341
+#: cui/uiconfig/ui/numberingoptionspage.ui:360
msgctxt "numberingoptionspage|keepratio"
msgid "Keep ratio"
msgstr "መጠን መጠበቂያ"
#. aeFQE
-#: cui/uiconfig/ui/numberingoptionspage.ui:349
+#: cui/uiconfig/ui/numberingoptionspage.ui:368
msgctxt "numberingoptionspage|extended_tip|keepratio"
msgid "Maintains the size proportions of the graphic."
msgstr "የ ንድፉን መጠን ተመጣጣኝነት ይጠብቃል"
#. 7Wuu8
-#: cui/uiconfig/ui/numberingoptionspage.ui:362
+#: cui/uiconfig/ui/numberingoptionspage.ui:381
msgctxt "numberingoptionspage|orientft"
msgid "Alignment:"
msgstr "ማሰለፊያ:"
#. BJjDU
-#: cui/uiconfig/ui/numberingoptionspage.ui:378
+#: cui/uiconfig/ui/numberingoptionspage.ui:397
msgctxt "numberingoptionspage|orientlb"
msgid "Top of baseline"
msgstr "ከ መሰረታዊ መሰመር በላይ"
#. YgzFa
-#: cui/uiconfig/ui/numberingoptionspage.ui:379
+#: cui/uiconfig/ui/numberingoptionspage.ui:398
msgctxt "numberingoptionspage|orientlb"
msgid "Center of baseline"
msgstr "ከ መሰረታዊ መስመሩ መሀከል"
#. rRWyY
-#: cui/uiconfig/ui/numberingoptionspage.ui:380
+#: cui/uiconfig/ui/numberingoptionspage.ui:399
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of baseline"
msgstr "ከ መሰረታዊ መስመሩ በ ታች"
#. GRqAC
-#: cui/uiconfig/ui/numberingoptionspage.ui:381
+#: cui/uiconfig/ui/numberingoptionspage.ui:400
msgctxt "numberingoptionspage|orientlb"
msgid "Top of character"
msgstr "ከ ባህሪው በላይ"
#. 5z7jX
-#: cui/uiconfig/ui/numberingoptionspage.ui:382
+#: cui/uiconfig/ui/numberingoptionspage.ui:401
msgctxt "numberingoptionspage|orientlb"
msgid "Center of character"
msgstr "ከ ባህሪው መሀከል"
#. MsKwk
-#: cui/uiconfig/ui/numberingoptionspage.ui:383
+#: cui/uiconfig/ui/numberingoptionspage.ui:402
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of character"
msgstr "ከ ባህሪው በ ታች"
#. JJEdP
-#: cui/uiconfig/ui/numberingoptionspage.ui:384
+#: cui/uiconfig/ui/numberingoptionspage.ui:403
msgctxt "numberingoptionspage|orientlb"
msgid "Top of line"
msgstr "ከ መስመሩ በላይ"
#. UoEug
-#: cui/uiconfig/ui/numberingoptionspage.ui:385
+#: cui/uiconfig/ui/numberingoptionspage.ui:404
msgctxt "numberingoptionspage|orientlb"
msgid "Center of line"
msgstr "ከ መስመሩ መሀከል"
#. 7dPkC
-#: cui/uiconfig/ui/numberingoptionspage.ui:386
+#: cui/uiconfig/ui/numberingoptionspage.ui:405
msgctxt "numberingoptionspage|orientlb"
msgid "Bottom of line"
msgstr "ከ መስመሩ በ ታች"
#. Quwne
-#: cui/uiconfig/ui/numberingoptionspage.ui:390
+#: cui/uiconfig/ui/numberingoptionspage.ui:409
msgctxt "numberingoptionspage|extended_tip|orientlb"
msgid "Select the alignment option for the graphic."
msgstr "ለ ንድፍ የ ማሰለፊያ ምርጫ ይምረጡ"
#. CoAAt
-#: cui/uiconfig/ui/numberingoptionspage.ui:401
+#: cui/uiconfig/ui/numberingoptionspage.ui:420
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
msgstr "ይምረጡ..."
#. Eqa4C
-#: cui/uiconfig/ui/numberingoptionspage.ui:413
+#: cui/uiconfig/ui/numberingoptionspage.ui:432
msgctxt "numberingoptionspage|extended_tip|bitmap"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
msgstr "ይምረጡ ንድፍ ወይንም የ ንድፍ ፋይል ፈልገው ያግኙ እንደ ነጥብ እርስዎ መጠቀም የሚፈልጉትን "
#. nSL3K
-#: cui/uiconfig/ui/numberingoptionspage.ui:435
+#: cui/uiconfig/ui/numberingoptionspage.ui:454
msgctxt "numberingoptionspage|extended_tip|color"
msgid "Select a color for the current numbering scheme."
msgstr ""
#. hJgCL
-#: cui/uiconfig/ui/numberingoptionspage.ui:453
+#: cui/uiconfig/ui/numberingoptionspage.ui:472
msgctxt "numberingoptionspage|extended_tip|relsize"
msgid "Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph."
msgstr "እርስዎ ከ አሁኑ አንቀጽ ፊደል አንፃር በምን ያህል መጠን የ ነጥብ ባህሪ እንደገና እንደሚመጠን ያስገቡ "
#. M4aPS
-#: cui/uiconfig/ui/numberingoptionspage.ui:464
+#: cui/uiconfig/ui/numberingoptionspage.ui:483
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
msgstr "ይምረጡ..."
#. vfKmd
-#: cui/uiconfig/ui/numberingoptionspage.ui:470
+#: cui/uiconfig/ui/numberingoptionspage.ui:489
msgctxt "numberingoptionspage|extended_tip|bullet"
msgid "Select the graphic, or locate the graphic file that you want to use as a bullet."
msgstr "ይምረጡ ንድፍ ወይንም የ ንድፍ ፋይል ፈልገው ያግኙ እንደ ነጥብ እርስዎ መጠቀም የሚፈልጉትን"
#. RJa39
-#: cui/uiconfig/ui/numberingoptionspage.ui:483
+#: cui/uiconfig/ui/numberingoptionspage.ui:502
msgctxt "numberingoptionspage|prefixft"
msgid "Before:"
msgstr "በፊት:"
#. EzDC5
-#: cui/uiconfig/ui/numberingoptionspage.ui:498
+#: cui/uiconfig/ui/numberingoptionspage.ui:517
msgctxt "numberingoptionspage|separator"
msgid "Separator"
msgstr "መለያያ"
#. GCjCU
-#: cui/uiconfig/ui/numberingoptionspage.ui:515
+#: cui/uiconfig/ui/numberingoptionspage.ui:534
msgctxt "numberingoptionspage|extended_tip|suffix"
msgid "Enter a character or the text to display behind the number in the list. To create the numbering scheme \"1.)\", enter \".)\" in this box."
msgstr ""
#. wVrAN
-#: cui/uiconfig/ui/numberingoptionspage.ui:532
+#: cui/uiconfig/ui/numberingoptionspage.ui:551
msgctxt "numberingoptionspage|extended_tip|prefix"
msgid "Enter a character or the text to display in front of the number in the list."
msgstr "ባህሪ ወይንም ጽሁፍ ያስገቡ ለማሳየት ከ ቁጥር ፊት በ ዝርዝር ውስጥ "
#. FLJWG
-#: cui/uiconfig/ui/numberingoptionspage.ui:545
+#: cui/uiconfig/ui/numberingoptionspage.ui:564
msgctxt "numberingoptionspage|suffixft"
msgid "After:"
msgstr "በኋላ:"
#. TZVTJ
-#: cui/uiconfig/ui/numberingoptionspage.ui:559
+#: cui/uiconfig/ui/numberingoptionspage.ui:578
msgctxt "numberingoptionspage|sublevelsft"
msgid "Show sublevels:"
msgstr "ንዑስ ደረጃዎች ማሳያ:"
#. FaDZX
-#: cui/uiconfig/ui/numberingoptionspage.ui:574
+#: cui/uiconfig/ui/numberingoptionspage.ui:593
msgctxt "numberingoptionspage|bulletft"
msgid "Character:"
msgstr "ባህሪዎች:"
#. 6jTGa
-#: cui/uiconfig/ui/numberingoptionspage.ui:588
+#: cui/uiconfig/ui/numberingoptionspage.ui:607
msgctxt "numberingoptionspage|relsizeft"
msgid "_Relative size:"
msgstr "_አንፃራዊ መጠን:"
#. 6r484
-#: cui/uiconfig/ui/numberingoptionspage.ui:602
+#: cui/uiconfig/ui/numberingoptionspage.ui:621
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
msgstr "ቀለም:"
#. ksG2M
-#: cui/uiconfig/ui/numberingoptionspage.ui:616
+#: cui/uiconfig/ui/numberingoptionspage.ui:635
msgctxt "numberingoptionspage|charstyleft"
msgid "Character style:"
msgstr "የ ባህሪ ዘዴ:"
#. S9jNu
-#: cui/uiconfig/ui/numberingoptionspage.ui:651
+#: cui/uiconfig/ui/numberingoptionspage.ui:670
msgctxt "numberingoptionspage|label2"
msgid "Numbering"
msgstr "ቁጥር መስጫ"
#. kcgWM
-#: cui/uiconfig/ui/numberingoptionspage.ui:672
+#: cui/uiconfig/ui/numberingoptionspage.ui:691
msgctxt "numberingoptionspage|allsame"
msgid "_Consecutive numbering"
msgstr "_ተከታታይ ቁጥር መስጫ"
#. 48AhR
-#: cui/uiconfig/ui/numberingoptionspage.ui:682
+#: cui/uiconfig/ui/numberingoptionspage.ui:701
msgctxt "numberingoptionspage|extended_tip|allsame"
msgid "Increases the numbering by one as you go down each level in the list hierarchy."
msgstr "ቁጥር መስጫው በ አንድ ይጨምራል እርስዎ በ ዝርዝር ቅደም ተከተል መሰረት ወደ ታች ሲወርዱ "
#. 9VSpp
-#: cui/uiconfig/ui/numberingoptionspage.ui:691
+#: cui/uiconfig/ui/numberingoptionspage.ui:710
msgctxt "numberingoptionspage|label3"
msgid "All Levels"
msgstr "ሁሉንም ደረጃዎች"
#. DJptx
-#: cui/uiconfig/ui/numberingoptionspage.ui:746
+#: cui/uiconfig/ui/numberingoptionspage.ui:765
msgctxt "numberingoptionspage|previewlabel"
msgid "Preview"
msgstr "ቅድመ እይታ"
@@ -15792,11 +15762,11 @@ msgctxt "optlanguagespage|localesettingFT"
msgid "Locale setting:"
msgstr "ቋንቋ ማሰናጃ:"
-#. Zyao3
+#. Tns7H
#: cui/uiconfig/ui/optlanguagespage.ui:399
msgctxt "optlanguagespage|label6"
-msgid "Decimal separator key:"
-msgstr "የ ዴሲማል መለያ ቁልፍ:"
+msgid "Decimal key on the numpad:"
+msgstr ""
#. cuqUB
#: cui/uiconfig/ui/optlanguagespage.ui:413
@@ -15834,11 +15804,11 @@ msgctxt "optlanguagespage|decimalseparator"
msgid "_Same as locale setting ( %1 )"
msgstr "_ተመሳሳይ እንደ ቋንቋ ማሰናጃ ( %1 )"
-#. G5VXy
+#. jDbZT
#: cui/uiconfig/ui/optlanguagespage.ui:500
msgctxt "extended_tip|decimalseparator"
-msgid "Specifies to use the decimal separator key that is set in your system when you press the respective key on the number pad."
-msgstr "የ ዴሲማል መለያያ ቁልፍ በ እርስዎ ስርአት የ ተሰናዳ ለ መጠቀም ይወስኑ: እርስዎ በሚጫኑ ጊዜ እያንዳንዱን ቁልፍ በ ቁጥር ገበታ ላይ "
+msgid "Specifies to use the numeric keypad decimal key that is set in your system when you press the respective key on the number pad."
+msgstr ""
#. BGtpx
#: cui/uiconfig/ui/optlanguagespage.ui:515
@@ -16483,164 +16453,170 @@ msgid "Automatically save the document too"
msgstr "ራሱ በራሱ ሰነዱን ማስቀመጫ ወደ"
#. mKGDm
-#: cui/uiconfig/ui/optsavepage.ui:192
+#: cui/uiconfig/ui/optsavepage.ui:193
msgctxt "userautosave"
msgid "Specifies that the office suite saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does."
msgstr ""
#. kwFtx
-#: cui/uiconfig/ui/optsavepage.ui:203
+#: cui/uiconfig/ui/optsavepage.ui:204
msgctxt "optsavepage|relative_fsys"
msgid "Save URLs relative to file system"
msgstr "URLs ማስቀመጫ ከ ፋይል ስርአት አንፃር"
#. jDKxF
-#: cui/uiconfig/ui/optsavepage.ui:211
+#: cui/uiconfig/ui/optsavepage.ui:212
msgctxt "relative_fsys"
msgid "Select this box for relative saving of URLs in the file system."
msgstr ""
#. 8xmX3
-#: cui/uiconfig/ui/optsavepage.ui:222
+#: cui/uiconfig/ui/optsavepage.ui:223
msgctxt "optsavepage|docinfo"
msgid "_Edit document properties before saving"
msgstr "የ ሰነዶችን ባህሪዎች ከ ማስቀመጥ በፊት _ማረሚያ"
#. LSD3v
-#: cui/uiconfig/ui/optsavepage.ui:230
+#: cui/uiconfig/ui/optsavepage.ui:231
msgctxt "docinfo"
msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
msgstr ""
#. ctAxA
-#: cui/uiconfig/ui/optsavepage.ui:241
+#: cui/uiconfig/ui/optsavepage.ui:242
msgctxt "optsavepage|relative_inet"
msgid "Save URLs relative to internet"
msgstr "URLs ማስቀመጫ ከ ኢንተርኔት አንፃር"
#. WYrQB
-#: cui/uiconfig/ui/optsavepage.ui:249
+#: cui/uiconfig/ui/optsavepage.ui:250
msgctxt "relative_inet"
msgid "Select this box for relative saving of URLs to the Internet."
msgstr ""
#. YsjVX
-#: cui/uiconfig/ui/optsavepage.ui:260
+#: cui/uiconfig/ui/optsavepage.ui:261
msgctxt "optsavepage|backup"
msgid "Al_ways create backup copy"
msgstr "ሁል_ጊዜ ተተኪ ኮፒ መፍጠሪያ"
#. vhCe5
-#: cui/uiconfig/ui/optsavepage.ui:268
+#: cui/uiconfig/ui/optsavepage.ui:269
msgctxt "backup"
msgid "Saves the previous version of a document as a backup copy whenever you save a document. Every time the office suite creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension .BAK."
msgstr ""
+#. ijsoS
+#: cui/uiconfig/ui/optsavepage.ui:280
+msgctxt "optsavepage|backupintodocumentfolder"
+msgid "Place backup in same folder as document"
+msgstr ""
+
#. NaGCU
-#: cui/uiconfig/ui/optsavepage.ui:283
+#: cui/uiconfig/ui/optsavepage.ui:299
msgctxt "optsavepage|label2"
msgid "Save"
msgstr "ማስቀመጫ"
#. TDBAs
-#: cui/uiconfig/ui/optsavepage.ui:312
+#: cui/uiconfig/ui/optsavepage.ui:328
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
msgstr "በ ODF ወይንም በነባር አቀራረብ ሳይቀምጥ ሲቀር አስጠንቅቀኝ"
#. zGBEu
-#: cui/uiconfig/ui/optsavepage.ui:320
+#: cui/uiconfig/ui/optsavepage.ui:336
msgctxt "warnalienformat"
msgid "You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in Load/Save - General in the Options dialog box."
msgstr ""
#. 5ANvD
#. EN-US, the term 'extended' must not be translated.
-#: cui/uiconfig/ui/optsavepage.ui:341
+#: cui/uiconfig/ui/optsavepage.ui:357
msgctxt "optsavepage|odfwarning_label"
msgid "Not using ODF 1.3 Extended may cause information to be lost."
msgstr ""
#. 6Tfns
-#: cui/uiconfig/ui/optsavepage.ui:371
+#: cui/uiconfig/ui/optsavepage.ui:387
msgctxt "optsavepage|odfversion"
msgid "1.0/1.1"
msgstr "1.0/1.1"
#. BJSfi
-#: cui/uiconfig/ui/optsavepage.ui:372
+#: cui/uiconfig/ui/optsavepage.ui:388
msgctxt "optsavepage|odfversion"
msgid "1.2"
msgstr "1.2"
#. k3jkA
-#: cui/uiconfig/ui/optsavepage.ui:373
+#: cui/uiconfig/ui/optsavepage.ui:389
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended (compatibility mode)"
msgstr "1.2 የ ተስፋፋ (የ ተስማሚነቱ ዘዴ)"
#. G826f
-#: cui/uiconfig/ui/optsavepage.ui:374
+#: cui/uiconfig/ui/optsavepage.ui:390
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
msgstr ""
#. vLmeZ
-#: cui/uiconfig/ui/optsavepage.ui:375
+#: cui/uiconfig/ui/optsavepage.ui:391
msgctxt "optsavepage|odfversion"
msgid "1.3"
msgstr ""
#. e6EP2
-#: cui/uiconfig/ui/optsavepage.ui:376
+#: cui/uiconfig/ui/optsavepage.ui:392
msgctxt "optsavepage|odfversion"
msgid "1.3 Extended (recommended)"
msgstr ""
#. w2urA
-#: cui/uiconfig/ui/optsavepage.ui:380
+#: cui/uiconfig/ui/optsavepage.ui:396
msgctxt "odfversion"
msgid "Some companies or organizations may require ODF documents in the ODF 1.0/1.1, or ODF 1.2 format. You can select these format to save in the listbox. These older formats cannot store all new features, so the new format ODF 1.3 (Extended) is recommended where possible."
msgstr ""
#. cxPqV
-#: cui/uiconfig/ui/optsavepage.ui:393
+#: cui/uiconfig/ui/optsavepage.ui:409
msgctxt "optsavepage|label5"
msgid "ODF format version:"
msgstr "የ ODF አቀራረብ አትም:"
#. bF5dA
-#: cui/uiconfig/ui/optsavepage.ui:407
+#: cui/uiconfig/ui/optsavepage.ui:423
msgctxt "optsavepage|saveas_label"
msgid "Always sa_ve as:"
msgstr "ሁልጊዜ ማስ_ቀመጫ እንደ:"
#. iCZX2
-#: cui/uiconfig/ui/optsavepage.ui:423
+#: cui/uiconfig/ui/optsavepage.ui:439
msgctxt "doctype"
msgid "Specifies the document type for which you want to define the default file format."
msgstr ""
#. 69GMF
-#: cui/uiconfig/ui/optsavepage.ui:438
+#: cui/uiconfig/ui/optsavepage.ui:454
msgctxt "saveas"
msgid "Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the Save as dialog."
msgstr ""
#. 29FUf
-#: cui/uiconfig/ui/optsavepage.ui:451
+#: cui/uiconfig/ui/optsavepage.ui:467
msgctxt "optsavepage|label6"
msgid "D_ocument type:"
msgstr "የ ሰ_ነዱ አይነት:"
#. CgCxr
-#: cui/uiconfig/ui/optsavepage.ui:467
+#: cui/uiconfig/ui/optsavepage.ui:483
msgctxt "optsavepage|label3"
msgid "Default File Format and ODF Settings"
msgstr "ነባር የ ፋይል አቀራረብ እና የ ODF ማሰናጃ"
#. G7BAM
-#: cui/uiconfig/ui/optsavepage.ui:481
+#: cui/uiconfig/ui/optsavepage.ui:497
msgctxt "OptSavePage"
msgid "In the General section, you can select default settings for saving documents, and can select default file formats."
msgstr ""
@@ -16807,11 +16783,29 @@ msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "የ ደህንነት ምርጫዎች እና ማስጠንቀቂያዎች"
-#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:492
-msgctxt "extended_tip|OptSecurityPage"
-msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
-msgstr "የ ደህንነት ምርጫ መግለጫ ሰነዶች ለ ማስቀመጫ: ለ ዌብ ግንኙነት እና ሰነዶችን ለ መክፈቻ ማክሮስ የያዙ"
+#. M4Y8V
+#: cui/uiconfig/ui/optsecuritypage.ui:511
+msgctxt "optsecuritypage|label11"
+msgid "Select custom certificate manager executable. Note that LibreOffice tries to locate installed ones automatically."
+msgstr ""
+
+#. Ufp5e
+#: cui/uiconfig/ui/optsecuritypage.ui:524
+msgctxt "optsecuritypage|browse"
+msgid "_Browse..."
+msgstr ""
+
+#. dBKW5
+#: cui/uiconfig/ui/optsecuritypage.ui:545
+msgctxt "extended_tip|parameterfield"
+msgid "Enter the executable of the certificate manager path."
+msgstr ""
+
+#. HVFTB
+#: cui/uiconfig/ui/optsecuritypage.ui:563
+msgctxt "optsecuritypage|label10"
+msgid "Certificate Manager"
+msgstr ""
#. FPuvb
#: cui/uiconfig/ui/optuserpage.ui:31
@@ -20403,151 +20397,151 @@ msgid "_Not in Dictionary"
msgstr ""
#. R7k8J
-#: cui/uiconfig/ui/spellingdialog.ui:294
+#: cui/uiconfig/ui/spellingdialog.ui:295
msgctxt "spellingdialog|paste"
msgid "Paste"
msgstr "መለጠፊያ"
#. vTAkA
-#: cui/uiconfig/ui/spellingdialog.ui:306
+#: cui/uiconfig/ui/spellingdialog.ui:308
msgctxt "spellingdialog|insert"
msgid "Special Character"
msgstr "የ ተለዩ ባህሪዎች"
#. qLx9c
-#: cui/uiconfig/ui/spellingdialog.ui:338
+#: cui/uiconfig/ui/spellingdialog.ui:340
msgctxt "spellingdialog|languageft"
msgid "Text languag_e:"
msgstr "የ ጽሁፍ ቋን_ቋ:"
#. g7zja
-#: cui/uiconfig/ui/spellingdialog.ui:370
+#: cui/uiconfig/ui/spellingdialog.ui:372
msgctxt "spellingdialog|extended_tip|languagelb"
msgid "Specifies the language to use to check the spelling."
msgstr "ቋንቋ ይወስኑ ፊደል ማረሚያ ለ መጠቀም "
#. bxC8G
-#: cui/uiconfig/ui/spellingdialog.ui:395
+#: cui/uiconfig/ui/spellingdialog.ui:397
msgctxt "spellingdialog|resumeft"
msgid "Res_ume"
msgstr "ይቀ_ጥሉ"
#. D2E4f
-#: cui/uiconfig/ui/spellingdialog.ui:407
+#: cui/uiconfig/ui/spellingdialog.ui:409
msgctxt "spellingdialog|nosuggestionsft"
msgid "(no suggestions)"
msgstr "(አስተያየት የለም)"
#. dCCnN
-#: cui/uiconfig/ui/spellingdialog.ui:419
+#: cui/uiconfig/ui/spellingdialog.ui:421
msgctxt "spellingdialog|alttitleft"
msgid "Spelling: $LANGUAGE ($LOCATION)"
msgstr "ፊደል ማረሚያ: $LANGUAGE ($LOCATION)"
#. 5LDdh
-#: cui/uiconfig/ui/spellingdialog.ui:443
+#: cui/uiconfig/ui/spellingdialog.ui:445
msgctxt "spellingdialog|change"
msgid "Co_rrect"
msgstr "ማረ_ሚያ"
#. m7FFp
-#: cui/uiconfig/ui/spellingdialog.ui:452
+#: cui/uiconfig/ui/spellingdialog.ui:454
msgctxt "spellingdialog|extended_tip|change"
msgid "Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced."
msgstr "የ ማይታወቀውን ቃል በ አሁኑ ሀሳብ መቀየሪያ: እርስዎ በትክክል ያልተጻፈ ቃል ከ ቀየሩ: ጠቅላላ አረፍተ ነገሩ ይቀየራል "
#. dZvFo
-#: cui/uiconfig/ui/spellingdialog.ui:463
+#: cui/uiconfig/ui/spellingdialog.ui:465
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
msgstr "ሁ_ሉንም ማረሚያ"
#. 9kjPB
-#: cui/uiconfig/ui/spellingdialog.ui:472
+#: cui/uiconfig/ui/spellingdialog.ui:474
msgctxt "spellingdialog|extended_tip|changeall"
msgid "Replaces all occurrences of the unknown word with the current suggestion."
msgstr "ሁሉንም ሁኔታዎች መቀየሪያ ያልተወቀውን ቃል በ አሁኑ ሀሳብ ውስጥ "
#. VmUBw
-#: cui/uiconfig/ui/spellingdialog.ui:483
+#: cui/uiconfig/ui/spellingdialog.ui:485
msgctxt "spellingdialog|autocorrect"
msgid "Add to _AutoCorrect"
msgstr ""
#. xpvWk
-#: cui/uiconfig/ui/spellingdialog.ui:487
+#: cui/uiconfig/ui/spellingdialog.ui:489
msgctxt "spellingdialog|autocorrect|tooltip_text"
msgid "Add selected suggestion as replacement for incorrect word in AutoCorrect replacement table."
msgstr ""
#. DGBWv
-#: cui/uiconfig/ui/spellingdialog.ui:493
+#: cui/uiconfig/ui/spellingdialog.ui:495
msgctxt "spellingdialog|extended_tip|autocorrect"
msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacement table."
msgstr ""
#. DoqLo
-#: cui/uiconfig/ui/spellingdialog.ui:517
+#: cui/uiconfig/ui/spellingdialog.ui:519
msgctxt "spellingdialog|ignore"
msgid "_Ignore Once"
msgstr "_አንድ ጊዜ መተው"
#. M5qZF
-#: cui/uiconfig/ui/spellingdialog.ui:526
+#: cui/uiconfig/ui/spellingdialog.ui:528
msgctxt "spellingdialog|extended_tip|ignore"
msgid "Skips the unknown word and continues with the spellcheck."
msgstr "ያልታወቀውን ቃል ይዘል እና ፊደል ማረም ይቀጥላል "
#. 32F96
-#: cui/uiconfig/ui/spellingdialog.ui:537
+#: cui/uiconfig/ui/spellingdialog.ui:539
msgctxt "spellingdialog|ignoreall"
msgid "I_gnore All"
msgstr "መ_ተው ሁሉንም"
#. zS3Wm
-#: cui/uiconfig/ui/spellingdialog.ui:546
+#: cui/uiconfig/ui/spellingdialog.ui:548
msgctxt "spellingdialog|extended_tip|ignoreall"
msgid "Skips all occurrences of the unknown word until the end of the current office suite session and continues with the spellcheck."
msgstr ""
#. ZZNQM
-#: cui/uiconfig/ui/spellingdialog.ui:557
+#: cui/uiconfig/ui/spellingdialog.ui:559
msgctxt "spellingdialog|ignorerule"
msgid "I_gnore Rule"
msgstr "ሕጉን መ_ተው"
#. E63nm
-#: cui/uiconfig/ui/spellingdialog.ui:566
+#: cui/uiconfig/ui/spellingdialog.ui:568
msgctxt "spellingdialog|extended_tip|ignorerule"
msgid "While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error."
msgstr "ሰዋሰው በሚመረምሩ ጊዜ: ይጫኑ መተው ደንቡን: አሁን የሚታየውን የ ሰዋሰው ስህተት ደንቡን ለ መተው "
#. xcDLh
-#: cui/uiconfig/ui/spellingdialog.ui:577
+#: cui/uiconfig/ui/spellingdialog.ui:579
msgctxt "spellingdialog|add"
msgid "Add to _Dictionary"
msgstr ""
#. JAsBm
-#: cui/uiconfig/ui/spellingdialog.ui:586
+#: cui/uiconfig/ui/spellingdialog.ui:588
msgctxt "spellingdialog|extended_tip|add"
msgid "Adds the unknown word to a user-defined dictionary."
msgstr "ያልታወቀውን ቃል በ ተጠቃሚ-የሚገለጽ መዝገበ ቃላት ውስጥ መጨመሪያ "
#. z3TLh
-#: cui/uiconfig/ui/spellingdialog.ui:597
+#: cui/uiconfig/ui/spellingdialog.ui:599
msgctxt "spellingdialog|addmb"
msgid "Add to _Dictionary"
msgstr ""
#. YFz8g
-#: cui/uiconfig/ui/spellingdialog.ui:612
+#: cui/uiconfig/ui/spellingdialog.ui:614
msgctxt "spellingdialog|extended_tip|addmb"
msgid "Adds the unknown word to a user-defined dictionary."
msgstr "ያልታወቀውን ቃል በ ተጠቃሚ-የሚገለጽ መዝገበ ቃላት ውስጥ መጨመሪያ "
#. GSZVa
-#: cui/uiconfig/ui/spellingdialog.ui:653
+#: cui/uiconfig/ui/spellingdialog.ui:652
msgctxt "spellingdialog|extended_tip|SpellingDialog"
msgid "Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors."
msgstr "ሰነድ ወይንም አሁን የ ተመረጠውን የ ፊደል ስህተት መመርመሪያ: የ ሰዋሰው መመርመሪያ ተጨማሪ ተገጥሞ ከሆነ: የ ሰዋሰው ስህተት ይመረመራል "
@@ -21506,11 +21500,11 @@ msgctxt "textflowpage|label3"
msgid "Breaks"
msgstr "መጨረሻ"
-#. MEpn4
+#. B4ZyD
#: cui/uiconfig/ui/textflowpage.ui:548
msgctxt "textflowpage|checkSplitPara"
-msgid "_Do not split paragraph"
-msgstr "አንቀጹን _አትክፈል"
+msgid "_Allow to split paragraph"
+msgstr ""
#. XLpSD
#: cui/uiconfig/ui/textflowpage.ui:557
@@ -21530,162 +21524,78 @@ msgctxt "textflowpage|extended_tip|checkKeepPara"
msgid "Keeps the current paragraph and the following paragraph together when a break or column break is inserted."
msgstr "የ አሁኑን አንቀጽ እና የሚቀጥለውን አንቀጽ አብሮ ማድረጊያ: መጨረሻ ወይንም የ አምድ መጨረሻ በሚያስገቡ ጊዜ"
-#. dQZQ7
+#. DDzY9
#: cui/uiconfig/ui/textflowpage.ui:590
msgctxt "textflowpage|checkOrphan"
-msgid "_Orphan control"
-msgstr "_ብቸኛ መቆጣጠሪያ"
+msgid "No split at _beginning of paragraph"
+msgstr ""
+
+#. NgQD5
+#: cui/uiconfig/ui/textflowpage.ui:594
+msgctxt "textflowpage|checkOrphan"
+msgid "Number of lines, that will be kept together at the beginning of the paragraph (orphan control)."
+msgstr ""
#. zADSo
-#: cui/uiconfig/ui/textflowpage.ui:602
+#: cui/uiconfig/ui/textflowpage.ui:604
msgctxt "textflowpage|extended_tip|checkOrphan"
msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
msgstr "በ አንቀጽ ውስጥ ከ ገጽ መጨረሻ በፊት የሚኖረውን የ መስመሮች ቁጥር መወሰኛ: ይህን ምልክት ማድረጊያ ሳጥን ይምረጡ: እና ከዛ ቁጥር ያስገቡ በ መስመሮች ሳጥን "
-#. pnW52
-#: cui/uiconfig/ui/textflowpage.ui:613
+#. 2EpT4
+#: cui/uiconfig/ui/textflowpage.ui:615
msgctxt "textflowpage|checkWidow"
-msgid "_Widow control"
-msgstr "_መስኮት መቆጣጠሪያ"
+msgid "No split at _end of paragraph"
+msgstr ""
+
+#. rjBWx
+#: cui/uiconfig/ui/textflowpage.ui:619
+msgctxt "textflowpage|checkOrphan"
+msgid "Number of lines, that will be kept together at the end of the paragraph (widow control)."
+msgstr ""
#. SmFT5
-#: cui/uiconfig/ui/textflowpage.ui:625
+#: cui/uiconfig/ui/textflowpage.ui:629
msgctxt "textflowpage|extended_tip|checkWidow"
msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
msgstr "በ አንቀጽ ውስጥ ከ ገጽ መጨረሻ በኋላ የሚኖረውን የ መስመሮች ቁጥር መወሰኛ በ መጀመሪያው ገጽ ላይ: ይህን ምልክት ማድረጊያ ሳጥን ይምረጡ: እና ከዛ ቁጥር ያስገቡ በ መስመሮች ሳጥን "
#. mb9LZ
-#: cui/uiconfig/ui/textflowpage.ui:646
+#: cui/uiconfig/ui/textflowpage.ui:650
msgctxt "textflowpage|extended_tip|spinOrphan"
msgid "Specifies the minimum number of lines in a paragraph before a page break. Select this check box, and then enter a number in the Lines box."
msgstr "በ አንቀጽ ውስጥ ከ ገጽ መጨረሻ በፊት የሚኖረውን የ መስመሮች ቁጥር መወሰኛ: ይህን ምልክት ማድረጊያ ሳጥን ይምረጡ: እና ከዛ ቁጥር ያስገቡ በ መስመሮች ሳጥን "
#. 3cNEP
-#: cui/uiconfig/ui/textflowpage.ui:668
+#: cui/uiconfig/ui/textflowpage.ui:672
msgctxt "textflowpage|extended_tip|spinWidow"
msgid "Specifies the minimum number of lines in a paragraph in the first page after the break. Select this check box, and then enter a number in the Lines box."
msgstr "በ አንቀጽ ውስጥ ከ ገጽ መጨረሻ በኋላ የሚኖረውን የ መስመሮች ቁጥር መወሰኛ በ መጀመሪያው ገጽ ላይ: ይህን ምልክት ማድረጊያ ሳጥን ይምረጡ: እና ከዛ ቁጥር ያስገቡ በ መስመሮች ሳጥን "
#. dcEiB
-#: cui/uiconfig/ui/textflowpage.ui:681
+#: cui/uiconfig/ui/textflowpage.ui:685
msgctxt "textflowpage|labelOrphan"
msgid "lines"
msgstr "መስመሮች"
#. 6swWD
-#: cui/uiconfig/ui/textflowpage.ui:693
+#: cui/uiconfig/ui/textflowpage.ui:697
msgctxt "textflowpage|labelWidow"
msgid "lines"
msgstr "መስመሮች"
-#. nXryi
-#: cui/uiconfig/ui/textflowpage.ui:707
+#. MGewb
+#: cui/uiconfig/ui/textflowpage.ui:711
msgctxt "textflowpage|labelOptions"
-msgid "Options"
-msgstr "ምርጫዎች"
+msgid "Split Options"
+msgstr ""
#. qrhEF
-#: cui/uiconfig/ui/textflowpage.ui:724
+#: cui/uiconfig/ui/textflowpage.ui:728
msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
msgstr "ጭረት እና የ ገጽ ብዛት ምርጫ መወሰኛ"
-#. K58BF
-#: cui/uiconfig/ui/themetabpage.ui:30
-msgctxt "themetabpage|lbThemeName"
-msgid "Name:"
-msgstr ""
-
-#. GxAud
-#: cui/uiconfig/ui/themetabpage.ui:60
-msgctxt "themetabpage|general"
-msgid "General"
-msgstr ""
-
-#. PFDEf
-#: cui/uiconfig/ui/themetabpage.ui:92
-msgctxt "themetabpage|lbColorSetName"
-msgid "Name:"
-msgstr ""
-
-#. 4GfYQ
-#: cui/uiconfig/ui/themetabpage.ui:121
-msgctxt "themetabpage|lbDk1"
-msgid "Background - Dark 1:"
-msgstr ""
-
-#. J3qNF
-#: cui/uiconfig/ui/themetabpage.ui:136
-msgctxt "themetabpage|lbLt1"
-msgid "Text - Light 1:"
-msgstr ""
-
-#. zFCDe
-#: cui/uiconfig/ui/themetabpage.ui:151
-msgctxt "themetabpage|lbDk2"
-msgid "Background - Dark 2:"
-msgstr ""
-
-#. RVZjG
-#: cui/uiconfig/ui/themetabpage.ui:166
-msgctxt "themetabpage|lbLt2"
-msgid "Text - Light 2:"
-msgstr ""
-
-#. kwdwQ
-#: cui/uiconfig/ui/themetabpage.ui:181
-msgctxt "themetabpage|lbAccent1"
-msgid "Accent 1:"
-msgstr ""
-
-#. iBrgD
-#: cui/uiconfig/ui/themetabpage.ui:196
-msgctxt "themetabpage|lbAccent2"
-msgid "Accent 2:"
-msgstr ""
-
-#. jA7Cn
-#: cui/uiconfig/ui/themetabpage.ui:211
-msgctxt "themetabpage|lbAccent3"
-msgid "Accent 3:"
-msgstr ""
-
-#. oPgoC
-#: cui/uiconfig/ui/themetabpage.ui:226
-msgctxt "themetabpage|lbAccent4"
-msgid "Accent 4:"
-msgstr ""
-
-#. n8AAc
-#: cui/uiconfig/ui/themetabpage.ui:241
-msgctxt "themetabpage|lbAccent5"
-msgid "Accent 5:"
-msgstr ""
-
-#. pi44r
-#: cui/uiconfig/ui/themetabpage.ui:256
-msgctxt "themetabpage|lbAccent6"
-msgid "Accent 6:"
-msgstr ""
-
-#. CeB9H
-#: cui/uiconfig/ui/themetabpage.ui:271
-msgctxt "themetabpage|lbHlink"
-msgid "Hyperlink:"
-msgstr ""
-
-#. B722M
-#: cui/uiconfig/ui/themetabpage.ui:286
-msgctxt "themetabpage|lbFolHlink"
-msgid "Followed Hyperlink:"
-msgstr ""
-
-#. jRFtE
-#: cui/uiconfig/ui/themetabpage.ui:543
-msgctxt "themetabpage|colorSet"
-msgid "Color Set"
-msgstr ""
-
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
msgctxt "thesaurus|ThesaurusDialog"
diff --git a/source/am/dbaccess/messages.po b/source/am/dbaccess/messages.po
index d952e74ab95..1f49efc039d 100644
--- a/source/am/dbaccess/messages.po
+++ b/source/am/dbaccess/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: 2023-05-10 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2022-08-02 21:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/am/>\n"
@@ -2312,310 +2312,290 @@ msgctxt "STR_SPREADSHEETPATH"
msgid "~Location and file name"
msgstr "የ ፋይል ስም እና ~አካባቢው"
-#. GmNij
-#: dbaccess/inc/strings.hrc:401
-msgctxt "STR_POSTGRES_HEADERTEXT"
-msgid "Set up a connection to a PostgreSQL database"
-msgstr ""
-
-#. 3AEhs
-#: dbaccess/inc/strings.hrc:402
-msgctxt "STR_POSTGRES_HELPTEXT"
-msgid ""
-"Please enter the required information to connect to a PostgreSQL database, either by entering the host name, port number and server, or by entering the connection string.\n"
-"Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
-
-#. CHYCA
-#: dbaccess/inc/strings.hrc:403
-msgctxt "STR_POSTGRES_DEFAULT"
-msgid "Default: 5432"
-msgstr ""
-
#. og5kg
-#: dbaccess/inc/strings.hrc:404
+#: dbaccess/inc/strings.hrc:401
msgctxt "STR_COMMAND_EXECUTED_SUCCESSFULLY"
msgid "Command successfully executed."
msgstr "ትእዛዙ በሚገባ ተፈጽሟል"
#. BhFXv
-#: dbaccess/inc/strings.hrc:405
+#: dbaccess/inc/strings.hrc:402
msgctxt "STR_DIRECTSQL_CONNECTIONLOST"
msgid "The connection to the database has been lost. This dialog will be closed."
msgstr "ወደ ዳታቤዝ የነበረው ግንኙነት ተቋርጧል: ይህ ንግግር ይዘጋል"
#. WTysM
-#: dbaccess/inc/strings.hrc:407
+#: dbaccess/inc/strings.hrc:404
msgctxt "STR_TAB_INDEX_SORTORDER"
msgid "Sort order"
msgstr "ደንብ መለያ"
#. 67TCR
-#: dbaccess/inc/strings.hrc:408
+#: dbaccess/inc/strings.hrc:405
msgctxt "STR_TAB_INDEX_FIELD"
msgid "Index field"
msgstr "የ ማውጫ ሜዳ"
#. rCZbG
-#: dbaccess/inc/strings.hrc:409
+#: dbaccess/inc/strings.hrc:406
msgctxt "STR_ORDER_ASCENDING"
msgid "Ascending"
msgstr "እየጨመረ የሚሄድ"
#. zUeEN
-#: dbaccess/inc/strings.hrc:410
+#: dbaccess/inc/strings.hrc:407
msgctxt "STR_ORDER_DESCENDING"
msgid "Descending"
msgstr "እየቀነሰ የሚሄድ"
#. DpB67
-#: dbaccess/inc/strings.hrc:411
+#: dbaccess/inc/strings.hrc:408
msgctxt "STR_CONFIRM_DROP_INDEX"
msgid "Do you really want to delete the index '$name$'?"
msgstr "በእርግጥ ማውጫውን ማጥፋት ይፈልጋሉ '$name$'?"
#. 3sTLe
-#: dbaccess/inc/strings.hrc:412
+#: dbaccess/inc/strings.hrc:409
msgctxt "STR_LOGICAL_INDEX_NAME"
msgid "index"
msgstr "ማውጫ"
#. HFaXn
-#: dbaccess/inc/strings.hrc:413
+#: dbaccess/inc/strings.hrc:410
msgctxt "STR_NEED_INDEX_FIELDS"
msgid "The index must contain at least one field."
msgstr "ማውጫው ቢያንስ አንድ ሜዳ መያዝ አለበት"
#. LRDDD
-#: dbaccess/inc/strings.hrc:414
+#: dbaccess/inc/strings.hrc:411
msgctxt "STR_INDEX_NAME_ALREADY_USED"
msgid "There is already another index named \"$name$\"."
msgstr "በዚህ ስም ቀደም ሲል ሌላ ማውጫ ነበር \"$name$\"."
#. 9C3mx
-#: dbaccess/inc/strings.hrc:415
+#: dbaccess/inc/strings.hrc:412
msgctxt "STR_INDEXDESIGN_DOUBLE_COLUMN_NAME"
msgid "In an index definition, no table column may occur more than once. However, you have entered column \"$name$\" twice."
msgstr "በ ማውጫ መግለጫ ውስጥ ምንም የ ሰንጠርዥ አምድ ከ አንድ ጊዜ በላይ መኖር የለበትም: ነገር ግን እርስዎ አምዱን ሁለት ጊዜ \"$name$\" አስገብተዋል"
#. XANpc
-#: dbaccess/inc/strings.hrc:417
+#: dbaccess/inc/strings.hrc:414
msgctxt "STR_COULD_NOT_CONVERT_PARAM"
msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
msgstr "ማስገቢያውን መቀየር አልተቻለም ወደ ዋጋ ያለው ዋጋ ለ \"$name$\" ደንብ"
#. FCnE3
-#: dbaccess/inc/strings.hrc:419
+#: dbaccess/inc/strings.hrc:416
msgctxt "STR_EXCEPTION_STATUS"
msgid "SQL Status"
msgstr "SQL Status"
#. ha64T
-#: dbaccess/inc/strings.hrc:420
+#: dbaccess/inc/strings.hrc:417
msgctxt "STR_EXCEPTION_ERRORCODE"
msgid "Error code"
msgstr "የ ስህተት ኮድ"
#. 9A2cX
-#: dbaccess/inc/strings.hrc:421
+#: dbaccess/inc/strings.hrc:418
msgctxt "STR_EXPLAN_STRINGCONVERSION_ERROR"
msgid "A frequent reason for this error is an inappropriate character set setting for the language of your database. Check the setting by choosing Edit - Database - Properties."
msgstr "ብዙ ጊዜ ይህ ስህተት የሚፈጠረው ለ ዳታቤዙ ቋንቋ አግባብ ያልሆነ ባህሪዎች ሲዘጋጁ ነው ማሰናጃውን ይምረጡ እና ይመርምሩ ማረሚያ - ዳታቤዝ - ባህሪዎች"
#. itnjJ
-#: dbaccess/inc/strings.hrc:422
+#: dbaccess/inc/strings.hrc:419
msgctxt "STR_EXCEPTION_ERROR"
msgid "Error"
msgstr "ስህተት"
#. Q4A2Y
-#: dbaccess/inc/strings.hrc:423
+#: dbaccess/inc/strings.hrc:420
msgctxt "STR_EXCEPTION_WARNING"
msgid "Warning"
msgstr "ማስጠንቀቂያ"
#. LSBpE
-#: dbaccess/inc/strings.hrc:424
+#: dbaccess/inc/strings.hrc:421
msgctxt "STR_EXCEPTION_INFO"
msgid "Information"
msgstr "መረጃ"
#. DKRwR
-#: dbaccess/inc/strings.hrc:425
+#: dbaccess/inc/strings.hrc:422
msgctxt "STR_EXCEPTION_DETAILS"
msgid "Details"
msgstr "ዝርዝሮች"
#. CXpeS
-#: dbaccess/inc/strings.hrc:427
+#: dbaccess/inc/strings.hrc:424
msgctxt "STR_ADD_USER"
msgid "Add User"
msgstr ""
#. YG5iB
-#: dbaccess/inc/strings.hrc:428
+#: dbaccess/inc/strings.hrc:425
msgctxt "STR_DELETE_USER"
msgid "Delete User"
msgstr ""
#. mDe9f
-#: dbaccess/inc/strings.hrc:429
+#: dbaccess/inc/strings.hrc:426
msgctxt "STR_CHANGE_PASSWORD"
msgid "Change Password"
msgstr ""
#. Avmtu
-#: dbaccess/inc/strings.hrc:430
+#: dbaccess/inc/strings.hrc:427
msgctxt "STR_QUERY_USERADMIN_DELETE_USER"
msgid "Do you really want to delete the user?"
msgstr "በእርግጥ ተጠቃሚውን ማጥፋት ይፈልጋሉ?"
#. yeKZF
-#: dbaccess/inc/strings.hrc:431
+#: dbaccess/inc/strings.hrc:428
msgctxt "STR_USERADMIN_NOT_AVAILABLE"
msgid "The database does not support user administration."
msgstr "ይህ ዳታቤዝ የ ተጠቃሚ አስተዳዳሪን አይደግፍም:"
#. 4CVtX
-#: dbaccess/inc/strings.hrc:432
+#: dbaccess/inc/strings.hrc:429
msgctxt "STR_ERROR_PASSWORDS_NOT_IDENTICAL"
msgid "The passwords do not match. Please enter the password again."
msgstr "የመግቢያ ቃሉ አይመሳሰልም ፡ እባክዎን የመግቢያ ቃሉን እንደገና ያስገቡ"
#. iu64w
-#: dbaccess/inc/strings.hrc:434
+#: dbaccess/inc/strings.hrc:431
msgctxt "STR_JOIN_TYPE_HINT"
msgid "Please note that some databases may not support this join type."
msgstr "እባክዎን ያስታውሱ አንዳንድ ዳታቤዞች እንደዚህ አይነት አገናኞች አይደግፉም"
#. Khmn9
-#: dbaccess/inc/strings.hrc:435
+#: dbaccess/inc/strings.hrc:432
msgctxt "STR_QUERY_INNER_JOIN"
msgid "Includes only records for which the contents of the related fields of both tables are identical."
msgstr "መዝገቦችን ብቻ ማካተቻ ይዞታቸው ከ ሜዳዎቹ ጋር የሚዛመደውን የ ሁለቱንም ተመሳሳይ ሰንጠረዦች"
#. JUyyK
-#: dbaccess/inc/strings.hrc:436
+#: dbaccess/inc/strings.hrc:433
msgctxt "STR_QUERY_LEFTRIGHT_JOIN"
msgid "Contains ALL records from table '%1' but only records from table '%2' where the values in the related fields are matching."
msgstr "ሁሉንም መዝገቦች ይዟል ከ ሰንጠረዦች ውስጥ '%1' ነገር ግን መዝገቦችን ብቻ ከሰንጠረዥ ውስጥ '%2' ዋጋቸው በተዛመደው ሜዳዎች ውስጥ የሚመሳሰለውን"
#. EdhCU
-#: dbaccess/inc/strings.hrc:437
+#: dbaccess/inc/strings.hrc:434
msgctxt "STR_QUERY_FULL_JOIN"
msgid "Contains ALL records from '%1' and from '%2'."
msgstr "ሁሉንም መዝገቦች ይዟል ከ '%1' እና ከ '%2'."
#. c9PsZ
-#: dbaccess/inc/strings.hrc:438
+#: dbaccess/inc/strings.hrc:435
msgctxt "STR_QUERY_CROSS_JOIN"
msgid "Contains the Cartesian product of ALL records from '%1' and from '%2'."
msgstr "ሁሉንም የ cartesian product መዝገብ ይይዛል ከ '%1' እና እስከ '%2'."
#. KyLuN
-#: dbaccess/inc/strings.hrc:440
+#: dbaccess/inc/strings.hrc:437
msgctxt "STR_CTW_NO_VIEWS_SUPPORT"
msgid "The destination database does not support views."
msgstr "መድረሻው ዳታቤዝ መመልከቻን አይደግፍም"
#. RaJQd
-#: dbaccess/inc/strings.hrc:441
+#: dbaccess/inc/strings.hrc:438
msgctxt "STR_CTW_NO_PRIMARY_KEY_SUPPORT"
msgid "The destination database does not support primary keys."
msgstr "መድረሻው ዳታቤዝ ቀዳሚ ቁልፎችን አይደግፍም"
#. JBBmY
-#: dbaccess/inc/strings.hrc:442
+#: dbaccess/inc/strings.hrc:439
msgctxt "STR_CTW_INVALID_DATA_ACCESS_DESCRIPTOR"
msgid "no data access descriptor found, or no data access descriptor able to provide all necessary information"
msgstr "ምንም የ ዳታ መድረሻ መግለጫ አልተገኘም: ወይንም የ ዳታ መድረሻ መግለጫ አስፈላጊ መረጃ አልተገኘም"
#. Z4JFe
-#: dbaccess/inc/strings.hrc:443
+#: dbaccess/inc/strings.hrc:440
msgctxt "STR_CTW_ONLY_TABLES_AND_QUERIES_SUPPORT"
msgid "Only tables and queries are supported at the moment."
msgstr "ለጊዜው የተደገፉት ሰንጠረዦች እና ጥያቄዎች ብቻ ናቸው"
#. KvUFb
-#: dbaccess/inc/strings.hrc:444
+#: dbaccess/inc/strings.hrc:441
msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS"
msgid "The copy source's result set must support bookmarks."
msgstr "የ ኮፒ ምንጮች ውጤት ማሰናጃ ምልክት ማድረጊያዎችን መደገፍ አለበት"
#. XVb6E
-#: dbaccess/inc/strings.hrc:445
+#: dbaccess/inc/strings.hrc:442
msgctxt "STR_CTW_UNSUPPORTED_COLUMN_TYPE"
msgid "Unsupported source column type ($type$) at column position $pos$."
msgstr "ያልተደገፈ የምንጭ አምድ አይነት ($type$) በ አምድ ቦታ $pos$"
#. 7pnvE
-#: dbaccess/inc/strings.hrc:446
+#: dbaccess/inc/strings.hrc:443
msgctxt "STR_CTW_ILLEGAL_PARAMETER_COUNT"
msgid "Illegal number of initialization parameters."
msgstr "ዋጋ የሌላቸው የ ቁጥር ማስነሻ ደንቦች"
#. z3h9J
-#: dbaccess/inc/strings.hrc:447
+#: dbaccess/inc/strings.hrc:444
msgctxt "STR_CTW_ERROR_DURING_INITIALIZATION"
msgid "An error occurred during initialization."
msgstr "ስህተት ተፈጥሯል በማስነሳት ላይ እንዳለ"
#. Qpda7
-#: dbaccess/inc/strings.hrc:448
+#: dbaccess/inc/strings.hrc:445
msgctxt "STR_CTW_ERROR_UNSUPPORTED_SETTING"
msgid "Unsupported setting in the copy source descriptor: $name$."
msgstr "በምንጭ መግለጫው ኮፒ ውስጥ ያልተደገፈ ማሰናጃ : $name$."
#. BsP8j
-#: dbaccess/inc/strings.hrc:449
+#: dbaccess/inc/strings.hrc:446
msgctxt "STR_CTW_ERROR_NO_QUERY"
msgid "To copy a query, your connection must be able to provide queries."
msgstr "ጥያቄዎችን ኮፒ ለማድረግ: የ እርስዎ ግንኙነት ጥያቄ መጠየቅ አለበት"
#. QYh2y
-#: dbaccess/inc/strings.hrc:450
+#: dbaccess/inc/strings.hrc:447
msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER"
msgid "The given interaction handler is invalid."
msgstr "የ ተሰጠው ተጽእኖ ያዢ ዋጋ የለውም"
#. ixrDD
-#: dbaccess/inc/strings.hrc:452
+#: dbaccess/inc/strings.hrc:449
msgctxt "STR_QUERY_REL_EDIT_RELATION"
msgid "This relation already exists. Do you want to edit it or create a new one?"
msgstr "ይህ ዝምድና ቀደም ሲል ነበር ፡ ሊያርሙት ይፈልጋሉ ወይስ አዲስ ይፈጠር?"
#. nFRsS
-#: dbaccess/inc/strings.hrc:453
+#: dbaccess/inc/strings.hrc:450
msgctxt "STR_QUERY_REL_EDIT"
msgid "Edit..."
msgstr "ማረሚያ..."
#. yRkFG
-#: dbaccess/inc/strings.hrc:454
+#: dbaccess/inc/strings.hrc:451
msgctxt "STR_QUERY_REL_CREATE"
msgid "Create..."
msgstr "መፍጠሪያ..."
#. VWBJF
-#: dbaccess/inc/strings.hrc:455
+#: dbaccess/inc/strings.hrc:452
msgctxt "STR_RELATIONDESIGN"
msgid " - %PRODUCTNAME Base: Relation design"
msgstr " - %PRODUCTNAME Base: የ ተዛመደ ንድፍ"
#. ZCd5X
-#: dbaccess/inc/strings.hrc:456
+#: dbaccess/inc/strings.hrc:453
msgctxt "STR_RELATIONDESIGN_NOT_AVAILABLE"
msgid "The database does not support relations."
msgstr "ዳታቤዙ ግንኙነት አይደግፍም"
#. CG2Pd
-#: dbaccess/inc/strings.hrc:457
+#: dbaccess/inc/strings.hrc:454
msgctxt "STR_QUERY_REL_DELETE_WINDOW"
msgid "When you delete this table all corresponding relations will be deleted as well. Continue?"
msgstr "ደህና ልቀጥል?"
#. Wzf9T
-#: dbaccess/inc/strings.hrc:458
+#: dbaccess/inc/strings.hrc:455
msgctxt "STR_QUERY_REL_COULD_NOT_CREATE"
msgid ""
"The database could not create the relation. Maybe foreign keys for this kind of table aren't supported.\n"
@@ -4103,46 +4083,88 @@ msgctxt "password|label1"
msgid "User “$name$: $”"
msgstr "ተጠቃሚ “$name$: $”"
+#. 4E7F9
+#: dbaccess/uiconfig/ui/postgrespage.ui:24
+msgctxt "postgrespage|header"
+msgid "Set up a connection to a PostgreSQL database"
+msgstr ""
+
#. o8BnM
-#: dbaccess/uiconfig/ui/postgrespage.ui:26
+#: dbaccess/uiconfig/ui/postgrespage.ui:30
msgctxt "specialpostgrespage|header"
msgid "Set up connection to a PostgreSQL database"
msgstr ""
+#. ux2MJ
+#: dbaccess/uiconfig/ui/postgrespage.ui:45
+msgctxt "postgrespage|helpLabel"
+msgid "Please enter the required information to connect to a PostgreSQL database, either by entering the host name, port number and server, or by entering the connection string."
+msgstr ""
+
#. cwtYL
-#: dbaccess/uiconfig/ui/postgrespage.ui:46
+#: dbaccess/uiconfig/ui/postgrespage.ui:52
msgctxt "specialpostgrespage|helpLabel"
msgid "Please enter the required information to connect to a PostgreSQL database. Please contact your system administrator if you are unsure about the following settings. "
msgstr ""
+#. XWvWU
+#: dbaccess/uiconfig/ui/postgrespage.ui:67
+msgctxt "postgrespage|helpSupport"
+msgid "Please contact your system administrator if you are unsure"
+msgstr ""
+
#. EJzdP
-#: dbaccess/uiconfig/ui/postgrespage.ui:74
+#: dbaccess/uiconfig/ui/postgrespage.ui:89
msgctxt "specialpostgrespage|dbNameLabel"
msgid "_Database name:"
msgstr ""
#. P2FVr
-#: dbaccess/uiconfig/ui/postgrespage.ui:88
+#: dbaccess/uiconfig/ui/postgrespage.ui:103
msgctxt "specialpostgrespage|hostNameLabel"
msgid "_Server:"
msgstr ""
#. MgpLR
-#: dbaccess/uiconfig/ui/postgrespage.ui:102
+#: dbaccess/uiconfig/ui/postgrespage.ui:117
msgctxt "specialpostgrespage|portNumLabel"
msgid "_Port number:"
msgstr ""
+#. D6Ey2
+#: dbaccess/uiconfig/ui/postgrespage.ui:136
+msgctxt "postgrespage|extended_tip|dbNameEntry"
+msgid "Enter the name of the database."
+msgstr ""
+
+#. LC4Q7
+#: dbaccess/uiconfig/ui/postgrespage.ui:154
+msgctxt "postgrespage|extended_tip|hostNameEntry"
+msgid "Enter the server url of the database. "
+msgstr ""
+
+#. DT5z8
+#: dbaccess/uiconfig/ui/postgrespage.ui:179
+msgctxt "postgrespage|extended_tip|portNumEntry"
+msgid "Enter the port number of the DBMS service. Default for PostgreSQL is 5432."
+msgstr ""
+
#. oa9jC
-#: dbaccess/uiconfig/ui/postgrespage.ui:163
+#: dbaccess/uiconfig/ui/postgrespage.ui:193
msgctxt "specialpostgrespage|portNumDefLabel"
msgid "Default: 5432"
msgstr ""
-#. KvN6B
-#: dbaccess/uiconfig/ui/postgrespage.ui:198
+#. 7hasQ
+#: dbaccess/uiconfig/ui/postgrespage.ui:228
msgctxt "specialpostgrespage|connectionStringLabel"
-msgid "And/OR Enter the DBMS/driver-specific connection string here"
+msgid "Alternatively, enter the driver-specific connection string here"
+msgstr ""
+
+#. EoCp5
+#: dbaccess/uiconfig/ui/postgrespage.ui:252
+msgctxt "postgrespage|extended_tip|browseurl"
+msgid "Enter the complete connector URL to access the PostGreSQL DBMS service. The connector URL is in the form \"postgresql://myHost:port/MyDatabase\"."
msgstr ""
#. 9sAsA
diff --git a/source/am/desktop/messages.po b/source/am/desktop/messages.po
index 10519471740..674fb9ea5ec 100644
--- a/source/am/desktop/messages.po
+++ b/source/am/desktop/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: 2023-03-02 11:50+0100\n"
+"POT-Creation-Date: 2023-09-12 14:56+0200\n"
"PO-Revision-Date: 2022-11-14 08:16+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/am/>\n"
@@ -664,26 +664,32 @@ msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE"
msgid "The configuration service is not available."
msgstr "የ ማዋቀሪያ ግልጋሎት አልተገኘም"
-#. wbj4W
+#. BYShb
#: desktop/inc/strings.hrc:166
+msgctxt "STR_BOOTSTRAP_ERR_2NDOFFICE_WITHCAT"
+msgid "There is already another %PRODUCTNAME instance running. Please close all %PRODUCTNAME processes before running with the '--cat' or '--script-cat' option."
+msgstr ""
+
+#. wbj4W
+#: desktop/inc/strings.hrc:167
msgctxt "STR_ASK_START_SETUP_MANUALLY"
msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages."
msgstr "የ መግጠሚያ መተግበሪያውን ያስጀምሩ አገጣጠሙን ከ CD ለ መጠገን ወይም የ ጥቅል መግጠሚያዎችን የያዘውን ፎልደር"
#. d3or5
-#: desktop/inc/strings.hrc:167
+#: desktop/inc/strings.hrc:168
msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
msgid "A general error occurred while accessing your central configuration. "
msgstr "ባጠቃላይ ስህተት ተፈጥሯል ማእከላዊ ማዋቀሪያው ጋር ለ መድረስ ሲሞከር "
#. zBSDM
-#: desktop/inc/strings.hrc:168
+#: desktop/inc/strings.hrc:169
msgctxt "STR_LO_MUST_BE_RESTARTED"
msgid "%PRODUCTNAME must unfortunately be manually restarted once after installation or update."
msgstr "%PRODUCTNAME ከ ተገጠም ወይንም ከ ተሻሻለ በኋላ በ እጅ እንደገና ማስነሳት ያስፈልጋል"
#. NBTfi
-#: desktop/inc/strings.hrc:169
+#: desktop/inc/strings.hrc:170
msgctxt "STR_QUERY_USERDATALOCKED"
msgid ""
"Either another instance of %PRODUCTNAME is accessing your personal settings or your personal settings are locked.\n"
@@ -697,25 +703,25 @@ msgstr ""
"በእርግጥ መቀጠል ይፈልጋሉ?"
#. EB6Yf
-#: desktop/inc/strings.hrc:170
+#: desktop/inc/strings.hrc:171
msgctxt "STR_TITLE_USERDATALOCKED"
msgid "%PRODUCTNAME %PRODUCTVERSION"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
#. GiCJZ
-#: desktop/inc/strings.hrc:171
+#: desktop/inc/strings.hrc:172
msgctxt "STR_ERR_PRINTDISABLED"
msgid "Printing is disabled. No documents can be printed."
msgstr "ማተሚያው ተሰናክሏል ፡ ምንም ሰነድ ማተም አይቻልም"
#. VxBTE
-#: desktop/inc/strings.hrc:172
+#: desktop/inc/strings.hrc:173
msgctxt "STR_BOOTSTRAP_ERR_NO_PATHSET_SERVICE"
msgid "The path manager is not available.\n"
msgstr "የ መንገድ አስተዳዳሪ አልተገኘም\n"
#. Cy4Wz
-#: desktop/inc/strings.hrc:173
+#: desktop/inc/strings.hrc:174
msgctxt "STR_BOOTSTRAP_ERR_NOTENOUGHDISKSPACE"
msgid ""
"%PRODUCTNAME user installation could not be completed due to insufficient free disk space. Please free more disc space at the following location and restart %PRODUCTNAME:\n"
@@ -725,7 +731,7 @@ msgstr ""
"\n"
#. 2o5XG
-#: desktop/inc/strings.hrc:174
+#: desktop/inc/strings.hrc:175
msgctxt "STR_BOOTSTRAP_ERR_NOACCESSRIGHTS"
msgid ""
"%PRODUCTNAME user installation could not be processed due to missing access rights. Please make sure that you have sufficient access rights for the following location and restart %PRODUCTNAME:\n"
@@ -735,61 +741,61 @@ msgstr ""
"\n"
#. uigQN
-#: desktop/inc/strings.hrc:176
+#: desktop/inc/strings.hrc:177
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_1"
msgid "Extension Software License Agreement of $NAME:"
msgstr "የ ተጨማሪ ሶፍትዌር ፍቃድ ስምምነት ከ $NAME:"
#. DEkAo
-#: desktop/inc/strings.hrc:177
+#: desktop/inc/strings.hrc:178
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_2"
msgid "Read the complete License Agreement displayed above. Accept the License Agreement by typing \"yes\" on the console then press the Return key. Type \"no\" to decline and to abort the extension setup."
msgstr "ከላይ የሚታየውን ሙሉ የ ፍቃድ ስምምነት ያንብቡ: የ ፍቃድ ስምምነቱን ይቀበሉ \"አዎ\" በ መጻፍ እና በ ማስገባት: ወይንም ይጻፉ \"አይ\" የ ፍቃድ ስምምነቱን ላለመቀበል እና ከ ተጨማሪው መግጠሚያ ማሰናጃ ለ መውጣት"
#. wANiC
-#: desktop/inc/strings.hrc:181
+#: desktop/inc/strings.hrc:182
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_3"
msgid "[Enter \"yes\" or \"no\"]:"
msgstr "[ያስገቡ \"አዎ\" ወይም \"አይ \"]:"
#. wEFn2
-#: desktop/inc/strings.hrc:182
+#: desktop/inc/strings.hrc:183
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_4"
msgid "Your input was not correct. Please enter \"yes\" or \"no\":"
msgstr "ያስገቡት ትክክል አይደለም: እባክዎን ያስገቡ \"አዎ\" ወይም \"አይ\":"
#. A9CdG
-#: desktop/inc/strings.hrc:183
+#: desktop/inc/strings.hrc:184
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_YES"
msgid "YES"
msgstr "አዎ"
#. HLETc
-#: desktop/inc/strings.hrc:184
+#: desktop/inc/strings.hrc:185
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_Y"
msgid "Y"
msgstr "አዎ"
#. SQ6jd
-#: desktop/inc/strings.hrc:185
+#: desktop/inc/strings.hrc:186
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_NO"
msgid "NO"
msgstr "አይ"
#. 6LgGA
-#: desktop/inc/strings.hrc:186
+#: desktop/inc/strings.hrc:187
msgctxt "RID_STR_UNOPKG_ACCEPT_LIC_N"
msgid "N"
msgstr "አይ"
#. aCY73
-#: desktop/inc/strings.hrc:187
+#: desktop/inc/strings.hrc:188
msgctxt "RID_STR_CONCURRENTINSTANCE"
msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:"
msgstr "unopkg ማስጀመር አልተቻለም: የ መቆለፊያ ፋይል የሚያሳየው እየሰራ እንዳለ ነው: ይህ ካልተፈጸመ: የ መቆለፊያ ፋይሉን ያጥፉት በ:"
#. MLhHo
-#: desktop/inc/strings.hrc:189
+#: desktop/inc/strings.hrc:190
msgctxt "RID_STR_UNOPKG_ERROR"
msgid "ERROR: "
msgstr "ስህተት : "
diff --git a/source/am/filter/source/config/fragments/filters.po b/source/am/filter/source/config/fragments/filters.po
index f409d709a9c..cdb60141a3c 100644
--- a/source/am/filter/source/config/fragments/filters.po
+++ b/source/am/filter/source/config/fragments/filters.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: 2023-03-06 17:53+0100\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2021-11-26 20:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsfilters/am/>\n"
@@ -26,6 +26,16 @@ msgctxt ""
msgid "ADO Rowset XML"
msgstr "ADO Rowset XML"
+#. zFQ4r
+#: APNG___Animated_Portable_Network_Graphic.xcu
+msgctxt ""
+"APNG___Animated_Portable_Network_Graphic.xcu\n"
+"APNG - Animated Portable Network Graphic\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. bjvBT
#: AbiWord.xcu
msgctxt ""
@@ -1656,6 +1666,16 @@ msgctxt ""
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 የ መሳያ ቴምፕሌት"
+#. mZCVu
+#: draw_apng_Export.xcu
+msgctxt ""
+"draw_apng_Export.xcu\n"
+"draw_apng_Export\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. m4Wdq
#: draw_bmp_Export.xcu
msgctxt ""
diff --git a/source/am/filter/source/config/fragments/internalgraphicfilters.po b/source/am/filter/source/config/fragments/internalgraphicfilters.po
index 0fead50b864..ed53185b788 100644
--- a/source/am/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/am/filter/source/config/fragments/internalgraphicfilters.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: 2022-10-10 13:35+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-05-23 12:49+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/filtersourceconfigfragmentsinternalgraphicfilters/am/>\n"
@@ -16,6 +16,16 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1479151081.000000\n"
+#. V9faX
+#: apng_Export.xcu
+msgctxt ""
+"apng_Export.xcu\n"
+"apng_Export\n"
+"UIName\n"
+"value.text"
+msgid "APNG - Animated Portable Network Graphics"
+msgstr ""
+
#. s5fY3
#: bmp_Export.xcu
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index c4ee41b9f55..227578622c4 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.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: 2023-06-26 15:06+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-10-21 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -124,14 +124,32 @@ msgctxt ""
msgid "Twips"
msgstr "የ ኢንች አንድ ሀያኛ"
-#. zTDqe
+#. FhBKT
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
"par_id3154731\n"
"help.text"
-msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
-msgstr "twip የ ኢንች አንድ ሀያኛ የ መመልከቻ-ነፃ ክፍል ነው: የሚጠቅመውም ተመሳሳይ ቦታ እና መጠን በ መመልከቻ አካሎች ላይ ለማሳየት ነው በ ስርአቱ ላይ: twip 1/1440 የ ኢንች አንድ ሀያኛ ይኖራል 1/20 በ ማተሚያ ነጥብ ውስጥ: በ ኢንች ውስጥ 1440 twips ወይንም በግምት 567 የ ኢንች አንድ ሀያኛ በ ሴንቲ ሚትር ውስጥ"
+msgid "A <emph>twip</emph> is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgstr ""
+
+#. FvGBG
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153951\n"
+"help.text"
+msgid "<variable id=\"AppFontUnits\">AppFont Units</variable>"
+msgstr ""
+
+#. H6FBF
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153514\n"
+"help.text"
+msgid "<emph>Map AppFont units</emph> are device and resolution independent. One Map AppFont unit is equal to one eighth of the average character (Systemfont) height and one quarter of the average character width."
+msgstr ""
#. Qei2N
#: 00000002.xhp
@@ -25225,13 +25243,13 @@ msgctxt ""
msgid "CSng (Expression As Variant) As Single"
msgstr ""
-#. x4B4M
+#. xdo5y
#: 03100900.xhp
msgctxt ""
"03100900.xhp\n"
"par_id3153897\n"
"help.text"
-msgid "<emph>Expression</emph>: Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered using a dot \".\" as the decimal point and a comma \",\" as the thousands separator (for instance 123,456.78), which may differ from your %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\">language settings</link>."
+msgid "<emph>Expression</emph>: Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text using the default number format of your %PRODUCTNAME <link href=\"text/shared/optionen/01140000.xhp\">language settings</link>. For instance, the number must be entered using a dot \".\" as the decimal point and a comma \",\" as the thousands separator (for instance 123,456.78) for the English language setting."
msgstr ""
#. tgSuU
@@ -38023,13 +38041,13 @@ msgctxt ""
msgid "Using Calc Functions in Macros"
msgstr ""
-#. B2ErX
+#. rf8Fv
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"bm_id291592361063458\n"
"help.text"
-msgid "<bookmark_value>calling Calc function;macros</bookmark_value> <bookmark_value>setting Calc function;macros</bookmark_value> <bookmark_value>macros;calling Calc function</bookmark_value> <bookmark_value>macros;setting Calc function</bookmark_value> <bookmark_value>createUNOservice function;calling Calc function</bookmark_value> <bookmark_value>API;sheet.addin.Analysis</bookmark_value> <bookmark_value>API;sheet.FunctionAccess</bookmark_value>"
+msgid "<bookmark_value>calling Calc function;macros</bookmark_value> <bookmark_value>setting Calc function;macros</bookmark_value> <bookmark_value>macros;calling Calc function</bookmark_value> <bookmark_value>macros;setting Calc function</bookmark_value> <bookmark_value>CreateUnoService function;calling Calc function</bookmark_value> <bookmark_value>API;sheet.addin.Analysis</bookmark_value> <bookmark_value>API;sheet.FunctionAccess</bookmark_value>"
msgstr ""
#. wHDmE
@@ -38059,13 +38077,13 @@ msgctxt ""
msgid "Calling Internal Calc functions in Basic"
msgstr ""
-#. 2rKcD
+#. 2Cm3R
#: calc_functions.xhp
msgctxt ""
"calc_functions.xhp\n"
"par_id731592352332694\n"
"help.text"
-msgid "Use the <literal>CreateUNOService</literal> function to access the <literal>com.sun.star.sheet.FunctionAccess</literal> service."
+msgid "Use the <literal>CreateUnoService</literal> function to access the <literal>com.sun.star.sheet.FunctionAccess</literal> service."
msgstr ""
#. LFEou
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index 81bad1983f2..ec2f2fb92e7 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/03.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: 2023-04-19 12:24+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -763,6 +763,15 @@ msgctxt ""
msgid "<bookmark_value>BASIC Tools library</bookmark_value>"
msgstr "<bookmark_value>መሰረታዊ የ መሳሪያዎች መጻህፍት ቤት</bookmark_value>"
+#. 3npFA
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"par_id901528999850603\n"
+"help.text"
+msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#basiclibrarynote\" markup=\"keep\"/><br/> <item type=\"literal\">GlobalScope.BasicLibraries.LoadLibrary(\"Tools\")</item>"
+msgstr ""
+
#. Fzsaz
#: lib_tools.xhp
msgctxt ""
@@ -898,6 +907,15 @@ msgctxt ""
msgid "Miscellaneous functions and subroutines."
msgstr "የ ተለያዩ ተግባሮች እና ንዑስ አሰራሮች"
+#. ET8dB
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
+"hd_id481688911437449\n"
+"help.text"
+msgid "Example"
+msgstr ""
+
#. 534YG
#: lib_tools.xhp
msgctxt ""
@@ -2446,13 +2464,13 @@ msgctxt ""
msgid "SFDocuments.Base service"
msgstr ""
-#. RAHDf
+#. fCppF
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"bm_id781582391760253\n"
"help.text"
-msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_base.xhp\"><literal>SFDocuments</literal>.<literal>Base</literal> service</link></variable>"
+msgid "<variable id=\"BaseService\"><link href=\"text/sbasic/shared/03/sf_base.xhp\"><literal>SFDocuments</literal>.<literal>Base</literal> service</link></variable>"
msgstr ""
#. 4KK8s
@@ -2599,6 +2617,15 @@ msgctxt ""
msgid "Closes the given form document. Returns <literal>True</literal> if closure is successful."
msgstr ""
+#. UCFtA
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id81692554166441\n"
+"help.text"
+msgid "The method <literal>CloseFormDocument</literal> is deprecated since %PRODUCTNAME 7.6. Although it is still available, it may be removed from the <literal>Base</literal> service in a future release. Use the <literal>CloseDocument</literal> method from the <literal>FormDocument</literal> service instead."
+msgstr ""
+
#. ycunk
#: sf_base.xhp
msgctxt ""
@@ -2671,6 +2698,15 @@ msgctxt ""
msgid "A <literal>SFDocuments.Form</literal> object representing the form specified in the <literal>Form</literal> argument."
msgstr ""
+#. cifGC
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id81692554166191\n"
+"help.text"
+msgid "The method <literal>Forms</literal> is deprecated since %PRODUCTNAME 7.6. Although it is still available, it may be removed from the <literal>Base</literal> service in a future release. Use the <literal>Forms</literal> method from the <literal>FormDocument</literal> service instead."
+msgstr ""
+
#. pEtwt
#: sf_base.xhp
msgctxt ""
@@ -2770,22 +2806,31 @@ msgctxt ""
msgid "<emph>formdocument:</emph> The name of a <literal>FormDocument</literal> to be checked, as a case-sensitive string."
msgstr ""
-#. RS3kj
+#. vzCvY
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"par_id801619099743199\n"
"help.text"
-msgid "Opens the specified <literal>FormDocument</literal> either in normal or in design mode."
+msgid "Opens the specified <literal>FormDocument</literal> either in normal or in design mode. This method returns a <literal>FormDocument</literal> service instance corresponding to the specified form document."
msgstr ""
-#. 38vtF
+#. UEGjL
#: sf_base.xhp
msgctxt ""
"sf_base.xhp\n"
"par_id451619100075330\n"
"help.text"
-msgid "If the form document is already open, it is activated without changing its mode. The method returns <literal>True</literal> if the form document could be opened."
+msgid "If the form document is already open, it is activated without changing its mode."
+msgstr ""
+
+#. ZGYRs
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id651692554712005\n"
+"help.text"
+msgid "If the specified form document does not exist, then <literal>Nothing</literal> is returned."
msgstr ""
#. dUE6w
@@ -2950,6 +2995,15 @@ msgctxt ""
msgid "Returns <literal>True</literal> if the document was successfully printed."
msgstr ""
+#. yqC7c
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id81692554166367\n"
+"help.text"
+msgid "The method <literal>PrintOut</literal> is deprecated since %PRODUCTNAME 7.6. Although it is still available, it may be removed from the <literal>Base</literal> service in a future release. Use the <literal>PrintOut</literal> method from the <literal>FormDocument</literal> service instead."
+msgstr ""
+
#. pwm7n
#: sf_base.xhp
msgctxt ""
@@ -2995,6 +3049,15 @@ msgctxt ""
msgid "Returns <literal>True</literal> when successful."
msgstr ""
+#. s5k6j
+#: sf_base.xhp
+msgctxt ""
+"sf_base.xhp\n"
+"par_id81692554166449\n"
+"help.text"
+msgid "The method <literal>SetPrinter</literal> is deprecated since %PRODUCTNAME 7.6. Although it is still available, it may be removed from the <literal>Base</literal> service in a future release. Use the <literal>SetPrinter</literal> method from the <literal>Document</literal> service instead."
+msgstr ""
+
#. uGA7B
#: sf_base.xhp
msgctxt ""
@@ -8188,13 +8251,13 @@ msgctxt ""
msgid "' The inserted column spans all rows in the sheet"
msgstr ""
-#. DDG3C
+#. D4fh3
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id141595692394382\n"
"help.text"
-msgid "Sorts the given range based on a set of columns/rows that are considered as keys. The sorting order may vary by column/row. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
+msgid "Sort the given range on any number of columns/rows. The sorting order may vary by column/row. If the number of sort keys is > 3 then the range is sorted several times, by groups of 3 keys, starting from the last key. It returns a string representing the modified range of cells. The size of the modified area is fully determined by the size of the source area."
msgstr ""
#. MVGBC
@@ -8215,13 +8278,13 @@ msgctxt ""
msgid "<emph>sortkeys</emph>: A scalar (if 1 column/row) or an array of column/row numbers starting from 1."
msgstr ""
-#. aQF93
+#. k5CZ4
#: sf_calc.xhp
msgctxt ""
"sf_calc.xhp\n"
"par_id421595692962095\n"
"help.text"
-msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending) or \"\" (which defaults to ascending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
+msgid "<emph>sortorder</emph>: A scalar or an array of strings containing the values \"ASC\" (ascending), \"DESC\" (descending). Each item is paired with the corresponding item in <literal>sortkeys</literal>. If the <literal>sortorder</literal> array is shorter than <literal>sortkeys</literal>, the remaining keys are sorted in ascending order."
msgstr ""
#. GVpuf
@@ -9610,6 +9673,60 @@ msgctxt ""
msgid "' Returns the first 50 employee records ordered by the 'FirstName' field"
msgstr ""
+#. BjQGE
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id801619099743199\n"
+"help.text"
+msgid "Opens the specified form document in normal mode. This method returns a <literal>FormDocument</literal> service instance corresponding to the specified form document."
+msgstr ""
+
+#. DWmz6
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id451619100075330\n"
+"help.text"
+msgid "If the form document is already open, the form document window is activated."
+msgstr ""
+
+#. WVNUN
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id651692554712005\n"
+"help.text"
+msgid "If the specified form document does not exist, then <literal>Nothing</literal> is returned."
+msgstr ""
+
+#. bEzqx
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id941619099797810\n"
+"help.text"
+msgid "<emph>formdocument:</emph> The name of the <literal>FormDocument</literal> to be opened, as a case-sensitive string."
+msgstr ""
+
+#. bERnJ
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id251619100191992\n"
+"help.text"
+msgid "Most form documents are stored in the root of the Base document and they can be opened simply using their names, as in the example below:"
+msgstr ""
+
+#. LNaUs
+#: sf_database.xhp
+msgctxt ""
+"sf_database.xhp\n"
+"par_id351619100327505\n"
+"help.text"
+msgid "If form documents are organized in folders, it becomes necessary to include the folder name to specify the form document to be opened, as illustrated in the following example:"
+msgstr ""
+
#. BS9jq
#: sf_database.xhp
msgctxt ""
@@ -10627,13 +10744,13 @@ msgctxt ""
msgid "Before using the <literal>Dialog</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
msgstr ""
-#. S8GrJ
+#. EzMcF
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id361598174756160\n"
"help.text"
-msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three positional arguments to specify the dialog box to activate:"
+msgid "The <literal>Dialog</literal> service is invoked through the <literal>CreateScriptService</literal> method. It requires three supplemental positional arguments to specify the dialog box to activate:"
msgstr ""
#. KyBGV
@@ -10744,6 +10861,78 @@ msgctxt ""
msgid "Use the string \"GlobalScope\" as the <emph>container</emph> argument when the dialog is stored either in <menuitem>My Macros & Dialogs</menuitem> or in <menuitem>Application Macros & Dialogs</menuitem>."
msgstr ""
+#. vwuNC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id461688463074274\n"
+"help.text"
+msgid "The dialog service offers methods that create new controls dynamically in an existing dialog predefined with the <link href=\"text/sbasic/guide/create_dialog.html\">Dialog Editor</link>. A dialog is initialized with controls in the Dialog Editor and new controls can be added at run-time before or after the dialog <literal>Execute()</literal> statement."
+msgstr ""
+
+#. Rdc5q
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id261688459210848\n"
+"help.text"
+msgid "The <literal>Dialog</literal> service can equally be invoked - through the <literal>CreateScriptService</literal> method - when creating dialogs on-the-fly; It requires two supplemental positional arguments:"
+msgstr ""
+
+#. B82Et
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id751688460276630\n"
+"help.text"
+msgid "<emph>DialogName</emph>: A case-sensitive string designating the dialog."
+msgstr ""
+
+#. QucaE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id291688460281953\n"
+"help.text"
+msgid "<emph>Library</emph>: The case-sensitive name of the library where to store the dialog. Default value is \"Standard\"."
+msgstr ""
+
+#. sKdLk
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id601619633410089\n"
+"help.text"
+msgid "Or using Python:"
+msgstr ""
+
+#. vHBvS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id981688462077340\n"
+"help.text"
+msgid "dlg = CreateScriptService(\"NewDialog\", \"myDialog1\") # \"Standard\" library is used"
+msgstr ""
+
+#. wF8Se
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id681619620065191\n"
+"help.text"
+msgid "# ... Process controls and do what is needed"
+msgstr ""
+
+#. JhBcB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id951688460698125\n"
+"help.text"
+msgid "All properties and methods applicable to predefined dialogs are available for such new dialogs. In particular the series of <literal>CreateXXX()</literal> methods for the additionof new dialog controls."
+msgstr ""
+
#. 8iyqo
#: sf_dialog.xhp
msgctxt ""
@@ -11095,13 +11284,13 @@ msgctxt ""
msgid "Event properties"
msgstr ""
-#. GyjGD
+#. EQdEV
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id41612629140856\n"
"help.text"
-msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">scripting framework URI specification</link>."
+msgid "<literal>On…</literal> properties return a URI string with the reference to the script triggered by the event. <literal>On…</literal> properties can be set programmatically.<br/>Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">scripting framework URI specification</link>."
msgstr ""
#. XCC7C
@@ -11113,13 +11302,13 @@ msgctxt ""
msgid "Name"
msgstr ""
-#. V3bin
+#. eFrre
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id401612628879819\n"
"help.text"
-msgid "ReadOnly"
+msgid "Read/Write"
msgstr ""
#. uW85z
@@ -11311,6 +11500,15 @@ msgctxt ""
msgid "Mouse button released"
msgstr ""
+#. Z4Lnx
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id401687779361420\n"
+"help.text"
+msgid "Assigning events via the Basic IDE and assigning events via macros are mutually exclusive."
+msgstr ""
+
#. 9uiAA
#: sf_dialog.xhp
msgctxt ""
@@ -11320,6 +11518,15 @@ msgctxt ""
msgid "List of Methods in the Dialog Service"
msgstr ""
+#. GbtVM
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161660427825856\n"
+"help.text"
+msgid "Dimensioning a dialog is done by using <link href=\"text/sbasic/shared/00000002.xhp#AppFontUnits\">Map AppFont units</link>. A dialog or control model also uses AppFont units. While their views use pixels."
+msgstr ""
+
#. DiCyL
#: sf_dialog.xhp
msgctxt ""
@@ -11428,6 +11635,42 @@ msgctxt ""
msgid "dlg2 = CreateScriptService('Dialog', ...) # Open a second dialog"
msgstr ""
+#. wAahr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id161584552357982\n"
+"help.text"
+msgid "Duplicate an existing control of any typein the actual dialog. The duplicated control is left unchanged and can be relocated."
+msgstr ""
+
+#. CCUpB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1992584541368789\n"
+"help.text"
+msgid "<emph>SourceName</emph>: The name of the control to duplicate."
+msgstr ""
+
+#. Bv4DW
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001584541368789\n"
+"help.text"
+msgid "<emph>ControlName</emph>: A valid control name as a case-sensitive string. It must not exist yet."
+msgstr ""
+
+#. PFJHH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id31688475132631\n"
+"help.text"
+msgid "<emph>Left</emph>, <emph>Top</emph>: The coordinates of the new control expressed in <link href=\"text/sbasic/shared/00000002.xhp#AppFontUnits\">Map AppFont units</link>."
+msgstr ""
+
#. 4qLn9
#: sf_dialog.xhp
msgctxt ""
@@ -11464,49 +11707,1273 @@ msgctxt ""
msgid "<emph>ControlName</emph> : A valid control name as a case-sensitive string. If absent, the list of control names is returned as a zero-based array."
msgstr ""
-#. j8x9C
+#. qkyvc
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id381598185776500\n"
+"par_id381591885776500\n"
"help.text"
-msgid "Ends the display of a modal dialog and gives back the argument as return value for the current <literal>Execute()</literal> running action."
+msgid "Create a new control of type Button in the current dialog."
msgstr ""
-#. gjvwy
+#. UUuAw
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id551598185953362\n"
+"parm_ControlName\n"
"help.text"
-msgid "<literal>EndExecute()</literal> is usually contained in the processing of a macro triggered by a dialog or control event."
+msgid "<emph>ControlName</emph>: the name of the new control. It must not exist yet."
msgstr ""
-#. yukGC
+#. GDYGN
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id451598185776957\n"
+"parm_Place\n"
"help.text"
-msgid "<emph>returnvalue</emph>: The value passed to the running <literal>Execute()</literal> method."
+msgid "<emph>Place</emph>: either …"
msgstr ""
-#. ABome
+#. KNVZv
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id411620110780170\n"
+"par_id421598177970993\n"
"help.text"
-msgid "Using %PRODUCTNAME Basic:"
+msgid "a Basic <link href=\"sbasic/shared/03104200.xhp\">Array</link> or Python tuple with 4 elements: (X, Y, width, height)"
msgstr ""
-#. EtAN6
+#. HCiRn
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id11620110819754\n"
+"par_id881591858229301\n"
"help.text"
-msgid "Using Python:"
+msgid "a com.sun.star.awt.Rectangle [X, Y, Width, Height] object"
+msgstr ""
+
+#. 3Mdpm
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id241688051343685\n"
+"help.text"
+msgid "All elements are expressed in <link href=\"text/sbasic/shared/00000002.xhp#AppFontUnits\">Map AppFont units</link>."
+msgstr ""
+
+#. f4DZt
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id971688053679708\n"
+"help.text"
+msgid "<emph>Toggle</emph>: when <literal>True</literal> a Toggle button is created. Default = <literal>False</literal>"
+msgstr ""
+
+#. sR8Fy
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id961688054652555\n"
+"help.text"
+msgid "<emph>Push</emph>: \"OK\", \"CANCEL\" or \"\" (default)"
+msgstr ""
+
+#. kjvhr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id961688054748539\n"
+"help.text"
+msgid "An instance of <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp\"><literal>SFDialogs</literal>.<literal>DialogControl</literal></link> service or <literal>Nothing</literal>."
+msgstr ""
+
+#. RB88M
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id241688389976612\n"
+"help.text"
+msgid "Set myButton = oDlg.CreateButton(\"Button1\", Array(20, 20, 60, 15))"
+msgstr ""
+
+#. 4Aydt
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id861688389993653\n"
+"help.text"
+msgid "myButton = dlg.CreateButton('Button1', (20, 20, 60, 15))"
+msgstr ""
+
+#. goc7H
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id991591995776500\n"
+"help.text"
+msgid "Create a new control of type CheckBox in the current dialog."
+msgstr ""
+
+#. pVaTF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id241688132171052\n"
+"help.text"
+msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line."
+msgstr ""
+
+#. tAwLB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id211688391124091\n"
+"help.text"
+msgid "Set myCheckBox = oDlg.CreateCheckBox(\"CheckBox1\", Array(20, 20, 60, 15), MultiLine := True)"
+msgstr ""
+
+#. FSe7M
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id711688391128090\n"
+"help.text"
+msgid "myCheckBox = dlg.CreateCheckBox('CheckBox1', (20, 20, 60, 15), MultiLine = True)"
+msgstr ""
+
+#. GzFFo
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id991591885776500\n"
+"help.text"
+msgid "Create a new control of type ComboBox in the current dialog."
+msgstr ""
+
+#. EBEZu
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id241688132526109\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. GdLkB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id641688132528598\n"
+"help.text"
+msgid "<emph>DropDown</emph>: When True (default), a drop down button is displayed"
+msgstr ""
+
+#. tYvPA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id901688132529427\n"
+"help.text"
+msgid "<emph>LineCount</emph>: Specifies the maximum line count displayed in the drop down (default = 5)"
+msgstr ""
+
+#. No6yL
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id571688391233995\n"
+"help.text"
+msgid "Set myComboBox = oDlg.CreateComboBox(\"ComboBox1\", Array(20, 20, 60, 15), Dropdown := True)"
+msgstr ""
+
+#. vQ37B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id681688391240490\n"
+"help.text"
+msgid "myComboBox = dlg.CreateComboBox('ComboBox1', (20, 20, 60, 15), Dropdown = True)"
+msgstr ""
+
+#. CW7CF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id991591005776500\n"
+"help.text"
+msgid "Create a new control of type CurrencyField in the current dialog."
+msgstr ""
+
+#. CzJFF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id511688132750220\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. HnJzn
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id751688132750844\n"
+"help.text"
+msgid "<emph>SpinButton</emph>: when True (default = False), a spin button is present"
+msgstr ""
+
+#. kCCaS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id741688132751443\n"
+"help.text"
+msgid "<emph>MinValue</emph>: the smallest value that can be entered in the control. Default = -1000000"
+msgstr ""
+
+#. MAm9M
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361688132752004\n"
+"help.text"
+msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = +1000000"
+msgstr ""
+
+#. UHBgk
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id371688132752523\n"
+"help.text"
+msgid "<emph>Increment</emph>: the step when the spin button is pressed. Default = 1"
+msgstr ""
+
+#. mWecS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id321688132753003\n"
+"help.text"
+msgid "<emph>Accuracy</emph>: specifies the decimal accuracy. Default = 2 decimal digits"
+msgstr ""
+
+#. CdDEE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id931688391314834\n"
+"help.text"
+msgid "Set myCurrencyField = oDlg.CreateCurrencyField(\"CurrencyField1\", Array(20, 20, 60, 15), SpinButton := True)"
+msgstr ""
+
+#. JYQZW
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id41688391319204\n"
+"help.text"
+msgid "myCurrencyField = dlg.CreateCurrencyField('CurrencyField1', (20, 20, 60, 15), SpinButton = True)"
+msgstr ""
+
+#. TP42B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199598185776500\n"
+"help.text"
+msgid "Create a new control of type DateField in the current dialog."
+msgstr ""
+
+#. WJDCR
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id831688133418579\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. TeyCg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id521688133422980\n"
+"help.text"
+msgid "<emph>DropDown</emph>: when True (default = False), a dropdown button is shown"
+msgstr ""
+
+#. cpD54
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id361688133423860\n"
+"help.text"
+msgid "<emph>MinDate</emph>: the smallest date that can be entered in the control. Default = 1900-01-01"
+msgstr ""
+
+#. E4APT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id221688133424380\n"
+"help.text"
+msgid "<emph>MaxDate</emph>: the largest Date that can be entered in the control. Default = 2200-12-31"
+msgstr ""
+
+#. Ddvtg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id431688391456485\n"
+"help.text"
+msgid "Set myDateField = oDlg.CreateDateField(\"DateField1\", Array(20, 20, 60, 15), Dropdown := True)"
+msgstr ""
+
+#. yD5iD
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id491688391462954\n"
+"help.text"
+msgid "myDateField = dlg.CreateDateField('DateField1', (20, 20, 60, 15), Dropdown = True)"
+msgstr ""
+
+#. uJLUS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199591885776511\n"
+"help.text"
+msgid "Create a new control of type FileControl in the current dialog."
+msgstr ""
+
+#. Z8TBR
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001688133702877\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. i7pDw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id741688391752376\n"
+"help.text"
+msgid "Set myFileControl = oDlg.CreateFileControl(\"FileControl1\", Array(20, 20, 60, 15))"
+msgstr ""
+
+#. GFDZP
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id181688391760784\n"
+"help.text"
+msgid "myFileControl = dlg.CreateFileControl('FileControl1', (20, 20, 60, 15))"
+msgstr ""
+
+#. uDBpj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199195885776500\n"
+"help.text"
+msgid "Create a new control of type FixedLine in the current dialog."
+msgstr ""
+
+#. FstFf
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id351688134656035\n"
+"help.text"
+msgid "<emph>Orientation</emph>: \"H[orizontal]\" or \"V[ertical]\"."
+msgstr ""
+
+#. FrBtJ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id301688392274784\n"
+"help.text"
+msgid "Set myFixedLine = oDlg.CreateFixedLine(\"FixedLine1\", Array(20, 20, 60, 15), Orientation := \"vertical\")"
+msgstr ""
+
+#. 2kKJa
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id491688392278136\n"
+"help.text"
+msgid "myFixedLine = dlg.CreateFixedLine('FixedLine1', (20, 20, 60, 15), Orientation = 'vertical')"
+msgstr ""
+
+#. SdNPZ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199721885776533\n"
+"help.text"
+msgid "Create a new control of type FixedText in the current dialog."
+msgstr ""
+
+#. qWysV
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id781688134809419\n"
+"help.text"
+msgid "<emph>Border</emph>: \"NONE\" (default) or \"FLAT\" or \"3D\""
+msgstr ""
+
+#. vzdDb
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311688134819532\n"
+"help.text"
+msgid "<emph>Multiline</emph>: When True (default = False), the caption may be displayed on more than one line"
+msgstr ""
+
+#. 24XQ9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id121688134820022\n"
+"help.text"
+msgid "<emph>Align</emph>: horizontal alignment, \"LEFT\" (default) or \"CENTER\" or \"RIGHT\""
+msgstr ""
+
+#. AabE3
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id316881340820555\n"
+"help.text"
+msgid "<emph>VerticalAlign</emph>: vertical alignment, \"TOP\" (default) or \"MIDDLE\" or \"BOTTOM\""
+msgstr ""
+
+#. byaD6
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id521688392367919\n"
+"help.text"
+msgid "Set myFixedText = oDlg.CreateFixedText(\"FixedText1\", Array(20, 20, 60, 15), MultiLine := True)"
+msgstr ""
+
+#. CDXiP
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id971688392372871\n"
+"help.text"
+msgid "myFixedText = dlg.CreateFixedText('FixedText1', (20, 20, 60, 15), MultiLine = True)"
+msgstr ""
+
+#. uwXZE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199591885776500\n"
+"help.text"
+msgid "Create a new control of type FormattedField in the current dialog."
+msgstr ""
+
+#. Egi57
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id561688135183954\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. fBb4e
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id691688135184764\n"
+"help.text"
+msgid "<emph>SpinButton</emph>: when True (default = False), a spin button is present"
+msgstr ""
+
+#. gGMo2
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id941688135185218\n"
+"help.text"
+msgid "<emph>MinValue</emph>: the smallest value that can be entered in the control. Default = -1000000"
+msgstr ""
+
+#. LurdS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id881688135185626\n"
+"help.text"
+msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = +1000000"
+msgstr ""
+
+#. YpxN5
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id211688392640319\n"
+"help.text"
+msgid "Set myFormattedField = oDlg.CreateFormattedField(\"FormattedField1\", Array(20, 20, 60, 15), SpinButton := True)"
+msgstr ""
+
+#. 5h4ou
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id481688392650918\n"
+"help.text"
+msgid "myFormattedField = dlg.CreateFormattedField('FormattedField1', (20, 20, 60, 15), SpinButton = True)"
+msgstr ""
+
+#. i7sEM
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id100691885776500\n"
+"help.text"
+msgid "Create a new control of type GroupBox in the current dialog."
+msgstr ""
+
+#. 3LLk5
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id1001688392702670\n"
+"help.text"
+msgid "Set myGroupBox = oDlg.CreateGroupBox(\"GroupBox1\", Array(20, 20, 60, 15))"
+msgstr ""
+
+#. Hjrdi
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id941688392712142\n"
+"help.text"
+msgid "myGroupBox = dlg.CreateGroupBox('GroupBox1', (20, 20, 60, 15))"
+msgstr ""
+
+#. eCPow
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id101701885776500\n"
+"help.text"
+msgid "Create a new control of type Hyperlink in the current dialog."
+msgstr ""
+
+#. ZLjCH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id731688542076471\n"
+"help.text"
+msgid "<emph>Border</emph>: \"NONE\" (default) or \"FLAT\" or \"3D\""
+msgstr ""
+
+#. jKDEF
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id241688542076988\n"
+"help.text"
+msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line"
+msgstr ""
+
+#. oBCY5
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id831688542077407\n"
+"help.text"
+msgid "<emph>Align</emph>: horizontal alignment, \"LEFT\" (default) or \"CENTER\" or \"RIGHT\""
+msgstr ""
+
+#. E45Rv
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id941688542077873\n"
+"help.text"
+msgid "<emph>VerticalAlign</emph>: vertical alignment, \"TOP\" (default) or \"MIDDLE\" or \"BOTTOM\""
+msgstr ""
+
+#. jGgKr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id1012788392702670\n"
+"help.text"
+msgid "Set myHyperlink = oDlg.CreateHyperlink(\"Hyperlink1\", Array(20, 20, 60, 15), MultiLine := True)"
+msgstr ""
+
+#. b29ot
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id941688470312142\n"
+"help.text"
+msgid "myHyperlink = dlg.CreateHyperlink('Hyperlink1', (20, 20, 60, 15), MultiLine = True)"
+msgstr ""
+
+#. GVE4D
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199591885776504\n"
+"help.text"
+msgid "Create a new control of type ImageControl in the current dialog."
+msgstr ""
+
+#. oYoCP
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id551688135418418\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. mFJZ4
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id431688135405342\n"
+"help.text"
+msgid "<emph>Scale</emph>: One of next values: \"FITTOSIZE\" (default), \"KEEPRATIO\" or \"NO\""
+msgstr ""
+
+#. JHzUz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id911688392874655\n"
+"help.text"
+msgid "Set myImageControl = oDlg.CreateImageControl(\"ImageControl1\", Array(20, 20, 60, 15))"
+msgstr ""
+
+#. Ayx3d
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id271688392883751\n"
+"help.text"
+msgid "myImageControl = dlg.CreateImageControl('ImageControl1\", (20, 20, 60, 15))"
+msgstr ""
+
+#. fXxUk
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199591885776506\n"
+"help.text"
+msgid "Create a new control of type ListBox in the current dialog."
+msgstr ""
+
+#. EJiPj
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id1001688135548955\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. PZ4LB
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id11688135550412\n"
+"help.text"
+msgid "<emph>DropDown</emph>: When True (default), a drop down button is displayed"
+msgstr ""
+
+#. GJVah
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id121688135552418\n"
+"help.text"
+msgid "<emph>LineCount</emph>: Specifies the maximum line count displayed in the drop down (default = 5)"
+msgstr ""
+
+#. HPNpE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id661688135552802\n"
+"help.text"
+msgid "<emph>MultiSelect</emph>: When True, more than 1 entry may be selected. Default = False"
+msgstr ""
+
+#. 8iFoG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id771688392940502\n"
+"help.text"
+msgid "Set myListBox = oDlg.CreateListBox(\"ListBox1\", Array(20, 20, 60, 15), Dropdown := True, MultiSelect := True)"
+msgstr ""
+
+#. Me33n
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id921688392950230\n"
+"help.text"
+msgid "myListBox = dlg.CreateListBox('ListBox1', (20, 20, 60, 15), Dropdown = True, MultiSelect = True)"
+msgstr ""
+
+#. Zowb3
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id199591885776510\n"
+"help.text"
+msgid "Create a new control of type NumericField in the current dialog."
+msgstr ""
+
+#. zzVVQ
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id841688135885946\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. uZyEN
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id781688135886499\n"
+"help.text"
+msgid "<emph>SpinButton</emph>: when True (default = False), a spin button is present"
+msgstr ""
+
+#. XbJfV
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id481688135887010\n"
+"help.text"
+msgid "<emph>MinValue</emph>: the smallest value that can be entered in the control. Default = -1000000"
+msgstr ""
+
+#. UxiQT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id371688135887594\n"
+"help.text"
+msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = +1000000"
+msgstr ""
+
+#. geRML
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id191688135888122\n"
+"help.text"
+msgid "<emph>Increment</emph>: the step when the spin button is pressed. Default = 1"
+msgstr ""
+
+#. GEbxq
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id451688135888638\n"
+"help.text"
+msgid "<emph>Accuracy</emph>: specifies the decimal accuracy. Default = 2 decimal digits"
+msgstr ""
+
+#. KpDyW
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id1001688393400045\n"
+"help.text"
+msgid "Set myNumericField = oDlg.CreateNumericField(\"NumericField1\", Array(20, 20, 60, 15), SpinButton := True)"
+msgstr ""
+
+#. AATC9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id951688393408429\n"
+"help.text"
+msgid "myNumericField = dlg.CreateNumericField('NumericField1', (20, 20, 60, 15), SpinButton = True)"
+msgstr ""
+
+#. Movj2
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200591996776500\n"
+"help.text"
+msgid "Create a new control of type PatternField in the current dialog."
+msgstr ""
+
+#. hHGWt
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id251688136173107\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. rtHid
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id631688136173778\n"
+"help.text"
+msgid "<emph>EditMask</emph>: a character code that determines what the user may enter<br/>Refer to <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Graphical_User_Interfaces#Pattern_Field\">Pattern_Field</link> in the wiki for more information."
+msgstr ""
+
+#. EAbCo
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id321688136174244\n"
+"help.text"
+msgid "<emph>LiteralMask</emph>: contains the initial values that are displayed in the pattern field"
+msgstr ""
+
+#. gFGyA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id1001688393462780\n"
+"help.text"
+msgid "Set myPatternField = oDlg.CreatePatternField(\"PatternField1\", Array(20, 20, 60, 15), EditMask := \"NNLNNLLLLL\", LiteralMask := \"__.__.2002\")"
+msgstr ""
+
+#. VVGBT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id231688393481925\n"
+"help.text"
+msgid "myPatternField = dlg.CreatePatternField('PatternField1', (20, 20, 60, 15), EditMask = 'NNLNNLLLLL', LiteralMask = '__.__.2002')"
+msgstr ""
+
+#. APQmw
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id311591885776500\n"
+"help.text"
+msgid "Create a new control of type ProgressBar in the current dialog."
+msgstr ""
+
+#. 4BBzC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id551688136587329\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. JvdPM
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id411688136587778\n"
+"help.text"
+msgid "<emph>MinValue</emph>: the smallest value that can be entered in the control. Default = 0"
+msgstr ""
+
+#. W3vPH
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id261688136588146\n"
+"help.text"
+msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = 100"
+msgstr ""
+
+#. vUT2B
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id361688393568688\n"
+"help.text"
+msgid "Set myProgressBar = oDlg.CreateProgressBar(\"ProgressBar1\", Array(20, 20, 60, 15), MaxValue := 1000)"
+msgstr ""
+
+#. i82Pi
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id971688393576061\n"
+"help.text"
+msgid "myProgressBar = dlg.CreateProgressBar('ProgressBar1', (20, 20, 60, 15), MaxValue = 1000)"
+msgstr ""
+
+#. X8cwi
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200502985776500\n"
+"help.text"
+msgid "Create a new control of type RadioButton in the current dialog."
+msgstr ""
+
+#. G7VYd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id211688136829297\n"
+"help.text"
+msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line"
+msgstr ""
+
+#. uXqbU
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id61688393673927\n"
+"help.text"
+msgid "Set myRadioButton = oDlg.CreateRadioButton(\"RadioButton1\", Array(20, 20, 60, 15), MultiLine := True)"
+msgstr ""
+
+#. 9zbeK
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id751688393681262\n"
+"help.text"
+msgid "myRadioButton = dlg.CreateRadioButton('RadioButton1', (20, 20, 60, 15), MultiLine = True)"
+msgstr ""
+
+#. sJGgM
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200591886886500\n"
+"help.text"
+msgid "Create a new control of type ScrollBar in the current dialog."
+msgstr ""
+
+#. eqt7D
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id731688136882518\n"
+"help.text"
+msgid "<emph>Orientation</emph>: H[orizontal] or V[ertical]"
+msgstr ""
+
+#. ukFA2
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id341688136882960\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. 5azTe
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id621688136883363\n"
+"help.text"
+msgid "<emph>MinValue</emph>: the smallest value that can be entered in the control. Default = 0"
+msgstr ""
+
+#. rCC4o
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id241688136883785\n"
+"help.text"
+msgid "<emph>MaxValue</emph>: the largest value that can be entered in the control. Default = 100"
+msgstr ""
+
+#. qRFL3
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id881688393719078\n"
+"help.text"
+msgid "Set myScrollBar = oDlg.CreateScrollBar(\"ScrollBar1\", Array(20, 20, 60, 15), MaxValue := 1000)"
+msgstr ""
+
+#. oEcHD
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id551688393726542\n"
+"help.text"
+msgid "myScrollBar = dialog.CreateScrollBar('ScrollBar1', (20, 20, 60, 15), MaxValue = 1000)"
+msgstr ""
+
+#. WMACC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200502985776722\n"
+"help.text"
+msgid "Create a new control of type TableControl in the current dialog."
+msgstr ""
+
+#. iFFvS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id541688393982300\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. aR6Ak
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id351688393983486\n"
+"help.text"
+msgid "<emph>RowHeaders</emph>: when True (default), the row Headers are shown"
+msgstr ""
+
+#. 4ti6y
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id941688393983846\n"
+"help.text"
+msgid "<emph>ColumnHeaders</emph>: when True (default), the column Headers are shown"
+msgstr ""
+
+#. 7CcWA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id141688393984239\n"
+"help.text"
+msgid "<emph>ScrollBars</emph>: H[orizontal] or V[ertical] or B[oth] or N[one] (default). Scrollbars appear dynamically when they are needed."
+msgstr ""
+
+#. WzrfY
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id741688393984702\n"
+"help.text"
+msgid "<emph>GridLines</emph>: when True (default = False) horizontal and vertical lines are painted between the grid cells"
+msgstr ""
+
+#. HFGE2
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id901688393903227\n"
+"help.text"
+msgid "Set myTableControl = oDlg.CreateTableControl(\"TableControl1\", Array(20, 20, 60, 15), ScrollBars := \"B\")"
+msgstr ""
+
+#. uQgSs
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id201688393912277\n"
+"help.text"
+msgid "myTableControl = dlg.CreateTableControl('TableControl1', (20, 20, 60, 15), ScrollBars = 'B')"
+msgstr ""
+
+#. rWc7n
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200591895776500\n"
+"help.text"
+msgid "Create a new control of type TextField in the current dialog."
+msgstr ""
+
+#. VeTxt
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id281688394635114\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. BiVFx
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id341688394635645\n"
+"help.text"
+msgid "<emph>MultiLine</emph>: When True (default = False), the caption may be displayed on more than one line"
+msgstr ""
+
+#. BVC62
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id671688394636092\n"
+"help.text"
+msgid "<emph>MaximumLength</emph>: the maximum character count (default = 0 meaning unlimited)"
+msgstr ""
+
+#. WqBWr
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id231688394641827\n"
+"help.text"
+msgid "<emph>PasswordCharacter</emph>: a single character specifying the echo for a password text field (default = \"\")"
+msgstr ""
+
+#. o5AYA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id171688394748227\n"
+"help.text"
+msgid "Set myTextField = oDlg.CreateTextField(\"TextField1\", Array(20, 20, 120, 50), MultiLine := True)"
+msgstr ""
+
+#. bdP85
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id651688394757252\n"
+"help.text"
+msgid "myTextField = dlg.CreateTextField('TextField1', (20, 20, 120, 50), MultiLine = True)"
+msgstr ""
+
+#. QdBXd
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200591895776611\n"
+"help.text"
+msgid "Create a new control of type TimeField in the current dialog."
+msgstr ""
+
+#. ADdEz
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id771688394821811\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. rEYM9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id711688394822256\n"
+"help.text"
+msgid "<emph>MinTime</emph>: the smallest time that can be entered in the control. Default = 0"
+msgstr ""
+
+#. 9m7F9
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id491688394822582\n"
+"help.text"
+msgid "<emph>MaxTime</emph>: the largest time that can be entered in the control. Default = 24h"
+msgstr ""
+
+#. YYn8U
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id341688394893210\n"
+"help.text"
+msgid "Set myTimeField = oDlg.CreateTimeField(\"TimeField1\", Array(20, 20, 60, 15))"
+msgstr ""
+
+#. esoAA
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id31688394900314\n"
+"help.text"
+msgid "myTimeField = dlog.CreateTimeField('TimeField1', (20, 20, 60, 15))"
+msgstr ""
+
+#. Dm3pE
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id200692885776500\n"
+"help.text"
+msgid "Create a new control of type TreeControl in the current dialog."
+msgstr ""
+
+#. KBrUN
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id241688394984562\n"
+"help.text"
+msgid "<emph>Border</emph>: \"3D\" (default) or \"FLAT\" or \"NONE\""
+msgstr ""
+
+#. cFso7
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id941688395020850\n"
+"help.text"
+msgid "Set myTreeControl = oDlg.CreateTreeControl(\"TreeControl1\", Array(20, 20, 60, 15))"
+msgstr ""
+
+#. GDWGT
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id721688395030169\n"
+"help.text"
+msgid "myTreeControl = dlg.CreateTreeControl('TreeControl1', (20, 20, 60, 15))"
+msgstr ""
+
+#. j8x9C
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381598185776500\n"
+"help.text"
+msgid "Ends the display of a modal dialog and gives back the argument as return value for the current <literal>Execute()</literal> running action."
+msgstr ""
+
+#. gjvwy
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id551598185953362\n"
+"help.text"
+msgid "<literal>EndExecute()</literal> is usually contained in the processing of a macro triggered by a dialog or control event."
+msgstr ""
+
+#. yukGC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id451598185776957\n"
+"help.text"
+msgid "<emph>returnvalue</emph>: The value passed to the running <literal>Execute()</literal> method."
msgstr ""
#. aizuC
@@ -11644,13 +13111,85 @@ msgctxt ""
msgid "Read the <link href=\"text/sbasic/shared/03/sf_l10n.xhp\">L10N service</link> help page to learn more about how PO and POT files are handled."
msgstr ""
-#. mA4Nm
+#. yGR7U
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id21598298953697\n"
+"help.text"
+msgid "Set the tabulation index of a series of controls. The sequence of controls are given as an array of control names from the first to the last."
+msgstr ""
+
+#. GfyZ2
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id921688543457317\n"
+"help.text"
+msgid "Controls with an index >= 1 are not accessible with the TAB key if:<br/>- they are omitted from the given list<br/> - their type is FixedLine, GroupBox or ProgressBar<br/>- they are disabled"
+msgstr ""
+
+#. sx3QG
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id111688543698861\n"
+"help.text"
+msgid "<emph>TabsList</emph>: an array of valid control names in the order of tabulation"
+msgstr ""
+
+#. dqQvh
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id381688543699284\n"
+"help.text"
+msgid "<emph>Start</emph>: the tab index to be assigned to the 1st control in the list. Default = 1"
+msgstr ""
+
+#. CEhSS
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id321688543699637\n"
+"help.text"
+msgid "<emph>Increment</emph>: the difference between 2 successive tab indexes. Default = 1"
+msgstr ""
+
+#. DFWjc
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"par_id401688543845094\n"
+"help.text"
+msgid "<literal>True</literal> when successful."
+msgstr ""
+
+#. 3XGLC
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"bas_id791620301085031\n"
+"help.text"
+msgid "oDlg.OrderTabs(Array(\"myListBox\", \"myTextField\", \"myNumericField\"), Start := 10)"
+msgstr ""
+
+#. UGwcg
+#: sf_dialog.xhp
+msgctxt ""
+"sf_dialog.xhp\n"
+"pyc_id941620303073866\n"
+"help.text"
+msgid "dlg.OrderTabs(('myListBox', 'myTextField', 'myNumericField'), Start = 10)"
+msgstr ""
+
+#. 4FcCi
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id21598187953697\n"
"help.text"
-msgid "Moves the topleft corner of a dialog to new coordinates and/or modify its dimensions. All distances are expressed in 1/100 mm. Without arguments, the method resets the initial dimensions. Return <literal>True</literal> if the resize was successful."
+msgid "Moves the topleft corner of a dialog to new coordinates and/or modify its dimensions. All distances are expressed in AppFont units. Without arguments, the method resets the initial dimensions. Return <literal>True</literal> if the resize was successful."
msgstr ""
#. XRdLE
@@ -11689,40 +13228,31 @@ msgctxt ""
msgid "<emph>Height</emph>: the height of the rectangle containing the dialog"
msgstr ""
-#. H4CtP
+#. nEvvd
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
"par_id211651236676180\n"
"help.text"
-msgid "Negative or missing arguments are left unchanged"
+msgid "Missing arguments are left unchanged"
msgstr ""
-#. guvaM
+#. aADKy
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"bas_id791620301085031\n"
+"bas_id791621411085031\n"
"help.text"
-msgid "oDialog.Resize(1000, 2000, Height := 6000) ' Width is not changed"
+msgid "oDlg.Resize(1000, 2000, Height := 6000) ' Width is not changed"
msgstr ""
-#. pEVvm
+#. DwqUe
#: sf_dialog.xhp
msgctxt ""
"sf_dialog.xhp\n"
-"par_id181620112217958\n"
+"pyc_id941620304183866\n"
"help.text"
-msgid "With Python:"
-msgstr ""
-
-#. gBerj
-#: sf_dialog.xhp
-msgctxt ""
-"sf_dialog.xhp\n"
-"pyc_id941620303073866\n"
-"help.text"
-msgid "oDialog.Resize(1000, 2000, Height = 6000) # Width is not changed"
+msgid "dlg.Resize(1000, 2000, Height = 6000) # Width is not changed"
msgstr ""
#. 6DRxV
@@ -11896,15 +13426,6 @@ msgctxt ""
msgid "In this example a button in <literal>DlgConsole</literal> is substituting inhibited window closing:"
msgstr ""
-#. 7z7hg
-#: sf_dialog.xhp
-msgctxt ""
-"sf_dialog.xhp\n"
-"par_id811620112217958\n"
-"help.text"
-msgid "With Python:"
-msgstr ""
-
#. BFfGX
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -12148,6 +13669,15 @@ msgctxt ""
msgid "The <literal>DialogControl</literal> service is available for these control types:"
msgstr ""
+#. gTfDQ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id271687789435391\n"
+"help.text"
+msgid "• TableControl<br/>• TextField<br/>• TimeField<br/>• TreeControl<br/> <br/>"
+msgstr ""
+
#. 7xddb
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -12202,6 +13732,24 @@ msgctxt ""
msgid "Description"
msgstr ""
+#. cAKRH
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id372693668519172\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. M4GR3
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id771583778386455\n"
+"help.text"
+msgid "The Border property refers to the surrounding of the control: 3D, FLAT or NONE."
+msgstr ""
+
#. xNGhR
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -12616,6 +14164,24 @@ msgctxt ""
msgid "Specifies the data contained in a combobox or a listbox."
msgstr ""
+#. PmMEu
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id781598516674550\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. PEFC6
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id11159815676440\n"
+"help.text"
+msgid "The <literal>TabIndex</literal> property specifies a control's place in the tab order in the dialog."
+msgstr ""
+
#. q532w
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -12679,6 +14245,33 @@ msgctxt ""
msgid "Specifies if the checkbox control may appear dimmed (grayed) or not."
msgstr ""
+#. rZGBG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id701598517671337\n"
+"help.text"
+msgid "No"
+msgstr ""
+
+#. vQoQG
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id481687785271551\n"
+"help.text"
+msgid "Hyperlink"
+msgstr ""
+
+#. MmMXv
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id1001598540024252\n"
+"help.text"
+msgid "The URL to open when the control is clicked."
+msgstr ""
+
#. BDWA7
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -12688,13 +14281,13 @@ msgctxt ""
msgid "No"
msgstr ""
-#. Cj2Rr
+#. GYx9T
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001598540024225\n"
"help.text"
-msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_id81598540704978\">Value property</link>"
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_dialogcontrol.xhp#hd_ValueProperty\">Value property</link>"
msgstr ""
#. PqKgo
@@ -12823,11 +14416,11 @@ msgctxt ""
msgid "The UNO object representing the tree control data model. Refer to <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1awt_1_1tree_1_1XMutableTreeDataModel.html\">XMutableTreeDataModel</link> in Application Programming Interface (API) documentation for detailed information."
msgstr ""
-#. dfWTW
+#. VLPsS
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"hd_id81598540704978\n"
+"hd_ValueProperty\n"
"help.text"
msgid "The <variable id=\"ValueProperty\">Value property</variable>"
msgstr ""
@@ -13012,22 +14605,22 @@ msgctxt ""
msgid "The text appearing in the field"
msgstr ""
-#. CABLr
+#. DRtmo
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"hd_id421612628828054\n"
+"par_id61687963745108\n"
"help.text"
-msgid "Event properties"
+msgid "There's no <literal>Value</literal> property for GroupBox, Hyperlink, ImageControl and TreeControl dialog controls."
msgstr ""
-#. Y8TAs
+#. CABLr
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
-"par_id41612629140856\n"
+"hd_id421612628828054\n"
"help.text"
-msgid "Returns a URI string with the reference to the script triggered by the event. Read its specification in the <link href=\"https://wiki.documentfoundation.org/Documentation/DevGuide/Scripting_Framework#Scripting_Framework_URI_Specification\">scripting framework URI specification</link>."
+msgid "Event properties"
msgstr ""
#. fkFAt
@@ -13543,6 +15136,78 @@ msgctxt ""
msgid "<emph>casesensitive</emph>: Default value is <literal>False</literal>"
msgstr ""
+#. tCfF4
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id871583933076484\n"
+"help.text"
+msgid "Move the top-left corner of a dialog control to new coordinates and/or modify its dimensions. Return <literal>True</literal> if resizing was successful."
+msgstr ""
+
+#. pzYAg
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id351687783159237\n"
+"help.text"
+msgid "All distances are expressed in <link href=\"text/sbasic/shared/00000002.xhp#AppFontUnits\">Map AppFont units</link> and are measured from the top-left corner of the parent dialog. Without arguments the method resizes the control to its \"preferred size\", a size adjusted depending on its actual content. Missing arguments are left unchanged."
+msgstr ""
+
+#. 7RcPA
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id911687783094143\n"
+"help.text"
+msgid "<emph>Left</emph>: The horizontal distance from the top-left corner"
+msgstr ""
+
+#. n6cEo
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id251687783287236\n"
+"help.text"
+msgid "<emph>Top</emph>: The vertical distance from the top-left corner"
+msgstr ""
+
+#. EpNL7
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id291687783328508\n"
+"help.text"
+msgid "<emph>Width</emph>: the horizontal width of the rectangle containing the control"
+msgstr ""
+
+#. RMsh8
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id901687783339292\n"
+"help.text"
+msgid "<emph>Height</emph>: the vertical height of the rectangle containing the control"
+msgstr ""
+
+#. k6MEJ
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"bas_id361598179153096\n"
+"help.text"
+msgid "oControl.Resize(100, 200, Height:=6000) ' Width is unchanged"
+msgstr ""
+
+#. Cay6f
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"pyc_id821620319176082\n"
+"help.text"
+msgid "ctrl.Resize(300, 200, 1500) # Height is unchanged"
+msgstr ""
+
#. 3oU3L
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -13597,13 +15262,13 @@ msgctxt ""
msgid "<emph>dataarray</emph>: Data to be entered into the table represented as an Array of Arrays in Basic or a tuple of tuples in Python. The data must include column and row headers if they are to be displayed by the <literal>TableControl</literal>."
msgstr ""
-#. 6AKaJ
+#. zGc73
#: sf_dialogcontrol.xhp
msgctxt ""
"sf_dialogcontrol.xhp\n"
"par_id1001584541257025\n"
"help.text"
-msgid "<emph>widths</emph>: Array containing the relative widths of each column. In other words, <literal>widths = Array(1, 2)</literal> means that the second column is twice as wide as the first one. If the number of values in the array is smaller than the number of columns in the table, then the last value in the array is used to define the width of the remaining columns."
+msgid "<emph>widths</emph>: Array containing the relative widths of each column. In other words, <literal>widths = (1, 2)</literal> means that the second column is twice as wide as the first one. If the number of values in the array is smaller than the number of columns in the table, then the last value in the array is used to define the width of the remaining columns."
msgstr ""
#. AEGq3
@@ -13615,6 +15280,15 @@ msgctxt ""
msgid "<emph>alignments</emph>: Defines the alignment in each column as a string in which each character can be \"L\" (Left), \"C\" (Center), \"R\" (Right) or \" \" (whitespace, default, meaning left for strings and right for numeric values). If the length of the string is shorter than the number of columns in the table, then the last character in the string is used to define the alignment of the remaining columns."
msgstr ""
+#. i3UBY
+#: sf_dialogcontrol.xhp
+msgctxt ""
+"sf_dialogcontrol.xhp\n"
+"par_id551688397846388\n"
+"help.text"
+msgid "<emph>RowHeaderWidth</emph>: width of the row header column expressed in <link href=\"text/sbasic/shared/00000002.xhp#AppFontUnits\">Map AppFont units</link>. Default = 10. The argument is ignored when the <literal>TableControl</literal> has no row header."
+msgstr ""
+
#. CK6RC
#: sf_dialogcontrol.xhp
msgctxt ""
@@ -14668,6 +16342,33 @@ msgctxt ""
msgid "Returns a list with the export filter names applicable to the current document as a zero-based array of strings. Filters used for both import/export are also returned."
msgstr ""
+#. jndk4
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id201589194571306\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. KsJ8e
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id941589194571044\n"
+"help.text"
+msgid "Returns a string with the URL path to the root of the virtual file system of the document. Use the <literal>FileSystem</literal> service to view its contents, as well as to create, open and read files stored in it."
+msgstr ""
+
+#. kmW9L
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id941589194576584\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/shared/03/sf_filesystem.xhp#virtual_fs\">this help page</link> to learn more on how to access and manipulate folders and files in the virtual file system of a %PRODUCTNAME file."
+msgstr ""
+
#. 7vqDq
#: sf_document.xhp
msgctxt ""
@@ -15001,6 +16702,87 @@ msgctxt ""
msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_menu.xhp\"><input>SFWidgets.Menu</input></link> help page to learn more about how to create/remove menus in %PRODUCTNAME document windows."
msgstr ""
+#. v8axk
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id156589200192258\n"
+"help.text"
+msgid "Suspends user interface (UI) updates during the execution of a macro. Optionally, the mouse pointer can be changed into an hourglass while UI updates are suspended."
+msgstr ""
+
+#. gAwTA
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id851688837646904\n"
+"help.text"
+msgid "This method may provide some performance benefits for macros that perform numerous operations that require UI updates."
+msgstr ""
+
+#. MRdkT
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id211635436910325\n"
+"help.text"
+msgid "<emph>echoon</emph>: Specify <literal>False</literal> to suspend UI updates. The default value is <literal>True</literal>, which enables real time UI updates."
+msgstr ""
+
+#. eLkJM
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id141635436912288\n"
+"help.text"
+msgid "<emph>hourglass</emph>: Specify <literal>True</literal> to change the mouse pointer to an hourglass (Default = <literal>False</literal>)."
+msgstr ""
+
+#. i8X6R
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"par_id741689124521451\n"
+"help.text"
+msgid "Moving the mouse pointer after it changed to an hourglass may cause it to switch to a different pointer depending on its new background."
+msgstr ""
+
+#. PVXfC
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id941688837091778\n"
+"help.text"
+msgid "' Suspends UI updates and change mouse pointer to an hourglass"
+msgstr ""
+
+#. i5pkB
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id561688837092732\n"
+"help.text"
+msgid "' Other macro commands"
+msgstr ""
+
+#. hxDXE
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"bas_id251688837093108\n"
+"help.text"
+msgid "' Restores UI updates and mouse pointer"
+msgstr ""
+
+#. 6snES
+#: sf_document.xhp
+msgctxt ""
+"sf_document.xhp\n"
+"pyc_id691688837494400\n"
+"help.text"
+msgid "..."
+msgstr ""
+
#. CGKZA
#: sf_document.xhp
msgctxt ""
@@ -16450,6 +18232,123 @@ msgctxt ""
msgid "The following code snippet invokes the <literal>FileSystem</literal> service. The method <literal>BuildPath</literal> was used as an example."
msgstr ""
+#. MJbkm
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"hd_id981689594663689\n"
+"help.text"
+msgid "Accessing the Virtual File System of a Document"
+msgstr ""
+
+#. LyBAJ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id661689594721047\n"
+"help.text"
+msgid "%PRODUCTNAME document files are compressed ZIP files that contain the files and folders that represent the actual document contents. While the document is open, it is possible to access this virtual file system, explore its structure, as well as read and create files and folders."
+msgstr ""
+
+#. YHDGU
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id891689594949717\n"
+"help.text"
+msgid "The following example shows how to create a text file named <literal>myFile.txt</literal> and store it inside the document's virtual file system."
+msgstr ""
+
+#. rsRAs
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"bas_id661689595249846\n"
+"help.text"
+msgid "' Gets the URL path notation to the root of the virtual file system"
+msgstr ""
+
+#. TG5wG
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"bas_id941689595087305\n"
+"help.text"
+msgid "' Creates the folder \"myDir\" if it does not exist"
+msgstr ""
+
+#. 2usN3
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"bas_id911689595459107\n"
+"help.text"
+msgid "' Creates the file and write some text into it"
+msgstr ""
+
+#. 75XUC
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id121689595522630\n"
+"help.text"
+msgid "In general, all methods of the <literal>FileSystem</literal> service can be used to manipulate files in the document's virtual file system. However, the following restrictions apply:"
+msgstr ""
+
+#. Du7UF
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id321689595825516\n"
+"help.text"
+msgid "It is not possible to create files in the root folder. Use existing subfolders or create new folders to store files in the document's file system."
+msgstr ""
+
+#. vsqoB
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id861689595826432\n"
+"help.text"
+msgid "The <literal>FileNaming</literal> notation is always considered to be \"URL\"."
+msgstr ""
+
+#. CbqEb
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id181689595826743\n"
+"help.text"
+msgid "The methods <literal>CompareFiles</literal>, <literal>GetFileModified</literal>, <literal>HashFile</literal>, <literal>PickFile</literal> and <literal>PickFolder</literal> are not applicable."
+msgstr ""
+
+#. AuBgo
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id361689595827152\n"
+"help.text"
+msgid "The method <literal>GetFileLen</literal> always returns zero."
+msgstr ""
+
+#. WJsDa
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id131689596237329\n"
+"help.text"
+msgid "The method <literal>Normalize</literal> always returns the input string unchanged."
+msgstr ""
+
+#. GJMuQ
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id51689595641705\n"
+"help.text"
+msgid "The path to the virtual file system is not a physical address on the computer's hard drive. It can only be accessed from within a %PRODUCTNAME script and it only exists while the document file is open."
+msgstr ""
+
#. Gsznv
#: sf_filesystem.xhp
msgctxt ""
@@ -17431,13 +19330,22 @@ msgctxt ""
msgid "Returns a randomly generated temporary file name that is useful for performing operations that require a temporary file."
msgstr ""
-#. FS3qq
+#. 7saEX
#: sf_filesystem.xhp
msgctxt ""
"sf_filesystem.xhp\n"
"par_id391613061770924\n"
"help.text"
-msgid "The returned file name does not have any suffix. The folder part of the returned string is the system's temporary folder."
+msgid "By default, the returned file name does not have an extension. Use the <literal>extension</literal> parameter to specify the extension of the file name to be generated."
+msgstr ""
+
+#. FTQwD
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id251689599133544\n"
+"help.text"
+msgid "The folder part of the returned string is the system's temporary folder."
msgstr ""
#. W7gF7
@@ -17449,6 +19357,15 @@ msgctxt ""
msgid "The method does not create the temporary file."
msgstr ""
+#. pDA3H
+#: sf_filesystem.xhp
+msgctxt ""
+"sf_filesystem.xhp\n"
+"par_id471584113435991\n"
+"help.text"
+msgid "<emph>extension</emph>: The extension of the temporary file name (Default = \"\")."
+msgstr ""
+
#. ch2AJ
#: sf_filesystem.xhp
msgctxt ""
@@ -20842,6 +22759,303 @@ msgctxt ""
msgid "bas.MsgBox('Selected option: ' + control.Caption)"
msgstr ""
+#. evuZx
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"tit\n"
+"help.text"
+msgid "SFDocuments.FormDocument service"
+msgstr ""
+
+#. AQWCM
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"bm_id781582391760253\n"
+"help.text"
+msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_formdocument.xhp\"><literal>SFDocuments</literal>.<literal>FormDocument</literal> service</link></variable>"
+msgstr ""
+
+#. hQ3hK
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id321692486382326\n"
+"help.text"
+msgid "The <literal>FormDocument</literal> service allows to access form documents stored in %PRODUCTNAME Base documents."
+msgstr ""
+
+#. zQHTF
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id621692487292145\n"
+"help.text"
+msgid "In a Base document, existing form documents can be viewed by selecting <menuitem>View - Forms</menuitem> in the user interface. Each form document may be composed of one or more forms, including the main form and other sub-forms."
+msgstr ""
+
+#. uNbgU
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id891692486448415\n"
+"help.text"
+msgid "This service inherits methods and properties from the <literal>Document</literal> service and is often used alongside the <literal>Base</literal> and <literal>Database</literal> services."
+msgstr ""
+
+#. gGFFZ
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id241619032941497\n"
+"help.text"
+msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_document.xhp\"><literal>Document</literal> service</link> to learn more about methods and properties that can be used to manage %PRODUCTNAME documents."
+msgstr ""
+
+#. 3jTab
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"hd_id581582885621841\n"
+"help.text"
+msgid "Service invocation"
+msgstr ""
+
+#. KxGkv
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id141609955500101\n"
+"help.text"
+msgid "Before using the <literal>FormDocument</literal> service the <literal>ScriptForge</literal> library needs to be loaded or imported:"
+msgstr ""
+
+#. 99UBC
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id991692486784449\n"
+"help.text"
+msgid "A <literal>FormDocument</literal> service instance can be created by calling the method <literal>OpenFormDocument</literal> that exists both in the <literal>Base</literal> and <literal>Database</literal> services."
+msgstr ""
+
+#. txPPF
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id381692486890118\n"
+"help.text"
+msgid "The example below uses the <literal>UI</literal> service to open a Base document and then retrieve a form document. Note that in this example both the Base document and the form document will be opened and displayed on the screen."
+msgstr ""
+
+#. qkQZ7
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id151692489140384\n"
+"help.text"
+msgid "Calling <literal>OpenFormDocument</literal> for a form document that is already open will activate the document window and bring it to focus."
+msgstr ""
+
+#. vEFGV
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id871623102536956\n"
+"help.text"
+msgid "The examples above can be translated to Python as follows:"
+msgstr ""
+
+#. wxdh6
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id451619034669263\n"
+"help.text"
+msgid "List of Methods in the FormDocument Service"
+msgstr ""
+
+#. jY8vp
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id801916099743199\n"
+"help.text"
+msgid "Closes the form document referred to by the <literal>FormDocument</literal> instance. Returns <literal>True</literal> if the form document was successfully closed."
+msgstr ""
+
+#. wN7iT
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id481619036833610\n"
+"help.text"
+msgid "Returns either an array with the names of the main forms contained in the form document or a <literal>Form</literal> service instance referring to a specific form."
+msgstr ""
+
+#. RuFja
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id311692532433990\n"
+"help.text"
+msgid "Call this method without arguments to obtain a zero-based string array with the names of all forms contained in the form document."
+msgstr ""
+
+#. qg4FH
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id491692532525080\n"
+"help.text"
+msgid "Provide a form name or index as argument to obtain a <literal>Form</literal> service instance corresponding to the specified form."
+msgstr ""
+
+#. GbkH9
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id281692532725116\n"
+"help.text"
+msgid "A form document has at least one main form. More complex form documents may be composed of more than one form and sub-forms."
+msgstr ""
+
+#. Au3TH
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id91692538279673\n"
+"help.text"
+msgid "<input>svc.Forms(form: str): svc</input>"
+msgstr ""
+
+#. TKZq2
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id91692538279664\n"
+"help.text"
+msgid "<input>svc.Forms(form: int): svc</input>"
+msgstr ""
+
+#. 23Cgd
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id211692538352686\n"
+"help.text"
+msgid "<emph>form</emph>: This argument can be either a string with the name of a form that exists in the form document or the zero-based index of the form that shall be returned. If this argument is not specific, then an array with the name of all available forms is returned."
+msgstr ""
+
+#. wktWB
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id151692537703209\n"
+"help.text"
+msgid "The following example checks if the form document contains a form named \"MainForm\":"
+msgstr ""
+
+#. nNdtW
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id661692537831637\n"
+"help.text"
+msgid "The example below retrieves the form named \"MainForm\" and moves it to the last record:"
+msgstr ""
+
+#. Nw4c6
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id921619036922844\n"
+"help.text"
+msgid "To learn more about form methods and properties, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\"><literal>Form</literal> service help page</link>."
+msgstr ""
+
+#. 5SoGW
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id156589200121138\n"
+"help.text"
+msgid "This method sends the contents form document to the default printer or to the printer defined by the <literal>SetPrinter()</literal> method."
+msgstr ""
+
+#. hQ6GC
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id981611169416934\n"
+"help.text"
+msgid "Returns <literal>True</literal> if the document was successfully sent to the printer."
+msgstr ""
+
+#. 2qnYG
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id211635436910093\n"
+"help.text"
+msgid "<emph>pages</emph>: The pages to print as a string. This argument should be specified in the same manner as in the user interface (see <menuitem>File - Print</menuitem> dialog). Example: \"1-4;10;15-18\". The default value is an empty string \"\" which will cause all pages to be printed."
+msgstr ""
+
+#. mxFXk
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id141635436912146\n"
+"help.text"
+msgid "<emph>copies</emph>: The number of copies to be printed (Default = 1)."
+msgstr ""
+
+#. nr7DR
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id871692539875337\n"
+"help.text"
+msgid "<emph>printbackground</emph>: specifies whether the background image should be printed (Default = True)."
+msgstr ""
+
+#. dDtPU
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id661692539947123\n"
+"help.text"
+msgid "<emph>printblankpages</emph>: specifies whether blank pages should be printed (Default = False)."
+msgstr ""
+
+#. hJvtc
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id661692539947144\n"
+"help.text"
+msgid "<emph>printevenpages</emph>: specifies whether even pages should be printed (Default = True)."
+msgstr ""
+
+#. 7tyim
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id661692539947875\n"
+"help.text"
+msgid "<emph>printoddpages</emph>: specifies whether odd pages should be printed (Default = True)."
+msgstr ""
+
+#. BxCRK
+#: sf_formdocument.xhp
+msgctxt ""
+"sf_formdocument.xhp\n"
+"par_id661692539947323\n"
+"help.text"
+msgid "<emph>printimages</emph>: specifies whether images should be printed (Default = True)."
+msgstr ""
+
#. czP76
#: sf_intro.xhp
msgctxt ""
@@ -21364,6 +23578,15 @@ msgctxt ""
msgid "This will open the Python shell and now you can start typing commands that will be executed by %PRODUCTNAME. But first you need to set up the socket connection."
msgstr ""
+#. NGS3a
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id761689720152565\n"
+"help.text"
+msgid "Read the section <link href=\"text/sbasic/shared/03/sf_intro.xhp#pythonpath\">Setting PYTHONPATH</link> below in case of errors importing <literal>scriptforge.py</literal> or <literal>uno.py</literal>."
+msgstr ""
+
#. s54tE
#: sf_intro.xhp
msgctxt ""
@@ -21382,6 +23605,96 @@ msgctxt ""
msgid "Now you can run other Python commands and they will be able to communicate with the %PRODUCTNAME process. For example:"
msgstr ""
+#. oiPx9
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"bm_id631689720744160\n"
+"help.text"
+msgid "<bookmark_value>Python interpreter;PYTHONPATH</bookmark_value>"
+msgstr ""
+
+#. FPh6P
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"hd_id341689720315095\n"
+"help.text"
+msgid "Setting PYTHONPATH"
+msgstr ""
+
+#. XCiS5
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id811689720328559\n"
+"help.text"
+msgid "Depending on your operating system's configuration you will need to set the environment variable <literal>PYTHONPATH</literal> in order to import the <literal>scriptforge.py</literal> library, which in turn requires importing the <literal>uno.py</literal> library."
+msgstr ""
+
+#. AtNfv
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id781689720489355\n"
+"help.text"
+msgid "Use your operating system's file search tool to determine the directory where both these files are located."
+msgstr ""
+
+#. uLiYM
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id431689720583565\n"
+"help.text"
+msgid "For instance, on a default Ubuntu installation both files may be located at:"
+msgstr ""
+
+#. nxQGQ
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id791689720632086\n"
+"help.text"
+msgid "<emph>scriptforge.py</emph>: Located in <literal>/usr/lib/libreoffice/program</literal>"
+msgstr ""
+
+#. Dzfaq
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id881689720632438\n"
+"help.text"
+msgid "<emph>uno.py</emph>: Located in <literal>/usr/lib/python3/dist-packages</literal>"
+msgstr ""
+
+#. 2vEpX
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id701689720782180\n"
+"help.text"
+msgid "In this case, set the environment variable <literal>PYTHONPATH</literal> as follows before starting the Python interpreter:"
+msgstr ""
+
+#. 9BRx3
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id601689720825610\n"
+"help.text"
+msgid "<input>export PYTHONPATH=/usr/lib/libreoffice/program:/usr/lib/python3/dist-packages</input>"
+msgstr ""
+
+#. UDLem
+#: sf_intro.xhp
+msgctxt ""
+"sf_intro.xhp\n"
+"par_id971689720909044\n"
+"help.text"
+msgid "The location of these files will be different for each operating system and %PRODUCTNAME installation method."
+msgstr ""
+
#. VCRTD
#: sf_l10n.xhp
msgctxt ""
@@ -23542,6 +25855,24 @@ msgctxt ""
msgid "Returns the locale of the operating system as a string in the format \"la-CO\" (language-COUNTRY). This is equivalent to the <literal>Locale</literal> property."
msgstr ""
+#. BFiEF
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id561633021702057\n"
+"help.text"
+msgid "Yes"
+msgstr ""
+
+#. 4Wfdk
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id831633021741958\n"
+"help.text"
+msgid "Returns a <literal>Dictionary</literal> instance containing key-value pairs with the information found in the <emph>Tools - Options - User Data</emph> dialog."
+msgstr ""
+
#. FJs9t
#: sf_platform.xhp
msgctxt ""
@@ -23551,6 +25882,24 @@ msgctxt ""
msgid "The following examples in Basic and Python illustrate how to use the <literal>Fonts</literal> property to write the names of all available fonts to the current Calc sheet starting at cell \"A1\":"
msgstr ""
+#. q4gNG
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id371692709207404\n"
+"help.text"
+msgid "The example below demonstrates how to create a Calc table with all the values stored in the <literal>UserData</literal> property, which is a <literal>Dictionary</literal> service instance:"
+msgstr ""
+
+#. sEkap
+#: sf_platform.xhp
+msgctxt ""
+"sf_platform.xhp\n"
+"par_id611692709647033\n"
+"help.text"
+msgid "The examples above can be written in Python as follows:"
+msgstr ""
+
#. eEZPy
#: sf_platform.xhp
msgctxt ""
@@ -29770,6 +32119,15 @@ msgctxt ""
msgid "List of Properties in the FormControl Service"
msgstr ""
+#. kPCcD
+#: sf_toc.xhp
+msgctxt ""
+"sf_toc.xhp\n"
+"hd_id101671192705399\n"
+"help.text"
+msgid "<literal>SFDocuments</literal>.<literal>FormDocument</literal> service"
+msgstr ""
+
#. DCwnN
#: sf_toc.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc.po b/source/am/helpcontent2/source/text/scalc.po
index 0807bfd729f..94bf901815c 100644
--- a/source/am/helpcontent2/source/text/scalc.po
+++ b/source/am/helpcontent2/source/text/scalc.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: 2023-05-31 16:28+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc/am/>\n"
@@ -475,14 +475,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\">አንቀጽ</link>"
-#. 4uCuW
+#. 4uQFo
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id3157980\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05110000.xhp\">AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\">በራሱ አቀራረብ</link>"
+msgid "<link href=\"text/shared/01/AutoFormat.xhp\">AutoFormat</link>"
+msgstr ""
#. 3Eg3G
#: main0105.xhp
diff --git a/source/am/helpcontent2/source/text/scalc/00.po b/source/am/helpcontent2/source/text/scalc/00.po
index a69c97b91e6..005dffe1b6c 100644
--- a/source/am/helpcontent2/source/text/scalc/00.po
+++ b/source/am/helpcontent2/source/text/scalc/00.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: 2023-06-07 13:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2021-01-25 14:07+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/am/>\n"
@@ -1006,42 +1006,6 @@ msgctxt ""
msgid "<variable id=\"conditionalmanage\">Choose <menuitem>Format - Conditional - Manage</menuitem></variable>"
msgstr ""
-#. gWWhE
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153916\n"
-"help.text"
-msgid "Choose <emph>Format - AutoFormat Styles</emph>."
-msgstr ""
-
-#. ABeaN
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154532\n"
-"help.text"
-msgid "On the <emph>Tools</emph> bar, click"
-msgstr ""
-
-#. RRjPc
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3149332\n"
-"help.text"
-msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156020\">AutoFormat Styles Icon</alt></image>"
-msgstr ""
-
-#. RBF2g
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154060\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "በራሱ አቀራረብ"
-
#. aFWLc
#: 00000406.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index fda1de09bc3..d979be68cf2 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-02-19 05:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -2014,6 +2014,24 @@ msgctxt ""
msgid "<emph>Number of trials:</emph> the number of trials of the experiment."
msgstr "<emph>የ ሙከራዎች ቁጥር:</emph> የ ሙከራው ጠቅላላ የ ሙከራዎች ቁጥር"
+#. SHQc7
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415432870493\n"
+"help.text"
+msgid "Poisson"
+msgstr ""
+
+#. cTXjZ
+#: 02140700.xhp
+msgctxt ""
+"02140700.xhp\n"
+"par_id2308201415432973994\n"
+"help.text"
+msgid "<emph>Mean:</emph> The mean of the Poisson distribution."
+msgstr ""
+
#. akcZB
#: 02140700.xhp
msgctxt ""
@@ -23443,15 +23461,6 @@ msgctxt ""
msgid "<emph>Input</emph>: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\">Cell area</link> is an array of types double array, string array, or cell array."
msgstr ""
-#. BJLCP
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3150653\n"
-"help.text"
-msgid "GetFunctionCount()"
-msgstr "የ ተግባሮች መቁጠሪያ ያግኙ()"
-
#. QCZLG
#: 04060112.xhp
msgctxt ""
@@ -23488,15 +23497,6 @@ msgctxt ""
msgid "<emph>Output</emph>: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
msgstr ""
-#. GFJes
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3147476\n"
-"help.text"
-msgid "GetFunctionData()"
-msgstr "የ ዳታ ተግባር ያግኙ()"
-
#. MMvZL
#: 04060112.xhp
msgctxt ""
@@ -23578,15 +23578,6 @@ msgctxt ""
msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
msgstr "የ ደንብ ተግባር ስም እና የ ደንብ የ ውስጥ ስም ደንቦች የ ባህሪ ማዘጋጃ ናቸው: የሚፈጸሙ በ 256 መጠን በ $[officename] ሰንጥረዥ ውስጥ"
-#. BDeUC
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3148567\n"
-"help.text"
-msgid "GetParameterDescription()"
-msgstr "የ ደንብ መግለጫ ያግኙ()"
-
#. sF27k
#: 04060112.xhp
msgctxt ""
@@ -41272,14 +41263,14 @@ msgctxt ""
msgid "Operators in $[officename] Calc"
msgstr "አንቀሳቃሾች በ $[officename] ሰንጠረዥ ውስጥ"
-#. hvSCc
+#. GygUz
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
"bm_id3156445\n"
"help.text"
-msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
-msgstr "<bookmark_value>መቀመሪያ: አንቀሳቃሽ</bookmark_value><bookmark_value>አንቀሳቃሽ: መቀመሪያ ተግባሮች</bookmark_value><bookmark_value>ማካፈያ ምልክት: ይህን ይመልከቱ አንቀሳቃሽ</bookmark_value><bookmark_value>ማባዣ ምልክት: ይህን ይመልከቱ አንቀሳቃሽ</bookmark_value><bookmark_value>መቀነሻ ምልክት: ይህን ይመልከቱ አንቀሳቃሽ</bookmark_value><bookmark_value>መደመሪያ ምልክት: ይህን ይመልከቱ አንቀሳቃሽ</bookmark_value><bookmark_value>ጽሁፍ አንቀሳቃሽ</bookmark_value><bookmark_value>ማነፃፀሪያ: አንቀሳቃሽ በ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>በ ሂሳብ አንቀሳቃሽ</bookmark_value><bookmark_value>ማመሳከሪያ አንቀሳቃሽ</bookmark_value>"
+msgid "<bookmark_value>operators; in spreadsheet formulas</bookmark_value><bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value>"
+msgstr ""
#. EwE2J
#: 04060199.xhp
@@ -41299,6 +41290,15 @@ msgctxt ""
msgid "You can use the following operators in $[officename] Calc:"
msgstr "እርስዎ የሚቀጥለውን አንቀሳቃሾች መጠቀም ይችላሉ በ $[officename] ሰንጠረዥ ውስጥ:"
+#. FPvox
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id891687563561282\n"
+"help.text"
+msgid "<bookmark_value>arithmetical operators</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value>"
+msgstr ""
+
#. DVBCe
#: 04060199.xhp
msgctxt ""
@@ -41344,15 +41344,6 @@ msgctxt ""
msgid "Example"
msgstr ""
-#. PcMRq
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149126\n"
-"help.text"
-msgid "+ (Plus)"
-msgstr "+ (መደመሪያ)"
-
#. 8VGky
#: 04060199.xhp
msgctxt ""
@@ -41362,15 +41353,6 @@ msgctxt ""
msgid "Addition"
msgstr "መደመሪያ"
-#. r74qM
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159204\n"
-"help.text"
-msgid "- (Minus)"
-msgstr "- (መቀነሻ)"
-
#. HNAdf
#: 04060199.xhp
msgctxt ""
@@ -41380,15 +41362,6 @@ msgctxt ""
msgid "Subtraction"
msgstr "መቀነሻ"
-#. zqeEq
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153808\n"
-"help.text"
-msgid "- (Minus)"
-msgstr "- (መቀነሻ)"
-
#. Cy2wm
#: 04060199.xhp
msgctxt ""
@@ -41398,15 +41371,6 @@ msgctxt ""
msgid "Negation"
msgstr "አሉታዊ"
-#. uTzKJ
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149873\n"
-"help.text"
-msgid "* (asterisk)"
-msgstr "* (ኮከብ)"
-
#. mQ8FF
#: 04060199.xhp
msgctxt ""
@@ -41416,15 +41380,6 @@ msgctxt ""
msgid "Multiplication"
msgstr "ማባዣ"
-#. LyrLq
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151341\n"
-"help.text"
-msgid "/ (Slash)"
-msgstr "/ (ስላሽ)"
-
#. RJx3b
#: 04060199.xhp
msgctxt ""
@@ -41434,15 +41389,6 @@ msgctxt ""
msgid "Division"
msgstr "ማካፈያ"
-#. St2pE
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156396\n"
-"help.text"
-msgid "% (Percent)"
-msgstr "% (ፐርሰንት)"
-
#. ehGjR
#: 04060199.xhp
msgctxt ""
@@ -41452,15 +41398,6 @@ msgctxt ""
msgid "Percent"
msgstr "ፐርሰንት"
-#. KTLME
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149722\n"
-"help.text"
-msgid "^ (Caret)"
-msgstr "^ (ካሬት)"
-
#. Bp5QG
#: 04060199.xhp
msgctxt ""
@@ -41479,6 +41416,15 @@ msgctxt ""
msgid "Prefix \"-\" (negation) has a higher precedence than \"^\" (exponentiation). For example -3^2 equals 9, which is the square of a negative number."
msgstr ""
+#. nAcVC
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id481687564343986\n"
+"help.text"
+msgid "<bookmark_value>operators;comparison</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value>"
+msgstr ""
+
#. 77TDi
#: 04060199.xhp
msgctxt ""
@@ -41524,15 +41470,6 @@ msgctxt ""
msgid "Example"
msgstr ""
-#. AdNBV
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148888\n"
-"help.text"
-msgid "= (equal sign)"
-msgstr "= (እኩል ምልክት)"
-
#. ubUi7
#: 04060199.xhp
msgctxt ""
@@ -41542,15 +41479,6 @@ msgctxt ""
msgid "Equal"
msgstr "እኩል"
-#. Vg88D
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154807\n"
-"help.text"
-msgid "> (Greater than)"
-msgstr "> (ይበልጣል)"
-
#. vsj86
#: 04060199.xhp
msgctxt ""
@@ -41560,15 +41488,6 @@ msgctxt ""
msgid "Greater than"
msgstr "ይበልጣል ከ"
-#. jCt4x
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149507\n"
-"help.text"
-msgid "< (Less than)"
-msgstr "< (ያንሳል ከ)"
-
#. vKBrR
#: 04060199.xhp
msgctxt ""
@@ -41578,15 +41497,6 @@ msgctxt ""
msgid "Less than"
msgstr "ያንሳል ከ"
-#. EBajC
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153078\n"
-"help.text"
-msgid ">= (Greater than or equal to)"
-msgstr ">= (ይበልጣል ወይንም እኩል ይሆናል ከ)"
-
#. 4wHTT
#: 04060199.xhp
msgctxt ""
@@ -41596,15 +41506,6 @@ msgctxt ""
msgid "Greater than or equal to"
msgstr "ይበልጣል ወይንም እኩል ይሆናል ከ"
-#. wXVvo
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153004\n"
-"help.text"
-msgid "<= (Less than or equal to)"
-msgstr "<= (ያንሳል ወይም እኩል ይሆናል ከ)"
-
#. 8ghop
#: 04060199.xhp
msgctxt ""
@@ -41614,23 +41515,23 @@ msgctxt ""
msgid "Less than or equal to"
msgstr "ያንሳል ወይም እኩል ይሆናል ከ"
-#. 4XUDV
+#. dXwNM
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
-"par_id3157994\n"
+"par_id3150019\n"
"help.text"
-msgid "<> (Inequality)"
-msgstr "<> (እኩል አይደለም)"
+msgid "Inequality"
+msgstr "እኩል አይደለም"
-#. dXwNM
+#. faXrM
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
-"par_id3150019\n"
+"bm_id3157975\n"
"help.text"
-msgid "Inequality"
-msgstr "እኩል አይደለም"
+msgid "<bookmark_value>text operators</bookmark_value><bookmark_value>text concatenation</bookmark_value>"
+msgstr ""
#. aAdxC
#: 04060199.xhp
@@ -41677,32 +41578,14 @@ msgctxt ""
msgid "Example"
msgstr ""
-#. s2CGS
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148769\n"
-"help.text"
-msgid "& (And)"
-msgstr "& (እና)"
-
-#. tm62p
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3157975\n"
-"help.text"
-msgid "<bookmark_value>text concatenation AND</bookmark_value>"
-msgstr "<bookmark_value>ጽሁፍ የ ተገናኘ እና</bookmark_value>"
-
-#. V7hDo
+#. PPAnS
#: 04060199.xhp
msgctxt ""
"04060199.xhp\n"
"par_id3157975\n"
"help.text"
-msgid "text concatenation AND"
-msgstr "ጽሁፍ የ ተገናኘ እና"
+msgid "text concatenation"
+msgstr ""
#. JDUDf
#: 04060199.xhp
@@ -41713,6 +41596,15 @@ msgctxt ""
msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr "\"እሑ\" & \"ቀን\" \"እሑድ\" ነው"
+#. Jmpyz
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id291687563892759\n"
+"help.text"
+msgid "<bookmark_value>reference operators</bookmark_value><bookmark_value>intersection reference operator</bookmark_value><bookmark_value>union reference operator</bookmark_value><bookmark_value>range operator</bookmark_value>"
+msgstr ""
+
#. GRADv
#: 04060199.xhp
msgctxt ""
@@ -41767,15 +41659,6 @@ msgctxt ""
msgid "Example"
msgstr ""
-#. 52L2C
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156257\n"
-"help.text"
-msgid ": (Colon)"
-msgstr ": (ኮለን)"
-
#. hLJDt
#: 04060199.xhp
msgctxt ""
@@ -41794,24 +41677,6 @@ msgctxt ""
msgid "A1:C108, A:D or 3:13"
msgstr ""
-#. fWnpm
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3152592\n"
-"help.text"
-msgid "! (Exclamation point)"
-msgstr "! (ቃለ አጋኖ ምልክት)"
-
-#. ua9Q9
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3150606\n"
-"help.text"
-msgid "<bookmark_value>intersection operator</bookmark_value>"
-msgstr "<bookmark_value>መገናኛ አንቀሳቃሽ</bookmark_value>"
-
#. XoTEi
#: 04060199.xhp
msgctxt ""
@@ -41839,15 +41704,6 @@ msgctxt ""
msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
msgstr "የ ሁሉንም ክፍሎች ድምር ማስሊያ በ መጋጠሚያ ላይ: በዚህ ምሳሌ: ውጤቱ ይታያል ድምር ለ ክፍሎች B5 እና B6."
-#. joyma
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id4003723\n"
-"help.text"
-msgid "~ (Tilde)"
-msgstr "~ (ቲልዴ)"
-
#. aAvYu
#: 04060199.xhp
msgctxt ""
@@ -41893,6 +41749,276 @@ msgctxt ""
msgid "A reference list is not allowed inside an array expression."
msgstr ""
+#. gAUEf
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id311687563684141\n"
+"help.text"
+msgid "<bookmark_value>operators;precedence of</bookmark_value>"
+msgstr ""
+
+#. P48yb
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"hd_id981687562294437\n"
+"help.text"
+msgid "Operator precedence"
+msgstr ""
+
+#. AnY7r
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id271687562351999\n"
+"help.text"
+msgid "Associativity and precedence of operators, from highest to lowest precedence."
+msgstr ""
+
+#. 2oYZr
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id461687561515440\n"
+"help.text"
+msgid "Associativity"
+msgstr ""
+
+#. 9o8yW
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id801687561518810\n"
+"help.text"
+msgid "Operator(s)"
+msgstr ""
+
+#. rpJz9
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id521687561523649\n"
+"help.text"
+msgid "Comments"
+msgstr ""
+
+#. K9e8H
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id611687561527049\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. Rj4Dm
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id651687561534345\n"
+"help.text"
+msgid "Range."
+msgstr ""
+
+#. 7CcBD
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id961687561539434\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. 5KRBi
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id721687561546778\n"
+"help.text"
+msgid "Reference intersection (A1:C4!B1:B5 is B1:B4)."
+msgstr ""
+
+#. EvVGL
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id741687561555251\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. QifDG
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id121687561561898\n"
+"help.text"
+msgid "Reference union."
+msgstr ""
+
+#. 7fAvR
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id731687561708790\n"
+"help.text"
+msgid "right"
+msgstr ""
+
+#. wgPER
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id721687561715845\n"
+"help.text"
+msgid "Prefix unary operators, e.g., -5 or -A1. Note that these have a different precedence than add and subtract."
+msgstr ""
+
+#. pAdor
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id171687561719559\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. cML5P
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id791687561727359\n"
+"help.text"
+msgid "Postfix unary operator % (divide by 100). Note that this is legal with expressions, for example, B1%."
+msgstr ""
+
+#. X6xsj
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id681687561735190\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. cB6AG
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id321687561741773\n"
+"help.text"
+msgid "Power (2^3 is 8)."
+msgstr ""
+
+#. 2YAKJ
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id321687561745015\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. syUtD
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id431687561758704\n"
+"help.text"
+msgid "Multiply, divide."
+msgstr ""
+
+#. uQT7C
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id931687561762278\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. wz3Vr
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id731687561770325\n"
+"help.text"
+msgid "Binary operations add, subtract. Note that unary (prefix) + and - have a different precedence."
+msgstr ""
+
+#. CLVku
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id541687561818607\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. N5Fux
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id391687561825288\n"
+"help.text"
+msgid "Binary operation string concatenation. Note that unary (prefix) + and - have a different precedence. Note that \"&\" shall be escaped when included in an XML document"
+msgstr ""
+
+#. vaLpi
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id921687561831376\n"
+"help.text"
+msgid "left"
+msgstr ""
+
+#. WTaVk
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id631687561838545\n"
+"help.text"
+msgid "Comparisonoperators equal to, not equal to, less than, less than or equal to, greater than, greater than or equal to"
+msgstr ""
+
+#. pUQyD
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id241687561247336\n"
+"help.text"
+msgid "Prefix €œ\"-\"€ has a higher precedence than \"^\"€, €œ\"^\"€ is left-associative, andreference intersection has a higher precedence than reference union."
+msgstr ""
+
+#. FZK2K
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id941687561277896\n"
+"help.text"
+msgid "Prefix \"+\"€ and \"-\" are defined to be right-associative. However, note that typicalapplications which implement at most the operators defined in this specification (as specified) may implement them as left-associative, because the calculated results will be identical."
+msgstr ""
+
+#. nbL6F
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id411687561295059\n"
+"help.text"
+msgid "Precedence can be overridden by using parentheses, so \"=2+3*4\" computes to 14 but \"=(2+3)*4\" computes 20."
+msgstr ""
+
+#. NBuf3
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id661687565493405\n"
+"help.text"
+msgid "<link href=\"OpenDocument/v1.3/os/part4-formula/OpenDocument-v1.3-os-part4-formula.html#Operators\">OpenDocument v1.3 part4, Formula Operators</link>"
+msgstr ""
+
#. LfJJp
#: 04070000.xhp
msgctxt ""
@@ -42973,87 +43099,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340100.xhp\">Height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\">እርዝመት</link>"
-#. kg2dS
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155854\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\">Optimal Height</link>"
-msgstr "<link href=\"text/scalc/01/05030200.xhp\">አጥጋቢ እርዝመት</link>"
-
-#. MYt76
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "አጥጋቢ የ ረድፍ እርዝመት"
-
-#. oaUQw
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"bm_id3148491\n"
-"help.text"
-msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
-msgstr "<bookmark_value>ወረቀቶች: አጥጋቢ የ ረድፍ እርዝመት</bookmark_value><bookmark_value>ረድፎች: አጥጋቢ እርዝመት</bookmark_value><bookmark_value>አጥጋቢ የ ረድፍ እርዝመት</bookmark_value>"
-
-#. cFpPj
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3148491\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "አጥጋቢ የ ረድፍ እርዝመት"
-
-#. 5STLA
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3154758\n"
-"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#measurement_units\">units of measure</link>."
-msgstr ""
-
-#. hCkvc
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3154908\n"
-"help.text"
-msgid "Add"
-msgstr "መጨመሪያ"
-
-#. XZVzF
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3151044\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">ተጨማሪ ክፍተት ማሰናጃ በ ረድፍ ውስጥ በ ትልቁ ባህሪ እና በ ክፍል ድንበሮች መካከል </ahelp>"
-
-#. EE9Hj
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3150439\n"
-"help.text"
-msgid "Default value"
-msgstr "ነባር ዋጋ"
-
-#. bPBLW
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3146984\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">Restores the default value for the optimal row height.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">እንደ ነበር መመለሻ ነባሩን አጥጋቢ የ ረድፍ እርዝመት </ahelp>"
-
#. WqW5P
#: 05030300.xhp
msgctxt ""
@@ -43243,87 +43288,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340200.xhp\">Width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\">ስፋት</link>"
-#. NA5bG
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"hd_id3145171\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\">Optimal Width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\">አጥጋቢ ስፋት</link>"
-
-#. QNy4Y
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Column Width"
-msgstr "አጥጋቢ የ አምድ ስፋት"
-
-#. AfUzF
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ: አጥጋቢ የ አምድ ስፋት</bookmark_value><bookmark_value>አምዶች: አጥጋቢ ስፋት</bookmark_value><bookmark_value>አጥጋቢ የ አምድ ስፋት</bookmark_value>"
-
-#. mVifp
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3155628\n"
-"help.text"
-msgid "Optimal Column Width"
-msgstr "አጥጋቢ የ አምድ ስፋት"
-
-#. ZrhKb
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3145068\n"
-"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\">measurement units</link>."
-msgstr "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">መግለጫ አጥጋቢ የ አምድ ስፋት ለ ተመረጡት አምዶች </ahelp></variable> አጥጋቢ የ አምድ ስፋት ይለያያል እንደ አምዱ እርዝመት አገባብ: እርስዎ መምረጥ ይችላሉ ዝግጁ ከሆኑ ምርጫዎች ውስጥ <link href=\"text/shared/00/00000003.xhp#metrik\">መለኪያ ክፍሎች </link>."
-
-#. dYhnc
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3150767\n"
-"help.text"
-msgid "Add"
-msgstr "መጨመሪያ"
-
-#. qStM8
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3150449\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">ተጨማሪ ክፍተት መወሰኛ በ ረጅሙ አምድ ውስጥ እና በ ቁመት አምድ ድንበሮች መካከል </ahelp>"
-
-#. aA4B5
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145785\n"
-"help.text"
-msgid "Default value"
-msgstr "ነባር ዋጋ"
-
-#. PhQgy
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"par_id3146120\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 2 mm."
-msgstr ""
-
#. CYMhG
#: 05050000.xhp
msgctxt ""
@@ -43594,31 +43558,31 @@ msgctxt ""
msgid "Merging cells can lead to calculation errors in formulas in the table."
msgstr "ክፍሎችን ማዋሀድ የ ስሌቶች ስህተት ሊፈጥር ይችላል በ መቀመሪያ ሰንጠረዥ ውስጥ"
-#. fBfnU
+#. fSqGp
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
-"par_id441632808439621\n"
+"par_id3154020\n"
"help.text"
-msgid "Do one of the following:"
+msgid "Choose <menuitem>Format - Merge and Unmerge Cells - Merge and Center Cells</menuitem>."
msgstr ""
-#. bnEwD
+#. Lnusn
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
-"par_id691632803588118\n"
+"par_id421694003140171\n"
"help.text"
-msgid "In the <emph>Formatting</emph> toolbar, click:"
+msgid "Choose <menuitem>Home - Merge and Center Cells</menuitem>."
msgstr ""
-#. BCsAA
+#. HATxB
#: 05060000.xhp
msgctxt ""
"05060000.xhp\n"
"par_id521632804983642\n"
"help.text"
-msgid "<image id=\"img_id811632804983642\" src=\"cmd/sc_togglemergecells.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921632804983642\">Icon Merge and Center Cells</alt></image>"
+msgid "<image id=\"img_id811632804983642\" src=\"cmd/lc_togglemergecells.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921632804983642\">Icon Merge and Center Cells</alt></image>"
msgstr ""
#. 86yef
@@ -43630,15 +43594,6 @@ msgctxt ""
msgid "Merge and Center Cells"
msgstr "ክፍሎችን ማዋሀጃ እና መሀከል ማድረጊያ"
-#. ZRQSQ
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"par_id3154020\n"
-"help.text"
-msgid "Or, choose <variable id=\"format_mergecells_menu\"><menuitem>Format - Merge and Unmerge Cells - </menuitem></variable><menuitem> Merge and Center Cells</menuitem>."
-msgstr "ወይንም ይምረጡ <variable id=\"format_mergecells_menu\"><menuitem>አቀራረብ - ክፍሎችን ማዋሀጃ እና መለያያ - </menuitem></variable><menuitem> ክፍሎችን ማዋሀጃ እና መሀከል ማድረጊያ</menuitem>."
-
#. 8zues
#: 05060000.xhp
msgctxt ""
@@ -44557,13 +44512,13 @@ msgctxt ""
msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles.</ahelp>"
msgstr ""
-#. JcMEc
+#. KGCFi
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3150751\n"
"help.text"
-msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153714\">Icon Cell Styles</alt></image>"
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153714\">Icon Cell Styles</alt></image>"
msgstr ""
#. HKD2C
@@ -44575,31 +44530,31 @@ msgctxt ""
msgid "Cell Styles"
msgstr "የ ክፍል ዘዴዎች"
-#. XKhEL
+#. cLqAG
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
-"hd_id171593598056580\n"
+"par_id91690204224503\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\">Page Styles</link>"
+msgid "<image src=\"/sd/res/sf01.svg\" id=\"img_id581690204224504\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291690204224505\">Icon Drawing Styles</alt></image>"
msgstr ""
-#. 4XFww
+#. fJWG7
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
-"par_id3147003\n"
+"par_id271690204224507\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the Page Styles available.</ahelp>"
+msgid "Drawing Styles"
msgstr ""
-#. cM9f4
+#. SbUSJ
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"par_id3159100\n"
"help.text"
-msgid "<image id=\"img_id3149814\" src=\"sw/res/sf04.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149814\">Icon Page Styles</alt></image>"
+msgid "<image id=\"img_id3149814\" src=\"sc/res/sf02.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149814\">Icon Page Styles</alt></image>"
msgstr ""
#. BnFvb
@@ -44809,240 +44764,6 @@ msgctxt ""
msgid "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
msgstr "<ahelp hid=\"SFX2_HID_TEMPLATE_FILTER\">ዝግጁ የ ዘዴ ቡድኖች ዝርዝር </ahelp>"
-#. MiWuG
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "በራሱ አቀራረብ"
-
-#. EWVss
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149666\n"
-"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\">AutoFormat</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\">በራሱ አቀራረብ</link></variable>"
-
-#. ATtMX
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3145367\n"
-"help.text"
-msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
-msgstr "<variable id=\"autoformattext\"><ahelp hid=\".\">ይህን ትእዛዝ ይጠቀሙ በራሱ አቀራረብ ለ መፈጸም ለ ተመረጠው ወረቀት አካባቢ ወይንም እርስዎ የ ራስዎትን በራሱ አቀራረብ ለ መግለጽ </ahelp></variable>"
-
-#. 7SZiE
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id181630332690300\n"
-"help.text"
-msgid "The AutoFormat command is available only if a cell range with at least 3 columns and 3 rows are selected. Otherwise this command will appear grayed out in the menu."
-msgstr ""
-
-#. Gid6Q
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3148455\n"
-"help.text"
-msgid "Format"
-msgstr "አቀራረብ"
-
-#. Bp6GQ
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3145799\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/formatlb\">ይምረጡ በቅድሚያ የተወሰነ በራሱ አቀራረብ በ እርስዎ ወረቀት ውስጥ በ ተመረጠው ቦታ ለ መፈጸም </ahelp>"
-
-#. AQe2Q
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149410\n"
-"help.text"
-msgid "Add"
-msgstr "መጨመሪያ"
-
-#. FXjGb
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3154017\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <emph>Add AutoFormat</emph> dialog then appears."
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">እርስዎን የሚያስችለው መጨመር ነው ለ አሁኑ አቀራረብ መጠን ቢያንስ 4 x 4 ክፍሎች ወደ ዝርዝር ውስጥ በቅድሚያ በ ተወሰነው በራሱ አቀራረብ ነው </ahelp> የ <emph> በራሱ አቀራረብ </emph> ንግግር ይታያል"
-
-#. JArjF
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153708\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter a name and click <emph>OK</emph>. </ahelp>"
-msgstr "<ahelp hid=\".\">ስም ያስገቡ እና ይጫኑ <emph> እሺ </emph></ahelp>"
-
-#. jio4T
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3159223\n"
-"help.text"
-msgid "Rename"
-msgstr "እንደገና መሰየሚያ"
-
-#. MqzXD
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153064\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can change the name of the selected AutoFormat.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ የ ተመረጠውን ጽሁፍ ስም በራሱ አቀራረብ የሚቀይሩበት ንግግር መክፈቻ </ahelp>"
-
-#. tBi3c
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153912\n"
-"help.text"
-msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\".\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr "የ <emph> እንደገና መሰየሚያ በራሱ አቀራረብ </emph> ንግግር መክፈቻ <ahelp hid=\".\"> እዚህ አዲስ ስም ለ በራሱ አቀራረብ ያስገቡ </ahelp>"
-
-#. 9Fnyt
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155961\n"
-"help.text"
-msgid "Formatting"
-msgstr "አቀራረብ"
-
-#. xbN7F
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3153965\n"
-"help.text"
-msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
-msgstr "በዚህ ክፍል ውስጥ እርስዎ መምረጥ ወይንም አለመምረጥ ይችላሉ ዝግጁ የሆኑ አቀራረብ ምርጫ: እርስዎ ማስቀመጥ ከፈለጉ ማንኛውንም ማሰናጃ በ አሁኑ በ እርስዎ የ ሰንጠረዥ ሰነድ ውስጥ: ተመሳሳይ ምርጫ አይምረጡ"
-
-#. Fyqgf
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3154021\n"
-"help.text"
-msgid "Number format"
-msgstr "የ ቁጥር አቀራረብ"
-
-#. BCCRb
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3159239\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/numformatcb\">ምልክት በሚደረግበት ጊዜ: እርስዎ መጠቀም የሚፈልጉትን የ ተመረጠውን የ ቁጥር አቀራረብ መወሰኛ </ahelp>"
-
-#. gENSs
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149530\n"
-"help.text"
-msgid "Borders"
-msgstr "ድንበሮች"
-
-#. BisJb
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3145259\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/bordercb\">ምልክት በሚደረግበት ጊዜ: እርስዎ መጠቀም የሚፈልጉትን የ ተመረጠውን የ ድንበር አቀራረብ መወሰኛ </ahelp>"
-
-#. AFrd6
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3154657\n"
-"help.text"
-msgid "Font"
-msgstr "ፊደል"
-
-#. phND5
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3152990\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/fontcb\">ምልክት በሚደረግበት ጊዜ: እርስዎ መጠቀም የሚፈልጉትን የ ተመረጠውን የ ፊደል አቀራረብ መወሰኛ </ahelp>"
-
-#. uCDGT
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155379\n"
-"help.text"
-msgid "Pattern"
-msgstr "ንድፍ"
-
-#. CTDte
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3150368\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/patterncb\">ምልክት በሚደረግበት ጊዜ: እርስዎ መጠቀም የሚፈልጉትን የ ተመረጠውን የ ድግግሞሽ አቀራረብ መወሰኛ </ahelp>"
-
-#. C6ePa
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3146115\n"
-"help.text"
-msgid "Alignment"
-msgstr "ማሰለፊያ"
-
-#. oLYqw
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3156445\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/alignmentcb\">ምልክት በሚደረግበት ጊዜ: እርስዎ መጠቀም የሚፈልጉትን የ ተመረጠውን የ ማሰለፊያ አቀራረብ መወሰኛ </ahelp>"
-
-#. YsUAs
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3155811\n"
-"help.text"
-msgid "AutoFit width and height"
-msgstr "በራሱ ልክ ስፋት እና እርዝመት"
-
-#. QpFsA
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3148703\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">ምልክት በሚደረግበት ጊዜ: እርስዎ መጠቀም የሚፈልጉትን የ ተመረጠውን የ ስፋት እና እርዝመት ለ ተመረጠው ክፍል አቀራረብ መወሰኛ </ahelp>"
-
#. xBzMp
#: 05120000.xhp
msgctxt ""
@@ -47545,14 +47266,14 @@ msgctxt ""
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet Structure</emph> commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
msgstr ""
-#. 97XdX
+#. TRACp
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
"hd_id3147228\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060100.xhp\">Sheets</link>"
-msgstr "<link href=\"text/scalc/01/06060100.xhp\">ወረቀቶች</link>"
+msgid "<link href=\"text/shared/01/Protect.xhp\">Sheets</link>"
+msgstr ""
#. BbuD8
#: 06060000.xhp
@@ -47563,285 +47284,6 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/06060200.xhp\">Documents</link>"
msgstr "<link href=\"text/scalc/01/06060200.xhp\">ሰነዶች</link>"
-#. 3GYGr
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Protecting Sheet"
-msgstr "ወረቀት መጠበቂያ"
-
-#. du7pC
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"bm_id141619439455954\n"
-"help.text"
-msgid "<bookmark_value>insert rows;protected sheet</bookmark_value><bookmark_value>insert columns;protected sheet</bookmark_value><bookmark_value>delete columns;protected sheet</bookmark_value><bookmark_value>delete rows;protected sheet</bookmark_value><bookmark_value>protected sheet;insert columns</bookmark_value><bookmark_value>protected sheet;insert rows</bookmark_value><bookmark_value>protected sheet;delete rows</bookmark_value><bookmark_value>protected sheet;delete columns</bookmark_value><bookmark_value>protect;sheet</bookmark_value><bookmark_value>selection;in protected cells</bookmark_value>"
-msgstr ""
-
-#. Yrjkt
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id3153087\n"
-"help.text"
-msgid "<variable id=\"ProtectingSheeth1\"><link href=\"text/scalc/01/06060100.xhp\">Protect Sheet</link></variable>"
-msgstr ""
-
-#. LcpD8
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3148664\n"
-"help.text"
-msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable>"
-msgstr ""
-
-#. YZ3HB
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id701619429750616\n"
-"help.text"
-msgid "Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect."
-msgstr ""
-
-#. uGJM3
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149664\n"
-"help.text"
-msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
-msgstr "ክፍሎች እንዳይሻሻሉ ለ መጠበቅ <emph> መጠበቂያ </emph> ምልክት ማድረጊያ ሳጥን ውስጥ ምልክት መደረግ አለበት <link href=\"text/scalc/01/05020600.xhp\"><emph> አቀራረብ - ክፍሎች - ክፍል መጠበቂያ </emph></link> tab ገጽ ወይንም በ <emph> አቀራረብ - ክፍሎች </emph> አገባብ ዝርዝር ውስጥ"
-
-#. eUvfv
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id901619431276995\n"
-"help.text"
-msgid "Protect this sheet and contents of the protected cells"
-msgstr ""
-
-#. G5UKV
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id381619431285815\n"
-"help.text"
-msgid "Mark this checkbox to activate protection of sheet and cell contents."
-msgstr ""
-
-#. SFevC
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id31619431291108\n"
-"help.text"
-msgid "Password / Confirm"
-msgstr ""
-
-#. AaZQG
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id851619431300487\n"
-"help.text"
-msgid "Allows you to enter a password to protect the sheet from unauthorized changes. Confirm the password entered in the first box."
-msgstr ""
-
-#. WX7Gh
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id711619431316966\n"
-"help.text"
-msgid "Allow users of this sheet to"
-msgstr ""
-
-#. skcWB
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id41619431361278\n"
-"help.text"
-msgid "Select the elements to protect from user actions:"
-msgstr ""
-
-#. 9Mc4m
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id661619430257262\n"
-"help.text"
-msgid "<emph>Select protected cells</emph>: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range."
-msgstr ""
-
-#. UqBRQ
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id921619430295947\n"
-"help.text"
-msgid "<emph>Select unprotected cells</emph>: mark this checkbox to allow user to select unprotected cells. When the checkbox is unmarked, user cannot select unprotected cells, the cursor cannot enter in a unprotected cell or range."
-msgstr ""
-
-#. R6DuD
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id101619430333784\n"
-"help.text"
-msgid "<emph>Insert columns</emph>: Allow column insertions even when the sheet is protected. Note that when column insertions is enabled, you can insert columns even when the range to insert the new columns into contains protected cells which will get shifted after the insertion. Cells of the newly inserted columns inherit the Protection property of the range it belongs: when the new cell is inside a protected range, the cell is protected, and when it is in an unprotected range, the cell is unprotected."
-msgstr ""
-
-#. 36hCi
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id891619430338809\n"
-"help.text"
-msgid "<emph>Insert rows</emph>: Allow row insertions even when the sheet is protected. Note that when row insertions is enabled, you can insert rows even when the range to insert the new rows into contains protected cells which will get shifted after the insertion. Cells of the newly inserted rows inherit the Protection property of the range it belongs: when the new cell is inside a protected range it is protected, and when it is in an unprotected range, the cell is unprotected."
-msgstr ""
-
-#. hGXEq
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id311619430374686\n"
-"help.text"
-msgid "<emph>Delete columns</emph>: Allow column deletions. Note that column deletions are only allowed on unprotected cells."
-msgstr ""
-
-#. ebwLU
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id561619430376854\n"
-"help.text"
-msgid "<emph>Delete rows</emph>: Allow row deletions. Note that row deletions are only allowed on unprotected cells."
-msgstr ""
-
-#. cE3Ff
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154490\n"
-"help.text"
-msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
-msgstr "የማይጠበቁ ክፍሎች ወይንም የ ክፍል መጠኖችን ማሰናዳት ይቻላል በሚጠበቅ ወረቀት ውስጥ በ መጠቀም <emph>መሳሪያዎች - ወረቀት መጠበቂያ </emph> እና <emph>አቀራረብ - ክፍሎች - ክፍል መጠበቂያ</emph> ዝርዝር ውስጥ:"
-
-#. 327UP
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149123\n"
-"help.text"
-msgid "Select the cells that will be unprotected"
-msgstr "ይምረጡ የማይጠበቁትን ክፍሎችን"
-
-#. ArCpC
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3150329\n"
-"help.text"
-msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
-msgstr "ይምረጡ <emph> አቀራረብ - ክፍሎች - ክፍል መጠበቂያ </emph> እና ምልክቱን ያጥፉ ከ <emph> መጠበቂያ </emph> ሳጥን እና ይጫኑ <emph> እሺ </emph>"
-
-#. Dw5CS
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3156384\n"
-"help.text"
-msgid "On the <emph>Tools - Protect Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
-msgstr "በ <emph>መሳሪያዎች - ወረቀት መጠበቂያ</emph> ዝርዝር ውስጥ: የ ወረቀት መጠበቂያ ያስጀምሩ: ወዲያውኑ የሚፈጸም: እርስዎ የ መረጡት የ ክፍል መጠን በ ደረጃ 1 ብቻ ማረም ይቻላል"
-
-#. JQWv7
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149566\n"
-"help.text"
-msgid "To later change an unprotected area to a protected area:"
-msgstr ""
-
-#. TzTnE
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id101619439013221\n"
-"help.text"
-msgid "Select the range of cells that will be protected."
-msgstr ""
-
-#. Cc2Tb
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id601619439028536\n"
-"help.text"
-msgid "On the <menuitem>Format - Cells - Cell Protection</menuitem> tab page, check the <emph>Protected</emph> box."
-msgstr ""
-
-#. EeKFF
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id641619439061892\n"
-"help.text"
-msgid "Choose the <menuitem>Tools - Protect Sheet</menuitem> menu. The previously editable range is now protected."
-msgstr ""
-
-#. JaC9W
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3153964\n"
-"help.text"
-msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
-msgstr "ወረቀት መጠበቂያ ተፅእኖ ይፈጥራል በ አገባብ ዝርዝር ውስጥ በ ወረቀት tabs በ መመልከቻው ከ ታች በኩል: የ <emph> ማጥፊያ </emph> እና <emph> እንደገና መሰየሚያ </emph> ትእዛዝ መምረጥ አይቻልም"
-
-#. yLmHR
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3150301\n"
-"help.text"
-msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
-msgstr "ወረቀት የሚጠበቅ ከሆነ: እርስዎ ማሻሻል ወይንም ማጥፋት አይችሉም ማንኛውንም የ ክፍል ዘዴዎች"
-
-#. WEsxm
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3154656\n"
-"help.text"
-msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the <menuitem>Tools - Protect Sheet</menuitem> dialog. To disable the protection, choose the <menuitem>Tools - Protect Sheet</menuitem> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
-msgstr ""
-
-#. scXrG
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149815\n"
-"help.text"
-msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
-msgstr "አንዴ ከ ተቀመጠ: የሚጠበቅ ወረቀት ማስቀመጥ የሚቻለው ይህን በ መጠቀም ነው <emph>ፋይል - ማስቀመጫ እንደ</emph>ትእዛዝ"
-
-#. Gr24z
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3148700\n"
-"help.text"
-msgid "Complete protection of your work can be achieved by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet Structure</emph>, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
-msgstr ""
-
#. gMgFq
#: 06060200.xhp
msgctxt ""
@@ -53818,6 +53260,42 @@ msgctxt ""
msgid "iAnswer = MsgBox (msg , MB_FLAGS, \"Error message\")"
msgstr ""
+#. BFGn8
+#: MergeCellsMenu.xhp
+msgctxt ""
+"MergeCellsMenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Merge Cells Menu"
+msgstr ""
+
+#. gpGwv
+#: MergeCellsMenu.xhp
+msgctxt ""
+"MergeCellsMenu.xhp\n"
+"hd_id791694003998804\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/scalc/01/MergeCellsMenu.xhp\">Merge and Unmerge Cells</link></variable>"
+msgstr ""
+
+#. HZbpH
+#: MergeCellsMenu.xhp
+msgctxt ""
+"MergeCellsMenu.xhp\n"
+"par_id811694003998806\n"
+"help.text"
+msgid "Opens a submenu for merging and unmerging cells."
+msgstr ""
+
+#. NS5hd
+#: MergeCellsMenu.xhp
+msgctxt ""
+"MergeCellsMenu.xhp\n"
+"par_id161694004142640\n"
+"help.text"
+msgid "Choose <menuitem>Format - Merge and Unmerge Cells</menuitem>."
+msgstr ""
+
#. 4C6T2
#: ODFF.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 0a658761cc4..4374ab079f2 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.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: 2023-05-31 16:28+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2020-04-16 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/am/>\n"
@@ -574,13 +574,13 @@ msgctxt ""
msgid "The new AutoFormat styles created using the steps above can be applied to any %PRODUCTNAME Calc file. Hence they are not limited to the file where the style was created."
msgstr ""
-#. gKDHt
+#. GUBDD
#: autoformat.xhp
msgctxt ""
"autoformat.xhp\n"
"par_id3159203\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05110000.xhp\">Format - AutoFormat Styles</link>"
+msgid "<link href=\"text/shared/01/AutoFormat.xhp\">Format - AutoFormat Styles</link>"
msgstr ""
#. ZSCL9
@@ -2068,13 +2068,13 @@ msgctxt ""
msgid "Apply the protection options."
msgstr "የ መጠበቂያ ምርጫ መፈጸሚያ"
-#. 6BoLD
+#. pFFTp
#: cell_protect.xhp
msgctxt ""
"cell_protect.xhp\n"
"par_idN106C0\n"
"help.text"
-msgid "To protect the cells from being changed, viewed or printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <link href=\"text/scalc/01/06060100.xhp\"><menuitem>Tools - Protect Sheet</menuitem></link>."
+msgid "To protect the cells from being changed, viewed or printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <link href=\"text/shared/01/Protect.xhp\"><menuitem>Tools - Protect Sheet</menuitem></link>."
msgstr ""
#. doYSo
@@ -11518,14 +11518,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340100.xhp\">Row height</link>"
msgstr "<link href=\"text/shared/01/05340100.xhp\">የ ረድፍ እርዝመት</link>"
-#. uc7yU
+#. vkQLB
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\">Optimal row height</link>"
-msgstr "<link href=\"text/scalc/01/05030200.xhp\">አጥጋቢ የ ረድፍ እርዝመት</link>"
+msgid "<link href=\"text/shared/01/SetOptimalRowHeight.xhp\">Optimal row height</link>"
+msgstr ""
#. K8Xsr
#: row_height.xhp
@@ -11536,14 +11536,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05340200.xhp\">Column width</link>"
msgstr "<link href=\"text/shared/01/05340200.xhp\">የ አምድ ስፋት</link>"
-#. THtNm
+#. D4hxm
#: row_height.xhp
msgctxt ""
"row_height.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\">Optimal column width</link>"
-msgstr "<link href=\"text/scalc/01/05040200.xhp\">አጥጋቢ የ አምድ ስፋት</link>"
+msgid "<link href=\"text/shared/01/SetOptimalColumnWidth.xhp\">Optimal column width</link>"
+msgstr ""
#. YRbvh
#: scenario.xhp
diff --git a/source/am/helpcontent2/source/text/shared.po b/source/am/helpcontent2/source/text/shared.po
index 17e1ecaefbd..b90a0886885 100644
--- a/source/am/helpcontent2/source/text/shared.po
+++ b/source/am/helpcontent2/source/text/shared.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2328,543 +2328,3 @@ msgctxt ""
"help.text"
msgid "This help page needs further work for correctness and completion. Please join the LibreOffice project and help us out to write the missing information. Visit our <link href=\"https://documentation.libreoffice.org/en/join-community/update-help-contents\"><emph>web page on writing Help contents</emph></link>."
msgstr ""
-
-#. fGrZx
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spacing"
-msgstr ""
-
-#. yQezt
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id411816022675979\n"
-"help.text"
-msgid "<link href=\"text/shared/submenu_spacing.xhp\">Spacing</link>"
-msgstr ""
-
-#. 22dPh
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id398855439580084\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu where you can choose text spacing commands.</ahelp>"
-msgstr ""
-
-#. 44Px9
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147573\n"
-"help.text"
-msgid "Increase Paragraph Spacing"
-msgstr ""
-
-#. zhqwZ
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150695\n"
-"help.text"
-msgid "Increases the paragraph spacing above the selected paragraph."
-msgstr ""
-
-#. zDRUC
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id261643820768225\n"
-"help.text"
-msgid "<image src=\"cmd/lc_paraspaceincrease.svg\" id=\"img_id901643820768226\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768227\">Icon Increase Paragraph Spacing</alt></image>"
-msgstr ""
-
-#. D2RsS
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id131643820768228\n"
-"help.text"
-msgid "Increase Paragraph Spacing"
-msgstr ""
-
-#. XCZUT
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147574\n"
-"help.text"
-msgid "Decrease Paragraph Spacing"
-msgstr ""
-
-#. EVYri
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150696\n"
-"help.text"
-msgid "Decreases the paragraph spacing above the selected paragraph."
-msgstr ""
-
-#. agf5h
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id791643820835491\n"
-"help.text"
-msgid "<image src=\"cmd/lc_paraspacedecrease.svg\" id=\"img_id391643820835492\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id551643820835493\">Icon Decrease Paragraph Spacing</alt></image>"
-msgstr ""
-
-#. DssS6
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id141643820835494\n"
-"help.text"
-msgid "Decrease Paragraph Spacing"
-msgstr ""
-
-#. EsHFP
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147575\n"
-"help.text"
-msgid "Increase Indent"
-msgstr ""
-
-#. BU6i9
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150697\n"
-"help.text"
-msgid "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased."
-msgstr ""
-
-#. CFoDz
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id351643820903541\n"
-"help.text"
-msgid "<image src=\"cmd/lc_incrementindent.svg\" id=\"img_id161643820903542\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id981643820903543\">Icon Increase Indent</alt></image>"
-msgstr ""
-
-#. c7WUp
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id841643820903544\n"
-"help.text"
-msgid "Increase Indent"
-msgstr ""
-
-#. YA8bT
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"hd_id3147576\n"
-"help.text"
-msgid "Decrease Indent"
-msgstr ""
-
-#. aSrjB
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id3150698\n"
-"help.text"
-msgid "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is decreased."
-msgstr ""
-
-#. XsV6q
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id191643820966566\n"
-"help.text"
-msgid "<image src=\"cmd/lc_decrementindent.svg\" id=\"img_id601643820966567\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id991643820966568\">Icon Decrease Indent</alt></image>"
-msgstr ""
-
-#. wVZXB
-#: submenu_spacing.xhp
-msgctxt ""
-"submenu_spacing.xhp\n"
-"par_id201643820966569\n"
-"help.text"
-msgid "Decrease Indent"
-msgstr ""
-
-#. MVHBc
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"tit\n"
-"help.text"
-msgid "Text"
-msgstr ""
-
-#. pVEBz
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id411816022675978\n"
-"help.text"
-msgid "<link href=\"text/shared/submenu_text.xhp\">Text</link>"
-msgstr ""
-
-#. UdmfU
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id398855439580083\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu where you can choose text formatting commands.</ahelp>"
-msgstr ""
-
-#. JCTNH
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id893328657433073\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id0123200902243376\">Overline</link>"
-msgstr ""
-
-#. U9h8v
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id281953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#overline\" markup=\"ignore\"/>"
-msgstr ""
-
-#. NLNGF
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id773632078996899\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3163714\">Shadow</link>"
-msgstr ""
-
-#. hMRVP
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id873632078996899\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3147287\">Outline</link>"
-msgstr ""
-
-#. br5DC
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id207025326941609\n"
-"help.text"
-msgid "Wrap Text"
-msgstr ""
-
-#. jBc2E
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id302484503842787\n"
-"help.text"
-msgid "<ahelp hid=\".\">Break text automatically at the right edges of the selected cells.</ahelp>"
-msgstr ""
-
-#. BqgSi
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id273587522269593\n"
-"help.text"
-msgid "<link href=\"text/swriter/main0202.xhp#hd_id0122200903085320\">Increase Size</link>"
-msgstr ""
-
-#. GTjCT
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id511910578827551\n"
-"help.text"
-msgid "<link href=\"text/swriter/main0202.xhp#hd_id012220090308532\">Decrease Size</link>"
-msgstr ""
-
-#. WApc3
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id373587522269593\n"
-"help.text"
-msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
-msgstr ""
-
-#. AQANy
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id711910578827551\n"
-"help.text"
-msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
-msgstr ""
-
-#. uzDFv
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id473587522269593\n"
-"help.text"
-msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
-msgstr ""
-
-#. GQ8Fj
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id611910578827551\n"
-"help.text"
-msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
-msgstr ""
-
-#. wSRdX
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id172462591626807\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">UPPERCASE</link>"
-msgstr ""
-
-#. sjNg6
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id381953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#uppercase\"/>"
-msgstr ""
-
-#. FFVUb
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id935919548287354\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">lowercase</link>"
-msgstr ""
-
-#. ijGEm
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id481953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#lowercase\"/>"
-msgstr ""
-
-#. zGBE2
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3147143\n"
-"help.text"
-msgid "Cycle Case"
-msgstr ""
-
-#. TSJfn
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3152372\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseRotateCase\">Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase.</ahelp>"
-msgstr ""
-
-#. v24QT
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3147572\n"
-"help.text"
-msgid "Sentence case"
-msgstr ""
-
-#. v3Cr9
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3150694\n"
-"help.text"
-msgid "<ahelp hid=\".\">Changes the first letter of the selected characters to an uppercase character.</ahelp>"
-msgstr ""
-
-#. JtsaD
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id640520497868661\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Capitalize Every Word</link>"
-msgstr ""
-
-#. 3UGHA
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id581953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#capitalizeeveryword\"/>"
-msgstr ""
-
-#. Y9fn4
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3147521\n"
-"help.text"
-msgid "tOGGLE cASE"
-msgstr ""
-
-#. eb5K9
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3150623\n"
-"help.text"
-msgid "<ahelp hid=\".\">Toggles case of all selected characters.</ahelp>"
-msgstr ""
-
-#. WNuFq
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id342778277179117\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
-
-#. K6tXB
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id681953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
-msgstr ""
-
-#. VXJzA
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id442778277179117\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
-
-#. arEu2
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id781953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
-msgstr ""
-
-#. KQxFn
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id542778277179117\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
-msgstr ""
-
-#. okCcu
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id881953548674188\n"
-"help.text"
-msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
-msgstr ""
-
-#. zo6cE
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3155392\n"
-"help.text"
-msgid "Half-width"
-msgstr ""
-
-#. SEpmw
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3147088\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
-msgstr ""
-
-#. rA2DG
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3156113\n"
-"help.text"
-msgid "Full Width"
-msgstr ""
-
-#. Ep24G
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3154749\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full-width characters.</ahelp>"
-msgstr ""
-
-#. dZCcC
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3152996\n"
-"help.text"
-msgid "Hiragana"
-msgstr ""
-
-#. AB6ta
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3156156\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
-msgstr ""
-
-#. LNQLS
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"hd_id3154173\n"
-"help.text"
-msgid "Katakana"
-msgstr ""
-
-#. QSxUp
-#: submenu_text.xhp
-msgctxt ""
-"submenu_text.xhp\n"
-"par_id3146137\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
-msgstr ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 17dc46069fb..7c7bc33481a 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8449,31 +8449,85 @@ msgctxt ""
msgid "View Menu"
msgstr "ዝርዝር መመልከቻ"
-#. ndXLD
+#. 6FCuP
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3146936\n"
"help.text"
-msgid "Choose <menuitem>View - Zoom - Zoom</menuitem>."
+msgid "Choose <menuitem>View - Zoom</menuitem>."
msgstr ""
-#. 2CFCv
+#. Nd5ee
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id571687091234072\n"
+"help.text"
+msgid "Choose <menuitem>Home - Zoom</menuitem>."
+msgstr ""
+
+#. qZ2v6
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id51687091238048\n"
+"help.text"
+msgid "Choose <menuitem>View - Zoom</menuitem>."
+msgstr ""
+
+#. ScB8d
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id971687091241800\n"
+"help.text"
+msgid "Choose <menuitem>View - Zoom</menuitem>."
+msgstr ""
+
+#. EsXDD
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id961687091274226\n"
+"help.text"
+msgid "<image src=\"cmd/lc_zoom.svg\" id=\"img_id801687091274227\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51687091274228\">Icon Zoom</alt></image>"
+msgstr ""
+
+#. zG5yV
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id191687091274230\n"
+"help.text"
+msgid "Zoom"
+msgstr ""
+
+#. XpFgB
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id571687091551425\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + mouse wheel</keycode>"
+msgstr ""
+
+#. qTEeL
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3149962\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad.</caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad.</caseinline></switchinline>"
msgstr ""
-#. nLvKR
+#. 6aDBo
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3152895\n"
"help.text"
-msgid "Click or right-click the zoom factor displayed on the Zoom Slider in the <emph>Status</emph> bar."
+msgid "Click or right-click the zoom factor displayed on the Zoom Slider."
msgstr ""
#. juxFA
@@ -8593,41 +8647,41 @@ msgctxt ""
msgid "Choose <menuitem>View - Full Screen</menuitem>."
msgstr ""
-#. cDF5C
+#. zz2cj
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
-"par_id3149578\n"
+"par_id821687089742815\n"
"help.text"
-msgid "<keycode>Shift+</keycode><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+J</keycode>"
+msgid "Choose <menuitem>View - Full Screen</menuitem>."
msgstr ""
-#. ARGs4
+#. QFUeF
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3153257\n"
"help.text"
-msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148473\">Icon</alt></image>"
+msgid "<image id=\"img_id3148473\" src=\"cmd/lc_fullscreen.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148473\">Icon Full Screen</alt></image>"
msgstr ""
-#. Zez4K
+#. W6WXV
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3153627\n"
"help.text"
-msgid "Full Screen (in Print Preview)"
-msgstr "በ ሙሉ መመልከቻ ዘዴ (በ ማተሚያ ቅድመ እይታ)"
+msgid "Full Screen"
+msgstr ""
-#. jFDAm
+#. H7N6A
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
-"par_id3147559\n"
+"par_id3149578\n"
"help.text"
-msgid "If a text document or spreadsheet is open:"
-msgstr "የ ጽሁፍ ሰነድ ወይንም ሰንጠረዥ ከተከፈተ:"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift + J</keycode>"
+msgstr ""
#. T2NBP
#: 00000403.xhp
@@ -8638,22 +8692,40 @@ msgctxt ""
msgid "Menu <emph>View - Data Sources</emph>."
msgstr ""
-#. 9xWER
+#. 3stWT
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
-"par_id3149046\n"
+"par_id251687088275100\n"
+"help.text"
+msgid "Choose <menuitem>References - Data Sources</menuitem>."
+msgstr ""
+
+#. iRCmt
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id241687087681423\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F4</keycode> keys"
+msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Data Sources</menuitem>."
msgstr ""
-#. BGHeu
+#. 6owkg
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id241687087681422\n"
+"help.text"
+msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Data Sources</menuitem>."
+msgstr ""
+
+#. AWe82
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3153778\n"
"help.text"
-msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153524\">Icon</alt></image>"
+msgid "<image id=\"img_id3153524\" src=\"cmd/lc_viewdatasourcebrowser.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153524\">Icon Data Sources</alt></image>"
msgstr ""
#. dvWwd
@@ -8665,6 +8737,15 @@ msgctxt ""
msgid "Data Sources"
msgstr "የ ዳታ ምንጮች"
+#. rC9PM
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id3149046\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift + F4</keycode>"
+msgstr ""
+
#. j6X7A
#: 00000403.xhp
msgctxt ""
@@ -8728,22 +8809,490 @@ msgctxt ""
msgid "Insert Menu"
msgstr "ዝርዝር ማስገቢያ"
-#. CbrFV
+#. Ji9sB
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id741693664840476\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert - Rows Above</menuitem>."
+msgstr ""
+
+#. CSsYC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id281693664844219\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Insert Rows - Rows Above</menuitem>."
+msgstr ""
+
+#. Y2f9f
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id631693665294555\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Rows Above</menuitem>."
+msgstr ""
+
+#. Eg9uV
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id941693665025455\n"
+"help.text"
+msgid "Select one or more rows, choose <menuitem>Insert Rows Above</menuitem>."
+msgstr ""
+
+#. G3SfT
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id381693665134720\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Insert Row Above</menuitem>."
+msgstr ""
+
+#. MBzAH
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id501693665887523\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Rows Above</menuitem>."
+msgstr ""
+
+#. mfEXr
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id191693665909021\n"
+"help.text"
+msgid "Choose <menuitem>Home - Insert Rows Above</menuitem>."
+msgstr ""
+
+#. giQyu
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id991693665913844\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Row - Insert Rows Above</menuitem>."
+msgstr ""
+
+#. aQBqd
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id631693666024919\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Row Above.</menuitem>"
+msgstr ""
+
+#. yzbCP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id521693666125576\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertrowsbefore.svg\" id=\"img_id951693666125577\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131693666125578\">Icon Insert Rows Above</alt></image>"
+msgstr ""
+
+#. FAMqU
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id51693666125580\n"
+"help.text"
+msgid "Insert Rows Above"
+msgstr ""
+
+#. Vh6ey
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id531693666407473\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Insert Rows Above</menuitem>."
+msgstr ""
+
+#. c5jfB
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id741693670642142\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert - Columns Before</menuitem>."
+msgstr ""
+
+#. AK2Qq
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id91693670645006\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Insert Columns - Columns Before</menuitem>."
+msgstr ""
+
+#. nkCGt
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id501693670647869\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Columns Before</menuitem>."
+msgstr ""
+
+#. bX8um
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id391693670651093\n"
+"help.text"
+msgid "Select one or more columns, choose <menuitem>Insert Columns Before</menuitem>."
+msgstr ""
+
+#. HNRAx
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id781693670653910\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Insert Column Before</menuitem>."
+msgstr ""
+
+#. zF8wC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id911693670657174\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Columns Before</menuitem>."
+msgstr ""
+
+#. 677Ar
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id531693670660167\n"
+"help.text"
+msgid "Choose <menuitem>Home - Insert Columns Before</menuitem>."
+msgstr ""
+
+#. Db9X2
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id91693670662902\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Row - Insert Columns Before</menuitem>."
+msgstr ""
+
+#. WLtFH
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id481693670666862\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Row Above.</menuitem>"
+msgstr ""
+
+#. LBCvF
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id821693670669999\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertrowsbefore.svg\" id=\"img_id951693666325577\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131693666425578\">Icon Insert Columns Before</alt></image>"
+msgstr ""
+
+#. kN4MF
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id961693670681629\n"
+"help.text"
+msgid "Insert Columns Before"
+msgstr ""
+
+#. xbAeR
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id351693670685870\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Insert Columns Before</menuitem>."
+msgstr ""
+
+#. JvFDS
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id371693666896646\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert - Rows Below</menuitem>."
+msgstr ""
+
+#. iVxYt
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id141693666899390\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Insert Rows - Rows Below</menuitem>."
+msgstr ""
+
+#. ZGjkN
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id571693666903007\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Rows Below</menuitem>."
+msgstr ""
+
+#. zAK6P
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id41693666905575\n"
+"help.text"
+msgid "Select one or more rows, choose <menuitem>Insert Rows Below</menuitem>."
+msgstr ""
+
+#. DKHqm
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id691693666908487\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Insert Row Below</menuitem>."
+msgstr ""
+
+#. etgXt
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id701693666911783\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Rows Below</menuitem>."
+msgstr ""
+
+#. tvLmC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id161693666914474\n"
+"help.text"
+msgid "Choose <menuitem>Home - Insert Rows Below</menuitem>."
+msgstr ""
+
+#. CWFix
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id1001693666917119\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Row - Insert Rows Below</menuitem>."
+msgstr ""
+
+#. FByQt
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id11693666920455\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Row Below.</menuitem>"
+msgstr ""
+
+#. B8uLQ
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id61693666923256\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertrowsafter.svg\" id=\"img_id951693666125577\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131793666125578\">Icon Insert Rows Below</alt></image>"
+msgstr ""
+
+#. PYijD
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id881693666935094\n"
+"help.text"
+msgid "Insert Rows Below"
+msgstr ""
+
+#. 4ziDF
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id891693666938552\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Insert Rows Below</menuitem>."
+msgstr ""
+
+#. kYyxA
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id31693670367399\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert - Columns After</menuitem>."
+msgstr ""
+
+#. AUe3v
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id171693670370502\n"
+"help.text"
+msgid "Choose <menuitem>Sheet - Insert Columns - Columns After</menuitem>."
+msgstr ""
+
+#. 7jBdt
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id371693670373535\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Columns After</menuitem>."
+msgstr ""
+
+#. JAumr
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id991693670376279\n"
+"help.text"
+msgid "Select one or more columns, choose <menuitem>Insert Columns After</menuitem>."
+msgstr ""
+
+#. cj2ro
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id681693670379023\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Insert Column After</menuitem>."
+msgstr ""
+
+#. Wda8H
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id491693670381967\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Columns After</menuitem>."
+msgstr ""
+
+#. yB9j9
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id801693670386399\n"
+"help.text"
+msgid "Choose <menuitem>Home - Insert Columns After</menuitem>."
+msgstr ""
+
+#. Cbxwk
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id791693670392295\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Column - Insert Columns After</menuitem>."
+msgstr ""
+
+#. 6soUj
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id721693670396271\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert Column After.</menuitem>"
+msgstr ""
+
+#. uT4HD
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id411693670408184\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertcolumnsafter.svg\" id=\"img_id951693666125577\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131293666125578\">Icon Insert Columns After</alt></image>"
+msgstr ""
+
+#. Df7WJ
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id471693670416847\n"
+"help.text"
+msgid "Insert Columns After"
+msgstr ""
+
+#. QUKEr
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id431693670421943\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Insert Columns After</menuitem>."
+msgstr ""
+
+#. CDDDG
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3153808\n"
"help.text"
-msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph>.</variable>"
+msgid "<variable id=\"notiz\">Choose <menuitem>Insert - Comment</menuitem>.</variable>"
+msgstr ""
+
+#. 6c3TT
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id841689472443824\n"
+"help.text"
+msgid "Choose <menuitem>Review - Insert Comment</menuitem>."
+msgstr ""
+
+#. Ej536
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id11689501613616\n"
+"help.text"
+msgid "Choose <menuitem>Home - Insert Comment</menuitem>."
+msgstr ""
+
+#. Eyxme
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id131689471839959\n"
+"help.text"
+msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id531689471839960\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id211689471839961\">Icon Insert Comment</alt></image>"
+msgstr ""
+
+#. DGLMV
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id191689471839963\n"
+"help.text"
+msgid "Insert Comment"
msgstr ""
-#. d7yAW
+#. SMLC7
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3253808\n"
"help.text"
-msgid "<variable id=\"notizkbd\">Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode>+<keycode>Option</keycode></caseinline><defaultinline><keycode>Ctrl</keycode>+<keycode>Alt</keycode></defaultinline></switchinline>+<keycode>C</keycode>.</variable>"
+msgid "<variable id=\"notizkbd\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode>+<keycode>Option</keycode></caseinline><defaultinline><keycode>Ctrl</keycode> + <keycode>Alt</keycode></defaultinline></switchinline> + <keycode>C</keycode>.</variable>"
msgstr ""
#. xJ9qr
@@ -8782,49 +9331,58 @@ msgctxt ""
msgid "Choose <menuitem>Insert - Media - Scan - Request</menuitem>."
msgstr ""
-#. UTcTB
+#. fmUDG
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3143281\n"
"help.text"
-msgid "Choose <emph>Insert - Special Character</emph>."
+msgid "Choose <menuitem>Insert - Special Character</menuitem>."
msgstr ""
-#. T43B3
+#. XkFrm
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3149525\n"
+"par_id541689714752335\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button.</caseinline></switchinline>"
+msgid "Choose <menuitem>Format - Bullets and Numbering - Customize - Character</menuitem> button"
msgstr ""
-#. sB3e2
+#. d8sLP
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3152372\n"
+"par_id791689714758450\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button.</caseinline></switchinline>"
+msgid "Choose <menuitem>Format - Bullets and Numbering - Customize - Character</menuitem> button"
msgstr ""
-#. L5Fu9
+#. ZE5pq
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3156560\n"
+"par_id281689714155381\n"
"help.text"
-msgid "On the <emph>Standard</emph> or the <emph>Insert</emph> bar, click"
+msgid "Choose <menuitem>Home - Insert Special Characters</menuitem>."
msgstr ""
-#. 5CYUS
+#. PnoPE
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id261689714170093\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Symbol</menuitem>."
+msgstr ""
+
+#. yW3ve
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3153527\n"
"help.text"
-msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153748\">Icon Special character</alt></image>"
+msgid "<image id=\"img_id3153748\" src=\"cmd/lc_insertsymbol.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153748\">Icon Special character</alt></image>"
msgstr ""
#. Kn89R
@@ -9232,42 +9790,51 @@ msgctxt ""
msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file.</variable>"
msgstr ""
-#. r3DhT
+#. uMQfA
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id491577300092990\n"
+"par_id521577299133097\n"
"help.text"
-msgid "On the <emph>Fontwork</emph> bar, click"
+msgid "Choose <menuitem>Insert - Fontwork</menuitem>"
msgstr ""
-#. 6QW9h
+#. 3Nqaz
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_idN10DDC\n"
+"par_id991689505094763\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_fontwork\">Icon Fontwork</alt></image>"
+msgid "Choose <menuitem>Insert - Insert Fontwork</menuitem>."
msgstr ""
-#. W5iAB
+#. dokCC
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_idN10DD1\n"
+"par_id551689505106097\n"
"help.text"
-msgid "Fontwork Gallery"
-msgstr "የ ፊደል ስራ አዳራሽ"
+msgid "On the <menuitem>Insert</menuitem> menu of the <menuitem>Insert</menuitem> tab, choose <menuitem>Fontwork</menuitem>."
+msgstr ""
-#. uMQfA
+#. XXN8z
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id521577299133097\n"
+"par_idN10DDC\n"
"help.text"
-msgid "Choose <menuitem>Insert - Fontwork</menuitem>"
+msgid "<image id=\"Graphic2\" src=\"cmd/lc_fontworkgalleryfloater.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_fontwork\">Icon Fontwork</alt></image>"
msgstr ""
+#. W5iAB
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_idN10DD1\n"
+"help.text"
+msgid "Fontwork Gallery"
+msgstr "የ ፊደል ስራ አዳራሽ"
+
#. 7PGAq
#: 00000404.xhp
msgctxt ""
@@ -9376,13 +9943,40 @@ msgctxt ""
msgid "Stars"
msgstr "ኮከቦች"
-#. GCpBe
+#. SDACH
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id81526422144005\n"
"help.text"
-msgid "Choose <emph>Insert - Signature Line</emph>"
+msgid "Choose <menuitem>Insert - Signature Line</menuitem>"
+msgstr ""
+
+#. S8Q5i
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id181690028131825\n"
+"help.text"
+msgid "On the <menuitem>Insert</menuitem> menu of the <menuitem>Insert</menuitem> tab, choose <menuitem>Signature Line</menuitem>."
+msgstr ""
+
+#. xzLE4
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id661690028186656\n"
+"help.text"
+msgid "<image src=\"cmd/lc_signaturelinedialog.svg\" id=\"img_id911690028186657\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id951690028186659\">Icon Insert Signature Line</alt></image>"
+msgstr ""
+
+#. VdaWW
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id371690028186660\n"
+"help.text"
+msgid "Insert Signature Line"
msgstr ""
#. aFWLc
@@ -11086,22 +11680,40 @@ msgctxt ""
msgid "Choose <menuitem>Format - Table - Minimal Row Height</menuitem>."
msgstr ""
-#. CZ6Az
+#. MwrHD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id451655738489793\n"
"help.text"
-msgid "Select rows in table, right-click, choose <menuitem>Size - Minimal Row Height</menuitem>."
+msgid "Choose <menuitem>Size - Minimal Row Height</menuitem>."
+msgstr ""
+
+#. F8wyc
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id11693929230193\n"
+"help.text"
+msgid "Choose <menuitem>Table - Optimize Size - Minimal Row Height</menuitem>."
+msgstr ""
+
+#. BoZwM
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id51693929384475\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Minimal Row Height</menuitem>."
msgstr ""
-#. UEWjA
+#. DLBVU
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id751654222949632\n"
"help.text"
-msgid "<image src=\"cmd/lc_setminimalrowheight.svg\" id=\"img_id731654222949632\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id541654222949632\">Minimal Row Height Icon</alt></image>"
+msgid "<image src=\"cmd/lc_setminimalrowheight.svg\" id=\"img_id731654222949632\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id541654222949632\">Icon Minimal Row Height</alt></image>"
msgstr ""
#. kp47D
@@ -11113,6 +11725,15 @@ msgctxt ""
msgid "Minimal Row Height"
msgstr ""
+#. PzzU2
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id611693929325585\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Minimal Row Height</menuitem>."
+msgstr ""
+
#. NN4r3
#: 00040500.xhp
msgctxt ""
@@ -11122,6 +11743,15 @@ msgctxt ""
msgid "Choose <menuitem>Table - Size - Optimal Row Height</menuitem>."
msgstr ""
+#. YvSx9
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id591693950959018\n"
+"help.text"
+msgid "Choose <menuitem>Format - Rows - Optimal Height</menuitem>."
+msgstr ""
+
#. pCsAR
#: 00040500.xhp
msgctxt ""
@@ -11131,13 +11761,58 @@ msgctxt ""
msgid "Choose <menuitem>Format - Table - Optimal Row Height</menuitem>."
msgstr ""
-#. zLApF
+#. ARCBD
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id381693934159575\n"
+"help.text"
+msgid "Choose <menuitem>Size - Optimal Row Height</menuitem>."
+msgstr ""
+
+#. GeUkp
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id91693951086194\n"
+"help.text"
+msgid "Select row, choose <menuitem>Optimal Height</menuitem>."
+msgstr ""
+
+#. CvGKF
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id331693934199624\n"
+"help.text"
+msgid "Choose <menuitem>Table - Optimize Size - Optimal Row Height</menuitem>."
+msgstr ""
+
+#. PQim4
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id631693934202201\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Optimal Row Height</menuitem>."
+msgstr ""
+
+#. H83Ge
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id681693951206742\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Row - Optimal Height</menuitem>."
+msgstr ""
+
+#. WYawC
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id741655738425233\n"
+"par_id781693951209917\n"
"help.text"
-msgid "Select rows in table, right-click, choose <menuitem>Size - Optimal Row Height</menuitem>."
+msgid "Choose <menuitem>Home - Row - Optimal Height</menuitem>."
msgstr ""
#. U2ETB
@@ -11158,6 +11833,15 @@ msgctxt ""
msgid "Optimal Row Height"
msgstr ""
+#. 7xEBE
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id231693934077822\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Optimal Row Height</menuitem>."
+msgstr ""
+
#. zvEoa
#: 00040500.xhp
msgctxt ""
@@ -11185,6 +11869,24 @@ msgctxt ""
msgid "Select rows in table, right-click, choose <menuitem>Size - Distribute Rows Evenly</menuitem>."
msgstr ""
+#. EM3Dk
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id871693934883186\n"
+"help.text"
+msgid "Choose <menuitem>Table - Optimize Size - Distribute Rows Evenly</menuitem>."
+msgstr ""
+
+#. mxHeK
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id71693934886355\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Distribute Rows Evenly</menuitem>."
+msgstr ""
+
#. aALKw
#: 00040500.xhp
msgctxt ""
@@ -11203,6 +11905,15 @@ msgctxt ""
msgid "Distribute Rows Evenly"
msgstr ""
+#. guJ5D
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id601693934906521\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Distribute Rows Evenly</menuitem>."
+msgstr ""
+
#. 8znyd
#: 00040500.xhp
msgctxt ""
@@ -11221,22 +11932,40 @@ msgctxt ""
msgid "Choose <menuitem>Format - Table - Minimal Column Width</menuitem>."
msgstr ""
-#. bqVXT
+#. B8wGB
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id941655738180090\n"
"help.text"
-msgid "Select columns in table, right-click, choose <menuitem>Size - Minimal Column Width</menuitem>."
+msgid "Choose <menuitem>Size - Minimal Column Width</menuitem>."
msgstr ""
-#. UvZy2
+#. fzeje
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id951693929823714\n"
+"help.text"
+msgid "Choose <menuitem>Table - Optimize Size - Minimal Column Width</menuitem>."
+msgstr ""
+
+#. eR9Di
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id401693929850221\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Minimal Column Width</menuitem>."
+msgstr ""
+
+#. mPGWr
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id11654222599271\n"
"help.text"
-msgid "<image src=\"cmd/lc_setminimalcolumnwidth.svg\" id=\"img_id541654222599271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451654222599271\">Minimal Column Width Icon</alt></image>"
+msgid "<image src=\"cmd/lc_setminimalcolumnwidth.svg\" id=\"img_id541654222599271\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451654222599271\">Icon Minimal Column Width</alt></image>"
msgstr ""
#. 4Vw5o
@@ -11248,6 +11977,15 @@ msgctxt ""
msgid "Minimal Column Width"
msgstr ""
+#. nmMze
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id621693929897206\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Minimal Column Width</menuitem>."
+msgstr ""
+
#. pNAs2
#: 00040500.xhp
msgctxt ""
@@ -11257,6 +11995,15 @@ msgctxt ""
msgid "Choose <menuitem>Table - Size - Optimal Column Width</menuitem>."
msgstr ""
+#. C57uS
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3145252\n"
+"help.text"
+msgid "Choose <emph>Format - Columns - Optimal Width</emph>."
+msgstr ""
+
#. RnQAg
#: 00040500.xhp
msgctxt ""
@@ -11266,13 +12013,67 @@ msgctxt ""
msgid "Choose <menuitem>Format - Table - Optimal Column Width</menuitem>."
msgstr ""
-#. hphNu
+#. Acgwj
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id701655738103242\n"
"help.text"
-msgid "Select columns in table, right-click, choose <menuitem>Size - Optimal Column Width</menuitem>."
+msgid "Choose <menuitem>Size - Optimal Column Width</menuitem>."
+msgstr ""
+
+#. SnWCz
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id701693944048858\n"
+"help.text"
+msgid "Select column, choose <menuitem>Optimal Width</menuitem>."
+msgstr ""
+
+#. CXtRA
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3146971\n"
+"help.text"
+msgid "Double-click right column separator in column headers."
+msgstr ""
+
+#. vrYLK
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id811693933748238\n"
+"help.text"
+msgid "Choose <menuitem>Table - Optimize Size - Optimal Column Width</menuitem>."
+msgstr ""
+
+#. SDeFF
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id21693933751244\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Optimal Column Width</menuitem>."
+msgstr ""
+
+#. GKhAP
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id181693944353293\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Column - Optimal Width</menuitem>."
+msgstr ""
+
+#. nhNGA
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id161693944357133\n"
+"help.text"
+msgid "Choose <menuitem>Home - Column - Optimal Width</menuitem>."
msgstr ""
#. C6MQK
@@ -11293,6 +12094,15 @@ msgctxt ""
msgid "Optimal Column Width"
msgstr ""
+#. GGFLv
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id191693933756189\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Optimal Column Width</menuitem>."
+msgstr ""
+
#. ow3LU
#: 00040500.xhp
msgctxt ""
@@ -11320,6 +12130,24 @@ msgctxt ""
msgid "<variable id=\"RightClickSize\">Select columns in table, right-click, choose <menuitem>Size - Distribute Columns Evenly</menuitem>.</variable>"
msgstr ""
+#. GGQDj
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id251693935084102\n"
+"help.text"
+msgid "Choose <menuitem>Table - Optimize Size - Distribute Columns Evenly</menuitem>."
+msgstr ""
+
+#. m3zZs
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id71693935087159\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Distribute Columns Evenly</menuitem>."
+msgstr ""
+
#. 7hd74
#: 00040500.xhp
msgctxt ""
@@ -11338,121 +12166,229 @@ msgctxt ""
msgid "Distribute Columns Evenly"
msgstr ""
-#. yUJ5g
+#. enV7F
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id191693935125855\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Distribute Columns Evenly</menuitem>."
+msgstr ""
+
+#. BBrvf
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3145356\n"
"help.text"
-msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph>.</variable>"
+msgid "Choose <menuitem>Format - Clear Direct Formatting</menuitem>."
+msgstr ""
+
+#. jzn4b
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id881690131939934\n"
+"help.text"
+msgid "Choose <menuitem>Home - Clear</menuitem>."
+msgstr ""
+
+#. Pj2BM
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id631690132081669\n"
+"help.text"
+msgid "Choose <menuitem>Draw - Clear</menuitem> (object selected)."
+msgstr ""
+
+#. 7Fmr7
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id741690132142121\n"
+"help.text"
+msgid "<image src=\"cmd/lc_resetattributes.svg\" id=\"img_id621690132142122\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21690132142123\">Icon Clear Direct Formatting</alt></image>"
+msgstr ""
+
+#. BuHiv
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id281690132142125\n"
+"help.text"
+msgid "Clear Direct Formatting"
+msgstr ""
+
+#. 2GUZr
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id71690131881708\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + M</keycode>"
msgstr ""
-#. Aw62P
+#. 6Ax7U
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153244\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph>."
+msgid "Choose <menuitem>Format - Character</menuitem>."
msgstr ""
-#. F9bk6
+#. tGtgC
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3152352\n"
+"par_id561690149044585\n"
"help.text"
-msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
+msgid "Select text, choose <menuitem>Character - Character</menuitem> (automatic spell checking must be disabled)."
msgstr ""
-#. rxcvE
+#. bB2LM
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3148998\n"
+"par_id11690146845549\n"
"help.text"
-msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Character</menuitem>."
msgstr ""
-#. AdBzN
+#. 5Rrey
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3149999\n"
+"par_id3151381\n"
"help.text"
-msgid "Character"
-msgstr "ባህሪ"
+msgid "Open the <menuitem>Styles</menuitem> deck, select a paragraph style, open context menu and choose <menuitem>New</menuitem> or <menuitem>Edit Style</menuitem>."
+msgstr ""
-#. 9bAAs
+#. AM5WA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3153935\n"
+"par_id641690149070500\n"
"help.text"
-msgid "Choose <emph>Format - Character - Font</emph> tab."
+msgid "Select a text object, choose <menuitem>Character</menuitem>."
msgstr ""
-#. hT4Cf
+#. rFqQM
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3157958\n"
+"par_id11690147845549\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab."
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Character</menuitem>."
msgstr ""
-#. vEDDL
+#. bqu57
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3155338\n"
+"par_id741690149075667\n"
+"help.text"
+msgid "Select a text object, choose <menuitem>Character</menuitem>."
+msgstr ""
+
+#. VFuRE
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id11690145845549\n"
"help.text"
-msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab."
+msgid "On the <menuitem>Text</menuitem> menu of the <menuitem>Text</menuitem> tab, choose <menuitem>Character</menuitem>."
msgstr ""
-#. 4dCFB
+#. nRHQB
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id741691149075667\n"
+"help.text"
+msgid "Select text when editing a cell, choose <menuitem>Character</menuitem>."
+msgstr ""
+
+#. LbNGm
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3148998\n"
+"help.text"
+msgid "<image id=\"img_id3154894\" src=\"cmd/lc_fontdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154894\">Icon Character</alt></image>"
+msgstr ""
+
+#. AdBzN
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3149999\n"
+"help.text"
+msgid "Character"
+msgstr "ባህሪ"
+
+#. 6Zxxm
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3154749\n"
+"help.text"
+msgid "Choose <menuitem>Format - Cells - Font</menuitem> tab."
+msgstr ""
+
+#. 3AwnD
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3156306\n"
+"help.text"
+msgid "Menu <menuitem>Format - Page Style - Header/Footer</menuitem> - <emph>Edit</emph> button."
+msgstr ""
+
+#. kk6Tu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150355\n"
"help.text"
-msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)."
+msgid "Choose <emph>Format - Title - Character</emph> tab."
msgstr ""
-#. nV4EJ
+#. 6FcA5
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149812\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)."
+msgid "Choose <emph>Format - Legend - Character</emph> tab."
msgstr ""
-#. Z93Az
+#. VJ2N2
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153717\n"
"help.text"
-msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)."
+msgid "Choose <emph>Format - Axis - Character</emph> tab."
msgstr ""
-#. QhGCy
+#. B9wLB
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3154749\n"
+"par_id3153935\n"
"help.text"
-msgid "Choose <emph>Format - Cells - Font</emph> tab (spreadsheets)."
+msgid "Choose <menuitem>Format - Character - Font</menuitem> tab."
msgstr ""
-#. UqWpS
+#. mHGD4
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3156306\n"
+"par_id211690148229365\n"
"help.text"
-msgid "Menu <menuitem>Format - Page Style - Header/Footer</menuitem> - <emph>Edit</emph> button (spreadsheets)."
+msgid "Select the <menuitem>Styles</menuitem> deck, open context menu of a style, choose <menuitem>Edit Style - Font</menuitem> tab."
msgstr ""
#. f7aHb
@@ -11464,13 +12400,13 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Font Effects</emph> tab."
msgstr ""
-#. s38Vy
+#. EzeAG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149819\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Font Effects</menuitem> tab."
msgstr ""
#. 5k7D4
@@ -11491,13 +12427,13 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Position</emph> tab."
msgstr ""
-#. 6HCVo
+#. re2Jo
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3159256\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and click <menuitem>New/Edit Style - Alignment</menuitem> tab."
msgstr ""
#. E3vEQ
@@ -11518,13 +12454,13 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
msgstr "ይምረጡ <emph> አቀራረብ - ባህሪ - የ እስያን እቅድ </emph> tab"
-#. 7AAUS
+#. Js3EY
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3152811\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and click <menuitem>New/Edit Style - Asian Layout</menuitem> tab."
msgstr ""
#. 4ZZLP
@@ -11545,13 +12481,13 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Asian Typography</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. cJhf6
+#. JvDhw
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148742\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab."
+msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and click <emph>New/Edit Style - Asian Typography</emph> tab."
msgstr ""
#. DGFGA
@@ -11572,14 +12508,32 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph</emph>."
msgstr ""
-#. zc5tA
+#. BhFyb
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3151381\n"
+"par_id131690634671867\n"
+"help.text"
+msgid "Place cursor in paragraph, choose <menuitem>Paragraph - Paragraph</menuitem>."
+msgstr ""
+
+#. cEepZ
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id221690634561129\n"
"help.text"
-msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
-msgstr "በ <emph>ጽሁፍ አቀራረብ</emph> መደርደሪያ ላይ (በ መጠቆሚያው እቃውን), ይጫኑ"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, select <menuitem>Paragraph</menuitem>."
+msgstr ""
+
+#. hGCDg
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id3152381\n"
+"help.text"
+msgid "Open the <menuitem>Styles</menuitem> deck, select a paragraph style, open context menu and choose <menuitem>New</menuitem> or <menuitem>Edit Style</menuitem>."
+msgstr ""
#. rQ9Bt
#: 00040500.xhp
@@ -11608,13 +12562,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab."
msgstr ""
-#. 76KRT
+#. CXUEv
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3147352\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Alignment</menuitem> tab."
msgstr ""
#. EF6ft
@@ -11626,13 +12580,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab."
msgstr ""
-#. XSjyi
+#. gXtQE
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3152463\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Indents & Spacing</menuitem> tab."
msgstr ""
#. iqEQr
@@ -11644,13 +12598,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab."
msgstr ""
-#. cnwp8
+#. uUAL3
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154833\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Tabs</menuitem> tab."
msgstr ""
#. iG9GL
@@ -11716,13 +12670,13 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Borders</emph> tab."
msgstr ""
-#. 2JCBU
+#. sVELu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149911\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Borders</menuitem> tab."
msgstr ""
#. cBspq
@@ -11833,13 +12787,13 @@ msgctxt ""
msgid "Choose <emph>Format - Page Style - Footer - More</emph> button."
msgstr ""
-#. RKBDo
+#. 32peT
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153532\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Background</menuitem> tab."
msgstr ""
#. nLzZW
@@ -11878,13 +12832,13 @@ msgctxt ""
msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
msgstr ""
-#. 8xdE8
+#. TKKxc
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>Modify/New - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
msgstr ""
#. oZUMH
@@ -11896,13 +12850,13 @@ msgctxt ""
msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
msgstr ""
-#. Y2ck5
+#. BH2ZC
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>Modify/New - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
msgstr ""
#. 5tDj9
@@ -11914,13 +12868,13 @@ msgctxt ""
msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
msgstr ""
-#. HE8gX
+#. Vrudd
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>Modify/New - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
msgstr ""
#. rSUuK
@@ -11932,13 +12886,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. nMbj6
+#. SD3aA
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>Modify/New - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
msgstr ""
#. eEUQg
@@ -11968,13 +12922,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Page Style - Page</menuitem> tab."
msgstr ""
-#. gMqXo
+#. 8ADWa
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154362\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <emph>Modify/New - Page</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <menuitem>New/Edit Style - Page</menuitem> tab."
msgstr ""
#. cgX2W
@@ -11986,13 +12940,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Page Style - Page</menuitem> tab."
msgstr ""
-#. GF8Ps
+#. L2Nvp
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id31543624680\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <emph>Modify/New - Page</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of a page style entry and choose <menuitem>New/Edit Style - Page</menuitem> tab."
msgstr ""
#. iCz7o
@@ -12013,13 +12967,13 @@ msgctxt ""
msgid "Choose <emph>Format - Page Style - Header</emph> tab."
msgstr ""
-#. jZj9w
+#. XUj64
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148405\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of a page style entry and choose <emph>Modify/New - Header</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of a page style entry and choose <menuitem>New/Edit Style - Header</menuitem> tab."
msgstr ""
#. nJY9z
@@ -12031,13 +12985,13 @@ msgctxt ""
msgid "Choose <emph>Format - Page Style - Footer</emph> tab."
msgstr ""
-#. 5gs5x
+#. VYpNY
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3155175\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Footer</menuitem> tab."
msgstr ""
#. LUBTb
@@ -12184,40 +13138,67 @@ msgctxt ""
msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab.</variable>"
msgstr ""
-#. 2GPzi
+#. eeoek
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3145220\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>."
+msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem>."
msgstr ""
-#. GmdFv
+#. iEhGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id761616160771224\n"
"help.text"
-msgid "Right-click a paragraph, choose <menuitem>List - Bullets and Numbering</menuitem>."
+msgid "Choose <menuitem>List - Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. WGobM
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id51690931786955\n"
+"help.text"
+msgid "Choose <menuitem>Text</menuitem> - long click on bullet, numbering and outline icons, choose <menuitem>Customize</menuitem>."
+msgstr ""
+
+#. CtoXr
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id761690931793457\n"
+"help.text"
+msgid "Choose <menuitem>Home</menuitem> - long click on bullet, numbering and outline icons, choose <menuitem>Customize</menuitem>."
+msgstr ""
+
+#. JQBhp
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id741690929264495\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Bullets and Numbering</menuitem>."
msgstr ""
-#. N8NwQ
+#. BThvn
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3148771\n"
+"par_id571690928716928\n"
"help.text"
-msgid "On <emph>Formatting</emph> bar, click"
+msgid "Place cursor on a heading, click on the <menuitem>Outline</menuitem> area."
msgstr ""
-#. sQFWD
+#. Z54Yo
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149445\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
+msgid "<image id=\"img_id3149964\" src=\"cmd/lc_bulletsandnumberingdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149964\">Bullets and Numbering dialog Icon</alt></image>"
msgstr ""
#. BPPZD
@@ -12229,6 +13210,24 @@ msgctxt ""
msgid "Bullets and Numbering"
msgstr ""
+#. a7vEB
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id101690929527350\n"
+"help.text"
+msgid "<image src=\"cmd/lc_defaultbullet.svg\" id=\"img_id711690929527351\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id921690929527352\">Default bullet</alt></image> <image src=\"cmd/lc_defaultnumbering.svg\" id=\"img_id141690929565394\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311690929565395\">Default numbering</alt></image> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><image src=\"cmd/lc_setoutline.svg\" id=\"img_id111690929576033\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821690929576034\">Set outline</alt></image></caseinline></switchinline>"
+msgstr ""
+
+#. 5BJ2Q
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id861690929510655\n"
+"help.text"
+msgid "Long click and select <menuitem>Customize</menuitem>."
+msgstr ""
+
#. XAbBj
#: 00040500.xhp
msgctxt ""
@@ -12238,112 +13237,175 @@ msgctxt ""
msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem>. <switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Customize</emph> tab page.</caseinline></switchinline>"
msgstr ""
-#. y4rGF
+#. A2s9s
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3150785\n"
"help.text"
-msgid "Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>."
+msgid "Open <menuitem>Styles - Presentation Styles</menuitem> - context menu of an Outline Style - choose <menuitem>New/Edit Style</menuitem>."
msgstr ""
-#. pC5yB
+#. fRoS3
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3148420\n"
"help.text"
-msgid "Open <menuitem>Styles - List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Modify</menuitem>."
+msgid "Open <menuitem>Styles - List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style</menuitem>."
msgstr ""
-#. Mx4EM
+#. gC75r
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3148888\n"
+"par_id701692447925387\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab."
+msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Unordered</menuitem>."
msgstr ""
-#. bYrZa
+#. 2JG8k
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149917\n"
"help.text"
-msgid "Open <emph>Styles - Presentation Styles</emph> - context menu of an Outline Style - choose <emph>New/Modify</emph>."
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem> - Presentation Styles</menuitem> - context menu of an outline style - choose <menuitem>Edit Styles - Bullets</menuitem> tab."
+msgstr ""
+
+#. d5XDX
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id541692447574919\n"
+"help.text"
+msgid "Open <menuitem>Format - Paragraph - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Unordered</menuitem> tab."
msgstr ""
-#. ZPMxH
+#. eSXpi
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154930\n"
"help.text"
-msgid "Open <emph>Styles - List Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph>."
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Unordered</menuitem> tab."
msgstr ""
-#. n79tw
+#. Fj4a4
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3156011\n"
+"par_id581692448797689\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a Presentation Style (except Background) - choose <menuitem>New/Modify - Numbering</menuitem> tab."
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Unordered</menuitem> tab."
msgstr ""
-#. tbLJG
+#. EvpKg
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3150862\n"
+"par_id751692451544221\n"
"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering - Ordered</menuitem> tab."
+msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Ordered</menuitem>."
msgstr ""
-#. Rak4H
+#. MEHMj
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3129011\n"
+"par_id461692451557838\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Presentation Styles</menuitem> - context menu of an outline style - choose <menuitem>Edit Styles - Numbering</menuitem> tab."
msgstr ""
-#. 2XAFx
+#. T5esN
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3146019\n"
+"par_id441692451564694\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - context menu of a List Style - choose <menuitem>New/Modify - Ordered</menuitem> tab."
+msgid "Open <menuitem>Format - Paragraph - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Ordered</menuitem> tab."
msgstr ""
-#. 4AKhs
+#. Gsnpp
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id0611200904324832\n"
+"par_id561692451570660\n"
"help.text"
-msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Image</emph> tab.</variable>"
+msgid "Open <menuitem>Styles</menuitem>(<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Ordered</menuitem> tab."
msgstr ""
-#. CwE3e
+#. GpfYs
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3155848\n"
+"par_id831692451574766\n"
"help.text"
-msgid "Choose <menuitem>Format - Bullets and Numbering - Outline</menuitem> tab."
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Ordered</menuitem> tab."
msgstr ""
-#. 8cr6F
+#. udMRP
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3148733\n"
+"par_id461692538170299\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - context menu of a List Style entry - choose <emph>New/Modify</emph>.</caseinline></switchinline>"
+msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Image</menuitem>."
+msgstr ""
+
+#. zhzWi
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id951692538295900\n"
+"help.text"
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Ordered</menuitem> tab."
+msgstr ""
+
+#. Ca4EQ
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id1001692538299731\n"
+"help.text"
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Ordered</menuitem> tab."
+msgstr ""
+
+#. Cv44L
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id351692452437726\n"
+"help.text"
+msgid "Open the <link href=\"text/shared/01/06050000.xhp\"><menuitem>Bullets and Numbering</menuitem></link> dialog, select <menuitem>Outline</menuitem>."
+msgstr ""
+
+#. n6yAV
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id551692453786548\n"
+"help.text"
+msgid "Open <menuitem>Format - Paragraph - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Outline</menuitem> tab."
+msgstr ""
+
+#. HDBij
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id521692453821157\n"
+"help.text"
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- List Styles</menuitem> - context menu of an entry - choose <menuitem>New/Edit Style - Outline</menuitem> tab."
+msgstr ""
+
+#. K9VTd
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id61692453824913\n"
+"help.text"
+msgid "Open <menuitem>Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) <menuitem>- Paragraph Styles</menuitem>, context menu of an entry - choose <menuitem>New/Edit Style - Outline & List</menuitem>, click on <widget>Edit Style</widget> - <menuitem>Outline</menuitem> tab."
msgstr ""
#. gfMdA
@@ -12355,22 +13417,22 @@ msgctxt ""
msgid "Choose <menuitem>Format - Bullets and Numbering</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. DVZRw
+#. iadHd
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153812\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose List Styles - context menu of an entry - choose <menuitem>New/Edit Style</menuitem> - <emph>Position</emph> tab."
msgstr ""
-#. t8uTF
+#. RKRb9
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3153899\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Modify</menuitem> - <emph>Position</emph> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - choose List Styles - context menu of an entry - choose <menuitem>New/Edit Style</menuitem> - <emph>Position</emph> tab."
msgstr ""
#. 6g732
@@ -12382,6 +13444,15 @@ msgctxt ""
msgid "Choose <menuitem>Tools - Heading Numbering - Position</menuitem> tab."
msgstr ""
+#. xAsWk
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id181692821721184\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Crop</menuitem>."
+msgstr ""
+
#. 8AtZC
#: 00040500.xhp
msgctxt ""
@@ -12391,22 +13462,40 @@ msgctxt ""
msgid "Menu <emph>Format - Image - Properties - Crop</emph> tab."
msgstr ""
-#. eREMF
+#. 4gxtD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
-"par_id3153317\n"
+"par_id611692821136322\n"
"help.text"
-msgid "Icon on the <emph>Image</emph> toolbar:"
+msgid "Choose <menuitem>Crop</menuitem>."
msgstr ""
-#. aUN2G
+#. bMDBi
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id911692821238429\n"
+"help.text"
+msgid "Choose <menuitem>Image - Crop</menuitem>."
+msgstr ""
+
+#. qpGvB
+#: 00040500.xhp
+msgctxt ""
+"00040500.xhp\n"
+"par_id421692821243144\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Crop</menuitem>."
+msgstr ""
+
+#. vEarG
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3149953\n"
"help.text"
-msgid "<image id=\"img_id3155092\" src=\"cmd/lc_crop.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155092\">Icon Crop</alt></image>"
+msgid "<image id=\"img_id3155092\" src=\"cmd/lc_crop.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155092\">Icon Crop</alt></image>"
msgstr ""
#. Qs4bZ
@@ -12913,40 +14002,67 @@ msgctxt ""
msgid "Wizards On/Off"
msgstr "አዋቂዎች ማብሪያ/ማጥፊያ"
-#. ZMozw
+#. fPRfW
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id3154023\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Arrange</menuitem>."
+msgstr ""
+
+#. DX4kV
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3147244\n"
"help.text"
-msgid "Choose <emph>Format - Arrange</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Format - Arrange</menuitem>."
msgstr ""
-#. BJj2z
+#. FQFFM
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3159334\n"
"help.text"
-msgid "Open context menu - choose <emph>Arrange</emph> ($[officename] Impress, $[officename] Draw)."
+msgid "Choose <menuitem>Arrange</menuitem>."
msgstr ""
-#. zzpRV
+#. f2WMS
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154023\n"
+"par_id461693050281467\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Image</menuitem> tab."
msgstr ""
-#. gqcDq
+#. RzBt5
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id231693052690073\n"
+"help.text"
+msgid "Choose <menuitem>Object</menuitem> tab."
+msgstr ""
+
+#. uMFQM
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id1001693061741757\n"
+"help.text"
+msgid "Choose <menuitem>Home - Arrange</menuitem>."
+msgstr ""
+
+#. vGKDE
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3155578\n"
"help.text"
-msgid "<image id=\"img_id3109842\" src=\"cmd/sc_bringtofront.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3109842\">Icon Arrange</alt></image>"
+msgid "<image id=\"img_id3109842\" src=\"cmd/lc_bringtofront.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3109842\">Icon Arrange</alt></image>"
msgstr ""
#. jwdWP
@@ -12958,40 +14074,67 @@ msgctxt ""
msgid "Arrange"
msgstr "ማዘጋጃ"
-#. qziC8
+#. PDGdp
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3148459\n"
+"par_id821693051492389\n"
"help.text"
-msgid "Choose <emph>Format - Arrange - Bring to Front</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Shape - Arrange - Bring to Front</menuitem>."
msgstr ""
-#. DYFCd
+#. LsQNv
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3148425\n"
+"par_id171693051496885\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange - Bring to Front</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Format - Arrange - Bring to Front</menuitem>."
msgstr ""
-#. WE9Pd
+#. FmKDD
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3153268\n"
+"par_id591693052424325\n"
"help.text"
-msgid "<emph>Shift</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>plus</emph> sign ($[officename] Impress, $[officename] Draw)."
+msgid "Choose <menuitem>Arrange - Bring to Front</menuitem>."
msgstr ""
-#. D6WN7
+#. ASMKW
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154206\n"
+"par_id761693052478957\n"
"help.text"
-msgid "Open context menu - choose <emph>Arrange - Bring to Front</emph> ($[officename] Impress)."
+msgid "Choose <menuitem>Image - Bring to Front</menuitem>."
+msgstr ""
+
+#. dydpN
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id861693052669953\n"
+"help.text"
+msgid "Choose <menuitem>Object - Bring to Front</menuitem>"
+msgstr ""
+
+#. LAiGf
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id541693061822569\n"
+"help.text"
+msgid "Choose <menuitem>Home - Arrange - Bring to Front</menuitem>."
+msgstr ""
+
+#. xqoHq
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id3153268\n"
+"help.text"
+msgid "<keycode>Shift</keycode> + <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>plus</keycode> sign."
msgstr ""
#. HPFLD
@@ -13012,49 +14155,103 @@ msgctxt ""
msgid "Bring to Front"
msgstr "ወደ ፊት ማምጫ"
-#. GqevU
+#. srWYS
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id121693056018199\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Arrange - Bring Forward</menuitem>."
+msgstr ""
+
+#. g2xAf
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id41693056021228\n"
+"help.text"
+msgid "Choose <menuitem>Arrange - Bring Forward</menuitem>."
+msgstr ""
+
+#. G4XjD
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id961693056192746\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>plus</keycode> sign."
+msgstr ""
+
+#. 36Yc6
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3147092\n"
+"par_id131693056023742\n"
"help.text"
-msgid "Choose <emph>Format - Arrange - Bring Forward</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Image - Bring Forward</menuitem>."
msgstr ""
-#. aMRva
+#. 4mhc2
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3148396\n"
+"par_id581693056028175\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange - Bring Forward</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Object - Bring Forward</menuitem>."
msgstr ""
-#. 3CxUb
+#. wrfZW
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3149528\n"
+"par_id331693061557858\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+plus sign ($[officename] Impress, $[officename] Draw)"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+መቀነሻ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgid "Choose <menuitem>Home - Arrange - Bring Forward</menuitem>."
+msgstr ""
-#. sEc4z
+#. Fo4mk
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154658\n"
+"par_id11693056030774\n"
"help.text"
-msgid "Open context menu - choose <emph>Arrange - Bring Forward</emph> ($[officename] Impress)."
+msgid "Choose <menuitem>Format - Arrange - Forward One</menuitem>."
msgstr ""
-#. TSeCV
+#. oGHCB
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id561693056033678\n"
+"help.text"
+msgid "Choose <menuitem>Arrange - Forward One</menuitem>."
+msgstr ""
+
+#. aoDmx
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id621693056036470\n"
+"help.text"
+msgid "Choose <menuitem>Image - Forward One</menuitem>."
+msgstr ""
+
+#. mEDa8
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id691693056039286\n"
+"help.text"
+msgid "Choose <menuitem>Object - Forward One</menuitem>."
+msgstr ""
+
+#. AWfrw
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3159121\n"
"help.text"
-msgid "<image id=\"img_id3156142\" src=\"cmd/sc_forward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156142\">Icon Bring Forward</alt></image>"
+msgid "<image id=\"img_id3156142\" src=\"cmd/lc_forward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156142\">Icon Bring Forward</alt></image>"
msgstr ""
#. P9V6A
@@ -13066,49 +14263,103 @@ msgctxt ""
msgid "Bring Forward"
msgstr "ወደ ፊት ለ ፊት ማምጫ"
-#. wkLnv
+#. cqnWG
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id181693053501533\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Arrange - Send Backward</menuitem>."
+msgstr ""
+
+#. BxAyW
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id651693053507310\n"
+"help.text"
+msgid "Choose <menuitem>Arrange - Send Backward</menuitem>."
+msgstr ""
+
+#. k6EtT
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id891693053637753\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>minus</keycode> sign."
+msgstr ""
+
+#. XxsS7
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id131693053510310\n"
+"help.text"
+msgid "Choose <menuitem>Image - Send Backward</menuitem>."
+msgstr ""
+
+#. 9bCuY
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id201693055365731\n"
+"help.text"
+msgid "Choose <menuitem>Object - Send Backward</menuitem>."
+msgstr ""
+
+#. u2rEP
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154815\n"
+"par_id51693061505782\n"
"help.text"
-msgid "Choose <emph>Format - Arrange - Send Backward</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Home - Arrange - Send Backward</menuitem>."
msgstr ""
-#. yfLSs
+#. dzpKK
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3150428\n"
+"par_id201693053504302\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange - Send Backward</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Format - Arrange - Back One</menuitem>."
msgstr ""
-#. uc68f
+#. 5CJUR
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3156064\n"
+"par_id971693055640316\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+minus sign ($[officename] Impress, $[officename] Draw)"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+መቀነሻ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgid "Choose <menuitem>Arrange - Back One</menuitem>."
+msgstr ""
+
+#. eEWFC
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id141693055643252\n"
+"help.text"
+msgid "Choose <menuitem>Image - Back One</menuitem>."
+msgstr ""
-#. D2F6v
+#. WZ7uE
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3159107\n"
+"par_id321693055339193\n"
"help.text"
-msgid "Open context menu - choose <emph>Arrange - Send Backward</emph> ($[officename] Impress)."
+msgid "Choose <menuitem>Object - Back One</menuitem>."
msgstr ""
-#. BQhNe
+#. tPyQs
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3152994\n"
"help.text"
-msgid "<image id=\"img_id3163723\" src=\"cmd/sc_backward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163723\">Icon Send Backward</alt></image>"
+msgid "<image id=\"img_id3163723\" src=\"cmd/lc_backward.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3163723\">Icon Send Backward</alt></image>"
msgstr ""
#. WKKNG
@@ -13120,49 +14371,76 @@ msgctxt ""
msgid "Send Backward"
msgstr "ወደ ኋላ መላኪያ"
-#. TdyFq
+#. Jg6Cs
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id81693053842495\n"
+"help.text"
+msgid "Choose <menuitem>Shape - Arrange - Send to Back</menuitem>."
+msgstr ""
+
+#. W3Xsr
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id381693053845326\n"
+"help.text"
+msgid "Choose <menuitem>Format - Arrange - Send to Back</menuitem>."
+msgstr ""
+
+#. 4it9a
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3149493\n"
+"par_id761693053847950\n"
"help.text"
-msgid "Choose <emph>Format - Arrange - Send to Back</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Arrange - Send to Back</menuitem>."
msgstr ""
-#. 5pzCr
+#. xAyVd
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3148595\n"
+"par_id811693053850566\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange - Send to Back</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Image - Send to Back</menuitem>."
msgstr ""
-#. cG5R9
+#. PUnXv
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3150690\n"
+"par_id511693053853207\n"
"help.text"
-msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+minus sign ($[officename] Impress, $[officename] Draw)"
-msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+መቀነስ ምልክት ($[officename] ማስደነቂያ, $[officename] መሳያ)"
+msgid "Choose <menuitem>Object - Send to Back</menuitem>"
+msgstr ""
+
+#. cEQnR
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id641693061917531\n"
+"help.text"
+msgid "Choose <menuitem>Home - Arrange - Send to Back</menuitem>."
+msgstr ""
-#. NkXED
+#. bmdEW
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154486\n"
+"par_id591693053858407\n"
"help.text"
-msgid "Open context menu - choose <emph>Arrange - Send to Back</emph> ($[officename] Impress)."
+msgid "<keycode>Shift</keycode> + <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline> + <keycode>minus</keycode> sign."
msgstr ""
-#. A873M
+#. K5oKD
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3145384\n"
"help.text"
-msgid "<image id=\"img_id3153813\" src=\"cmd/sc_sendtoback.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153813\">Icon Send to Back</alt></image>"
+msgid "<image id=\"img_id3153813\" src=\"cmd/lc_sendtoback.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153813\">Icon Send to Back</alt></image>"
msgstr ""
#. mH2tS
@@ -13183,13 +14461,13 @@ msgctxt ""
msgid "Choose <emph>Format - Arrange - To Foreground</emph>."
msgstr ""
-#. G2AjB
+#. wL9Mg
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<image id=\"img_id3155129\" src=\"cmd/sc_setobjecttoforeground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155129\">Icon To Foreground</alt></image>"
+msgid "<image id=\"img_id3155129\" src=\"cmd/lc_setobjecttoforeground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155129\">Icon To Foreground</alt></image>"
msgstr ""
#. 4ahEr
@@ -13210,13 +14488,13 @@ msgctxt ""
msgid "Choose <emph>Format - Arrange - To Background</emph>."
msgstr ""
-#. FQRn8
+#. Z68QV
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<image id=\"img_id3154954\" src=\"cmd/sc_setobjecttobackground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154954\">Icon To Background</alt></image>"
+msgid "<image id=\"img_id3154954\" src=\"cmd/lc_setobjecttobackground.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154954\">Icon To Background</alt></image>"
msgstr ""
#. rCVpM
@@ -13228,31 +14506,13 @@ msgctxt ""
msgid "To Background"
msgstr "ወደ መደቡ"
-#. bbLzP
+#. GCo9N
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3146854\n"
"help.text"
-msgid "Choose <emph>Format - Align</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
-
-#. kcWEi
-#: 00040501.xhp
-msgctxt ""
-"00040501.xhp\n"
-"par_id3153914\n"
-"help.text"
-msgid "Choose <emph>Shape - Align</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
-
-#. 8n9qi
-#: 00040501.xhp
-msgctxt ""
-"00040501.xhp\n"
-"par_id3153185\n"
-"help.text"
-msgid "Open context menu - choose <emph>Align</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
+msgid "Choose <menuitem>Format - Align Text</menuitem>."
msgstr ""
#. TpsPU
@@ -13399,256 +14659,319 @@ msgctxt ""
msgid "Right"
msgstr "በ ቀኝ"
-#. 2bRxW
+#. peVjJ
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3153109\n"
"help.text"
-msgid "Choose <emph>Format - Align - Top</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Format - Align Text - Top</menuitem>."
msgstr ""
-#. 4ZwPY
+#. X8Fnj
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3150213\n"
+"par_id3155386\n"
"help.text"
-msgid "Choose <emph>Shape - Align - Top</emph> (objects selected) ($[officename] Draw)."
+msgid "<image id=\"img_id3155542\" src=\"cmd/lc_aligntop.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155542\">Icon Top</alt></image>"
msgstr ""
-#. TKQg7
+#. WFtRg
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3155093\n"
+"par_id3157550\n"
"help.text"
-msgid "Open context menu - choose <emph>Align - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgid "Top"
+msgstr "ከ ላይ"
-#. ptXRN
+#. 5W8qc
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3151303\n"
+"par_id3153976\n"
"help.text"
-msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
+msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
msgstr ""
-#. eYWWR
+#. x2RAB
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3155386\n"
+"par_id3145755\n"
"help.text"
-msgid "<image id=\"img_id3155542\" src=\"cmd/sc_alignup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155542\">Icon Top</alt></image>"
+msgid "<image id=\"img_id3146776\" src=\"cmd/sc_alignverticalcenter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146776\">Icon Centered</alt></image>"
msgstr ""
-#. WFtRg
+#. NYgDY
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3157550\n"
+"par_id3146943\n"
"help.text"
-msgid "Top"
-msgstr "ከ ላይ"
+msgid "Centered"
+msgstr "መሀከል"
-#. A4T4G
+#. m8mTY
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3153976\n"
+"par_id3149896\n"
"help.text"
-msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <menuitem>Format - Align Text - Bottom</menuitem>."
msgstr ""
-#. ZYyu9
+#. LtmXu
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3153246\n"
+"par_id3154057\n"
"help.text"
-msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
+msgid "<image id=\"img_id3147267\" src=\"cmd/lc_alignbottom.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147267\">Icon Bottom</alt></image>"
msgstr ""
-#. gFmHK
+#. rkNkG
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154614\n"
+"par_id3145601\n"
"help.text"
-msgid "Open context menu - choose <emph>Align - Centered</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
+msgid "Bottom"
+msgstr "ከ ታች"
+
+#. vvDEN
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id3145197\n"
+"help.text"
+msgid "Choose <menuitem>Format - Anchor</menuitem>."
msgstr ""
-#. 7FTrD
+#. pGQXt
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3149196\n"
+"par_id671653364659217\n"
"help.text"
-msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
+msgid "Right-click on a selected object - choose <menuitem>Anchor</menuitem>."
msgstr ""
-#. RgieQ
+#. DcsgR
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3145755\n"
+"par_id3151122\n"
"help.text"
-msgid "<image id=\"img_id3146776\" src=\"cmd/sc_aligncenter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146776\">Icon Centered</alt></image>"
+msgid "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145357\">Icon Anchor</alt></image>"
msgstr ""
-#. NYgDY
+#. MTXwp
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3146943\n"
+"par_id3154763\n"
"help.text"
-msgid "Centered"
-msgstr "መሀከል"
+msgid "Anchor"
+msgstr ""
-#. bHB3P
+#. CWScz
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3149896\n"
+"par_id3148899\n"
"help.text"
-msgid "Choose <emph>Format - Align - Bottom</emph> ($[officename] Writer, $[officename] Calc)."
+msgid "Choose <emph>Format - Anchor - To Page</emph>."
msgstr ""
-#. HAKcr
+#. qHADm
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3156049\n"
+"par_id641692905620681\n"
"help.text"
-msgid "Choose <emph>Shape - Align - Bottom</emph> (objects selected) ($[officename] Draw)."
+msgid "Choose <menuitem>Anchor - To Page</menuitem>."
msgstr ""
-#. QWWtV
+#. GYkFR
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3152545\n"
+"par_id291692905625594\n"
"help.text"
-msgid "On <emph>Align</emph> bar ($[officename] Impress, $[officename] Draw), click"
+msgid "Choose <menuitem>Image - Anchor menu - To Page</menuitem>."
msgstr ""
-#. DcDSM
+#. mhRwr
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154057\n"
+"par_id3149342\n"
"help.text"
-msgid "<image id=\"img_id3147267\" src=\"cmd/sc_aligndown.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147267\">Icon Bottom</alt></image>"
+msgid "Choose <emph>Format - Anchor - To Paragraph</emph>."
msgstr ""
-#. rkNkG
+#. te5DN
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3145601\n"
+"par_id281692905786439\n"
"help.text"
-msgid "Bottom"
-msgstr "ከ ታች"
+msgid "Choose <menuitem>Anchor - To Paragraph</menuitem>."
+msgstr ""
-#. U43HB
+#. fpiGx
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3145197\n"
+"par_id951692905792648\n"
"help.text"
-msgid "For a selected object, choose <menuitem>Format - Anchor</menuitem>."
+msgid "Choose <menuitem>Image - Anchor menu - To Paragraph</menuitem>."
msgstr ""
-#. pGQXt
+#. v2CBa
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id671653364659217\n"
+"par_id3155147\n"
"help.text"
-msgid "Right-click on a selected object - choose <menuitem>Anchor</menuitem>."
+msgid "Choose <emph>Format - Anchor - To Character</emph>."
msgstr ""
-#. nazhG
+#. ZnT5t
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id2851649\n"
+"par_id201692905935268\n"
"help.text"
-msgid "On <menuitem>Drawing Object Properties</menuitem> bar<switchinline select=\"appl\"><caseinline select=\"CALC\">, <menuitem>Image</menuitem> bar</caseinline><caseinline select=\"WRITER\">, <menuitem>Frame</menuitem> bar, <menuitem>OLE Objects</menuitem> bar</caseinline></switchinline> or <menuitem>Form Design</menuitem> bar, click"
+msgid "Choose <menuitem>Anchor - To Character</menuitem>."
msgstr ""
-#. DcsgR
+#. HXuiA
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3151122\n"
+"par_id871692905938851\n"
"help.text"
-msgid "<image id=\"img_id3145357\" src=\"cmd/sc_toggleanchortype.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145357\">Icon Anchor</alt></image>"
+msgid "Choose <menuitem>Image - Anchor menu - To Character</menuitem>."
msgstr ""
-#. MTXwp
+#. EXBHw
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3154763\n"
+"par_id3153042\n"
"help.text"
-msgid "Anchor"
+msgid "Choose <emph>Format - Anchor - As Character</emph>."
msgstr ""
-#. Y2HFo
+#. AVsJG
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3148899\n"
+"par_id501692906043548\n"
"help.text"
-msgid "<variable id=\"to-page\">Choose <emph>Format - Anchor - To Page</emph>.</variable>"
+msgid "Choose <menuitem>Anchor - As Character</menuitem>."
msgstr ""
-#. RW78d
+#. sXytR
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3149342\n"
+"par_id261692906046950\n"
"help.text"
-msgid "<variable id=\"to-paragraph\">Choose <emph>Format - Anchor - To Paragraph</emph>.</variable>"
+msgid "Choose <menuitem>Image - Anchor menu - As Character</menuitem>."
msgstr ""
-#. HHMcF
+#. 2HeF4
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3155147\n"
+"par_id3146964\n"
"help.text"
-msgid "<variable id=\"to-character\">Choose <emph>Format - Anchor - To Character</emph>.</variable>"
+msgid "Choose <emph>Format - Anchor - To Frame</emph>."
msgstr ""
-#. 6Fm2P
+#. 6CeJD
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3153042\n"
+"par_id811692906277044\n"
"help.text"
-msgid "<variable id=\"as-character\">Choose <emph>Format - Anchor - As Character</emph>.</variable>"
+msgid "Choose <menuitem>Anchor - To Frame</menuitem>."
msgstr ""
-#. V2QAS
+#. KDBrK
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
-"par_id3146964\n"
+"par_id381692906280460\n"
"help.text"
-msgid "<variable id=\"to-frame\">Choose <emph>Format - Anchor - To Frame</emph>.</variable>"
+msgid "Choose <menuitem>Image - Anchor menu - To Frame</menuitem>."
msgstr ""
-#. qR6aB
+#. e2Bkw
#: 00040501.xhp
msgctxt ""
"00040501.xhp\n"
"par_id3150781\n"
"help.text"
-msgid "<variable id=\"to-cell\">Choose <emph>Format - Anchor - To Cell</emph>.</variable>"
+msgid "Choose <emph>Format - Anchor - To Cell</emph>."
+msgstr ""
+
+#. LzwVf
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id821692906792439\n"
+"help.text"
+msgid "Choose <menuitem>Anchor - To Cell</menuitem>."
+msgstr ""
+
+#. CvCCN
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id351692906938377\n"
+"help.text"
+msgid "Choose <menuitem>Image - Anchor menu - To Cell</menuitem>."
+msgstr ""
+
+#. KepZF
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id41692906934025\n"
+"help.text"
+msgid "Choose <emph>Format - Anchor - To Cell (resize with cell)</emph>."
+msgstr ""
+
+#. 5vDsB
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id521692906797127\n"
+"help.text"
+msgid "Choose <menuitem>Anchor - To Cell (resize with cell)</menuitem>."
+msgstr ""
+
+#. 6SrBM
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id921692906925993\n"
+"help.text"
+msgid "Choose <menuitem>Fit to Cell Size</menuitem>."
+msgstr ""
+
+#. sUfCH
+#: 00040501.xhp
+msgctxt ""
+"00040501.xhp\n"
+"par_id681692906801695\n"
+"help.text"
+msgid "Choose <menuitem>Image - Anchor menu - To Cell (resize with cell)</menuitem>."
msgstr ""
#. DFDf3
@@ -13804,13 +15127,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Chart Area - Borders</menuitem> tab (charts)."
msgstr ""
-#. DYuKv
+#. CDRWZ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147335\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - open context menu and choose <menuitem>Modify/New - Line</menuitem> tab (presentation documents)."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu and choose <menuitem>New/Edit Style - Line</menuitem> tab (presentation documents)."
msgstr ""
#. PDAn7
@@ -13912,13 +15235,13 @@ msgctxt ""
msgid "Area"
msgstr "ቦታ"
-#. 324Fr
+#. 5EBAG
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id511592159765396\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Paragraph, Frame or Page style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Paragraph, Frame or Page style - open context menu - choose <menuitem>New/Edit Style - Area</menuitem> tab."
msgstr ""
#. sV6fD
@@ -13948,13 +15271,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Text Box and Shape - Area - Area</menuitem>"
msgstr ""
-#. vAmBH
+#. JsBQm
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id1001592157774069\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Cell or Page style - open context menu - choose <menuitem>Modify/New - Background</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Cell or Page style - open context menu - choose <menuitem>New/Edit Style - Background</menuitem> tab."
msgstr ""
#. 4F4Kh
@@ -14002,13 +15325,13 @@ msgctxt ""
msgid "Choose <menuitem>Slide - Properties - Background</menuitem> tab"
msgstr ""
-#. Hb7gT
+#. ULGEw
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id891592159117695\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), choose Drawing or Presentation style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), choose Drawing or Presentation style - open context menu - choose <menuitem>New/Edit Style - Area</menuitem> tab."
msgstr ""
#. 8f2xv
@@ -14029,13 +15352,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Style - Edit Style - Area</menuitem> tab"
msgstr ""
-#. LcgxB
+#. oBrMz
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id161592159449638\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), choose Drawing style - open context menu - choose <menuitem>Modify/New - Area</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>), choose Drawing style - open context menu - choose <menuitem>New/Edit Style - Area</menuitem> tab."
msgstr ""
#. 8Ac8B
@@ -14254,13 +15577,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Paragraph - Transparency</menuitem> tab."
msgstr ""
-#. YAhWh
+#. 7n5zq
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144352\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>Modify/New - Transparency</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Transparency</menuitem> tab."
msgstr ""
#. poxAS
@@ -14371,31 +15694,76 @@ msgctxt ""
msgid "Position and Size"
msgstr "ቦታ እና መጠን"
-#. VwBTn
+#. FkLpU
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id741692887382896\n"
+"help.text"
+msgid "Choose <menuitem>Format - Name</menuitem>."
+msgstr ""
+
+#. CZ34S
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3148833\n"
"help.text"
-msgid "Open the context menu for the object - choose <menuitem>Name</menuitem>."
+msgid "Choose <menuitem>Name</menuitem>."
+msgstr ""
+
+#. XFCA8
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id951692887528644\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Name</menuitem>."
+msgstr ""
+
+#. BEjh9
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id891692887523881\n"
+"help.text"
+msgid "On the <menuitem>Object</menuitem> menu of the <menuitem>Object</menuitem> tab, choose <menuitem>Name</menuitem>."
+msgstr ""
+
+#. nf29R
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id571692887675738\n"
+"help.text"
+msgid "Choose <menuitem>Format - Description</menuitem>."
+msgstr ""
+
+#. AFMw6
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id561692887683211\n"
+"help.text"
+msgid "Choose <menuitem>Description</menuitem>."
msgstr ""
-#. N7dZ7
+#. H4yZE
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id411999\n"
+"par_id811692887686506\n"
"help.text"
-msgid "Right-click on a selected image, frame, or OLE object - choose <menuitem>Properties - Options</menuitem> tab."
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Description</menuitem>."
msgstr ""
-#. AMjWD
+#. 74ZZz
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id301652608714795\n"
+"par_id221692887689963\n"
"help.text"
-msgid "For a selected object, choose <menuitem>Format - Description</menuitem>"
+msgid "On the <menuitem>Object</menuitem> menu of the <menuitem>Object</menuitem> tab, choose <menuitem>Description</menuitem>."
msgstr ""
#. Bhmkm
@@ -14749,22 +16117,31 @@ msgctxt ""
msgid "Choose <menuitem>Format - Align Text - Left</menuitem>."
msgstr ""
-#. reirq
+#. JJwpF
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3153009\n"
+"par_id341690123708435\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Align - Left</menuitem>."
+msgid "Choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem> (text selected).</caseinline><defaultinline><menuitem>Home</menuitem></defaultinline></switchinline>"
msgstr ""
-#. hUH97
+#. igqjh
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id291690123819273\n"
+"help.text"
+msgid "Select <menuitem>Properties</menuitem> - <switchinline select=\"appl\"><caseinline select=\"CALC\"><menuitem>Alignment</menuitem></caseinline><defaultinline><menuitem>Paragraph</menuitem></defaultinline></switchinline> deck."
+msgstr ""
+
+#. w4W9X
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147310\n"
"help.text"
-msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155370\">Icon Align Left</alt></image>"
+msgid "<image id=\"img_id3155370\" src=\"cmd/lc_alignleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155370\">Icon Align Left</alt></image>"
msgstr ""
#. okQkj
@@ -14776,31 +16153,31 @@ msgctxt ""
msgid "Align Left"
msgstr "በ ግራ ማሰለፊያ"
-#. mmjN6
+#. G2sy5
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3155823\n"
+"par_id251690124456625\n"
"help.text"
-msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + L</keycode>"
msgstr ""
-#. 2MorN
+#. mmjN6
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3155762\n"
+"par_id3155823\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Align - Right</menuitem>."
+msgid "Choose <menuitem>Format - Align Text - Right</menuitem>."
msgstr ""
-#. jddUQ
+#. LauSC
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149408\n"
"help.text"
-msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154421\">Icon Align Right</alt></image>"
+msgid "<image id=\"img_id3154421\" src=\"cmd/lc_alignright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154421\">Icon Align Right</alt></image>"
msgstr ""
#. XnJxD
@@ -14812,31 +16189,31 @@ msgctxt ""
msgid "Align Right"
msgstr "በ ቀኝ ማሰለፊያ"
-#. QVuAL
+#. yH7ss
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3149189\n"
+"par_id841690124520536\n"
"help.text"
-msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + R</keycode>"
msgstr ""
-#. YutM3
+#. QVuAL
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3154624\n"
+"par_id3149189\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Align - Center</menuitem>."
+msgid "Choose <menuitem>Format - Align Text - Centered</menuitem>."
msgstr ""
-#. kZk7u
+#. AqNAB
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3153815\n"
"help.text"
-msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149757\">Icon Centered</alt></image>"
+msgid "<image id=\"img_id3149757\" src=\"cmd/lc_alignhorizontalcenter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149757\">Icon Centered</alt></image>"
msgstr ""
#. CQD3j
@@ -14848,31 +16225,31 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">በ አግድም መሀከል ማሰለፊያ </caseinline><defaultinline>መሀከል</defaultinline></switchinline>"
-#. BAFc3
+#. BQLdm
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3146151\n"
+"par_id41690124561788\n"
"help.text"
-msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + C</keycode>"
msgstr ""
-#. Mj8VD
+#. BAFc3
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
-"par_id3168612\n"
+"par_id3146151\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Align - Justified</menuitem>."
+msgid "Choose <menuitem>Format - Align Text - Justified</menuitem>."
msgstr ""
-#. jfsgi
+#. DA7g8
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156189\n"
"help.text"
-msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145308\">Icon Justified</alt></image>"
+msgid "<image id=\"img_id3145308\" src=\"cmd/lc_alignblock.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145308\">Icon Justified</alt></image>"
msgstr ""
#. YBkwj
@@ -14884,6 +16261,15 @@ msgctxt ""
msgid "Justified"
msgstr "እኩል ማካፈያ"
+#. fAxGY
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id131690124640644\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + J</keycode>"
+msgstr ""
+
#. uWQq8
#: 00040502.xhp
msgctxt ""
@@ -14902,13 +16288,22 @@ msgctxt ""
msgid "Choose <menuitem>Format - Group</menuitem>."
msgstr ""
-#. YJ3t9
+#. 3SVPc
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3154854\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Group</menuitem>."
+msgid "Choose <menuitem>Group</menuitem>."
+msgstr ""
+
+#. ZjUXc
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id201693140317965\n"
+"help.text"
+msgid "Choose <menuitem>Draw</menuitem> tab."
msgstr ""
#. 93FXg
@@ -14929,22 +16324,31 @@ msgctxt ""
msgid "Choose <menuitem>Format - Group - Group</menuitem>"
msgstr ""
-#. w3EVK
+#. 7gacJ
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149508\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Group</menuitem> (for text box and shapes)."
+msgid "Choose <menuitem>Group</menuitem>."
msgstr ""
-#. ibZAV
+#. DDimt
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id981693141070590\n"
+"help.text"
+msgid "Choose <menuitem>Draw - Group</menuitem>."
+msgstr ""
+
+#. 396VC
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146858\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon Group</alt></image>"
+msgid "<image id=\"img_id3154344\" src=\"cmd/lc_formatgroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon Group</alt></image>"
msgstr ""
#. DVEkd
@@ -14974,22 +16378,22 @@ msgctxt ""
msgid "Choose <menuitem>Format - Group - Ungroup</menuitem>."
msgstr ""
-#. 9k3ef
+#. R4a2K
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156038\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Ungroup</menuitem>."
+msgid "Choose <menuitem>Ungroup</menuitem>."
msgstr ""
-#. zcmBV
+#. agkSw
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3151300\n"
"help.text"
-msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150831\">Icon Ungroup</alt></image>"
+msgid "<image id=\"img_id3150831\" src=\"cmd/lc_formatungroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150831\">Icon Ungroup</alt></image>"
msgstr ""
#. DGWSV
@@ -15019,22 +16423,31 @@ msgctxt ""
msgid "Choose <menuitem>Format - Group - Exit Group</menuitem>."
msgstr ""
-#. Bszjv
+#. 8nuvk
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152367\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Exit Group</menuitem>."
+msgid "Choose <menuitem>Exit Group</menuitem>."
msgstr ""
-#. BBvnq
+#. NuKdJ
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id1001693142359112\n"
+"help.text"
+msgid "Choose <menuitem>Draw - Exit Group</menuitem>."
+msgstr ""
+
+#. sFwQb
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3158402\n"
"help.text"
-msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149422\">Icon Exit Group</alt></image>"
+msgid "<image id=\"img_id3149422\" src=\"cmd/lc_leavegroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149422\">Icon Exit Group</alt></image>"
msgstr ""
#. ndpeo
@@ -15064,22 +16477,31 @@ msgctxt ""
msgid "Choose <menuitem>Format - Group - Enter Group</menuitem>."
msgstr ""
-#. 4rTmw
+#. YBPcy
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149946\n"
"help.text"
-msgid "Open context menu - choose <menuitem>Enter Group</menuitem>."
+msgid "Choose <menuitem>Enter Group</menuitem>."
+msgstr ""
+
+#. 6rLEV
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id61693142385885\n"
+"help.text"
+msgid "Choose <menuitem>Draw - Enter Group</menuitem>."
msgstr ""
-#. oDBK3
+#. QGLMH
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152388\n"
"help.text"
-msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149900\">Icon Enter Group</alt></image>"
+msgid "<image id=\"img_id3149900\" src=\"cmd/lc_entergroup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149900\">Icon Enter Group</alt></image>"
msgstr ""
#. yXmKi
@@ -15109,6 +16531,69 @@ msgctxt ""
msgid "Format Menu"
msgstr "ዝርዝር አቀራረብ"
+#. X7okG
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id111694117986265\n"
+"help.text"
+msgid "Choose <menuitem>Table - AutoFormat Styles</menuitem>."
+msgstr ""
+
+#. wmDQs
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id311694117990040\n"
+"help.text"
+msgid "Choose <menuitem>Table - Table Styles</menuitem>."
+msgstr ""
+
+#. 4cMEy
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id581694117004494\n"
+"help.text"
+msgid "Open the <menuitem>Styles</menuitem> panel (<keycode>F11</keycode>), choose <menuitem>Table</menuitem> styles, double click a style."
+msgstr ""
+
+#. NDWoq
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3153916\n"
+"help.text"
+msgid "Choose <menuitem>Format - AutoFormat Styles</menuitem>."
+msgstr ""
+
+#. LVNFn
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id511694111284753\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Table Styles</menuitem>."
+msgstr ""
+
+#. cQ4wc
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3149332\n"
+"help.text"
+msgid "<image id=\"img_id3156020\" src=\"cmd/lc_autoformat.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156020\">AutoFormat Styles Icon</alt></image>"
+msgstr ""
+
+#. TAWYM
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3154060\n"
+"help.text"
+msgid "AutoFormat"
+msgstr ""
+
#. DYm7k
#: 00040503.xhp
msgctxt ""
@@ -15154,13 +16639,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Cells - Numbers</menuitem> tab."
msgstr ""
-#. Dkn29
+#. Tzsb9
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3152349\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu and choose <emph>Modify/New - Numbers</emph> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu and choose <menuitem>New/Edit Style - Numbers</menuitem> tab."
msgstr ""
#. hadQp
@@ -15190,6 +16675,15 @@ msgctxt ""
msgid "Choose <menuitem>Insert - Field - More Fields - Variables</menuitem> tab and select <emph>Additional formats</emph> in the <emph>Format</emph> list (for variables)."
msgstr ""
+#. jAGfu
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id851694211943767\n"
+"help.text"
+msgid "Choose <menuitem>Table - Number Format</menuitem>."
+msgstr ""
+
#. xXuAA
#: 00040503.xhp
msgctxt ""
@@ -15244,94 +16738,112 @@ msgctxt ""
msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph>.</variable>"
msgstr ""
-#. jTmZD
+#. GAXJL
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id81693089620038\n"
+"help.text"
+msgid "Choose <menuitem>Format - Rotate or Flip</menuitem>"
+msgstr ""
+
+#. EvRDq
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
"par_id3150495\n"
"help.text"
-msgid "Choose <emph>Shape - Flip</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Shape - Flip</menuitem>."
msgstr ""
-#. 78fz2
+#. 7aJFJ
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3155742\n"
+"par_id581693089487429\n"
"help.text"
-msgid "Choose <emph>Format - Image - Properties - Image</emph> tab."
+msgid "Choose <menuitem>Format - Flip</menuitem>."
msgstr ""
-#. LZuYQ
+#. Dvt3M
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3158407\n"
+"par_id541693090427529\n"
"help.text"
-msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)."
+msgid "Choose <menuitem>Rotate or Flip</menuitem>"
msgstr ""
-#. GBjD2
+#. BfPcB
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3150290\n"
+"par_id561693090881252\n"
"help.text"
-msgid "Choose <emph>Shape - Flip - Vertically</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Format - Rotate or Flip - Vertically</menuitem>"
msgstr ""
-#. XuoY2
+#. 6qhPi
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3153179\n"
+"par_id881693090893019\n"
"help.text"
-msgid "Choose <emph>Format - Image - Properties - Image</emph> tab."
+msgid "Choose <menuitem>Shape - Flip - Vertically</menuitem>."
msgstr ""
-#. Nzu6Y
+#. g54wh
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3157960\n"
+"par_id551693090908683\n"
"help.text"
-msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)."
+msgid "Choose <menuitem>Format - Flip - Vertically</menuitem>."
msgstr ""
-#. LcoHC
+#. DvsqQ
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3153369\n"
+"par_id481693090923308\n"
"help.text"
-msgid "Choose <emph>Shape - Flip - Horizontally</emph> ($[officename] Draw)."
+msgid "Choose <menuitem>Rotate or Flip - Vertically</menuitem>"
msgstr ""
-#. qfb9D
+#. 8FFzc
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3147348\n"
+"par_id161693091605314\n"
"help.text"
-msgid "Choose <emph>Format - Image - Properties</emph>, and then click the <emph>Image</emph> tab."
+msgid "Choose <menuitem>Format - Rotate or Flip - Horizontally</menuitem>"
msgstr ""
-#. qfEx4
+#. 7NDyM
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3156106\n"
+"par_id401693091601338\n"
"help.text"
-msgid "Choose <emph>Format - Flip - Horizontally</emph>."
+msgid "Choose <menuitem>Shape - Flip - Horizontally</menuitem>."
msgstr ""
-#. dSXom
+#. KJFHr
#: 00040503.xhp
msgctxt ""
"00040503.xhp\n"
-"par_id3152578\n"
+"par_id681693091598274\n"
"help.text"
-msgid "Right-click a selected object - choose <emph>Flip - Horizontally</emph> ($[officename] Impress)."
+msgid "Choose <menuitem>Format - Flip - Horizontally</menuitem>."
+msgstr ""
+
+#. eamAG
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id551693091595578\n"
+"help.text"
+msgid "Choose <menuitem>Rotate or Flip - Horizontally</menuitem>"
msgstr ""
#. yZ2Pt
@@ -16189,13 +17701,67 @@ msgctxt ""
msgid "<variable id=\"aufzeichnen\">Choose <menuitem>Edit - Track Changes - Record</menuitem>.</variable>"
msgstr ""
-#. eaiZ6
+#. 9B9AD
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3150594\n"
"help.text"
-msgid "<variable id=\"anzeigen\">Choose <menuitem>Edit - Track Changes - Show</menuitem>.</variable>"
+msgid "Choose <menuitem>Edit - Track Changes - Show</menuitem>."
+msgstr ""
+
+#. siyBE
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id61686936467150\n"
+"help.text"
+msgid "Choose <menuitem>View - Show Track Changes</menuitem>."
+msgstr ""
+
+#. imuNx
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id781686936363852\n"
+"help.text"
+msgid "Choose <menuitem>Review - Show Track Changes</menuitem>."
+msgstr ""
+
+#. f4Xa7
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id351686936649755\n"
+"help.text"
+msgid "On the <menuitem>Review</menuitem> menu of the <menuitem>Review</menuitem> tab, choose <menuitem>Show</menuitem>."
+msgstr ""
+
+#. eDm63
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id3150694\n"
+"help.text"
+msgid "Choose <menuitem>Edit - Track Changes - Show</menuitem>."
+msgstr ""
+
+#. hQaAi
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id341686936494835\n"
+"help.text"
+msgid "<image src=\"cmd/lc_showtrackedchanges.svg\" id=\"img_id171686936494836\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id281686936494837\">Icon Show Track Changes</alt></image>"
+msgstr ""
+
+#. LAKDH
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id891686936494839\n"
+"help.text"
+msgid "Show Track Changes"
msgstr ""
#. CXjc8
@@ -16477,22 +18043,22 @@ msgctxt ""
msgid "Choose <menuitem>View - Navigator</menuitem>."
msgstr ""
-#. sJJtL
+#. RDgHi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
-"par_id941683841117366\n"
+"par_id791687085753159\n"
"help.text"
-msgid "Press <keycode>F5</keycode>"
+msgid "Choose <menuitem>Home - Navigator</menuitem>."
msgstr ""
-#. CcEAC
+#. BhZGs
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
-"par_id3163824\n"
+"par_id791687085753160\n"
"help.text"
-msgid "On the <emph>Standard</emph> bar or the <emph>Sidebar</emph>, click"
+msgid "Choose <menuitem>View - Navigator</menuitem>."
msgstr ""
#. iwE8Q
@@ -16513,6 +18079,15 @@ msgctxt ""
msgid "Navigator On/Off"
msgstr ""
+#. fvpBF
+#: edit_menu.xhp
+msgctxt ""
+"edit_menu.xhp\n"
+"par_id941683841117366\n"
+"help.text"
+msgid "<keycode>F5</keycode>"
+msgstr ""
+
#. XgQEb
#: edit_menu.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 1d98b6c2187..55ec38845ad 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.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: 2023-07-06 10:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -844,13 +844,13 @@ msgctxt ""
msgid "Vertical pitch"
msgstr "የ ቁመት እርዝመት"
-#. 7Dg6d
+#. NdNAA
#: 01010202.xhp
msgctxt ""
"01010202.xhp\n"
"par_id3152425\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Displays the distance between the top edge of a label or a business card and the top edge of the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/labelformatpage/vert\">Displays the distance between the top edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
#. CSAJN
@@ -12625,15 +12625,6 @@ msgctxt ""
msgid "<variable id=\"text\"><ahelp hid=\".\">Shows or hides recorded changes.</ahelp></variable>"
msgstr "<variable id=\"text\"><ahelp hid=\".\">የ ተመዘገቡ ለውጦችን ማሳያ ወይንም መደበቂያ</ahelp></variable>"
-#. BkpRH
-#: 02230200.xhp
-msgctxt ""
-"02230200.xhp\n"
-"par_id251647262886504\n"
-"help.text"
-msgid "On the <emph>Track Changes</emph> toolbar, click"
-msgstr ""
-
#. 8Mq8v
#: 02230200.xhp
msgctxt ""
@@ -14533,6 +14524,24 @@ msgctxt ""
msgid "<ahelp hid=\".\">Choose <item type=\"menuitem\">View - Toolbars - Reset</item> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context.</ahelp>"
msgstr "<ahelp hid=\".\">ይምረጡ <item type=\"menuitem\">መመልከቻ - እቃ መደርደሪያ - እንደ ነበር መመለሻ </item> እቃ መደርደሪያውን እንደ ነበር ለመመለስ ወደ ነባር ይዞታቸው: አንዳንድ እቃ መደርደሪያ ራሱ በራሱ ይታያል እንደ አገባቡ አይነት</ahelp>"
+#. avLUb
+#: 03990000.xhp
+msgctxt ""
+"03990000.xhp\n"
+"hd_id671690981676209\n"
+"help.text"
+msgid "Lock Toolbars"
+msgstr ""
+
+#. ocYUZ
+#: 03990000.xhp
+msgctxt ""
+"03990000.xhp\n"
+"par_id471690981720059\n"
+"help.text"
+msgid "Indicates whether visible toolbars can be moved using the mouse."
+msgstr ""
+
#. VyFa8
#: 04050000.xhp
msgctxt ""
@@ -16810,22 +16819,22 @@ msgctxt ""
msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp></variable>"
msgstr ""
-#. pAt94
+#. JAXnx
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"hd_id3152942\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\">Numbers / Format</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Number Format</link>"
msgstr ""
-#. CNMbg
+#. NtAVK
#: 05020300.xhp
msgctxt ""
"05020300.xhp\n"
"par_id3145086\n"
"help.text"
-msgid "Specify the formatting option for the selected variable."
+msgid "Specify the formatting option for the selected variable or table cell with numeric value."
msgstr ""
#. KqXXP
@@ -23245,14 +23254,14 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/columnpage/textdirectionlb\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/columnpage/textdirectionlb\">ለ አንቀጽ የ ጽሁፍ አቅጣጫ ይወስኑ ለ ውስብስብ ጽሁፍ እቅድ (CTL). ይህ ገጽታ የሚኖረው የ ውስብስብ ጽሁፍ እቅድ ድጋፍን ሲያስችሉ ነው</ahelp>"
-#. LzeZA
+#. Re6Eu
#: 05030800.xhp
msgctxt ""
"05030800.xhp\n"
"tit\n"
"help.text"
-msgid "Crop"
-msgstr "መቁረጫ"
+msgid "Crop Image"
+msgstr ""
#. McF76
#: 05030800.xhp
@@ -23587,13 +23596,13 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/managestylepage/name\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
msgstr ""
-#. xEE52
+#. 6yTep
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153750\n"
"help.text"
-msgid "AutoUpdate"
+msgid "Automatic update from document"
msgstr ""
#. 7yXws
@@ -23605,6 +23614,15 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
msgstr ""
+#. qiUV3
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id741693994849277\n"
+"help.text"
+msgid "If this option is not enabled, then use <menuitem>Styles – Update Selected Style</menuitem> to modify the paragraph style of the current paragraph with any direct paragraph formatting changes made to that paragraph."
+msgstr ""
+
#. N5rDR
#: 05040100.xhp
msgctxt ""
@@ -25810,67 +25828,58 @@ msgctxt ""
msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected cells into a single cell, retaining the formatting of the first cell in the selection.</ahelp></variable>"
msgstr ""
-#. Cb2xp
-#: 05100100.xhp
-msgctxt ""
-"05100100.xhp\n"
-"par_id461632808376973\n"
-"help.text"
-msgid "Select the cells to be merged then do one of the following:"
-msgstr ""
-
-#. bJGUQ
+#. hEL7t
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
-"par_id221632803290526\n"
+"par_id3154020\n"
"help.text"
-msgid "In the <emph>Formatting</emph> toolbar, click:"
+msgid "Choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>."
msgstr ""
-#. kBxWW
+#. ihYxC
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
-"par_id3154351\n"
+"par_id931632803442925\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Merge Cells</menuitem>. If <menuitem>Unmerge Cells</menuitem> is present instead then the cell selection contains merged cells and cannot be merged further."
+msgid "In the <menuitem>Alignment</menuitem> deck of the <emph>Properties</emph> panel, mark <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. Fz6u9
+#. GWa3t
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
-"par_id931632803442925\n"
+"par_id321632377889618\n"
"help.text"
-msgid "Or, in the <emph>Properties</emph> sidebar mark the <emph>Merge Cells</emph> checkbox."
+msgid "Choose <emph>Table - Merge Cells</emph>."
msgstr ""
-#. CmQFq
+#. pYyqQ
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
-"par_id3154020\n"
+"par_id101693999078326\n"
"help.text"
-msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Merge Cells</menuitem>."
+msgid "Choose <menuitem>Table - Merge Cells</menuitem>."
msgstr ""
-#. tHAGa
+#. ECgAG
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
-"par_id321632377889618\n"
+"par_id361694002006860\n"
"help.text"
-msgid "Choose <emph>Table - Merge Cells</emph>.<br/>"
+msgid "In the <menuitem>Table</menuitem> deck of the <emph>Properties</emph> panel, choose <emph>Merge Cells</emph>."
msgstr ""
-#. B7FNs
+#. FUc4F
#: 05100100.xhp
msgctxt ""
"05100100.xhp\n"
-"par_id3154370\n"
+"par_id481693997973242\n"
"help.text"
-msgid "Or, on the <emph>Table</emph> toolbar click:"
+msgid "Choose <menuitem>Merge Cells</menuitem>."
msgstr ""
#. pfYCj
@@ -25891,13 +25900,13 @@ msgctxt ""
msgid "<bookmark_value>unmerge/unmerging cells</bookmark_value><bookmark_value>split/splitting cells</bookmark_value>"
msgstr ""
-#. APBGD
+#. FzFuY
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
"hd_id621632385142590\n"
"help.text"
-msgid "<variable id=\"unmergecells\"><link href=\"text/shared/01/05100200.xhp\">Unmerge Cells</link></variable>"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/05100200.xhp\">Unmerge Cells</link></variable>"
msgstr ""
#. vXyfX
@@ -25909,94 +25918,94 @@ msgctxt ""
msgid "<ahelp hid=\".\">Divides previously merged cells back to the original cells. If the original cells had content that was kept when merged that content is restored.</ahelp>"
msgstr ""
-#. qBugU
+#. BpGMp
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id1001632807096225\n"
+"hd_id3154654\n"
"help.text"
-msgid "Select the cells to be unmerged then do one of the following:"
+msgid "<variable id=\"splitcells\"><link href=\"text/shared/01/05100200.xhp\">Split Cells</link></variable>"
msgstr ""
-#. 8HDVx
+#. 3sZ8J
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id961632804418168\n"
+"par_id3083451\n"
"help.text"
-msgid "In the <emph>Formatting</emph> toolbar click:"
+msgid "<variable id=\"teilentext\"><ahelp hid=\".\">Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into.</ahelp></variable>"
msgstr ""
-#. SMhxF
+#. gtf2T
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id161632275254217\n"
+"par_id3154020\n"
"help.text"
-msgid "Or, right click the selection to open the context menu and choose <menuitem>Unmerge Cells</menuitem>. If <menuitem>Merge Cells</menuitem> is present instead then the cell selection does not contain any merged cells."
+msgid "Choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>."
msgstr ""
-#. WLbsk
+#. Ct2RR
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id901632804430738\n"
+"par_id351694001961039\n"
"help.text"
-msgid "Or, in the <emph>Properties</emph> sidebar clear the <emph>Merge Cells</emph> checkbox."
+msgid "Choose <menuitem>Unmerge Cells</menuitem>."
msgstr ""
-#. nnwCo
+#. npMTr
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id381632805680565\n"
+"par_id931632803442925\n"
"help.text"
-msgid "Or, choose <menuitem>Format - Merge and Unmerge Cells - Unmerge Cells</menuitem>"
+msgid "In the <menuitem>Alignment</menuitem> deck of the <emph>Properties</emph> panel, clear <emph>Merge Cells</emph> checkbox."
msgstr ""
-#. BpGMp
+#. aAHnr
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"hd_id3154654\n"
+"par_id321632807186976\n"
"help.text"
-msgid "<variable id=\"splitcells\"><link href=\"text/shared/01/05100200.xhp\">Split Cells</link></variable>"
+msgid "Do one of the following:"
msgstr ""
-#. 3sZ8J
+#. yzi5c
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id3083451\n"
+"par_id3154024\n"
"help.text"
-msgid "<variable id=\"teilentext\"><ahelp hid=\".\">Displays the Split Cells Dialog where the split can be defined as either horizontally or vertically and the number the each cell will be split into.</ahelp></variable>"
+msgid "Choose <emph>Table - Split Cells</emph>."
msgstr ""
-#. aAHnr
+#. ff4HD
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id321632807186976\n"
+"par_id151694001523430\n"
"help.text"
-msgid "Do one of the following:"
+msgid "Choose <menuitem>Split Cells</menuitem>."
msgstr ""
-#. yzi5c
+#. CBcHe
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id3154024\n"
+"par_id31694001577519\n"
"help.text"
-msgid "Choose <emph>Table - Split Cells</emph>."
+msgid "Choose <menuitem>Table - Split Cells</menuitem>."
msgstr ""
-#. pNAsT
+#. WP7hN
#: 05100200.xhp
msgctxt ""
"05100200.xhp\n"
-"par_id3154042\n"
+"par_id251694001710915\n"
"help.text"
-msgid "Or, on the <emph>Table</emph> toolbar click:"
+msgid "On the <menuitem>Table</menuitem> deck of the <menuitem>Properties</menuitem> panel, choose <menuitem>Split Cells</menuitem>."
msgstr ""
#. 4oLAA
@@ -26953,14 +26962,14 @@ msgctxt ""
msgid "<bookmark_value>objects; naming</bookmark_value><bookmark_value>groups;naming</bookmark_value><bookmark_value>names;objects</bookmark_value>"
msgstr "<bookmark_value>እቃዎች: መሰየሚያ</bookmark_value><bookmark_value>ቡድኖች: መሰየሚያ</bookmark_value><bookmark_value>ስሞች: እቃዎች</bookmark_value>"
-#. BUmF3
+#. M5w8Z
#: 05190000.xhp
msgctxt ""
"05190000.xhp\n"
"hd_id3147366\n"
"help.text"
-msgid "Name"
-msgstr "ስም"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/05190000.xhp\">Name</link></variable>"
+msgstr ""
#. APtT3
#: 05190000.xhp
@@ -27016,23 +27025,23 @@ msgctxt ""
msgid "Description"
msgstr "መግለጫ"
-#. yesKa
+#. GYPkm
#: 05190100.xhp
msgctxt ""
"05190100.xhp\n"
"bm_id3147366\n"
"help.text"
-msgid "<bookmark_value>objects;text alternative and description</bookmark_value> <bookmark_value>descriptions for objects</bookmark_value> <bookmark_value>text alternative;objects</bookmark_value>"
+msgid "<bookmark_value>objects;text alternative and description</bookmark_value><bookmark_value>descriptions for objects</bookmark_value><bookmark_value>text alternative;objects</bookmark_value>"
msgstr ""
-#. BmXdA
+#. AZDeK
#: 05190100.xhp
msgctxt ""
"05190100.xhp\n"
"hd_id1115756\n"
"help.text"
-msgid "Description"
-msgstr "መግለጫ"
+msgid "<variable id=\"description\"><link href=\"text/shared/01/05190100.xhp\">Description</link></variable>"
+msgstr ""
#. FCHnA
#: 05190100.xhp
@@ -27484,6 +27493,15 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/linetabpage/LB_CAP_STYLE\">Select the style of the line end caps. The caps are added to inner dashes as well.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/linetabpage/LB_CAP_STYLE\">ይምረጡ ዘዴ ለ መስመር መጨረሻ ባርኔጣ: ባርኔጣ ለ ጭረትም መጨመር ይቻላል </ahelp>"
+#. dgoUP
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"par_id681690209987661\n"
+"help.text"
+msgid "<variable id=\"drawingstyles\"><link href=\"text/shared/01/graphic_styles.xhp\">Drawing Styles</link></variable>"
+msgstr ""
+
#. WL5GF
#: 05200200.xhp
msgctxt ""
@@ -27907,13 +27925,13 @@ msgctxt ""
msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value><bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
msgstr ""
-#. X3JAC
+#. L4pLX
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
"hd_id3145759\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Area</caseinline><defaultinline>Background</defaultinline></switchinline></link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Area (Background, Highlighting)</link>"
msgstr ""
#. ubruG
@@ -30859,6 +30877,15 @@ msgctxt ""
msgid "Vertically"
msgstr "በ ቁመት"
+#. xHAy3
+#: 05240100.xhp
+msgctxt ""
+"05240100.xhp\n"
+"bm_id711693137724092\n"
+"help.text"
+msgid "<bookmark_value>flip;vertically</bookmark_value>"
+msgstr ""
+
#. FiNB9
#: 05240100.xhp
msgctxt ""
@@ -30886,6 +30913,15 @@ msgctxt ""
msgid "Horizontally"
msgstr "በ አግድም"
+#. kaPDv
+#: 05240200.xhp
+msgctxt ""
+"05240200.xhp\n"
+"bm_id61693137783540\n"
+"help.text"
+msgid "<bookmark_value>flip;horizontally</bookmark_value>"
+msgstr ""
+
#. RYbFW
#: 05240200.xhp
msgctxt ""
@@ -30922,14 +30958,14 @@ msgctxt ""
msgid "<bookmark_value>objects; arranging within stacks</bookmark_value><bookmark_value>arranging; objects</bookmark_value><bookmark_value>borders; arranging</bookmark_value><bookmark_value>pictures; arranging within stacks</bookmark_value><bookmark_value>draw objects; arranging within stacks</bookmark_value><bookmark_value>controls; arranging within stacks</bookmark_value><bookmark_value>OLE objects; arranging within stacks</bookmark_value><bookmark_value>charts; arranging within stacks</bookmark_value><bookmark_value>layer arrangement</bookmark_value><bookmark_value>levels; depth stagger</bookmark_value><bookmark_value>depth stagger</bookmark_value>"
msgstr "<bookmark_value>እቃዎች: በ መከመር ማዘጋጃ</bookmark_value><bookmark_value>ማዘጋጃ: እቃዎች</bookmark_value><bookmark_value>ድንበሮች: ማዘጋጃ</bookmark_value><bookmark_value>ስእሎች: በ መከመር ማዘጋጃ</bookmark_value><bookmark_value>መሳያ እቃዎች: በ መከመር ማዘጋጃ</bookmark_value><bookmark_value>መቆጣጠሪያ: በ መከመር ማዘጋጃ </bookmark_value><bookmark_value>የ OLE እቃዎች: በ መከመር ማዘጋጃ</bookmark_value><bookmark_value>ቻርትስ: በ መከመር ማዘጋጃ</bookmark_value><bookmark_value>ደረጃ ማዘጋጃ</bookmark_value><bookmark_value>ደረጃ: በ ጥልቀት ማዘጋጃ</bookmark_value><bookmark_value>በ ጥልቀት ማዘጋጃ</bookmark_value>"
-#. PAiAz
+#. DM4Ti
#: 05250000.xhp
msgctxt ""
"05250000.xhp\n"
"hd_id3152427\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Arrange</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ማዘጋጃ</link>"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/05250000.xhp\">Arrange</link></variable>"
+msgstr ""
#. 5XqtC
#: 05250000.xhp
@@ -30985,15 +31021,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Moves the selected object to the top of the stacking order, so that it is in front of other objects.</ahelp>"
msgstr "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">የ ተመረጠውን እቃ ወደ ላይ አንድ ደረጃ ማንቀሳቀሻ: ስለዚህ ከ ላይ መደርደሪያው ላይ ከ እቃዎች ፊት ለ ፊት ይሆናል</ahelp>"
-#. DESy9
-#: 05250100.xhp
-msgctxt ""
-"05250100.xhp\n"
-"par_id3147588\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ደረጃ</link>"
-
#. bEzE2
#: 05250200.xhp
msgctxt ""
@@ -31021,15 +31048,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Moves the selected object up one level, so that it is closer to top of the stacking order.</ahelp>"
msgstr "<ahelp hid=\".\">የ ተመረጠውን እቃ ወደ ላይ አንድ ደረጃ ማንቀሳቀሻ: ስለዚህ ከ ላይ መደርደሪያው ላይ ይሆናል</ahelp>"
-#. xDgPN
-#: 05250200.xhp
-msgctxt ""
-"05250200.xhp\n"
-"par_id3149495\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ደረጃ</link>"
-
#. vFjiJ
#: 05250300.xhp
msgctxt ""
@@ -31057,15 +31075,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">Moves the selected object down one level, so that it is closer to the bottom of the stacking order.</ahelp>"
msgstr "<ahelp hid=\".\">የ ተመረጠውን እቃ ወደ ታች አንድ ደረጃ ማንቀሳቀሻ: ስለዚህ ከ ታች መደርደሪያው ላይ ይሆናል</ahelp>"
-#. GE5C6
-#: 05250300.xhp
-msgctxt ""
-"05250300.xhp\n"
-"par_id3150445\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ደረጃ</link>"
-
#. mHSzG
#: 05250400.xhp
msgctxt ""
@@ -31093,15 +31102,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Moves the selected object to the bottom of the stacking order, so that it is behind the other objects.</ahelp>"
msgstr "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">የ ተመረጠውን እቃ ወደ ታች አንድ ደረጃ ማንቀሳቀሻ: ስለዚህ ከ ታች መደርደሪያው ላይ ከ እቃዎች በስተ ጀርባ ይሆናል</ahelp>"
-#. AjCjz
-#: 05250400.xhp
-msgctxt ""
-"05250400.xhp\n"
-"par_id3152895\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ደረጃ</link>"
-
#. LkGPC
#: 05250500.xhp
msgctxt ""
@@ -31129,15 +31129,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SetObjectToForeground\">Moves the selected object in front of text.</ahelp>"
msgstr "<ahelp hid=\".uno:SetObjectToForeground\">የ ተመረጠውን እቃ ወደ ፊት ለፊት ማንቀሳቀሻ</ahelp>"
-#. KMKwb
-#: 05250500.xhp
-msgctxt ""
-"05250500.xhp\n"
-"par_id3147000\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ደረጃ</link>"
-
#. KT8sS
#: 05250600.xhp
msgctxt ""
@@ -31165,15 +31156,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:SetObjectToBackground\">Moves the selected object behind text.</ahelp>"
msgstr "<ahelp hid=\".uno:SetObjectToBackground\">የ ተመረጠውን እቃ ከ ጽሁፉ ኋላ ማንቀሳቀሻ</ahelp>"
-#. QhX6c
-#: 05250600.xhp
-msgctxt ""
-"05250600.xhp\n"
-"par_id3148731\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\">Layer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">ደረጃ</link>"
-
#. rBWfF
#: 05260000.xhp
msgctxt ""
@@ -31219,6 +31201,15 @@ msgctxt ""
msgid "To Page"
msgstr "ወደ ገጽ"
+#. ZGAht
+#: 05260100.xhp
+msgctxt ""
+"05260100.xhp\n"
+"bm_id271692908662893\n"
+"help.text"
+msgid "<bookmark_value>anchoring;to page</bookmark_value><bookmark_value>to page;anchoring</bookmark_value>"
+msgstr ""
+
#. DJ6DX
#: 05260100.xhp
msgctxt ""
@@ -31282,6 +31273,15 @@ msgctxt ""
msgid "To Paragraph"
msgstr "ወደ አንቀጽ"
+#. xZuXf
+#: 05260200.xhp
+msgctxt ""
+"05260200.xhp\n"
+"bm_id871692908754968\n"
+"help.text"
+msgid "<bookmark_value>anchoring;to paragraph</bookmark_value><bookmark_value>to paragraph;anchoring</bookmark_value>"
+msgstr ""
+
#. eGHHV
#: 05260200.xhp
msgctxt ""
@@ -31336,6 +31336,15 @@ msgctxt ""
msgid "To Character"
msgstr "ወደ ባህሪ"
+#. iEAyw
+#: 05260300.xhp
+msgctxt ""
+"05260300.xhp\n"
+"bm_id881692908807102\n"
+"help.text"
+msgid "<bookmark_value>anchoring;to character</bookmark_value><bookmark_value>to character;anchoring</bookmark_value>"
+msgstr ""
+
#. GPeW4
#: 05260300.xhp
msgctxt ""
@@ -31390,6 +31399,15 @@ msgctxt ""
msgid "To Cell"
msgstr "ወደ ክፍል"
+#. ufvcR
+#: 05260400.xhp
+msgctxt ""
+"05260400.xhp\n"
+"bm_id631692908700082\n"
+"help.text"
+msgid "<bookmark_value>anchoring;to cell</bookmark_value><bookmark_value>to cell;anchoring</bookmark_value>"
+msgstr ""
+
#. ywVkQ
#: 05260400.xhp
msgctxt ""
@@ -31417,6 +31435,15 @@ msgctxt ""
msgid "To Frame"
msgstr "ወደ ክፈፍ"
+#. 5CA3D
+#: 05260500.xhp
+msgctxt ""
+"05260500.xhp\n"
+"bm_id11692908652412\n"
+"help.text"
+msgid "<bookmark_value>anchoring;to frame</bookmark_value><bookmark_value>to frame;anchoring</bookmark_value>"
+msgstr ""
+
#. XuXbj
#: 05260500.xhp
msgctxt ""
@@ -31444,6 +31471,15 @@ msgctxt ""
msgid "As Character"
msgstr "እንደ ባህሪ"
+#. 7WAtZ
+#: 05260600.xhp
+msgctxt ""
+"05260600.xhp\n"
+"bm_id631692908875430\n"
+"help.text"
+msgid "<bookmark_value>anchoring;as character</bookmark_value><bookmark_value>as character;anchoring</bookmark_value>"
+msgstr ""
+
#. RGxiA
#: 05260600.xhp
msgctxt ""
@@ -32272,14 +32308,23 @@ msgctxt ""
msgid "Group"
msgstr "ቡድን"
-#. tHZP5
+#. KYGVV
+#: 05290000.xhp
+msgctxt ""
+"05290000.xhp\n"
+"bm_id741693143580680\n"
+"help.text"
+msgid "<bookmark_value>group menu</bookmark_value>"
+msgstr ""
+
+#. FtUhv
#: 05290000.xhp
msgctxt ""
"05290000.xhp\n"
"hd_id3150603\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\">ቡድን</link>"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/05290000.xhp\">Group</link></variable>"
+msgstr ""
#. 5FCia
#: 05290000.xhp
@@ -32335,42 +32380,6 @@ msgctxt ""
msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
msgstr "ከ ቡድን ውስጥ ለ መውጣት: በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph> ከ ቡድን መውጫ </emph></caseinline><defaultinline><emph> ቡድን - ከ ቡድን መውጫ </emph></defaultinline></switchinline>"
-#. GYfBa
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"hd_id3145120\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\">Group</link>"
-msgstr "<link href=\"text/shared/01/05290100.xhp\">ቡድን</link>"
-
-#. zuFUo
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"hd_id3152474\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\">Ungroup</link>"
-msgstr "<link href=\"text/shared/01/05290200.xhp\">መለያያ</link>"
-
-#. 9pJMe
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"hd_id3145609\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\">Enter Group</link>"
-msgstr "<link href=\"text/shared/01/05290300.xhp\">ቡድን ማስገቢያ</link>"
-
-#. JE7hN
-#: 05290000.xhp
-msgctxt ""
-"05290000.xhp\n"
-"hd_id3145068\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\">Exit Group</link>"
-msgstr "<link href=\"text/shared/01/05290400.xhp\">ከ ቡድን መውጫ</link>"
-
#. zUUQd
#: 05290100.xhp
msgctxt ""
@@ -32380,6 +32389,15 @@ msgctxt ""
msgid "Group"
msgstr "ቡድን"
+#. CtGjs
+#: 05290100.xhp
+msgctxt ""
+"05290100.xhp\n"
+"bm_id301693143730683\n"
+"help.text"
+msgid "<bookmark_value>group;objects</bookmark_value><bookmark_value>objects;grouping</bookmark_value>"
+msgstr ""
+
#. LSKGG
#: 05290100.xhp
msgctxt ""
@@ -32416,6 +32434,15 @@ msgctxt ""
msgid "Ungroup"
msgstr "መለያያ"
+#. TARDc
+#: 05290200.xhp
+msgctxt ""
+"05290200.xhp\n"
+"bm_id11693143796146\n"
+"help.text"
+msgid "<bookmark_value>ungroup;objects</bookmark_value><bookmark_value>objects;ungrouping</bookmark_value>"
+msgstr ""
+
#. PNFzP
#: 05290200.xhp
msgctxt ""
@@ -32452,6 +32479,15 @@ msgctxt ""
msgid "Enter Group"
msgstr "ቡድን ማስገቢያ"
+#. gy8Le
+#: 05290300.xhp
+msgctxt ""
+"05290300.xhp\n"
+"bm_id401693143874429\n"
+"help.text"
+msgid "<bookmark_value>groups;entering</bookmark_value><bookmark_value>editing;grouped objects</bookmark_value>"
+msgstr ""
+
#. dHiiH
#: 05290300.xhp
msgctxt ""
@@ -32479,15 +32515,6 @@ msgctxt ""
msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>, and then click the object."
msgstr ""
-#. SUGhF
-#: 05290300.xhp
-msgctxt ""
-"05290300.xhp\n"
-"par_id3153049\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\">Groups</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\">ቡድኖች</link>"
-
#. FyRDs
#: 05290300.xhp
msgctxt ""
@@ -32506,6 +32533,15 @@ msgctxt ""
msgid "Exit Group"
msgstr "ከ ቡድን መውጫ"
+#. Ww5DJ
+#: 05290400.xhp
+msgctxt ""
+"05290400.xhp\n"
+"bm_id851693143954982\n"
+"help.text"
+msgid "<bookmark_value>groups;exiting</bookmark_value><bookmark_value>exiting;grouped objects</bookmark_value>"
+msgstr ""
+
#. CB4CV
#: 05290400.xhp
msgctxt ""
@@ -32524,15 +32560,6 @@ msgctxt ""
msgid "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Exits the group, so that you can no longer edit the individual objects in the group.</ahelp></variable> If you are in a nested group, only the nested group is closed."
msgstr "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">ከ ቡድን መውጫ: ስለዚ እርስዎ ማረም አይችሉም እያንዳንዱ እቃ በ ቡድን ውስጥ </ahelp></variable> እርስዎ በ ታቀፋ ቡድን ውስጥ ካሉ: የሚዘጋው የ ታቀፈው ቡድን ብቻ ነው"
-#. Jvoyp
-#: 05290400.xhp
-msgctxt ""
-"05290400.xhp\n"
-"par_id3153124\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\">Groups</link>"
-msgstr "<link href=\"text/shared/01/05290000.xhp\">ቡድኖች</link>"
-
#. 4yYAg
#: 05290400.xhp
msgctxt ""
@@ -40093,13 +40120,13 @@ msgctxt ""
msgid "Unordered (Lists)"
msgstr ""
-#. hzByB
+#. BcBAG
#: 06050100.xhp
msgctxt ""
"06050100.xhp\n"
"bm_id3150502\n"
"help.text"
-msgid "<bookmark_value>bullets;paragraphs</bookmark_value> <bookmark_value>paragraphs; inserting bullets</bookmark_value> <bookmark_value>inserting; paragraph bullets</bookmark_value> <bookmark_value>unordered list</bookmark_value>"
+msgid "<bookmark_value>bullets;paragraphs</bookmark_value><bookmark_value>paragraphs; inserting bullets</bookmark_value><bookmark_value>inserting; paragraph bullets</bookmark_value><bookmark_value>unordered list</bookmark_value>"
msgstr ""
#. MeEvK
@@ -45727,6 +45754,1500 @@ msgctxt ""
msgid "Lists the currently open documents. Select the name of a document in the list to switch to that document."
msgstr "አሁን የ ተከፈቱ መስኮቶች ዝርዝር: የ ሰነዱን ስም ይምረጡ ከ ዝርዝር ውስጥ ሰንድ ለ መቀየር"
+#. UJBSY
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"tit\n"
+"help.text"
+msgid "AutoFormat"
+msgstr ""
+
+#. AJGr5
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"bm_id2655415\n"
+"help.text"
+msgid "<bookmark_value>tables;AutoFormat function</bookmark_value><bookmark_value>sheet table;AutoFormat function</bookmark_value><bookmark_value>styles;table styles</bookmark_value><bookmark_value>AutoFormat function for tables</bookmark_value>"
+msgstr ""
+
+#. MZKKG
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3149666\n"
+"help.text"
+msgid "<variable id=\"autoformat\"><link href=\"text/shared/01/AutoFormat.xhp\">AutoFormat Styles</link></variable>"
+msgstr ""
+
+#. TeBSK
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3145367\n"
+"help.text"
+msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected <switchinline select=\"appl\"><caseinline select=\"CALC\">sheet area</caseinline><defaultinline>table area</defaultinline></switchinline> or to define your own AutoFormats.</ahelp></variable>"
+msgstr ""
+
+#. csMFN
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id181630332690300\n"
+"help.text"
+msgid "The AutoFormat command is available only if a cell range with at least 3 columns and 3 rows are selected. Otherwise this command will appear grayed out in the menu."
+msgstr ""
+
+#. bbxcb
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3148455\n"
+"help.text"
+msgid "Format"
+msgstr ""
+
+#. FhKDa
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id501694123100254\n"
+"help.text"
+msgid "Choose a predefined AutoFormat to apply to the table."
+msgstr ""
+
+#. RfDUF
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "Choose a predefined AutoFormat to apply to a selected area in your sheet."
+msgstr ""
+
+#. hx8gg
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3149410\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. WEQVB
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3151185\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/add\">Adds a new table style to the list.</ahelp>"
+msgstr ""
+
+#. ihJa2
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3154646\n"
+"help.text"
+msgid "Format a table in your document."
+msgstr ""
+
+#. 2QDBZ
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3156320\n"
+"help.text"
+msgid "Select the table, and then choose <emph>Table - AutoFormat Styles</emph>."
+msgstr ""
+
+#. wmqDs
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3153156\n"
+"help.text"
+msgid "Click <emph>Add</emph>."
+msgstr ""
+
+#. hkEDz
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3151168\n"
+"help.text"
+msgid "In the <emph>Add AutoFormat</emph> dialog, enter a name, and then click <emph>OK</emph>."
+msgstr ""
+
+#. aYC7h
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3153391\n"
+"help.text"
+msgid "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
+msgstr ""
+
+#. dkViN
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3154017\n"
+"help.text"
+msgid "Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats. The <emph>Add AutoFormat</emph> dialog then appears."
+msgstr ""
+
+#. hE5Fi
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3153708\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr ""
+
+#. NiPKv
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3147516\n"
+"help.text"
+msgid "Delete"
+msgstr ""
+
+#. qDBBv
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3150707\n"
+"help.text"
+msgid "Deletes the selected style. You cannot delete the default style."
+msgstr ""
+
+#. HbSeG
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3159223\n"
+"help.text"
+msgid "Rename"
+msgstr ""
+
+#. G4VGb
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3153064\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog where you can change the name of the selected AutoFormat.</ahelp>"
+msgstr ""
+
+#. 8AXqr
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3153912\n"
+"help.text"
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\".\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr ""
+
+#. wPEZ3
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3155961\n"
+"help.text"
+msgid "Formatting"
+msgstr ""
+
+#. Fof4X
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3149022\n"
+"help.text"
+msgid "Lists the available formatting styles for tables. Click the format that you want to apply, and then click <emph>OK</emph>."
+msgstr ""
+
+#. Fwbze
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3154021\n"
+"help.text"
+msgid "Number format"
+msgstr ""
+
+#. GfUvd
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3150970\n"
+"help.text"
+msgid "Includes numbering formats in the selected style."
+msgstr ""
+
+#. wrujP
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3149530\n"
+"help.text"
+msgid "Borders"
+msgstr ""
+
+#. pgQyS
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3154200\n"
+"help.text"
+msgid "Includes border styles in the selected style."
+msgstr ""
+
+#. AavTx
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3150350\n"
+"help.text"
+msgid "Font"
+msgstr ""
+
+#. aKxEn
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3152961\n"
+"help.text"
+msgid "Includes font formatting in the selected style."
+msgstr ""
+
+#. axd86
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3155379\n"
+"help.text"
+msgid "Pattern"
+msgstr ""
+
+#. EyBDk
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3151325\n"
+"help.text"
+msgid "Includes background styles in the selected style."
+msgstr ""
+
+#. AScku
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3146115\n"
+"help.text"
+msgid "Alignment"
+msgstr ""
+
+#. nZuA5
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3155896\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/alignmentcb\">Includes alignment settings in the selected style.</ahelp>"
+msgstr ""
+
+#. nZSD8
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"hd_id3155811\n"
+"help.text"
+msgid "AutoFit width and height"
+msgstr ""
+
+#. yLmfC
+#: AutoFormat.xhp
+msgctxt ""
+"AutoFormat.xhp\n"
+"par_id3148703\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/autofitcb\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgstr ""
+
+#. csXLt
+#: DeleteColumns.xhp
+msgctxt ""
+"DeleteColumns.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. qVPN9
+#: DeleteColumns.xhp
+msgctxt ""
+"DeleteColumns.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/DeleteColumns.xhp\">Columns</link></variable>"
+msgstr ""
+
+#. 4gWeX
+#: DeleteColumns.xhp
+msgctxt ""
+"DeleteColumns.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Deletes the selected columns."
+msgstr ""
+
+#. MyUg6
+#: DeleteRows.xhp
+msgctxt ""
+"DeleteRows.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. oPQL8
+#: DeleteRows.xhp
+msgctxt ""
+"DeleteRows.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/DeleteRows.xhp\">Rows</link></variable>"
+msgstr ""
+
+#. BAFgC
+#: DeleteRows.xhp
+msgctxt ""
+"DeleteRows.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Deletes the selected rows."
+msgstr ""
+
+#. mTEKA
+#: DeleteTable.xhp
+msgctxt ""
+"DeleteTable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table"
+msgstr ""
+
+#. KA7Xh
+#: DeleteTable.xhp
+msgctxt ""
+"DeleteTable.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/DeleteTable.xhp\">Table</link></variable>"
+msgstr ""
+
+#. KKtYG
+#: DeleteTable.xhp
+msgctxt ""
+"DeleteTable.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Deletes the current table."
+msgstr ""
+
+#. PfDzm
+#: EntireCell.xhp
+msgctxt ""
+"EntireCell.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cells"
+msgstr ""
+
+#. kaLNX
+#: EntireCell.xhp
+msgctxt ""
+"EntireCell.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/EntireCell.xhp\">Cell</link></variable>"
+msgstr ""
+
+#. tgwVR
+#: EntireCell.xhp
+msgctxt ""
+"EntireCell.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Selects the entire cell."
+msgstr ""
+
+#. WBjQA
+#: EntireColumn.xhp
+msgctxt ""
+"EntireColumn.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. SfaAG
+#: EntireColumn.xhp
+msgctxt ""
+"EntireColumn.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/EntireColumn.xhp\">Column</link></variable>"
+msgstr ""
+
+#. K8xpA
+#: EntireColumn.xhp
+msgctxt ""
+"EntireColumn.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Selects the entire column."
+msgstr ""
+
+#. jy6dQ
+#: EntireColumn.xhp
+msgctxt ""
+"EntireColumn.xhp\n"
+"par_id0916200804163046\n"
+"help.text"
+msgid "If currently no cell is selected, all columns will be selected. If currently cells are selected, all columns containing the selected cells will be selected."
+msgstr ""
+
+#. RxfCt
+#: EntireRow.xhp
+msgctxt ""
+"EntireRow.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. wn2z5
+#: EntireRow.xhp
+msgctxt ""
+"EntireRow.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/EntireRow.xhp\">Row</link></variable>"
+msgstr ""
+
+#. BjQkW
+#: EntireRow.xhp
+msgctxt ""
+"EntireRow.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Selects the entire column."
+msgstr ""
+
+#. C6wG2
+#: EntireRow.xhp
+msgctxt ""
+"EntireRow.xhp\n"
+"par_id0916200804080063\n"
+"help.text"
+msgid "If currently no cell is selected, all rows will be selected. If currently cells are selected, all rows containing the selected cells will be selected."
+msgstr ""
+
+#. LBp99
+#: InsertColumnsAfter.xhp
+msgctxt ""
+"InsertColumnsAfter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Columns After"
+msgstr ""
+
+#. g7DnH
+#: InsertColumnsAfter.xhp
+msgctxt ""
+"InsertColumnsAfter.xhp\n"
+"bm_id891693667456028\n"
+"help.text"
+msgid "<bookmark_value>column;inserting after</bookmark_value> <bookmark_value>insert;column after</bookmark_value>"
+msgstr ""
+
+#. bCCFw
+#: InsertColumnsAfter.xhp
+msgctxt ""
+"InsertColumnsAfter.xhp\n"
+"hd_id901693661066439\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/InsertColumnsAfter.xhp\">Columns After</link></variable>"
+msgstr ""
+
+#. dRBaS
+#: InsertColumnsAfter.xhp
+msgctxt ""
+"InsertColumnsAfter.xhp\n"
+"par_id811605976075887\n"
+"help.text"
+msgid "Insert a column after the column where the cursor is currently placed."
+msgstr ""
+
+#. Sduvi
+#: InsertColumnsAfter.xhp
+msgctxt ""
+"InsertColumnsAfter.xhp\n"
+"par_id160220162214111932\n"
+"help.text"
+msgid "<variable id=\"sheet_insert_columns\">Inserts columns to the right of the active cell.</variable> The number of columns inserted corresponds to the number of columns selected. If no column is selected, one column is inserted. The existing columns are moved to the right."
+msgstr ""
+
+#. TzuvL
+#: InsertColumnsBefore.xhp
+msgctxt ""
+"InsertColumnsBefore.xhp\n"
+"tit\n"
+"help.text"
+msgid "Columns Before"
+msgstr ""
+
+#. sWRAW
+#: InsertColumnsBefore.xhp
+msgctxt ""
+"InsertColumnsBefore.xhp\n"
+"bm_id891693667456028\n"
+"help.text"
+msgid "<bookmark_value>row;inserting before</bookmark_value> <bookmark_value>insert;column before</bookmark_value>"
+msgstr ""
+
+#. CY8pB
+#: InsertColumnsBefore.xhp
+msgctxt ""
+"InsertColumnsBefore.xhp\n"
+"hd_id901693661066439\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/InsertColumnsBefore.xhp\">Columns Before</link></variable>"
+msgstr ""
+
+#. C2DKF
+#: InsertColumnsBefore.xhp
+msgctxt ""
+"InsertColumnsBefore.xhp\n"
+"par_id811605976075887\n"
+"help.text"
+msgid "Insert a column before the column where the cursor is currently placed."
+msgstr ""
+
+#. WDQzu
+#: InsertColumnsBefore.xhp
+msgctxt ""
+"InsertColumnsBefore.xhp\n"
+"par_id160220162214111932\n"
+"help.text"
+msgid "<variable id=\"sheet_insert_columns\">Inserts columns to the left of the active cell.</variable> The number of columns inserted corresponds to the number of columns selected. If no column is selected, one column is inserted. The existing columns are moved to the right."
+msgstr ""
+
+#. FhyP5
+#: InsertRowsAfter.xhp
+msgctxt ""
+"InsertRowsAfter.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows Above"
+msgstr ""
+
+#. RPFLA
+#: InsertRowsAfter.xhp
+msgctxt ""
+"InsertRowsAfter.xhp\n"
+"bm_id891693667456028\n"
+"help.text"
+msgid "<bookmark_value>row;inserting below</bookmark_value> <bookmark_value>insert;row below</bookmark_value>"
+msgstr ""
+
+#. rvCuS
+#: InsertRowsAfter.xhp
+msgctxt ""
+"InsertRowsAfter.xhp\n"
+"hd_id901693661066439\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/InsertRowsAfter.xhp\">Rows Below</link></variable>"
+msgstr ""
+
+#. BfvrA
+#: InsertRowsAfter.xhp
+msgctxt ""
+"InsertRowsAfter.xhp\n"
+"par_id701605976138113\n"
+"help.text"
+msgid "Insert a row below the row where the cursor is currently placed."
+msgstr ""
+
+#. 3Liao
+#: InsertRowsAfter.xhp
+msgctxt ""
+"InsertRowsAfter.xhp\n"
+"par_id160220162210581072\n"
+"help.text"
+msgid "<variable id=\"sheet_insert_rows\">Insert rows below the active cell.</variable> The number of rows inserted corresponds to the number of rows selected. If no row is selected, one row is inserted. The existing rows are moved downward."
+msgstr ""
+
+#. QtiCS
+#: InsertRowsBefore.xhp
+msgctxt ""
+"InsertRowsBefore.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows Above"
+msgstr ""
+
+#. jGQHo
+#: InsertRowsBefore.xhp
+msgctxt ""
+"InsertRowsBefore.xhp\n"
+"bm_id891693667456028\n"
+"help.text"
+msgid "<bookmark_value>row;insert above</bookmark_value> <bookmark_value>insert;row above</bookmark_value>"
+msgstr ""
+
+#. hh4L2
+#: InsertRowsBefore.xhp
+msgctxt ""
+"InsertRowsBefore.xhp\n"
+"hd_id901693661066439\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/InsertRowsBefore.xhp\">Rows Above</link></variable>"
+msgstr ""
+
+#. 9Knya
+#: InsertRowsBefore.xhp
+msgctxt ""
+"InsertRowsBefore.xhp\n"
+"par_id811605976075887\n"
+"help.text"
+msgid "Insert a row above the row where the cursor is currently placed."
+msgstr ""
+
+#. yS4DK
+#: InsertRowsBefore.xhp
+msgctxt ""
+"InsertRowsBefore.xhp\n"
+"par_id160220162210581072\n"
+"help.text"
+msgid "<variable id=\"sheet_insert_rows\">Insert rows above the active cell.</variable> The number of rows inserted corresponds to the number of rows selected. If no row is selected, one row is inserted. The existing rows are moved downward."
+msgstr ""
+
+#. XWLXe
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"tit\n"
+"help.text"
+msgid "Protect"
+msgstr ""
+
+#. mEWuE
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"hd_id3146322\n"
+"help.text"
+msgid "<link href=\"text/shared/01/Protect.xhp\">Protect Cells</link>"
+msgstr ""
+
+#. a9Ucw
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3145822\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Protect\">Prevents the contents of the selected cells from being modified.</ahelp>"
+msgstr ""
+
+#. bCG4H
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3154641\n"
+"help.text"
+msgid "When the cursor is in a read-only cell, a note appears on the <emph>Status Bar</emph>."
+msgstr ""
+
+#. YAsUp
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3149292\n"
+"help.text"
+msgid "To remove cell protection, select the cell(s), right-click, and then choose <link href=\"text/swriter/01/05100400.xhp\"><emph>Unprotect Cells</emph></link>."
+msgstr ""
+
+#. 6TY3L
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"bm_id141619439455954\n"
+"help.text"
+msgid "<bookmark_value>insert rows;protected sheet</bookmark_value> <bookmark_value>insert columns;protected sheet</bookmark_value> <bookmark_value>delete columns;protected sheet</bookmark_value> <bookmark_value>delete rows;protected sheet</bookmark_value> <bookmark_value>protected sheet;insert columns</bookmark_value> <bookmark_value>protected sheet;insert rows</bookmark_value> <bookmark_value>protected sheet;delete rows</bookmark_value> <bookmark_value>protected sheet;delete columns</bookmark_value> <bookmark_value>protect;sheet</bookmark_value> <bookmark_value>selection;in protected cells</bookmark_value>"
+msgstr ""
+
+#. EL2LB
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"hd_id3153087\n"
+"help.text"
+msgid "<variable id=\"ProtectingSheeth1\"><link href=\"text/shared/01/Protect.xhp\">Protect Sheet</link></variable>"
+msgstr ""
+
+#. BwBFt
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3148664\n"
+"help.text"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable>"
+msgstr ""
+
+#. u7cwD
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id701619429750616\n"
+"help.text"
+msgid "Choose <emph>Tools - Protect Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password, and select the elements of the sheet to protect."
+msgstr ""
+
+#. 5gCPE
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3149664\n"
+"help.text"
+msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr ""
+
+#. 7fbCn
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"hd_id901619431276995\n"
+"help.text"
+msgid "Protect this sheet and contents of the protected cells"
+msgstr ""
+
+#. q24xG
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id381619431285815\n"
+"help.text"
+msgid "Mark this checkbox to activate protection of sheet and cell contents."
+msgstr ""
+
+#. vhWJw
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"hd_id31619431291108\n"
+"help.text"
+msgid "Password / Confirm"
+msgstr ""
+
+#. FwsnL
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id851619431300487\n"
+"help.text"
+msgid "Allows you to enter a password to protect the sheet from unauthorized changes. Confirm the password entered in the first box."
+msgstr ""
+
+#. gDzBC
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"hd_id711619431316966\n"
+"help.text"
+msgid "Allow users of this sheet to"
+msgstr ""
+
+#. nFCLf
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id41619431361278\n"
+"help.text"
+msgid "Select the elements to protect from user actions:"
+msgstr ""
+
+#. Ft3bg
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id661619430257262\n"
+"help.text"
+msgid "<emph>Select protected cells</emph>: mark this checkbox to allow you to select protected cells. When the checkbox is unmarked, you cannot select protected cells, the cursor cannot enter in a protected range."
+msgstr ""
+
+#. EqNRs
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id921619430295947\n"
+"help.text"
+msgid "<emph>Select unprotected cells</emph>: mark this checkbox to allow user to select unprotected cells. When the checkbox is unmarked, user cannot select unprotected cells, the cursor cannot enter in a unprotected cell or range."
+msgstr ""
+
+#. ADGvR
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id101619430333784\n"
+"help.text"
+msgid "<emph>Insert columns</emph>: Allow column insertions even when the sheet is protected. Note that when column insertions is enabled, you can insert columns even when the range to insert the new columns into contains protected cells which will get shifted after the insertion. Cells of the newly inserted columns inherit the Protection property of the range it belongs: when the new cell is inside a protected range, the cell is protected, and when it is in an unprotected range, the cell is unprotected."
+msgstr ""
+
+#. 2MUwS
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id891619430338809\n"
+"help.text"
+msgid "<emph>Insert rows</emph>: Allow row insertions even when the sheet is protected. Note that when row insertions is enabled, you can insert rows even when the range to insert the new rows into contains protected cells which will get shifted after the insertion. Cells of the newly inserted rows inherit the Protection property of the range it belongs: when the new cell is inside a protected range it is protected, and when it is in an unprotected range, the cell is unprotected."
+msgstr ""
+
+#. xKNff
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id311619430374686\n"
+"help.text"
+msgid "<emph>Delete columns</emph>: Allow column deletions. Note that column deletions are only allowed on unprotected cells."
+msgstr ""
+
+#. TsAVD
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id561619430376854\n"
+"help.text"
+msgid "<emph>Delete rows</emph>: Allow row deletions. Note that row deletions are only allowed on unprotected cells."
+msgstr ""
+
+#. FDDbY
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3154490\n"
+"help.text"
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
+msgstr ""
+
+#. Sg2sD
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3149123\n"
+"help.text"
+msgid "Select the cells that will be unprotected"
+msgstr ""
+
+#. jBLTF
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3150329\n"
+"help.text"
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgstr ""
+
+#. q2JxU
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3156384\n"
+"help.text"
+msgid "On the <emph>Tools - Protect Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgstr ""
+
+#. Fs63t
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3149566\n"
+"help.text"
+msgid "To later change an unprotected area to a protected area:"
+msgstr ""
+
+#. FiPpj
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id101619439013221\n"
+"help.text"
+msgid "Select the range of cells that will be protected."
+msgstr ""
+
+#. XzhqW
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id601619439028536\n"
+"help.text"
+msgid "On the <menuitem>Format - Cells - Cell Protection</menuitem> tab page, check the <emph>Protected</emph> box."
+msgstr ""
+
+#. QBDoK
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id641619439061892\n"
+"help.text"
+msgid "Choose the <menuitem>Tools - Protect Sheet</menuitem> menu. The previously editable range is now protected."
+msgstr ""
+
+#. pdb5a
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3153964\n"
+"help.text"
+msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
+msgstr ""
+
+#. DBGt4
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3150301\n"
+"help.text"
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr ""
+
+#. ovQgo
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3154656\n"
+"help.text"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled, with the exceptions of the settings for columns and row of the <menuitem>Tools - Protect Sheet</menuitem> dialog. To disable the protection, choose the <menuitem>Tools - Protect Sheet</menuitem> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
+msgstr ""
+
+#. xLjzi
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3149815\n"
+"help.text"
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr ""
+
+#. aTCnZ
+#: Protect.xhp
+msgctxt ""
+"Protect.xhp\n"
+"par_id3148700\n"
+"help.text"
+msgid "Complete protection of your work can be achieved by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet Structure</emph>, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgstr ""
+
+#. MzXDj
+#: SelectColumns.xhp
+msgctxt ""
+"SelectColumns.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. tZWTw
+#: SelectColumns.xhp
+msgctxt ""
+"SelectColumns.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/DeleteColumns.xhp\">Columns</link></variable>"
+msgstr ""
+
+#. FuhwL
+#: SelectColumns.xhp
+msgctxt ""
+"SelectColumns.xhp\n"
+"par_idN10616\n"
+"help.text"
+msgid "Deletes the selected columns."
+msgstr ""
+
+#. FDCQw
+#: SelectTable.xhp
+msgctxt ""
+"SelectTable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rows"
+msgstr ""
+
+#. cGMtF
+#: SelectTable.xhp
+msgctxt ""
+"SelectTable.xhp\n"
+"hd_id941693687739390\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/SelectTable.xhp\">Table</link></variable>"
+msgstr ""
+
+#. vq64h
+#: SelectTable.xhp
+msgctxt ""
+"SelectTable.xhp\n"
+"par_idN10626\n"
+"help.text"
+msgid "Selects the current table."
+msgstr ""
+
+#. EkLDE
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optimal Column Width"
+msgstr ""
+
+#. EDVX5
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value><bookmark_value>optimal column widths;text table</bookmark_value><bookmark_value>text table;optimal column widths</bookmark_value>"
+msgstr ""
+
+#. hWqgN
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"hd_id3149500\n"
+"help.text"
+msgid "<variable id=\"optimal_column_width_h1\"><link href=\"text/shared/01/SetOptimalColumnWidth.xhp\">Optimal Column Width</link></variable>"
+msgstr ""
+
+#. DaCqX
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id3149050\n"
+"help.text"
+msgid "<variable id=\"column_width_text\"><ahelp hid=\".uno:SetOptimalColumnWidth\">Adjust column widths among columns with selected cells, according to the paragraph length in each selected cell. Widen the table, up to page width, if necessary.</ahelp></variable>"
+msgstr ""
+
+#. cKES5
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id811655764710135\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SetOptimalColumnWidth\">Adjust column width for selected columns to fit the column’s content, without changing the width of the table or the unselected columns.</ahelp>"
+msgstr ""
+
+#. ygmRv
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id611656069528584\n"
+"help.text"
+msgid "<menuitem>Optimal Column Width</menuitem> attempts to give a column width for the selected cells so that the longest paragraph in each cell can, as a minimum, <emph>fit</emph> exactly on a single line, though it is possible and common for columns to be wider than an exact fit."
+msgstr ""
+
+#. v5UWg
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id601656102623025\n"
+"help.text"
+msgid "The final distribution of column widths depends on several factors, such as the paragraph length of selected cells, the initial width of the columns with selected cells, and whether the table can be widened. Space is also included for any horizontal cell padding, paragraph padding, and paragraph indents. The width of the table is never reduced, and unselected columns are not changed."
+msgstr ""
+
+#. BtFXR
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id651656105163827\n"
+"help.text"
+msgid "The following list indicates how column widths are distributed for the selected cells. If the first step succeeds in distributing column widths for the selected cells so that all paragraphs in the cell are on a single line, then the process stops, otherwise the second step is attempted, if possible. The third step describes how column widths are distributed when it is not possible to fit all the selected cells after the second step."
+msgstr ""
+
+#. 3hHjA
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id221656101892491\n"
+"help.text"
+msgid "Distribute column widths proportionally according to the longest paragraph in each cell, but remaining within the total column width for cell selection."
+msgstr ""
+
+#. KLjw8
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id641656101994507\n"
+"help.text"
+msgid "If some cells cannot fit exactly in the total width of the selection, and the table can be expanded (up to the page width), then expand the table width until all cells are fit exactly."
+msgstr ""
+
+#. KZATx
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id511656102101362\n"
+"help.text"
+msgid "If the table width is at the page margin, and more than one selected cell does not fit exactly, then give as much width as possible to the first cell that cannot be fit exactly, and an equal (smaller) column width to the other cells that cannot be fit."
+msgstr ""
+
+#. mqXaK
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id471656104869532\n"
+"help.text"
+msgid "Step 1 is often sufficient for tables whose cells are primarily short paragraphs, while Step 3 is usually needed if many columns or rows are selected and/or selected cells have longer paragraphs."
+msgstr ""
+
+#. Gygq7
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"hd_id3150767\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. GEBig
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id3150449\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/value\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
+msgstr ""
+
+#. fhsxH
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"hd_id3145785\n"
+"help.text"
+msgid "Default value"
+msgstr ""
+
+#. to4qH
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id3146120\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 2 mm."
+msgstr ""
+
+#. VYPAx
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id601656069480524\n"
+"help.text"
+msgid "<menuitem>Optimal Column Width</menuitem> attempts to give a column width for the selected columns so that the longest paragraph in each column can, as a minimum, <emph>fit</emph> exactly on a single line, though it is possible and common for columns to be wider than an exact fit."
+msgstr ""
+
+#. aa67c
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id721655819449619\n"
+"help.text"
+msgid "The final distribution of column widths depends on several factors, such as the paragraph length and initial width of the selected columns. Space is also included for any horizontal cell padding, paragraph padding, and paragraph indents. The width of the table is never reduced, and unselected columns are not changed."
+msgstr ""
+
+#. G8TA8
+#: SetOptimalColumnWidth.xhp
+msgctxt ""
+"SetOptimalColumnWidth.xhp\n"
+"par_id581656107648277\n"
+"help.text"
+msgid "The option distributes column widths proportionally according to the longest paragraph in each column, but remaining within the total column width for the selected columns. When selected columns cannot be fit exactly, then the first column that cannot be fit exactly gets as much width as possible, while any additional columns that cannot be fit exactly get a smaller column width, which is equal for each of these additional columns."
+msgstr ""
+
+#. L6DBi
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"tit\n"
+"help.text"
+msgid "Optimal Row Height"
+msgstr ""
+
+#. EF6Av
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"bm_id3148491\n"
+"help.text"
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value><bookmark_value>optimal row heights;text table</bookmark_value><bookmark_value>optimal row heights;text table;optimal row heights</bookmark_value>"
+msgstr ""
+
+#. FhuCA
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"hd_id3150010\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/SetOptimalRowHeight.xhp\">Optimal Row Height</link></variable>"
+msgstr ""
+
+#. iyj4m
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"par_id3147436\n"
+"help.text"
+msgid "<variable id=\"optimal_row_height_text\"><ahelp hid=\".uno:SetOptimalRowHeight\" visibility=\"visible\">Set row height for selected table rows so that each row has the same height as the row with the tallest content.</ahelp></variable>"
+msgstr ""
+
+#. HNpXZ
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"par_id3154758\n"
+"help.text"
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#measurement_units\">units of measure</link>."
+msgstr ""
+
+#. cSeBS
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"par_id741656209290506\n"
+"help.text"
+msgid "Row height can increase with this option, with the table always growing downward. The total table height is never reduced by this option."
+msgstr ""
+
+#. yPDLx
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"par_id801656117723975\n"
+"help.text"
+msgid "This option is similar to first minimizing row height for selected rows by using <link href=\"text/shared/01/minimal_row_height.xhp\"><menuitem>Minimal Row Height</menuitem></link> and then distributing those rows by using <link href=\"text/shared/01/05110600m.xhp\"><menuitem>Distribute Rows Evenly</menuitem></link>, except that additional height is added to each row if necessary to prevent the total table height from reducing."
+msgstr ""
+
+#. aFW7z
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"hd_id3154908\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. DZ2Dj
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"par_id3151044\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/value\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
+msgstr ""
+
+#. FftK5
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"hd_id3150439\n"
+"help.text"
+msgid "Default value"
+msgstr ""
+
+#. 3edN9
+#: SetOptimalRowHeight.xhp
+msgctxt ""
+"SetOptimalRowHeight.xhp\n"
+"par_id3146984\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/optimalrowheightdialog/default\">Restores the default value for the optimal row height.</ahelp>"
+msgstr ""
+
+#. zCBqS
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"tit\n"
+"help.text"
+msgid "New Style From Selection"
+msgstr ""
+
+#. a9xHQ
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"hd_id361693565455447\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/StyleNewByExample.xhp\">New Style From Selection</link></variable>"
+msgstr ""
+
+#. nZXG5
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id331529881457275\n"
+"help.text"
+msgid "Adds a paragraph style with the settings of the current selection. You will be prompted to enter the style name."
+msgstr ""
+
+#. VrDZd
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id11693565625051\n"
+"help.text"
+msgid "Choose <menuitem>Styles - New Style From Selection</menuitem>."
+msgstr ""
+
+#. VqPrz
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id141693565914180\n"
+"help.text"
+msgid "<image src=\"cmd/lc_stylenewbyexample.svg\" id=\"img_id711693565914180\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131693565914181\">Icon New Style From Selection</alt></image>"
+msgstr ""
+
+#. QyVGc
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id401693565914182\n"
+"help.text"
+msgid "New Style From Selection"
+msgstr ""
+
+#. WvAYe
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id871693565684659\n"
+"help.text"
+msgid "<keycode>Shift + F11</keycode>"
+msgstr ""
+
+#. CDE4Z
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id951693533752143\n"
+"help.text"
+msgid "On the <menuitem>Styles Actions</menuitem> menu of the <menuitem>Styles</menuitem> sidebar, choose <menuitem>New Style From Selection</menuitem>."
+msgstr ""
+
+#. Mkoji
+#: StyleNewByExample.xhp
+msgctxt ""
+"StyleNewByExample.xhp\n"
+"par_id921693534308719\n"
+"help.text"
+msgid "<link href=\"text/swriter/main0115.xhp\">Styles menu</link>"
+msgstr ""
+
+#. g8eki
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"tit\n"
+"help.text"
+msgid "Update Selected Style"
+msgstr ""
+
+#. GVnvU
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"hd_id41693531552001\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/StyleUpdateByExample.xhp\">Update Selected Style</link></variable>"
+msgstr ""
+
+#. PNPwC
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id441693531552003\n"
+"help.text"
+msgid "Update the paragraph style with the direct formatting applied to the current paragraph."
+msgstr ""
+
+#. 8EANp
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id81693531700482\n"
+"help.text"
+msgid "Choose <menuitem>Styles - Update Selected Style</menuitem>."
+msgstr ""
+
+#. 28TA2
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id851693533450418\n"
+"help.text"
+msgid "<image src=\"cmd/lc_styleupdatebyexample.svg\" id=\"img_id661693533450420\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id901693533450421\">Icon Update Selected Style</alt></image>"
+msgstr ""
+
+#. UQXEK
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id351693533450423\n"
+"help.text"
+msgid "Update Selected Style"
+msgstr ""
+
+#. epprn
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id421693531759773\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift + F11</keycode>"
+msgstr ""
+
+#. RByrD
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id951693533752143\n"
+"help.text"
+msgid "On the <menuitem>Styles Actions</menuitem> menu of the <menuitem>Styles</menuitem> sidebar, choose <menuitem>Update Selected Style</menuitem>."
+msgstr ""
+
+#. NryPT
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id3146333\n"
+"help.text"
+msgid "<ahelp hid=\".\">The manually formatted attributes of the text at the cursor position in the document will be added to the style that is selected in the Styles window.</ahelp>"
+msgstr ""
+
+#. c5KSR
+#: StyleUpdateByExample.xhp
+msgctxt ""
+"StyleUpdateByExample.xhp\n"
+"par_id921693534308719\n"
+"help.text"
+msgid "<link href=\"text/swriter/main0115.xhp\">Styles menu</link>"
+msgstr ""
+
#. qQPR5
#: about_meta_tags.xhp
msgctxt ""
@@ -46969,6 +48490,33 @@ msgctxt ""
msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extensions dialog</link>"
msgstr ""
+#. QFfxz
+#: fit_to_cell.xhp
+msgctxt ""
+"fit_to_cell.xhp\n"
+"tit\n"
+"help.text"
+msgid "To Cell (resize with cell)"
+msgstr ""
+
+#. exGLN
+#: fit_to_cell.xhp
+msgctxt ""
+"fit_to_cell.xhp\n"
+"hd_id711692907593199\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/fit_to_cell.xhp\">To Cell (resize with cell)</link></variable>"
+msgstr ""
+
+#. qvDGT
+#: fit_to_cell.xhp
+msgctxt ""
+"fit_to_cell.xhp\n"
+"par_id501692907593200\n"
+"help.text"
+msgid "Move image along with the cell. In addition, the image height and width will be resized if the cell holding the anchor is later resized. The aspect ratio of the image follows the later aspect ratio of the cell holding the anchor."
+msgstr ""
+
#. ytNtF
#: font_features.xhp
msgctxt ""
@@ -47581,6 +49129,105 @@ msgctxt ""
msgid "<ahelp hid=\"HID_GALLERY_PREVIEW\">Displays a preview of the selected file.</ahelp>"
msgstr "<ahelp hid=\"HID_GALLERY_PREVIEW\">የተመረጠውን ፋይል በ ቅድመ እይታ ማሳያ </ahelp>"
+#. VZmGe
+#: graphic_size_check.xhp
+msgctxt ""
+"graphic_size_check.xhp\n"
+"tit\n"
+"help.text"
+msgid "Graphic Size Check"
+msgstr ""
+
+#. sUyEy
+#: graphic_size_check.xhp
+msgctxt ""
+"graphic_size_check.xhp\n"
+"bm_id581692798594218\n"
+"help.text"
+msgid "<bookmark_value>graphic size;check</bookmark_value> <bookmark_value>check;graphic size</bookmark_value>"
+msgstr ""
+
+#. AsYJE
+#: graphic_size_check.xhp
+msgctxt ""
+"graphic_size_check.xhp\n"
+"hd_id411692796683457\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/graphic_size_check.xhp\">Graphic Size Check</link></variable>"
+msgstr ""
+
+#. A5VDR
+#: graphic_size_check.xhp
+msgctxt ""
+"graphic_size_check.xhp\n"
+"par_id211692796683461\n"
+"help.text"
+msgid "Warns if the document has an image that is too bigor too small in resolution."
+msgstr ""
+
+#. LhoRD
+#: graphic_size_check.xhp
+msgctxt ""
+"graphic_size_check.xhp\n"
+"par_id81692797433356\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Graphic Size Check</menuitem>."
+msgstr ""
+
+#. rEsjG
+#: graphic_styles.xhp
+msgctxt ""
+"graphic_styles.xhp\n"
+"tit\n"
+"help.text"
+msgid "Graphic Styles"
+msgstr ""
+
+#. KxhFj
+#: graphic_styles.xhp
+msgctxt ""
+"graphic_styles.xhp\n"
+"bm_id971690214305004\n"
+"help.text"
+msgid "<bookmark_value>styles;drawing objects</bookmark_value> <bookmark_value>drawing;object styles</bookmark_value>"
+msgstr ""
+
+#. GyLBD
+#: graphic_styles.xhp
+msgctxt ""
+"graphic_styles.xhp\n"
+"hd_id831690201529325\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/graphic_styles.xhp\">Drawing Styles</link></variable>"
+msgstr ""
+
+#. ZYuZq
+#: graphic_styles.xhp
+msgctxt ""
+"graphic_styles.xhp\n"
+"par_id431690201529329\n"
+"help.text"
+msgid "Show styles for formatting graphical elements, including text objects."
+msgstr ""
+
+#. 57Eeu
+#: graphic_styles.xhp
+msgctxt ""
+"graphic_styles.xhp\n"
+"hd_id261690207878568\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210100.xhp\">Highlighting</link>"
+msgstr ""
+
+#. pb7aG
+#: graphic_styles.xhp
+msgctxt ""
+"graphic_styles.xhp\n"
+"par_id41690207993837\n"
+"help.text"
+msgid "Set the highlighting color of the text object."
+msgstr ""
+
#. UrNRp
#: grid_and_helplines.xhp
msgctxt ""
@@ -47725,22 +49372,22 @@ msgctxt ""
msgid "<bookmark_value>image;compression</bookmark_value> <bookmark_value>image;reduce image size</bookmark_value> <bookmark_value>image;size reduction</bookmark_value> <bookmark_value>image;resize</bookmark_value> <bookmark_value>image;change resolution</bookmark_value>"
msgstr ""
-#. WZoFm
+#. VGq4F
#: image_compression.xhp
msgctxt ""
"image_compression.xhp\n"
"hd_id581534528193621\n"
"help.text"
-msgid "<link href=\"text/shared/01/image_compression.xhp\">Compress Image</link>"
+msgid "<link href=\"text/shared/01/image_compression.xhp\">Compress</link>"
msgstr ""
-#. QNR3c
+#. XgjVU
#: image_compression.xhp
msgctxt ""
"image_compression.xhp\n"
"par_id951534528193622\n"
"help.text"
-msgid "<variable id=\"variable name\"><ahelp hid=\".\">Compress the selected image to reduce its data size and resize the image in the document.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Compress the selected image to reduce its data size and resize the image in the document.</ahelp>"
msgstr ""
#. XmFoG
@@ -47761,22 +49408,58 @@ msgctxt ""
msgid "Image compression can be lossless or lossy. Lossless compression allows the original image to be perfectly reconstructed from the compressed data. In contrast, lossy compression permits reconstruction only of an approximation of the original image, therefore with some loss of quality, though usually with improved compression rates (and therefore reduced file sizes)."
msgstr ""
-#. YAF9S
+#. fHVoa
+#: image_compression.xhp
+msgctxt ""
+"image_compression.xhp\n"
+"par_id111692800566619\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Compress</menuitem>."
+msgstr ""
+
+#. r6P59
+#: image_compression.xhp
+msgctxt ""
+"image_compression.xhp\n"
+"par_id241692800571915\n"
+"help.text"
+msgid "Choose <menuitem>Compress</menuitem>."
+msgstr ""
+
+#. NYASp
+#: image_compression.xhp
+msgctxt ""
+"image_compression.xhp\n"
+"par_id691692802323908\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> tab, choose <menuitem>Compress</menuitem>."
+msgstr ""
+
+#. BgsBG
+#: image_compression.xhp
+msgctxt ""
+"image_compression.xhp\n"
+"par_id91692800577215\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Compress</menuitem>."
+msgstr ""
+
+#. tFECB
#: image_compression.xhp
msgctxt ""
"image_compression.xhp\n"
-"par_id701534530496585\n"
+"par_id261643820768522\n"
"help.text"
-msgid "Select the image, choose <item type=\"menuitem\">Format - Image - Compress</item>."
+msgid "<image src=\"cmd/lc_compressgraphic.svg\" id=\"img_id901643820768110\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768110\">Icon Compress</alt></image>"
msgstr ""
-#. kUBEn
+#. qFudr
#: image_compression.xhp
msgctxt ""
"image_compression.xhp\n"
-"par_id611534528851319\n"
+"par_id131643820764995\n"
"help.text"
-msgid "Select the image, open the context menu and choose <item type=\"menuitem\">Compress</item>."
+msgid "Compress"
msgstr ""
#. 4WmeG
@@ -47950,6 +49633,69 @@ msgctxt ""
msgid "<link href=\"https://en.wikipedia.org/wiki/Image_file_formats\">Wikipedia on image file formats.</link>"
msgstr ""
+#. YX3VH
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"tit\n"
+"help.text"
+msgid "Edit with External Tool"
+msgstr ""
+
+#. abgBW
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"bm_id431692798521665\n"
+"help.text"
+msgid "<bookmark_value>edit image;external tool</bookmark_value> <bookmark_value>external tool;edit image</bookmark_value>"
+msgstr ""
+
+#. hXSsv
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"hd_id821692797963473\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/image_external_tool.xhp\">Edit with External Tool</link></variable>"
+msgstr ""
+
+#. sEb6F
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"par_id951692797963477\n"
+"help.text"
+msgid "Opens the selected image with the default external tool used for editing images in your operating system."
+msgstr ""
+
+#. ncbL9
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"par_id21692798159509\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Edit with External Tool</menuitem>."
+msgstr ""
+
+#. UJCgE
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"par_id111692798212526\n"
+"help.text"
+msgid "Choose <menuitem>Edit with External Tool</menuitem>."
+msgstr ""
+
+#. gF4CX
+#: image_external_tool.xhp
+msgctxt ""
+"image_external_tool.xhp\n"
+"par_id651692798310474\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Edit with External Tool</menuitem>."
+msgstr ""
+
#. EEMss
#: insert_chart.xhp
msgctxt ""
@@ -52045,13 +53791,22 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select to export comments of Writer and Calc documents as PDF annotations.</ahelp>"
msgstr ""
-#. anEFb
+#. 9dTzh
+#: ref_pdf_export_general.xhp
+msgctxt ""
+"ref_pdf_export_general.xhp\n"
+"hd_id661691142795956\n"
+"help.text"
+msgid "Comments in margin"
+msgstr ""
+
+#. TjwXA
#: ref_pdf_export_general.xhp
msgctxt ""
"ref_pdf_export_general.xhp\n"
-"par_idN207C2\n"
+"par_id751691142822870\n"
"help.text"
-msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem> </caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Writer - Print</menuitem> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
+msgid "Select to export comments of Writer documents in the margin, as they are displayed in the application. Note that this necessarily scales the page contents down to make the comments fit on the page, for the whole document, regardless of the size of the margins."
msgstr ""
#. 2qBJx
@@ -53386,6 +55141,177 @@ msgctxt ""
msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an email sending window with the PDF as an attachment.</ahelp></variable>"
msgstr ""
+#. CBDu3
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"tit\n"
+"help.text"
+msgid "Replace Image"
+msgstr ""
+
+#. UvQjp
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"bm_id341692799454839\n"
+"help.text"
+msgid "<bookmark_value>image;replace</bookmark_value><bookmark_value>replace;image</bookmark_value>"
+msgstr ""
+
+#. VGgz3
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"hd_id791692799059237\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/replace_image.xhp\">Replace</link></variable>"
+msgstr ""
+
+#. dFpgF
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"par_id141690383414904\n"
+"help.text"
+msgid "Opens the file picker to choose an image to replace the selected image."
+msgstr ""
+
+#. YLbfg
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"par_id951692799271898\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Replace</menuitem>."
+msgstr ""
+
+#. yvAQ9
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"par_id351692799317780\n"
+"help.text"
+msgid "Choose <menuitem>Replace</menuitem>."
+msgstr ""
+
+#. 3p2ZS
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"par_id621692799381023\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Replace</menuitem>."
+msgstr ""
+
+#. ARTeY
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"par_id261643820768386\n"
+"help.text"
+msgid "<image src=\"cmd/lc_changepicture.svg\" id=\"img_id901643820768226\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768227\">Icon Replace</alt></image>"
+msgstr ""
+
+#. A6Fek
+#: replace_image.xhp
+msgctxt ""
+"replace_image.xhp\n"
+"par_id131643820764341\n"
+"help.text"
+msgid "Replace"
+msgstr ""
+
+#. XXifr
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"tit\n"
+"help.text"
+msgid "Save Graphic"
+msgstr ""
+
+#. 7tQHb
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"hd_id351692802095828\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/save_graphic.xhp\">Save</link></variable>"
+msgstr ""
+
+#. zwkht
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id651692802095830\n"
+"help.text"
+msgid "Opens the <emph>Image Export</emph> dialog to export the selected image."
+msgstr ""
+
+#. QMk53
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id111692800566619\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Save</menuitem>."
+msgstr ""
+
+#. ED37D
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id241692800571915\n"
+"help.text"
+msgid "Choose <menuitem>Save</menuitem>."
+msgstr ""
+
+#. yFEDE
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id691692802323908\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> tab, choose <menuitem>Save</menuitem>."
+msgstr ""
+
+#. GiEJ6
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id91692800577215\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose <menuitem>Save</menuitem>."
+msgstr ""
+
+#. fsFie
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id261643820768323\n"
+"help.text"
+msgid "<image src=\"cmd/lc_save.svg\" id=\"img_id901643820768654\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768568\">Icon Save</alt></image>"
+msgstr ""
+
+#. GcCxF
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id13164382076454\n"
+"help.text"
+msgid "Save"
+msgstr ""
+
+#. F7VDA
+#: save_graphic.xhp
+msgctxt ""
+"save_graphic.xhp\n"
+"par_id691692802824174\n"
+"help.text"
+msgid "The default file format for export is determined by the graphic internal file format. You can export the image using another file format, from the list in the <emph>File Type</emph> or <emph>Filter</emph> drop-down box."
+msgstr ""
+
#. TCeFG
#: scrollbars.xhp
msgctxt ""
@@ -53395,6 +55321,15 @@ msgctxt ""
msgid "Scroll Bars"
msgstr ""
+#. Hm5jS
+#: scrollbars.xhp
+msgctxt ""
+"scrollbars.xhp\n"
+"bm_id331691595688301\n"
+"help.text"
+msgid "<bookmark_value>tooltips;in scroll bars</bookmark_value>"
+msgstr ""
+
#. fJTgr
#: scrollbars.xhp
msgctxt ""
@@ -53413,13 +55348,13 @@ msgctxt ""
msgid "Show or hide the horizontal and vertical scroll bars that are used to change the viewable area of a document that doesn't fit within the window."
msgstr ""
-#. MbdHd
+#. jTxXb
#: scrollbars.xhp
msgctxt ""
"scrollbars.xhp\n"
"par_id801686502182963\n"
"help.text"
-msgid "choose <menuitem>View - Scroll Bars</menuitem>."
+msgid "Choose <menuitem>View - Scroll Bars</menuitem>."
msgstr ""
#. ZgEQf
@@ -53485,6 +55420,15 @@ msgctxt ""
msgid "Horizontal Scroll Bar"
msgstr ""
+#. E5vZu
+#: scrollbars.xhp
+msgctxt ""
+"scrollbars.xhp\n"
+"par_id101691595568659\n"
+"help.text"
+msgid "When dragging the horizontal scroll bar handle, a tooltip shows the topmost cell column number displayed on the top of the view area."
+msgstr ""
+
#. eKNFZ
#: scrollbars.xhp
msgctxt ""
@@ -53530,6 +55474,24 @@ msgctxt ""
msgid "Vertical Scroll Bar"
msgstr ""
+#. uTiaB
+#: scrollbars.xhp
+msgctxt ""
+"scrollbars.xhp\n"
+"par_id31691595610778\n"
+"help.text"
+msgid "When dragging the vertical scroll bar handle, a tooltip shows the page number, the total pages in the document and the heading text of the first displayed line on the top of the view area."
+msgstr ""
+
+#. DCHG3
+#: scrollbars.xhp
+msgctxt ""
+"scrollbars.xhp\n"
+"par_id391691595617267\n"
+"help.text"
+msgid "When dragging the vertical scroll bar handle, a tooltip shows the topmost cell row number displayed on the top of the view area."
+msgstr ""
+
#. wTQMX
#: securitywarning.xhp
msgctxt ""
@@ -53980,13 +55942,13 @@ msgctxt ""
msgid "Instructions from the document creator"
msgstr ""
-#. QeAww
+#. od5QX
#: signsignatureline.xhp
msgctxt ""
"signsignatureline.xhp\n"
"par_id271526564228571\n"
"help.text"
-msgid "<ahelp hid=\".\">This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\">adding the signature line</link>.</ahelp>"
+msgid "<ahelp hid=\".\">This area displays the instructions entered by the document creator when <link href=\"text/shared/01/addsignatureline.xhp\">adding the signature line</link>.</ahelp>"
msgstr ""
#. H8zHw
@@ -54025,6 +55987,222 @@ msgctxt ""
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
msgstr ""
+#. ypDs7
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"tit\n"
+"help.text"
+msgid "Theme Colors"
+msgstr ""
+
+#. kfT8f
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"bm_id121691113786345\n"
+"help.text"
+msgid "<bookmark_value>document themes;colors</bookmark_value> <bookmark_value>themes;colors</bookmark_value> <bookmark_value>colors;in document themes</bookmark_value>"
+msgstr ""
+
+#. kC4Wf
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"hd_id911690371871844\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/themescolordialog.xhp\">Document Theme Colors</link></variable>"
+msgstr ""
+
+#. g5TbW
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"par_id701691103384432\n"
+"help.text"
+msgid "Creates a color theme."
+msgstr ""
+
+#. JB9Tj
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"par_id441691102910404\n"
+"help.text"
+msgid "Choose <menuitem>Format - Theme</menuitem> and click on <widget>Add</widget>."
+msgstr ""
+
+#. KgjXg
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"hd_id881691103004581\n"
+"help.text"
+msgid "Name"
+msgstr ""
+
+#. NDYeW
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"par_id361691103011285\n"
+"help.text"
+msgid "Enter the name of the new theme."
+msgstr ""
+
+#. MSWDq
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"hd_id431691103045089\n"
+"help.text"
+msgid "Colors"
+msgstr ""
+
+#. Y39Bc
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"par_id971691103121593\n"
+"help.text"
+msgid "For each of the theme named color, select the color in the color drop-down list."
+msgstr ""
+
+#. eqjZB
+#: themescolordialog.xhp
+msgctxt ""
+"themescolordialog.xhp\n"
+"par_id731691113704905\n"
+"help.text"
+msgid "Applied user defined theme is saved only in the document. To make it usable for other documents, use themes in document templates."
+msgstr ""
+
+#. UGGD9
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"tit\n"
+"help.text"
+msgid "Themes"
+msgstr ""
+
+#. PRTn7
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"bm_id971691113956654\n"
+"help.text"
+msgid "<bookmark_value>document themes;choosing</bookmark_value> <bookmark_value>applying document themes</bookmark_value>"
+msgstr ""
+
+#. nq5Bw
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"hd_id931690371241991\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/01/themesdialog.xhp\">Themes</link></variable>"
+msgstr ""
+
+#. ACoaP
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id601691097282479\n"
+"help.text"
+msgid "The bundling of color, font and format settings is possible under the concept of <emph>Theme</emph>."
+msgstr ""
+
+#. 6Cjc6
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id101691100079162\n"
+"help.text"
+msgid "Choose <menuitem>Format - Themes</menuitem>."
+msgstr ""
+
+#. KeXFC
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id171691100137681\n"
+"help.text"
+msgid "Open the <menuitem>Design</menuitem> panel."
+msgstr ""
+
+#. zSVom
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id261691098998130\n"
+"help.text"
+msgid "<emph>Theme colors</emph> is a set of twelve colors, each color has 5 variations computed internally, defined by their RGB-value and only the RGB-value is written to document file. A color of an object can be defined by a reference into a color of the <emph>Theme colors</emph> set. This reference is done by keyword or index, depending on the context."
+msgstr ""
+
+#. J3Av3
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id881691098989192\n"
+"help.text"
+msgid "You need to save the document with the <link href=\"text/shared/00/00000021.xhp\">ODF 1.3 extended</link> format or later to use themes."
+msgstr ""
+
+#. JYA4E
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id861691097260314\n"
+"help.text"
+msgid "The new feature has been mainly implemented for the import and export filter with MS Office."
+msgstr ""
+
+#. apBaJ
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"hd_id921691098481523\n"
+"help.text"
+msgid "Available themes"
+msgstr ""
+
+#. gHJJP
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id571691098618999\n"
+"help.text"
+msgid "Display the set of available themes for the document. To apply a theme to the document, double click on the selected theme."
+msgstr ""
+
+#. wKFJi
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id671691099443625\n"
+"help.text"
+msgid "The top left theme in the Available theme area is the current applied theme."
+msgstr ""
+
+#. e3hWL
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"hd_id21691098637039\n"
+"help.text"
+msgid "Add"
+msgstr ""
+
+#. Ljt3m
+#: themesdialog.xhp
+msgctxt ""
+"themesdialog.xhp\n"
+"par_id621691099005944\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/01/themescolordialog.xhp\"><emph>Theme Color Dialog</emph></link> to define the theme name and the colors of the selected new theme."
+msgstr ""
+
#. qMNEB
#: timestampauth.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 57bb9e25e24..6c30b954564 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2020-02-05 07:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textshared02/am/>\n"
@@ -10672,13 +10672,13 @@ msgctxt ""
msgid "Each $[officename] application has its own <emph>Styles</emph> window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
msgstr ""
-#. VmzDY
+#. Cq2Yr
#: 01230000.xhp
msgctxt ""
"01230000.xhp\n"
"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3149999\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149999\">Icon Styles</alt></image>"
+msgid "<image id=\"img_id3149999\" src=\"cmd/lc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149999\">Icon Styles</alt></image>"
msgstr ""
#. Cwybn
@@ -12031,23 +12031,50 @@ msgctxt ""
msgid "<ahelp hid=\".uno:ToggleObjectRotateMode\">Rotates the selected object.</ahelp>"
msgstr "<ahelp hid=\".uno:ToggleObjectRotateMode\">የተመረጠውን እቃ ማዞሪያ</ahelp>"
-#. 6fD3e
+#. rDPpv
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
-"par_id3149716\n"
+"par_id411693066855382\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Select an object and click the <emph>Rotate</emph> icon on the <emph>Drawing</emph> toolbar.</caseinline><caseinline select=\"DRAW\">Select an object and click the <emph>Rotate</emph> icon on the <emph>Drawing</emph> toolbar.</caseinline><defaultinline>Select an object and click the <emph>Rotate</emph> icon on the <emph>Drawing Object Properties</emph> toolbar.</defaultinline></switchinline> Drag a corner handle of the object in the direction you want to rotate it."
+msgid "Choose <menuitem>Format - Rotate or Flip - Rotate</menuitem>."
msgstr ""
-#. Acw3T
+#. cSu3t
+#: 05090000.xhp
+msgctxt ""
+"05090000.xhp\n"
+"par_id611693066850373\n"
+"help.text"
+msgid "Choose <menuitem>Rotate or Flip - Rotate</menuitem>."
+msgstr ""
+
+#. KnvUF
+#: 05090000.xhp
+msgctxt ""
+"05090000.xhp\n"
+"par_id611693067023223\n"
+"help.text"
+msgid "Choose <menuitem>Draw - Rotate</menuitem>."
+msgstr ""
+
+#. dd3DN
+#: 05090000.xhp
+msgctxt ""
+"05090000.xhp\n"
+"par_id961693067027127\n"
+"help.text"
+msgid "Choose <menuitem>Image - Rotate</menuitem>."
+msgstr ""
+
+#. Yc7R6
#: 05090000.xhp
msgctxt ""
"05090000.xhp\n"
"par_id3152551\n"
"help.text"
-msgid "<image id=\"img_id3154317\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154317\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154317\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3154317\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3154317\" src=\"cmd/lc_toggleobjectrotatemode.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154317\">Icon Rotate</alt></image>"
+msgstr ""
#. VwbGB
#: 05090000.xhp
@@ -12058,6 +12085,24 @@ msgctxt ""
msgid "Rotate"
msgstr "ማዞሪያ"
+#. 2FaFt
+#: 05090000.xhp
+msgctxt ""
+"05090000.xhp\n"
+"par_id611693067183268\n"
+"help.text"
+msgid "Drag a corner handle of the object in the direction you want to rotate it."
+msgstr ""
+
+#. TnEXd
+#: 05090000.xhp
+msgctxt ""
+"05090000.xhp\n"
+"par_id581693067646597\n"
+"help.text"
+msgid "The object is rotated around the center of the object box."
+msgstr ""
+
#. YGLcz
#: 05090000.xhp
msgctxt ""
@@ -12139,13 +12184,58 @@ msgctxt ""
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Moves a numbered heading where the cursor is located, or selected headings, down one outline level. </caseinline></switchinline>Moves a list paragraph where the cursor is located, or selected list paragraphs, down one list level.</ahelp>"
msgstr ""
-#. GiQD7
+#. 9zFaU
#: 06050000.xhp
msgctxt ""
"06050000.xhp\n"
-"par_id3149549\n"
+"par_id581692403201572\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Demote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Demote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Right Arrow</keycode>.</caseinline></switchinline>"
+msgid "Choose <menuitem>Format - List - Demote</menuitem> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Outline Level</menuitem></caseinline></switchinline>"
+msgstr ""
+
+#. GmEDj
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id611692403195573\n"
+"help.text"
+msgid "Choose <menuitem>List - Demote</menuitem> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Outline Level</menuitem></caseinline></switchinline>"
+msgstr ""
+
+#. xNgCV
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id531692403225721\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Demote Outline Level</menuitem>."
+msgstr ""
+
+#. En5kN
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id691692403140138\n"
+"help.text"
+msgid "Choose <menuitem>Home - Demote Outline Level</menuitem>."
+msgstr ""
+
+#. FZt5S
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id591692404797068\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + Shift + Right</keycode>"
+msgstr ""
+
+#. x2dco
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id681692403134842\n"
+"help.text"
+msgid "Choose <menuitem>Text - Demote Outline Level</menuitem>."
msgstr ""
#. MsnjV
@@ -12166,6 +12256,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Demote Outline Level</caseinline><defaultinline>Demote</defaultinline></switchinline>"
msgstr ""
+#. GiQD7
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3149549\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Demote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Demote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Right Arrow</keycode>.</caseinline></switchinline>"
+msgstr ""
+
#. C2ctW
#: 06060000.xhp
msgctxt ""
@@ -12193,13 +12292,58 @@ msgctxt ""
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Moves a numbered heading where the cursor is located, or selected headings, up one outline level. </caseinline></switchinline>Moves a list paragraph where the cursor is located, or selected list paragraphs, up one list level.</ahelp>"
msgstr ""
-#. Pujcg
+#. kac8S
#: 06060000.xhp
msgctxt ""
"06060000.xhp\n"
-"par_id3149205\n"
+"par_id581692403201572\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Promote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Promote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Left Arrow</keycode>.</caseinline></switchinline>"
+msgid "Choose <menuitem>Format - List - Promote</menuitem> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Outline Level</menuitem></caseinline></switchinline>"
+msgstr ""
+
+#. Eyr3e
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id611692403195573\n"
+"help.text"
+msgid "Choose <menuitem>List - Promote</menuitem> <switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Outline Level</menuitem></caseinline></switchinline>"
+msgstr ""
+
+#. EriBL
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id531692403225721\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Promote Outline Level</menuitem>."
+msgstr ""
+
+#. RHdP5
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id691692403140138\n"
+"help.text"
+msgid "Choose <menuitem>Home - Promote Outline Level</menuitem>."
+msgstr ""
+
+#. RWFLB
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id591692404797068\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + Shift + Left</keycode>"
+msgstr ""
+
+#. DwEQb
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id681692403134842\n"
+"help.text"
+msgid "Choose <menuitem>Text - Promote Outline Level</menuitem>."
msgstr ""
#. sACm6
@@ -12220,6 +12364,15 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Promote Outline Level</caseinline><defaultinline>Promote</defaultinline></switchinline>"
msgstr ""
+#. Pujcg
+#: 06060000.xhp
+msgctxt ""
+"06060000.xhp\n"
+"par_id3149205\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <menuitem>Promote Outline Level</menuitem> icon is on the <link href=\"text/swriter/main0206.xhp\"><menuitem>Bullets and Numbering</menuitem></link> bar, which appears when the cursor is positioned on a numbered heading or a list paragraph.</caseinline><caseinline select=\"IMPRESS\">The <menuitem>Promote</menuitem> icon is on the <menuitem>Outline</menuitem> bar, which appears when working in the outline view. This function can also be called by pressing <keycode>Alt+Shift+Left Arrow</keycode>.</caseinline></switchinline>"
+msgstr ""
+
#. C2LYw
#: 06100000.xhp
msgctxt ""
@@ -12247,6 +12400,69 @@ msgctxt ""
msgid "<ahelp hid=\".\">Moves the paragraph where the cursor is located, or selected paragraphs, to before the previous paragraph.</ahelp>"
msgstr ""
+#. rErvw
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id501692410292850\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Item Up</menuitem>."
+msgstr ""
+
+#. QeRAe
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id911692409463015\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Alt + Up</keycode>"
+msgstr ""
+
+#. MLyUf
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id381692409862353\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Up</menuitem>."
+msgstr ""
+
+#. sAB5z
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id911692408463015\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + Shift + Up</keycode>"
+msgstr ""
+
+#. sf6pc
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id841692409858222\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Up</menuitem>."
+msgstr ""
+
+#. tBVE2
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id3150774\n"
+"help.text"
+msgid "<image id=\"img_id3149827\" src=\"cmd/lc_moveup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149827\">Icon Move Up</alt></image>"
+msgstr ""
+
+#. GDksK
+#: 06100000.xhp
+msgctxt ""
+"06100000.xhp\n"
+"par_id3147243\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Up</caseinline><defaultinline>Move Up</defaultinline></switchinline>"
+msgstr ""
+
#. w3Rtd
#: 06100000.xhp
msgctxt ""
@@ -12310,24 +12526,6 @@ msgctxt ""
msgid "If you have numbered paragraphs and use <menuitem>Move Down</menuitem>, then the numbers are adjusted automatically to the current order."
msgstr ""
-#. tBVE2
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"par_id3150774\n"
-"help.text"
-msgid "<image id=\"img_id3149827\" src=\"cmd/lc_moveup.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149827\">Icon Move Up</alt></image>"
-msgstr ""
-
-#. GDksK
-#: 06100000.xhp
-msgctxt ""
-"06100000.xhp\n"
-"par_id3147243\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Up</caseinline><defaultinline>Move Up</defaultinline></switchinline>"
-msgstr ""
-
#. 5rj6N
#: 06110000.xhp
msgctxt ""
@@ -12355,6 +12553,69 @@ msgctxt ""
msgid "<ahelp hid=\".\">Moves the paragraph where the cursor is located, or selected paragraphs, to after the next paragraph.</ahelp>"
msgstr ""
+#. akHdC
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id261692410302179\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Item Down</menuitem>."
+msgstr ""
+
+#. JZiET
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id911692409463015\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Alt + Down</keycode>"
+msgstr ""
+
+#. 6QCnK
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id381692409862353\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Down</menuitem>."
+msgstr ""
+
+#. PGB7F
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id911692408463015\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + Shift + Down</keycode>"
+msgstr ""
+
+#. wK8bD
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id841692409858222\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Down</menuitem>."
+msgstr ""
+
+#. UDTXi
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id3156426\n"
+"help.text"
+msgid "<image id=\"img_id3153577\" src=\"cmd/lc_movedown.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153577\">Icon Move Down</alt></image>"
+msgstr ""
+
+#. J9Dbh
+#: 06110000.xhp
+msgctxt ""
+"06110000.xhp\n"
+"par_id3145212\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Down</caseinline><defaultinline>Move Down</defaultinline></switchinline>"
+msgstr ""
+
#. RgGZF
#: 06110000.xhp
msgctxt ""
@@ -12418,50 +12679,95 @@ msgctxt ""
msgid "If you have numbered paragraphs and use <menuitem>Move Down</menuitem>, then the numbers are adjusted automatically to the current order."
msgstr ""
-#. UDTXi
-#: 06110000.xhp
+#. ZvBbZ
+#: 06120000.xhp
msgctxt ""
-"06110000.xhp\n"
-"par_id3156426\n"
+"06120000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3153577\" src=\"cmd/lc_movedown.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153577\">Icon Move Down</alt></image>"
+msgid "Toggle Unordered List"
msgstr ""
-#. J9Dbh
-#: 06110000.xhp
+#. PXSCt
+#: 06120000.xhp
msgctxt ""
-"06110000.xhp\n"
-"par_id3145212\n"
+"06120000.xhp\n"
+"hd_id3154228\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Move Item Down</caseinline><defaultinline>Move Down</defaultinline></switchinline>"
+msgid "<link href=\"text/shared/02/06120000.xhp\">Unordered List</link>"
msgstr ""
-#. ZvBbZ
+#. GQ9yd
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
-"tit\n"
+"par_id3148520\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DefaultBullet\">Assigns bullet points to the selected paragraphs, or removes them from bulleted paragraphs.</ahelp>"
+msgstr "<ahelp hid=\".uno:DefaultBullet\">ለ ተመረጠው አንቀጽ የ ነጥብ ማስገቢያ መመደቢያ ወይንም ነጥብ ከ ተደረገባቸው አንቀጾች ማስወገጃ</ahelp>"
+
+#. YZacD
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id721692393222724\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Unordered List</menuitem>."
+msgstr ""
+
+#. Ef7Vx
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id461692393262366\n"
+"help.text"
+msgid "Choose <menuitem>Lists - Unordered List</menuitem>."
+msgstr ""
+
+#. xDTgW
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id261692394295047\n"
+"help.text"
+msgid "Choose <menuitem>Home - Unordered List</menuitem>."
+msgstr ""
+
+#. iQf7d
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id3150355\n"
+"help.text"
+msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon Unordered List</alt></image>"
+msgstr ""
+
+#. TEain
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id3149233\n"
"help.text"
msgid "Toggle Unordered List"
msgstr ""
-#. bYLMW
+#. roYGL
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
-"hd_id3154228\n"
+"par_id281692392523986\n"
"help.text"
-msgid "<link href=\"text/shared/02/06120000.xhp\">Toggle Unordered List</link>"
+msgid "<keycode>Shift + F12</keycode>"
msgstr ""
-#. GQ9yd
+#. 8FvDe
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
-"par_id3148520\n"
+"par_id231692393562403\n"
"help.text"
-msgid "<ahelp hid=\".uno:DefaultBullet\">Assigns bullet points to the selected paragraphs, or removes them from bulleted paragraphs.</ahelp>"
-msgstr "<ahelp hid=\".uno:DefaultBullet\">ለ ተመረጠው አንቀጽ የ ነጥብ ማስገቢያ መመደቢያ ወይንም ነጥብ ከ ተደረገባቸው አንቀጾች ማስወገጃ</ahelp>"
+msgid "On the <menuitem>Paragraph</menuitem> deck of the <menuitem>Properties</menuitem> panel, click on <menuitem>Unordered List</menuitem>."
+msgstr ""
#. qd9QL
#: 06120000.xhp
@@ -12499,24 +12805,6 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text box and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
msgstr ""
-#. iQf7d
-#: 06120000.xhp
-msgctxt ""
-"06120000.xhp\n"
-"par_id3150355\n"
-"help.text"
-msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultbullet.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon Unordered List</alt></image>"
-msgstr ""
-
-#. TEain
-#: 06120000.xhp
-msgctxt ""
-"06120000.xhp\n"
-"par_id3149233\n"
-"help.text"
-msgid "Toggle Unordered List"
-msgstr ""
-
#. 6UAmF
#: 07010000.xhp
msgctxt ""
@@ -14776,14 +15064,14 @@ msgctxt ""
msgid "AutoFormat"
msgstr "በራሱ አቀራረብ"
-#. Fou2G
+#. mock9
#: 12070100.xhp
msgctxt ""
"12070100.xhp\n"
"par_id3154988\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\"><emph>AutoFormat</emph></link></caseinline><defaultinline><emph>AutoFormat</emph></defaultinline></switchinline> dialog, in which you can select format styles that are immediately applied when inserting the table.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">መክፈቻ በ <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\"><emph>በራሱ አቀራረብ</emph></link></caseinline><defaultinline><emph>በራሱ አቀራረብ</emph></defaultinline></switchinline> ንግግር: እርስዎ የ አቀራረብ ዘዴዎች የሚመርጡበት እና ወዲያውኑ በ ሰንጠረዥ ውስጥ ማስገባት እና መፈጸም የሚችሉበት</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/AutoFormat.xhp\"><emph>AutoFormat</emph></link></caseinline><defaultinline><emph>AutoFormat</emph></defaultinline></switchinline> dialog, in which you can select format styles that are immediately applied when inserting the table.</ahelp>"
+msgstr ""
#. BtwJD
#: 12070200.xhp
@@ -19015,14 +19303,23 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GrafRed\">Specifies the proportion of red RGB color components for the selected graphic object.</ahelp> Values from -100% (no red) to +100% (full red) are possible."
msgstr "<ahelp hid=\".uno:GrafRed\">ተመጣጣኝነቱን መወሰኛ ለ ቀይ ቀአስ ቀለም አካላቶች ለ ተመረጠው የ ንድፍ እቃ </ahelp> ዋጋዎች ከ -100% (ቀይ የለም) እስከ +100% (ሙሉ ቀይ) ይቻላል"
-#. YBZKr
+#. RpuLU
+#: 24030000.xhp
+msgctxt ""
+"24030000.xhp\n"
+"par_id581692822229175\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
+msgstr ""
+
+#. c6JqG
#: 24030000.xhp
msgctxt ""
"24030000.xhp\n"
"par_id3149511\n"
"help.text"
-msgid "<image id=\"img_id3146130\" src=\"res/sc10865.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146130\">Icon</alt></image>"
-msgstr "<image id=\"img_id3146130\" src=\"res/sc10865.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146130\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafred.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Red</alt></image>"
+msgstr ""
#. ALeBa
#: 24030000.xhp
@@ -19060,23 +19357,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GrafGreen\">Specifies the proportion of green RGB color components for the selected graphic object.</ahelp> Values from -100% (no green) to +100% (full green) are possible."
msgstr "<ahelp hid=\".uno:GrafGreen\">ተመጣጣኝነቱን መወሰኛ ለ አረንጓዴ ቀአስ ቀለም አካላቶች ለ ተመረጠው የ ንድፍ እቃ </ahelp> ዋጋዎች ከ -100% (አረንጓዴ የለም) እስከ +100% (ሙሉ አረንጓዴ) ይቻላል"
-#. JfD68
+#. J9Bui
+#: 24040000.xhp
+msgctxt ""
+"24040000.xhp\n"
+"par_id581692822229175\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
+msgstr ""
+
+#. p3oEN
#: 24040000.xhp
msgctxt ""
"24040000.xhp\n"
-"par_id3148585\n"
+"par_id3149511\n"
"help.text"
-msgid "<image id=\"img_id3152594\" src=\"res/sc10866.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152594\">Icon</alt></image>"
-msgstr "<image id=\"img_id3152594\" src=\"res/sc10866.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152594\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafgreen.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Green</alt></image>"
+msgstr ""
-#. 49ani
+#. EXFC2
#: 24040000.xhp
msgctxt ""
"24040000.xhp\n"
-"par_id3156136\n"
+"par_id3147571\n"
"help.text"
msgid "Green"
-msgstr "አረንጓዴ"
+msgstr ""
#. XGdbm
#: 24050000.xhp
@@ -19105,23 +19411,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GrafBlue\">Specifies the proportion of blue RGB color components for the selected graphic.</ahelp> Values from -100% (no blue) to +100% (full blue) are possible."
msgstr "<ahelp hid=\".uno:GrafBlue\">ተመጣጣኝነቱን መወሰኛ ለ ሰማያዊ ቀአስ ቀለም አካላቶች ለ ተመረጠው የ ንድፍ እቃ </ahelp> ዋጋዎች ከ -100% (ሰማያዊ የለም) እስከ +100% (ሙሉ ሰማያዊ) ይቻላል"
-#. mcGXa
+#. KLqMu
#: 24050000.xhp
msgctxt ""
"24050000.xhp\n"
-"par_id3152372\n"
+"par_id581692822229175\n"
"help.text"
-msgid "<image id=\"img_id3149549\" src=\"res/sc10867.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149549\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149549\" src=\"res/sc10867.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149549\">ምልክት</alt></image>"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
+msgstr ""
-#. BvKQ2
+#. uFHNL
#: 24050000.xhp
msgctxt ""
"24050000.xhp\n"
-"par_id3154751\n"
+"par_id3149511\n"
+"help.text"
+msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafblue.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Blue</alt></image>"
+msgstr ""
+
+#. JphtH
+#: 24050000.xhp
+msgctxt ""
+"24050000.xhp\n"
+"par_id3147571\n"
"help.text"
msgid "Blue"
-msgstr "ሰማያዊ"
+msgstr ""
#. WXWjP
#: 24060000.xhp
@@ -19150,23 +19465,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GrafLuminance\" visibility=\"visible\">Specifies the brightness for the selected graphic object.</ahelp> Values from -100% (only black) to +100% (only white) are possible."
msgstr "<ahelp hid=\".uno:GrafLuminance\" visibility=\"visible\">ለ ተመረጠው የ ንድፍ እቃ ብሩህነት መወሰኛ </ahelp> ዋጋዎች ከ -100% (ጥቁር ብቻ) እስከ +100% (ነጭ ብቻ) ይቻላል"
-#. fbAqa
+#. LeBu8
#: 24060000.xhp
msgctxt ""
"24060000.xhp\n"
-"par_id3150808\n"
+"par_id581692822229175\n"
"help.text"
-msgid "<image src=\"res/sc10863.png\" id=\"img_id3146130\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Brightness</alt></image>"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
msgstr ""
-#. h5Rsx
+#. giNuz
#: 24060000.xhp
msgctxt ""
"24060000.xhp\n"
-"par_id3154927\n"
+"par_id3149511\n"
+"help.text"
+msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafluminance.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Brightness</alt></image>"
+msgstr ""
+
+#. SGDgg
+#: 24060000.xhp
+msgctxt ""
+"24060000.xhp\n"
+"par_id3147571\n"
"help.text"
msgid "Brightness"
-msgstr "ብርሁነት"
+msgstr ""
#. D6AnR
#: 24070000.xhp
@@ -19195,23 +19519,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GrafContrast\" visibility=\"visible\">Specifies the contrast for viewing the selected graphic image.</ahelp> Values from -100% (no contrast at all) to +100% (full contrast) are possible."
msgstr "<ahelp hid=\".uno:GrafContrast\" visibility=\"visible\">ለ ተመረጠው የ ንድፍ እቃ ማነፃፀሪያ መወሰኛ </ahelp> ዋጋዎች ከ -100% (ማነፃፀሪያ የለም) እስከ +100% (ሙሉ ማነፃፀሪያ) ይቻላል"
-#. jAUcg
+#. MxeMD
+#: 24070000.xhp
+msgctxt ""
+"24070000.xhp\n"
+"par_id581692822229175\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
+msgstr ""
+
+#. jCGCt
#: 24070000.xhp
msgctxt ""
"24070000.xhp\n"
-"par_id3156027\n"
+"par_id3149511\n"
"help.text"
-msgid "<image src=\"res/sc10864.png\" id=\"img_id3154398\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154398\">Icon </alt></image>"
+msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafcontrast.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Contrast</alt></image>"
msgstr ""
-#. G799w
+#. jtCLn
#: 24070000.xhp
msgctxt ""
"24070000.xhp\n"
-"par_id3157991\n"
+"par_id3147571\n"
"help.text"
msgid "Contrast"
-msgstr "ማነጻጸሪያ"
+msgstr ""
#. b3opY
#: 24080000.xhp
@@ -19240,23 +19573,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:GrafGamma\">Specifies the gamma value for the view of the selected object, which affects the brightness of the midtone values.</ahelp> Values from 0.10 (minimum Gamma) to 10 (maximum Gamma) are possible."
msgstr "<ahelp hid=\".uno:GrafGamma\">ለ ተመረጠው እቃ የ gamma ዋጋ መመልከቻ መወሰኛ: በ መሀከል ብርሃን ዋጋዎች ብሩህነት ላይ ተፅእኖ ይፈጥራል </ahelp> ዋጋዎች ከ 0.10 (አነስተኛ Gamma) እስከ 10 (ከፍተኛ Gamma) መጠቀም ይቻላል"
-#. zXSVi
+#. EimsU
#: 24080000.xhp
msgctxt ""
"24080000.xhp\n"
-"par_id3149760\n"
+"par_id581692822229175\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
+msgstr ""
+
+#. RMTrD
+#: 24080000.xhp
+msgctxt ""
+"24080000.xhp\n"
+"par_id3149511\n"
"help.text"
-msgid "<image id=\"img_id3159194\" src=\"res/sc10868.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159194\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159194\" src=\"res/sc10868.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159194\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3146130\" src=\"cmd/lc_grafgamma.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146130\">Icon Gamma</alt></image>"
+msgstr ""
-#. CzL4T
+#. aCmes
#: 24080000.xhp
msgctxt ""
"24080000.xhp\n"
-"par_id3149798\n"
+"par_id3147571\n"
"help.text"
msgid "Gamma"
-msgstr "ጋማ"
+msgstr ""
#. JBpzD
#: 24090000.xhp
@@ -19528,14 +19870,14 @@ msgctxt ""
msgid "<link href=\"text/shared/02/colortoolbar.xhp\">Color</link>"
msgstr "<link href=\"text/shared/02/colortoolbar.xhp\">ቀለም</link>"
-#. EVFkF
+#. qRdF5
#: colortoolbar.xhp
msgctxt ""
"colortoolbar.xhp\n"
"par_id1676381\n"
"help.text"
-msgid "<ahelp hid=\".\">With the Color toolbar you can edit some properties of the selected object.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ተመረጠውን እቃ ባህሪዎች ማረሚያ በ ቀለም እቃ መደርደሪያ </ahelp> ውስጥ"
+msgid "<ahelp hid=\".\">Opens the <emph>Color</emph> toolbar so you can edit some properties of the selected object.</ahelp>"
+msgstr ""
#. rEAPw
#: colortoolbar.xhp
@@ -19546,6 +19888,42 @@ msgctxt ""
msgid "To open the Color toolbar, click the Color icon on the Image toolbar."
msgstr "ለ መክፈት የ ቀለም እቃ መደርደሪያ: ይጫኑ የ ቀለም ምልክት በ ምስል እቃ መደርደሪያ ላይ"
+#. xNbd7
+#: colortoolbar.xhp
+msgctxt ""
+"colortoolbar.xhp\n"
+"par_id341692819918936\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image - Color</menuitem>."
+msgstr ""
+
+#. fDnZ8
+#: colortoolbar.xhp
+msgctxt ""
+"colortoolbar.xhp\n"
+"par_id771692819965914\n"
+"help.text"
+msgid "Choose <menuitem>Image - Color</menuitem>."
+msgstr ""
+
+#. b3D2x
+#: colortoolbar.xhp
+msgctxt ""
+"colortoolbar.xhp\n"
+"par_id261643820762014\n"
+"help.text"
+msgid "<image src=\"cmd/lc_colorsettings.svg\" id=\"img_id901643820760103\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768266\">Icon Color</alt></image>"
+msgstr ""
+
+#. iK8uZ
+#: colortoolbar.xhp
+msgctxt ""
+"colortoolbar.xhp\n"
+"par_id13164382076547\n"
+"help.text"
+msgid "Color"
+msgstr ""
+
#. oQ5tj
#: flowcharts.xhp
msgctxt ""
@@ -19771,23 +20149,50 @@ msgctxt ""
msgid "<ahelp hid=\".\">First select some text or an object, then click this icon. Then click on or drag across other text or click an object to apply the same formatting.</ahelp>"
msgstr "<ahelp hid=\".\">መጀመሪያ ጽሁፍ ይምረጡ ወይንም እቃ: ከዛ ይጫኑ ይህን ምልክት: ይጫኑ ወይንም ይጎትቱ በ ሌላ ጽሁፍ ባሻገር ወይንም ይጫኑ እቃ ላይ ተመሳሳይ አቀራረብ ለ መፈጸም </ahelp>"
-#. FsDda
+#. i845n
+#: paintbrush.xhp
+msgctxt ""
+"paintbrush.xhp\n"
+"par_id131690130360927\n"
+"help.text"
+msgid "Choose <menuitem>Format - Clone Formatting</menuitem>."
+msgstr ""
+
+#. KaacH
+#: paintbrush.xhp
+msgctxt ""
+"paintbrush.xhp\n"
+"par_id451690131442186\n"
+"help.text"
+msgid "Choose <menuitem>Home - Clone</menuitem>."
+msgstr ""
+
+#. WsUWN
+#: paintbrush.xhp
+msgctxt ""
+"paintbrush.xhp\n"
+"par_id11690131337324\n"
+"help.text"
+msgid "Choose <menuitem>Draw - Clone</menuitem> (selected object)."
+msgstr ""
+
+#. NzdJk
#: paintbrush.xhp
msgctxt ""
"paintbrush.xhp\n"
-"par_idN10617\n"
+"par_id901690131342748\n"
"help.text"
-msgid "Click the <emph>Clone Formatting</emph> icon <image id=\"img_id3610034\" src=\"cmd/sc_formatpaintbrush.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3610034\">Icon</alt></image> on the <emph>Standard</emph> toolbar."
-msgstr "ይጫኑ የ <emph>ተመሳሳይ አቀራረብ</emph> ምልክት <image id=\"img_id3610034\" src=\"cmd/sc_formatpaintbrush.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3610034\">ምልክት</alt></image> በ <emph>መደበኛ</emph> እቃ መደርደሪያ ላይ"
+msgid "Select <menuitem>Properties - Style</menuitem> deck."
+msgstr ""
-#. j67mX
+#. XhX8y
#: paintbrush.xhp
msgctxt ""
"paintbrush.xhp\n"
"par_idN10639\n"
"help.text"
-msgid "<image id=\"img_id5406964\" src=\"cmd/sc_formatpaintbrush.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id5406964\">Icon</alt></image>"
-msgstr "<image id=\"img_id5406964\" src=\"cmd/sc_formatpaintbrush.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id5406964\">ምልክት</alt></image>"
+msgid "<image id=\"img_id5406964\" src=\"cmd/lc_formatpaintbrush.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5406964\">Icon Paintbrush</alt></image>"
+msgstr ""
#. Eo8Tp
#: paintbrush.xhp
@@ -19897,6 +20302,186 @@ msgctxt ""
msgid "<ahelp hid=\".\">Adds a Limit to set the maximum number of records to return.</ahelp>"
msgstr ""
+#. yRDGb
+#: rotate_180.xhp
+msgctxt ""
+"rotate_180.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rotate 180°"
+msgstr ""
+
+#. daWcC
+#: rotate_180.xhp
+msgctxt ""
+"rotate_180.xhp\n"
+"hd_id901693068548403\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/02/rotate_180.xhp\">Rotate 180°</link></variable>"
+msgstr ""
+
+#. asbEa
+#: rotate_180.xhp
+msgctxt ""
+"rotate_180.xhp\n"
+"par_id761693068548405\n"
+"help.text"
+msgid "Rotates object 180 degrees."
+msgstr ""
+
+#. eu9Up
+#: rotate_180.xhp
+msgctxt ""
+"rotate_180.xhp\n"
+"par_id521693068678470\n"
+"help.text"
+msgid "Choose <menuitem>Format - Rotate or Flip - Rotate 180°</menuitem>."
+msgstr ""
+
+#. zSCVj
+#: rotate_180.xhp
+msgctxt ""
+"rotate_180.xhp\n"
+"par_id671693068869459\n"
+"help.text"
+msgid "Choose <menuitem>Rotate or Flip - Rotate 180°</menuitem>."
+msgstr ""
+
+#. iGjuG
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rotate 90° Left"
+msgstr ""
+
+#. CwboB
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"hd_id901693068548403\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/02/rotate_left.xhp\">Rotate 90° Left</link></variable>"
+msgstr ""
+
+#. W2CUz
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"par_id761693068548405\n"
+"help.text"
+msgid "Rotates object 90 degrees left."
+msgstr ""
+
+#. 2T83A
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"par_id521693068678470\n"
+"help.text"
+msgid "Choose <menuitem>Format - Rotate or Flip - Rotate 90° Left</menuitem>."
+msgstr ""
+
+#. 6MTt3
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"par_id671693068869459\n"
+"help.text"
+msgid "Choose <menuitem>Rotate or Flip - Rotate 90° Left</menuitem>."
+msgstr ""
+
+#. zNACr
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"par_id3152551\n"
+"help.text"
+msgid "<image id=\"img_id3154317\" src=\"cmd/sc_rotateleft.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154317\">Icon Rotate 90° Left</alt></image>"
+msgstr ""
+
+#. AjQs3
+#: rotate_left.xhp
+msgctxt ""
+"rotate_left.xhp\n"
+"par_id3153577\n"
+"help.text"
+msgid "Rotate 90° Left"
+msgstr ""
+
+#. kAcPA
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rotate 90° Right"
+msgstr ""
+
+#. 2Gt5e
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"hd_id901693068548403\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/02/rotate_right.xhp\">Rotate 90° Right</link></variable>"
+msgstr ""
+
+#. uBPrC
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"par_id761693068548405\n"
+"help.text"
+msgid "Rotates object 90 degrees right."
+msgstr ""
+
+#. AA2co
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"par_id521693068678470\n"
+"help.text"
+msgid "Choose <menuitem>Format - Rotate or Flip - Rotate 90° Right</menuitem>."
+msgstr ""
+
+#. DZ7aG
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"par_id671693068869459\n"
+"help.text"
+msgid "Choose <menuitem>Rotate or Flip - Rotate 90° Right</menuitem>."
+msgstr ""
+
+#. D3PVt
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"par_id701693086810506\n"
+"help.text"
+msgid "Choose <menuitem>Image - Rotate 90° Right</menuitem>."
+msgstr ""
+
+#. jTMPc
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"par_id3152551\n"
+"help.text"
+msgid "<image id=\"img_id3154317\" src=\"cmd/sc_rotateright.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154317\">Icon Rotate 90° Right</alt></image>"
+msgstr ""
+
+#. q7M7t
+#: rotate_right.xhp
+msgctxt ""
+"rotate_right.xhp\n"
+"par_id3153577\n"
+"help.text"
+msgid "Rotate 90° Right"
+msgstr ""
+
#. cBmTx
#: stars.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index 6a1aee8ce7d..17ee1c3b075 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-12-09 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13831,14 +13831,14 @@ msgctxt ""
msgid "Click the Character Styles icon."
msgstr "ይጫኑ የ ባህሪ ዘዴዎች ምልክት"
-#. 42JkA
+#. kdaL4
#: hyperlink_edit.xhp
msgctxt ""
"hyperlink_edit.xhp\n"
"par_idN1082C\n"
"help.text"
-msgid "Right-click the \"Internet Link\" or \"Visited Internet Link\" character style, and choose <emph>Modify</emph>."
-msgstr "በ ቀኝ-ይጫኑ የ \"ኢንተርኔት አገናኝ\" ወይንም \"የተጎበኘ የ ኢንተርኔት አገናኝ\" ባህሪ ዘዴ እና ይጫኑ <emph> ማሻሻያ </emph>"
+msgid "Right-click the “Internet Link” or “Visited Internet Link” character style, and choose <menuitem>Edit Style</menuitem>."
+msgstr ""
#. YkLWs
#: hyperlink_edit.xhp
@@ -16891,13 +16891,13 @@ msgctxt ""
msgid "Click on the name of the character style to which you want to apply a different language."
msgstr "ይጫኑ በ ባህሪው ዘዴ ስም ላይ እርስዎ የ ተለየ ቋንቋ መፈጸም በሚፈልጉበት ላይ"
-#. DizbK
+#. HhAPU
#: language_select.xhp
msgctxt ""
"language_select.xhp\n"
"par_id3150753\n"
"help.text"
-msgid "Then open the context menu in the <emph>Styles</emph> window and select <emph>Modify</emph>. This opens the <emph>Character Style</emph> dialog."
+msgid "Right-click to open the context menu and select <menuitem>Edit Style</menuitem> to open the <menuitem>Character Style</menuitem> dialog."
msgstr ""
#. p6Sei
@@ -21112,13 +21112,13 @@ msgctxt ""
msgid "<emph>gpg4win</emph> on Windows"
msgstr ""
-#. C6vxi
+#. RQBD4
#: openpgp.xhp
msgctxt ""
"openpgp.xhp\n"
"par_id191543846891252\n"
"help.text"
-msgid "<emph>GPGTools</emph> on MacOS"
+msgid "<emph>GPG Suite</emph> on macOS"
msgstr ""
#. 645og
@@ -22219,22 +22219,31 @@ msgctxt ""
msgid "To encrypt a file:"
msgstr ""
-#. fza5q
+#. taFEp
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"par_id601682091972478\n"
"help.text"
-msgid "To set version 1.5 (instead of the default 1.6):"
+msgid "To set version 1.5 (instead of the default 1.7):"
msgstr ""
-#. mDXqB
+#. iRpXC
+#: pdf_params.xhp
+msgctxt ""
+"pdf_params.xhp\n"
+"hd_id791693493415853\n"
+"help.text"
+msgid "Index"
+msgstr ""
+
+#. Gce7M
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"hd_id161682092535475\n"
"help.text"
-msgid "General Properties"
+msgid "<variable id=\"general_properties\"><link href=\"text/shared/guide/pdf_params.xhp#generaltext/shared/guide/pdf_params.xhp\">General Properties</link></variable>"
msgstr ""
#. CLYTU
@@ -22633,13 +22642,22 @@ msgctxt ""
msgid "When the option is enabled, then the reference XObject markup is used: this is a simple operation, but viewers have to support this markup to show vector images. Otherwise a fallback bitmap is shown in the viewer."
msgstr ""
-#. JFuMo
+#. CnAJS
+#: pdf_params.xhp
+msgctxt ""
+"pdf_params.xhp\n"
+"par_id641693492486689\n"
+"help.text"
+msgid "Ignores each sheet’s paper size, print ranges and shown/hidden status and puts every sheet (even hidden sheets) on exactly one page."
+msgstr ""
+
+#. CWgpi
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"hd_id651682101490073\n"
"help.text"
-msgid "Initial View"
+msgid "<variable id=\"initial_view\"><link href=\"text/shared/guide/pdf_params.xhp#initial_view\">Initial View</link></variable>"
msgstr ""
#. fTBNo
@@ -22804,13 +22822,13 @@ msgctxt ""
msgid "Used with the value 3 of the <literal>PageLayout</literal> property above, true if the first page (odd) should be on the left side of the screen."
msgstr ""
-#. TgEMS
+#. vhDQj
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"hd_id781682103094811\n"
"help.text"
-msgid "User Interface"
+msgid "<variable id=\"user_interface\"><link href=\"text/shared/guide/pdf_params.xhp#user interface\">User Interface</link></variable>"
msgstr ""
#. Tp3hh
@@ -22912,13 +22930,13 @@ msgctxt ""
msgid "1–10: indicate a bookmark level (from 1 to 10)"
msgstr ""
-#. 6hYBz
+#. 9Vni2
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"hd_id981682103099003\n"
"help.text"
-msgid "Links"
+msgid "<variable id=\"links\"><link href=\"text/shared/guide/pdf_params.xhp#links\">Links</link></variable>"
msgstr ""
#. PLqRL
@@ -22984,13 +23002,13 @@ msgctxt ""
msgid "2: Specifies that the PDF will be exported in order to be viewed through an Internet browser, using the PDF plug-in provided with it. The bookmark of the URI will be rendered compatible with the target bookmark generated with %PRODUCTNAME PDF Export feature (see <literal>ExportBookmarksToPDFDestination</literal>)."
msgstr ""
-#. 82SCn
+#. kxDNY
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"hd_id431682103103402\n"
"help.text"
-msgid "Security"
+msgid "<variable id=\"security\"><link href=\"text/shared/guide/pdf_params.xhp#security\">Security</link></variable>"
msgstr ""
#. QrCmH
@@ -23137,13 +23155,13 @@ msgctxt ""
msgid "Specifies that the document content can be extracted to be used in accessibility applications."
msgstr ""
-#. rboGy
+#. MbaEt
#: pdf_params.xhp
msgctxt ""
"pdf_params.xhp\n"
"hd_id211682127014184\n"
"help.text"
-msgid "Digital Signature"
+msgid "<variable id=\"digital_signature\"><link href=\"text/shared/guide/pdf_params.xhp#digital_signature\">Digital Signature</link></variable>"
msgstr ""
#. GUMxB
@@ -28753,6 +28771,159 @@ msgctxt ""
msgid "Choose <emph>Format - Clear Direct Formatting</emph>."
msgstr "ይምረጡ <emph> አቀራረብ - በ ቀጥታ አቀራረብ ማጽጃ </emph>"
+#. HHT66
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Themes"
+msgstr ""
+
+#. p65ax
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"bm_id21691114004763\n"
+"help.text"
+msgid "<bookmark_value>using;document themes</bookmark_value> <bookmark_value>document themes;using</bookmark_value>"
+msgstr ""
+
+#. E8FuY
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"hd_id911691103974397\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/guide/usingthemes.xhp\">Using Document Themes</link></variable>"
+msgstr ""
+
+#. 6B2st
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id451691109216603\n"
+"help.text"
+msgid "Theme is the concept of bundling color, font and format settings. The colors, fonts and format settings names are hard coded in the document. When switching themes in the document, the elements containing the hardcoded names switch colors, fonts and format settings accordingly to the new theme."
+msgstr ""
+
+#. SeeDV
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"hd_id761691104702168\n"
+"help.text"
+msgid "To Apply a Theme to the Document"
+msgstr ""
+
+#. tC7mV
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id251691104665472\n"
+"help.text"
+msgid "Choose <menuitem>Format - Themes</menuitem>."
+msgstr ""
+
+#. t5mJX
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id191691104673439\n"
+"help.text"
+msgid "Double-click on the theme desired or select the theme and click <widget>OK</widget>"
+msgstr ""
+
+#. jamVZ
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id91691105048167\n"
+"help.text"
+msgid "All document elements with the hardcoded theme attribute name set will change to the new theme attribute. For example, a heading with font color set as \"Dark 2\" changes to the new theme \"Dark 2\" color."
+msgstr ""
+
+#. FGchS
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"hd_id61691109283045\n"
+"help.text"
+msgid "To Add a New Theme"
+msgstr ""
+
+#. oCydf
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id901691109354713\n"
+"help.text"
+msgid "Choose <menuitem>Format - Theme</menuitem> and click on <widget>Add</widget>."
+msgstr ""
+
+#. Gs49d
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id351691109420290\n"
+"help.text"
+msgid "Enter a name for the new theme in the <emph>Name</emph> text box."
+msgstr ""
+
+#. ojmfL
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id191691110090664\n"
+"help.text"
+msgid "On the color area, choose the main color for each of the 12 hard coded color name of the theme. <variable id=\"extracolors\">%PRODUCTNAME creates 5 additional colors to the theme calculated from the main color. The calculations of the color variants are also hard coded in the theme and you cannot change them, only the main color.</variable>"
+msgstr ""
+
+#. aFNjR
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id811691110231938\n"
+"help.text"
+msgid "Click <widget>OK</widget> to close the color dialog."
+msgstr ""
+
+#. 2jbpd
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id971691110237308\n"
+"help.text"
+msgid "Click <widget>OK</widget> or double click the new theme to apply the theme to the document."
+msgstr ""
+
+#. NBFGo
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"hd_id141691110507439\n"
+"help.text"
+msgid "To Use a Document Theme"
+msgstr ""
+
+#. 9nbCK
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id511691113013612\n"
+"help.text"
+msgid "Format the document using the hardcoded theme attribute name such as colors, fonts and other format settings."
+msgstr ""
+
+#. 5TYtK
+#: usingthemes.xhp
+msgctxt ""
+"usingthemes.xhp\n"
+"par_id671691113042212\n"
+"help.text"
+msgid "Apply the theme to the document."
+msgstr ""
+
#. QDTvg
#: version_number.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/menu.po b/source/am/helpcontent2/source/text/shared/menu.po
index e421808a53c..fc063409806 100644
--- a/source/am/helpcontent2/source/text/shared/menu.po
+++ b/source/am/helpcontent2/source/text/shared/menu.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2016-11-14 16:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -322,6 +322,69 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains common shapes like a line, circle, triangle, and square, or a symbol shape like a smiley face, heart, and flower that can be inserted into the document.</ahelp>"
msgstr "<ahelp hid=\".\">ይህ ንዑስ ዝርዝር የያዘው የ ተለመዱ ቅርጾችን ነው እንደ መስመር: ክብ: ሶስት ማእዘን: እና ስኴር ወይንም የ ምልክት ቅርጽ እንደ ሳቂታ ፊት: ልብ: እና አበባ ናቸው ወደ ሰነድ ውስጥ ሊጨመሩ የሚችሉ </ahelp>"
+#. vcXma
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id371689419860375\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Shape</menuitem>."
+msgstr ""
+
+#. 5prSD
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id221689420180556\n"
+"help.text"
+msgid "Choose <menuitem>Home</menuitem>."
+msgstr ""
+
+#. tuTUD
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id51689420185288\n"
+"help.text"
+msgid "Choose <menuitem>Insert</menuitem>."
+msgstr ""
+
+#. UFRsP
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id801689420619159\n"
+"help.text"
+msgid "<image src=\"cmd/lc_graphic.svg\" id=\"img_id831689420619160\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id681689420619161\">Icon Insert Shape</alt></image>"
+msgstr ""
+
+#. RKMoV
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id321689420619163\n"
+"help.text"
+msgid "Insert Shape"
+msgstr ""
+
+#. MWkRP
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id451689424666075\n"
+"help.text"
+msgid "Open the <menuitem>Shapes</menuitem> deck."
+msgstr ""
+
+#. 7fziz
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id71689424658656\n"
+"help.text"
+msgid "Open the <menuitem>Shapes</menuitem> deck."
+msgstr ""
+
#. Um3uD
#: insert_shape.xhp
msgctxt ""
@@ -340,23 +403,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains straight, freeform, curved and polygon line shapes.</ahelp>"
msgstr "<ahelp hid=\".\">ይህ ንዑስ ዝርዝር የያዘው ነፃ መስመር: ክብ: እና ፖሊጎን መስመር ቅርጾች ነው </ahelp>"
-#. Q9cD2
-#: insert_shape.xhp
-msgctxt ""
-"insert_shape.xhp\n"
-"hd_id030720160823321429\n"
-"help.text"
-msgid "<link href=\"text/shared/02/01140000.xhp#line_title\">Line</link>"
-msgstr "<link href=\"text/shared/02/01140000.xhp#line_title\">መስመር</link>"
-
-#. HzFM7
+#. kzkBD
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160629546864\n"
"help.text"
-msgid "Basic"
-msgstr "መሰረታዊ"
+msgid "Basic Shapes"
+msgstr ""
#. 8CEvF
#: insert_shape.xhp
@@ -367,14 +421,14 @@ msgctxt ""
msgid "This submenu contains basic shapes like rectangles, circles, triangles, pentagon, hexagon, octagon, cylinder, and cube."
msgstr "ይህ ንዑስ ዝርዝር የያዘው መሰረታዊ ቅርጾች እንደ አራት ማእዘን: ክብ: ሶስት ማእዘን: ፔንታጎን: ሲሊንደር እና ኪዩብ ነው"
-#. WjrBE
+#. PXhah
#: insert_shape.xhp
msgctxt ""
"insert_shape.xhp\n"
"par_id030720160629547675\n"
"help.text"
-msgid "Symbol"
-msgstr "ምልክት"
+msgid "Symbol Shapes"
+msgstr ""
#. GCKeF
#: insert_shape.xhp
@@ -385,6 +439,78 @@ msgctxt ""
msgid "This submenu contains symbols shapes like smiley face, heart, sun, moon, flower, puzzle, beveled shapes, and brackets."
msgstr "ይህ ንዑስ ዝርዝር የያዘው መሰረታዊ ምልክቶች ሳቂታ ፊት: ልብ: ፀሐይ: ጨረቃ: አበባ: እንቆቅልሽ: ስላሽ ቅርጾች እና ቅንፍ ነው"
+#. vNTVM
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id611689426279512\n"
+"help.text"
+msgid "Block Arrows"
+msgstr ""
+
+#. BPnWg
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id41689426765628\n"
+"help.text"
+msgid "This submenu contains block arrow shapes like right arrow, split arrow, circular arrow and more."
+msgstr ""
+
+#. GfbGc
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id271689426283831\n"
+"help.text"
+msgid "Flowchart"
+msgstr ""
+
+#. 6QCkL
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id631689426759732\n"
+"help.text"
+msgid "This submenu contains flowchart shapes like process, decision, data, document, terminator and more."
+msgstr ""
+
+#. tmYcp
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id371689426288479\n"
+"help.text"
+msgid "Callout Shapes"
+msgstr ""
+
+#. FR72i
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id291689426754707\n"
+"help.text"
+msgid "This submenu contains callout shapes like rectangular, rounded rectangular, round, cloud and more."
+msgstr ""
+
+#. Xxjvu
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"hd_id731689426292776\n"
+"help.text"
+msgid "Stars and Banners"
+msgstr ""
+
+#. 7L864
+#: insert_shape.xhp
+msgctxt ""
+"insert_shape.xhp\n"
+"par_id461689426746716\n"
+"help.text"
+msgid "This submenu contains star and banners shapes like multi ray stars, scrolls and more."
+msgstr ""
+
#. et6tw
#: save_image.xhp
msgctxt ""
@@ -501,3 +627,759 @@ msgctxt ""
"help.text"
msgid "Opens the <emph>Set Image Background</emph> dialog to set the background image of the current <switchinline select=\"appl\"><caseinline select=\"IMPRESS\">slide</caseinline><defaultinline>page</defaultinline></switchinline>. Select an image file and click <emph>Open</emph>."
msgstr ""
+
+#. izuQf
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"tit\n"
+"help.text"
+msgid "Image"
+msgstr ""
+
+#. WEo9P
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"hd_id411816022675979\n"
+"help.text"
+msgid "<link href=\"text/shared/menu/submenu_image.xhp\">Image</link>"
+msgstr ""
+
+#. PXKMS
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"par_id398855439580084\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose commands to manipulate images.</ahelp>"
+msgstr ""
+
+#. F7WSB
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"par_id321690379868876\n"
+"help.text"
+msgid "Choose <menuitem>Format - Image</menuitem>"
+msgstr ""
+
+#. FFzA8
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"hd_id471690383078695\n"
+"help.text"
+msgid "Original Size"
+msgstr ""
+
+#. Xjhs9
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"par_id711690383088371\n"
+"help.text"
+msgid "Restores the original size of the selected image."
+msgstr ""
+
+#. ZYu8G
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"hd_id11692743945980\n"
+"help.text"
+msgid "Fit to cell size"
+msgstr ""
+
+#. 6uumw
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"hd_id341690402790136\n"
+"help.text"
+msgid "<link href=\"text/shared/02/24010000.xhp\">Filter</link>"
+msgstr ""
+
+#. DiNQt
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"par_id181690402800547\n"
+"help.text"
+msgid "Opens a submenu with several filters that can be applied to the selected image."
+msgstr ""
+
+#. xEepr
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"hd_id281692741932662\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05060000.xhp\">Properties</link>"
+msgstr ""
+
+#. JBAXP
+#: submenu_image.xhp
+msgctxt ""
+"submenu_image.xhp\n"
+"par_id501692797320854\n"
+"help.text"
+msgid "<embedvar href=\"text/swriter/01/05060000.xhp#grafiktext\" markup=\"ignore\"/>"
+msgstr ""
+
+#. UofYA
+#: submenu_lists.xhp
+msgctxt ""
+"submenu_lists.xhp\n"
+"tit\n"
+"help.text"
+msgid "Lists"
+msgstr ""
+
+#. BEEuG
+#: submenu_lists.xhp
+msgctxt ""
+"submenu_lists.xhp\n"
+"hd_id411816022675979\n"
+"help.text"
+msgid "<link href=\"text/shared/menu/submenu_lists.xhp\">Lists</link>"
+msgstr ""
+
+#. HWyDE
+#: submenu_lists.xhp
+msgctxt ""
+"submenu_lists.xhp\n"
+"par_id398855439580084\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose commands to create and work on lists.</ahelp>"
+msgstr ""
+
+#. M2gWP
+#: submenu_lists.xhp
+msgctxt ""
+"submenu_lists.xhp\n"
+"par_id321690379868876\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists</menuitem>"
+msgstr ""
+
+#. zeHPg
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"tit\n"
+"help.text"
+msgid "Rotate or Flip"
+msgstr ""
+
+#. TFgHu
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"hd_id661693064275326\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/shared/menu/submenu_rotateflip.xhp\">Rotate or Flip</link></variable>"
+msgstr ""
+
+#. SxrTz
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"par_id561602978499640\n"
+"help.text"
+msgid "Opens a submenu where you can rotate or flip a selected shape or image. Text boxes can only be rotated."
+msgstr ""
+
+#. rVWwL
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"par_id41693064459459\n"
+"help.text"
+msgid "Choose <menuitem>Format - Rotate or Flip</menuitem>."
+msgstr ""
+
+#. HN4P4
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"par_id801693065302337\n"
+"help.text"
+msgid "Choose <menuitem>Rotate or Flip</menuitem>."
+msgstr ""
+
+#. CCKoF
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"par_id751693066303787\n"
+"help.text"
+msgid "<image src=\"cmd/lc_rotateleft.svg\" id=\"img_id651693066303788\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id651693066303789\">Icon Rotate or Flip</alt></image>"
+msgstr ""
+
+#. 9o3U8
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"par_id771693066303791\n"
+"help.text"
+msgid "Rotate or Flip"
+msgstr ""
+
+#. pkF4D
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"hd_id491693087845438\n"
+"help.text"
+msgid "Reset Rotation"
+msgstr ""
+
+#. 5zhDT
+#: submenu_rotateflip.xhp
+msgctxt ""
+"submenu_rotateflip.xhp\n"
+"par_id751693088211586\n"
+"help.text"
+msgid "Set the object rotation to zero degrees."
+msgstr ""
+
+#. fGrZx
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"tit\n"
+"help.text"
+msgid "Spacing"
+msgstr ""
+
+#. ehPgj
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id411816022675979\n"
+"help.text"
+msgid "<link href=\"text/shared/menu/submenu_spacing.xhp\">Spacing</link>"
+msgstr ""
+
+#. 22dPh
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id398855439580084\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose text spacing commands.</ahelp>"
+msgstr ""
+
+#. 44Px9
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147573\n"
+"help.text"
+msgid "Increase Paragraph Spacing"
+msgstr ""
+
+#. zhqwZ
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150695\n"
+"help.text"
+msgid "Increases the paragraph spacing above the selected paragraph."
+msgstr ""
+
+#. zDRUC
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id261643820768225\n"
+"help.text"
+msgid "<image src=\"cmd/lc_paraspaceincrease.svg\" id=\"img_id901643820768226\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831643820768227\">Icon Increase Paragraph Spacing</alt></image>"
+msgstr ""
+
+#. D2RsS
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id131643820768228\n"
+"help.text"
+msgid "Increase Paragraph Spacing"
+msgstr ""
+
+#. XCZUT
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147574\n"
+"help.text"
+msgid "Decrease Paragraph Spacing"
+msgstr ""
+
+#. EVYri
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150696\n"
+"help.text"
+msgid "Decreases the paragraph spacing above the selected paragraph."
+msgstr ""
+
+#. agf5h
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id791643820835491\n"
+"help.text"
+msgid "<image src=\"cmd/lc_paraspacedecrease.svg\" id=\"img_id391643820835492\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id551643820835493\">Icon Decrease Paragraph Spacing</alt></image>"
+msgstr ""
+
+#. DssS6
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id141643820835494\n"
+"help.text"
+msgid "Decrease Paragraph Spacing"
+msgstr ""
+
+#. EsHFP
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147575\n"
+"help.text"
+msgid "Increase Indent"
+msgstr ""
+
+#. BU6i9
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150697\n"
+"help.text"
+msgid "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased."
+msgstr ""
+
+#. CFoDz
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id351643820903541\n"
+"help.text"
+msgid "<image src=\"cmd/lc_incrementindent.svg\" id=\"img_id161643820903542\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id981643820903543\">Icon Increase Indent</alt></image>"
+msgstr ""
+
+#. c7WUp
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id841643820903544\n"
+"help.text"
+msgid "Increase Indent"
+msgstr ""
+
+#. YA8bT
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"hd_id3147576\n"
+"help.text"
+msgid "Decrease Indent"
+msgstr ""
+
+#. aSrjB
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id3150698\n"
+"help.text"
+msgid "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is decreased."
+msgstr ""
+
+#. XsV6q
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id191643820966566\n"
+"help.text"
+msgid "<image src=\"cmd/lc_decrementindent.svg\" id=\"img_id601643820966567\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id991643820966568\">Icon Decrease Indent</alt></image>"
+msgstr ""
+
+#. wVZXB
+#: submenu_spacing.xhp
+msgctxt ""
+"submenu_spacing.xhp\n"
+"par_id201643820966569\n"
+"help.text"
+msgid "Decrease Indent"
+msgstr ""
+
+#. MVHBc
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"tit\n"
+"help.text"
+msgid "Text"
+msgstr ""
+
+#. wA9Xa
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id411816022675978\n"
+"help.text"
+msgid "<link href=\"text/shared/menu/submenu_text.xhp\">Text</link>"
+msgstr ""
+
+#. UdmfU
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id398855439580083\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose text formatting commands.</ahelp>"
+msgstr ""
+
+#. JCTNH
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id893328657433073\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id0123200902243376\">Overline</link>"
+msgstr ""
+
+#. U9h8v
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id281953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#overline\" markup=\"ignore\"/>"
+msgstr ""
+
+#. NLNGF
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id773632078996899\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3163714\">Shadow</link>"
+msgstr ""
+
+#. hMRVP
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id873632078996899\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3147287\">Outline</link>"
+msgstr ""
+
+#. br5DC
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id207025326941609\n"
+"help.text"
+msgid "Wrap Text"
+msgstr ""
+
+#. jBc2E
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id302484503842787\n"
+"help.text"
+msgid "<ahelp hid=\".\">Break text automatically at the right edges of the selected cells.</ahelp>"
+msgstr ""
+
+#. BqgSi
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id273587522269593\n"
+"help.text"
+msgid "<link href=\"text/swriter/main0202.xhp#hd_id0122200903085320\">Increase Size</link>"
+msgstr ""
+
+#. GTjCT
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id511910578827551\n"
+"help.text"
+msgid "<link href=\"text/swriter/main0202.xhp#hd_id012220090308532\">Decrease Size</link>"
+msgstr ""
+
+#. WApc3
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id373587522269593\n"
+"help.text"
+msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
+msgstr ""
+
+#. AQANy
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id711910578827551\n"
+"help.text"
+msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
+msgstr ""
+
+#. uzDFv
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id473587522269593\n"
+"help.text"
+msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104143\">Increase Size</link>"
+msgstr ""
+
+#. GQ8Fj
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id611910578827551\n"
+"help.text"
+msgid "<link href=\"text/simpress/main0203.xhp#hd_id0122200903104228\">Decrease Size</link>"
+msgstr ""
+
+#. wSRdX
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id172462591626807\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">UPPERCASE</link>"
+msgstr ""
+
+#. sjNg6
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id381953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#uppercase\"/>"
+msgstr ""
+
+#. FFVUb
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id935919548287354\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">lowercase</link>"
+msgstr ""
+
+#. ijGEm
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id481953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#lowercase\"/>"
+msgstr ""
+
+#. zGBE2
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3147143\n"
+"help.text"
+msgid "Cycle Case"
+msgstr ""
+
+#. TSJfn
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3152372\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseRotateCase\">Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase.</ahelp>"
+msgstr ""
+
+#. v24QT
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3147572\n"
+"help.text"
+msgid "Sentence case"
+msgstr ""
+
+#. v3Cr9
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3150694\n"
+"help.text"
+msgid "<ahelp hid=\".\">Changes the first letter of the selected characters to an uppercase character.</ahelp>"
+msgstr ""
+
+#. JtsaD
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id640520497868661\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Capitalize Every Word</link>"
+msgstr ""
+
+#. 3UGHA
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id581953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#capitalizeeveryword\"/>"
+msgstr ""
+
+#. Y9fn4
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3147521\n"
+"help.text"
+msgid "tOGGLE cASE"
+msgstr ""
+
+#. eb5K9
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3150623\n"
+"help.text"
+msgid "<ahelp hid=\".\">Toggles case of all selected characters.</ahelp>"
+msgstr ""
+
+#. WNuFq
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id342778277179117\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
+msgstr ""
+
+#. K6tXB
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id681953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
+msgstr ""
+
+#. VXJzA
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id442778277179117\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
+msgstr ""
+
+#. arEu2
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id781953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
+msgstr ""
+
+#. KQxFn
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id542778277179117\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp#hd_id3149575\">Small capitals</link>"
+msgstr ""
+
+#. okCcu
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id881953548674188\n"
+"help.text"
+msgid "<embedvar href=\"text/shared/01/05020200.xhp#smallcapitals\"/>"
+msgstr ""
+
+#. zo6cE
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3155392\n"
+"help.text"
+msgid "Half-width"
+msgstr ""
+
+#. SEpmw
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3147088\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
+msgstr ""
+
+#. rA2DG
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3156113\n"
+"help.text"
+msgid "Full Width"
+msgstr ""
+
+#. Ep24G
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3154749\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full-width characters.</ahelp>"
+msgstr ""
+
+#. dZCcC
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3152996\n"
+"help.text"
+msgid "Hiragana"
+msgstr ""
+
+#. AB6ta
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3156156\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
+msgstr ""
+
+#. LNQLS
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"hd_id3154173\n"
+"help.text"
+msgid "Katakana"
+msgstr ""
+
+#. QSxUp
+#: submenu_text.xhp
+msgctxt ""
+"submenu_text.xhp\n"
+"par_id3146137\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
+msgstr ""
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 50818c2bda4..2672dab576f 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/helpcontent2/source/text/shared/optionen.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: 2023-05-03 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -862,104 +862,131 @@ msgctxt ""
msgid "Save"
msgstr "ማስቀመጫ"
-#. CxT6b
+#. HL42B
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"hd_id3154071\n"
+"hd_id3154908\n"
"help.text"
-msgid "Edit document properties before saving"
-msgstr "የ ሰነድ ባህሪዎችን ከማስቀመጥ በፊት ማረሚያ"
+msgid "Save AutoRecovery information every"
+msgstr "በራሱ ማዳኛ መረጃን ማስቀመጫ በየ"
-#. TBAwp
+#. BGSjp
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"par_id3148798\n"
+"par_id3149560\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/docinfo\">Specifies that the <emph>Properties</emph> dialog will appear every time you select the <emph>Save As</emph> command.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optsavepage/docinfo\">መወሰኛ የ <emph> ባህሪዎች </emph> ንግግር ይታይ እንደሆን ሁልጊዜ ሲመርጡ የ <emph> ማስቀመጫ እንደ </emph> ትእዛዝ </ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/autosave\">Specifies that %PRODUCTNAME saves the information needed to restore all modified documents in case of a crash.</ahelp>"
+msgstr ""
-#. KBi2j
+#. rSxfE
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"hd_id3145606\n"
+"hd_id3146147\n"
"help.text"
-msgid "Always create backup copy"
-msgstr "ሁል ጊዜ ተተኪ ኮፒ መፍጠሪያ"
+msgid "Minutes"
+msgstr "ደቂቃዎች"
-#. HkZiC
+#. DkXTN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"par_id3154123\n"
+"par_id3152460\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/backup\">Saves the previous version of a document as a backup copy whenever you save a document. Every time <item type=\"productname\">%PRODUCTNAME</item> creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension <emph>.BAK</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/autosave_spin\">Specifies the time interval in minutes before AutoRecovery information is saved for a document.</ahelp>"
msgstr ""
-#. ufcNf
+#. WSgNQ
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"par_id3153192\n"
+"par_id971692475642160\n"
"help.text"
-msgid "To change the location of the backup copy, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>, and then enter a new path for the backup file."
-msgstr "የተተኪ ኮፒ ፋይል አካባቢ ለመቀየር ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - መንገድ </emph> እና ከዛ የ አዲሱን ተተኪ ፋይል መንገድ ያስገቡ"
+msgid "A timer starts for a document when it is first modified. AutoRecovery information is saved after the specified time (while %PRODUCTNAME is idle). The timer then restarts with the next modification in the document."
+msgstr ""
-#. HL42B
+#. uhR9g
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"hd_id3154908\n"
+"hd_id3154909\n"
"help.text"
-msgid "Save AutoRecovery information every"
-msgstr "በራሱ ማዳኛ መረጃን ማስቀመጫ በየ"
+msgid "Automatically save the document too"
+msgstr "ሰነዱን ራሱ በራሱ ማስቀመጫ"
-#. fDahe
+#. ARBVm
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"par_id3149560\n"
+"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/autosave\">Specifies that <item type=\"productname\">%PRODUCTNAME</item> saves the information needed to restore all open documents in case of a crash. You can specify the saving time interval.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optsavepage/autosave\">መወሰኛ የ <item type=\"productname\">%PRODUCTNAME</item> መረጃ ማስቀመጫ እንደ ነበር ለ መመለስ የሚያስፈልገው ሁሉንም የ ተከፈቱ ሰነዶች በ ድንገት ግጭት ቢፈጠር: እርስዎ መወሰን ይችላሉ የ ማስቀመጫ ጊዜ ክፍተት </ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves all modified documents when saving AutoRecovery information. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgstr ""
-#. rSxfE
+#. CxT6b
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"hd_id3146147\n"
+"hd_id3154071\n"
"help.text"
-msgid "Minutes"
-msgstr "ደቂቃዎች"
+msgid "Edit document properties before saving"
+msgstr "የ ሰነድ ባህሪዎችን ከማስቀመጥ በፊት ማረሚያ"
-#. hRKAq
+#. TBAwp
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"par_id3152460\n"
+"par_id3148798\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/autosave_spin\">Specifies the time interval in minutes for the automatic recovery option.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optsavepage/autosave_spin\">ይወስኑ የ ጊዜ ክፍተት በ ደቂቃዎች ለ ራሱ በራሱ እንደገና ፈልጎ ማግኛ ምርጫ </ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/docinfo\">Specifies that the <emph>Properties</emph> dialog will appear every time you select the <emph>Save As</emph> command.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optsavepage/docinfo\">መወሰኛ የ <emph> ባህሪዎች </emph> ንግግር ይታይ እንደሆን ሁልጊዜ ሲመርጡ የ <emph> ማስቀመጫ እንደ </emph> ትእዛዝ </ahelp>"
-#. uhR9g
+#. KBi2j
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"hd_id3154909\n"
+"hd_id3145606\n"
"help.text"
-msgid "Automatically save the document too"
-msgstr "ሰነዱን ራሱ በራሱ ማስቀመጫ"
+msgid "Always create backup copy"
+msgstr "ሁል ጊዜ ተተኪ ኮፒ መፍጠሪያ"
-#. hERrV
+#. HkZiC
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
-"par_id3149561\n"
+"par_id3154123\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/optsavepage/backup\">Saves the previous version of a document as a backup copy whenever you save a document. Every time <item type=\"productname\">%PRODUCTNAME</item> creates a backup copy, the previous backup copy is replaced. The backup copy gets the extension <emph>.BAK</emph>.</ahelp>"
+msgstr ""
+
+#. ufcNf
+#: 01010200.xhp
+msgctxt ""
+"01010200.xhp\n"
+"par_id3153192\n"
+"help.text"
+msgid "To change the location of the backup copy, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Paths</emph>, and then enter a new path for the backup file."
+msgstr "የተተኪ ኮፒ ፋይል አካባቢ ለመቀየር ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - %PRODUCTNAME - መንገድ </emph> እና ከዛ የ አዲሱን ተተኪ ፋይል መንገድ ያስገቡ"
+
+#. CfGJ2
+#: 01010200.xhp
+msgctxt ""
+"01010200.xhp\n"
+"hd_id11689632256368\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that <item type=\"productname\">%PRODUCTNAME</item> saves all open documents when saving auto recovery information. Uses the same time interval as AutoRecovery does.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optsavepage/userautosave\">ይወስኑ ለ <item type=\"productname\">%PRODUCTNAME</item> ማስቀመጫ ሁሉንም የ ተከፈቱ ሰነዶች መረጃ በራሱ እንደገና ፈልጎ ማግኛ: ይጠቀሙ ተመሳሳይ የ ክፍተት ጊዜ ለ በራሱ እንደገና ፈልጎ ማግኛ </ahelp>"
+msgid "Place backup in same folder as document"
+msgstr ""
+
+#. cLb3r
+#: 01010200.xhp
+msgctxt ""
+"01010200.xhp\n"
+"par_id501689632337867\n"
+"help.text"
+msgid "Backup copy is saved to the same folder as the document. If the backup copy cannot be saved in the same folder for some reason, then %PRODUCTNAME tries to save the copy in the <menuitem>Backups</menuitem> folder specified in <menuitem>Paths</menuitem>."
+msgstr ""
#. BFvqF
#: 01010200.xhp
@@ -1186,33 +1213,6 @@ msgctxt ""
msgid "The ODF 1.2 Extended (compatibility mode) is a more backward-compatible ODF 1.2 extended mode. It uses features that are deprecated in ODF 1.2 and/or it is 'bug-compatible' to older OpenOffice.org versions. It may be useful if you need to interchange ODF documents with users who use pre-ODF 1.2 or ODF 1.2-only legacy applications."
msgstr ""
-#. iP4AE
-#: 01010200.xhp
-msgctxt ""
-"01010200.xhp\n"
-"par_idN1091E\n"
-"help.text"
-msgid "Warn when not saving in ODF or default format"
-msgstr "በ ODF ወይንም በ ነባር አቀማመጥ ሳይቀመጥ ሲቀር ማስጠንቀቂያ"
-
-#. vavB7
-#: 01010200.xhp
-msgctxt ""
-"01010200.xhp\n"
-"par_idN10922\n"
-"help.text"
-msgid "<ahelp hid=\".\">You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in <emph>Load/Save - General</emph> in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\">እርስዎ መምረጥ ይችላሉ የ ማስጠንቀቂያ መልእክት እንዲታይ እርስዎ ሰነድ በሚያስቀምጡ ጊዜ በ OpenDocument አቀራረብ ያልሆነ ወይንም እርስዎ ካላሰናዱ ነባር አቀራረብ በ <emph>መጫኛ/ማስቀመጫ - ባጠቃላይ </emph> በ ምርጫ ንግግር ሳጥን ውስጥ </ahelp>"
-
-#. iyqKt
-#: 01010200.xhp
-msgctxt ""
-"01010200.xhp\n"
-"par_id3158444\n"
-"help.text"
-msgid "You can choose which file format will be applied as the default when saving documents of various document types. If you always exchange your documents with other persons who use Microsoft Office, for example, you may specify here that %PRODUCTNAME only uses the Microsoft Office file formats as a default."
-msgstr "እርስዎ መምረጥ ይችላሉ የትኛው የ ፋይል አቀራረብ እንደ ነባር እንደሚፈጸም የ ተለያዩ አይነት ሰነዶች በሚያስቀምጡ ጊዜ: እርስዎ ሁል ጊዜ ሰነዶች የሚቀያየሩ ከሆነ የ Microsoft Office የሚጠቀሙ: ለምሳሌ: እርስዎ እዚህ መግለጽ ይችላሉ: %PRODUCTNAME እንዲጠቀም የ Microsoft Office ፋይል አቀራረብ እንደ ነባር እንዲጠቀም"
-
#. WuUbB
#: 01010200.xhp
msgctxt ""
@@ -1249,6 +1249,33 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/optsavepage/saveas\">Specifies how documents of the type selected on the left will always be saved as this file type. You may select another file type for the current document in the <emph>Save as</emph> dialog.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/optsavepage/saveas\">ይወስኑ የ ተመረጠው ሰነድ አይነት በ ግራ በኩል ሁልጊዜ እንዴት እንደሚቀመጥ የዚህ አይነት ፋይል: እርስዎ መምረጥ ይችላሉ ሌላ የ ፋይል አይነት ለ አሁኑ ሰነድ በ <emph>ማስቀመጫ እንደ</emph> ንግግር ውስጥ</ahelp>"
+#. iP4AE
+#: 01010200.xhp
+msgctxt ""
+"01010200.xhp\n"
+"par_idN1091E\n"
+"help.text"
+msgid "Warn when not saving in ODF or default format"
+msgstr "በ ODF ወይንም በ ነባር አቀማመጥ ሳይቀመጥ ሲቀር ማስጠንቀቂያ"
+
+#. vavB7
+#: 01010200.xhp
+msgctxt ""
+"01010200.xhp\n"
+"par_idN10922\n"
+"help.text"
+msgid "<ahelp hid=\".\">You can choose to get a warning message when you save a document in a format that is not OpenDocument or which you did not set as default format in <emph>Load/Save - General</emph> in the Options dialog box.</ahelp>"
+msgstr "<ahelp hid=\".\">እርስዎ መምረጥ ይችላሉ የ ማስጠንቀቂያ መልእክት እንዲታይ እርስዎ ሰነድ በሚያስቀምጡ ጊዜ በ OpenDocument አቀራረብ ያልሆነ ወይንም እርስዎ ካላሰናዱ ነባር አቀራረብ በ <emph>መጫኛ/ማስቀመጫ - ባጠቃላይ </emph> በ ምርጫ ንግግር ሳጥን ውስጥ </ahelp>"
+
+#. iyqKt
+#: 01010200.xhp
+msgctxt ""
+"01010200.xhp\n"
+"par_id3158444\n"
+"help.text"
+msgid "You can choose which file format will be applied as the default when saving documents of various document types. If you always exchange your documents with other persons who use Microsoft Office, for example, you may specify here that %PRODUCTNAME only uses the Microsoft Office file formats as a default."
+msgstr "እርስዎ መምረጥ ይችላሉ የትኛው የ ፋይል አቀራረብ እንደ ነባር እንደሚፈጸም የ ተለያዩ አይነት ሰነዶች በሚያስቀምጡ ጊዜ: እርስዎ ሁል ጊዜ ሰነዶች የሚቀያየሩ ከሆነ የ Microsoft Office የሚጠቀሙ: ለምሳሌ: እርስዎ እዚህ መግለጽ ይችላሉ: %PRODUCTNAME እንዲጠቀም የ Microsoft Office ፋይል አቀራረብ እንደ ነባር እንዲጠቀም"
+
#. zHaCC
#: 01010300.xhp
msgctxt ""
@@ -6037,13 +6064,13 @@ msgctxt ""
msgid "Show outline-folding buttons"
msgstr ""
-#. tbuLW
+#. ZjMDi
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id261624630524895\n"
"help.text"
-msgid "Displays outline folding buttons on the left of the outline headings."
+msgid "Displays outline folding buttons on the left of the outline headings, and allow controlling it via the headings' context menu in the Navigator."
msgstr ""
#. G6sDV
@@ -6055,13 +6082,13 @@ msgctxt ""
msgid "Include sub levels"
msgstr ""
-#. GyAV9
+#. gEvAD
#: 01040200.xhp
msgctxt ""
"01040200.xhp\n"
"par_id231624630529145\n"
"help.text"
-msgid "Also displays the folding buttons of the outline sub levels."
+msgid "When folding a heading, also hide its sub levels."
msgstr ""
#. jH6p8
@@ -6640,14 +6667,14 @@ msgctxt ""
msgid "Table (Options)"
msgstr ""
-#. qKJfB
+#. dsZAT
#: 01040500.xhp
msgctxt ""
"01040500.xhp\n"
"bm_id3149656\n"
"help.text"
-msgid "<bookmark_value>inserting; new text tables defaults</bookmark_value><bookmark_value>tables in text; default settings</bookmark_value><bookmark_value>aligning;tables in text</bookmark_value><bookmark_value>number formats; recognition in text tables</bookmark_value>"
-msgstr "<bookmark_value>ማስገቢያ: አዲስ ነባር የ ጽሁፍ ሰንጠረዥ</bookmark_value><bookmark_value>ሰንጠረዦች በ ጽሁፍ ውስጥ: ነባር ማሰናጃዎች</bookmark_value><bookmark_value>ማሰለፊያ: ሰንጠረዦች በ ጽሁፍ ውስጥ</bookmark_value><bookmark_value>የ ቁጥር አቀራረብ: በ ጽሁፍ ሰንጠረዥ ውስጥ መለያ</bookmark_value>"
+msgid "<bookmark_value>inserting; new text tables defaults</bookmark_value><bookmark_value>tables in text; default settings</bookmark_value><bookmark_value>aligning;tables in text</bookmark_value>"
+msgstr ""
#. xn32Y
#: 01040500.xhp
@@ -6820,14 +6847,14 @@ msgctxt ""
msgid "When an input cannot be recognized as a number, the number category changes to <emph>Text</emph> and the input is not changed."
msgstr ""
-#. FgZSX
+#. pHgVP
#: 01040500.xhp
msgctxt ""
"01040500.xhp\n"
"par_id3155306\n"
"help.text"
-msgid "If <emph>Number recognition</emph> is not marked, numbers are saved in text format and are automatically left-aligned."
-msgstr "ይህ <emph>ቁጥር መለያ</emph> ምልክት አልተደረገበትም: ቁጥሮች በ ጽሁፍ አቀራረብ ይቀመጣሉ እና ራሱ በራሱ በ ግራ-ይሰለፋል"
+msgid "If <link href=\"text/shared/optionen/01040500.xhp#number_recognition\"><emph>Number recognition</emph></link> is not marked in the Options, numbers are saved in text format and are automatically left-aligned."
+msgstr ""
#. ZJCGf
#: 01040500.xhp
@@ -8404,14 +8431,14 @@ msgctxt ""
msgid "Specifies whether to add Microsoft Word-compatible spacing between paragraphs and tables in $[officename] Writer text documents."
msgstr "ይጨመር እንደሆን ይወስኑ የ Microsoft Word-ተስማሚ ክፍተት በ አንቀጽ እና በ ሰንጠረዞች መካከል: በ $[officename] መጻፊያ የ ጽሁፍ ሰነድ ውስጥ"
-#. 4aF2m
+#. 2ZAcw
#: 01041000.xhp
msgctxt ""
"01041000.xhp\n"
"hd_id3146317\n"
"help.text"
-msgid "Add paragraph and table spacing at tops of pages"
-msgstr "የ አንቀጽ እና የ ሰንጠረዥ ክፍተት በ ገጹ ከ ላይ በኩል መጨመሪያ"
+msgid "Add paragraph and table spacing at top of first page and page breaks"
+msgstr ""
#. U5bFW
#: 01041000.xhp
diff --git a/source/am/helpcontent2/source/text/simpress/00.po b/source/am/helpcontent2/source/text/simpress/00.po
index 8527386946a..fee88946062 100644
--- a/source/am/helpcontent2/source/text/simpress/00.po
+++ b/source/am/helpcontent2/source/text/simpress/00.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: 2023-07-03 14:58+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-04-30 14:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1105,40 +1105,40 @@ msgctxt ""
msgid "Open the context menu of a selected object and choose <emph>Convert - To Contour</emph>"
msgstr "የ ተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> መቀየሪያ - ወደ ቅርጽ </emph>"
-#. 5MMHq
+#. BCkr2
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
"par_id3153008\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange - In Front of Object</emph> (%PRODUCTNAME Draw only)"
+msgid "Choose <emph>Shape - Arrange - In Front of Object</emph>"
msgstr ""
-#. d8mib
+#. 98sEA
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
"par_id3145117\n"
"help.text"
-msgid "Open the context menu of a selected object and choose <emph>Arrange - In Front of Object</emph>"
-msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ማዘጋጃ - ከ እቃው ፊት ለፊት </emph>"
+msgid "Choose <emph>Arrange - In Front of Object</emph>"
+msgstr ""
-#. htvAg
+#. 88u4E
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
-"par_id3147249\n"
+"par_id661693063003295\n"
"help.text"
-msgid "On the Drawing bar, open the <emph>Arrange</emph> toolbar and click:"
-msgstr "በ መሳያ እቃ መደርደሪያ ላይ መክፈቻ የ <emph> ማዘጋጃ </emph> እቃ መደርደሪያ እና ይጫኑ:"
+msgid "Choose <menuitem>Home - Arrange - In Front of Object</menuitem>."
+msgstr ""
-#. AFC4E
+#. AFBiy
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
"par_id3150537\n"
"help.text"
-msgid "<image id=\"img_id3145233\" src=\"cmd/sc_beforeobject.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145233\">Icon In Front of Object</alt></image>"
+msgid "<image id=\"img_id3145233\" src=\"cmd/lc_beforeobject.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145233\">Icon In Front of Object</alt></image>"
msgstr ""
#. BEnZu
@@ -1150,40 +1150,40 @@ msgctxt ""
msgid "In Front of Object"
msgstr "ከእቃው ፊት ለፊት"
-#. xXjQ4
+#. vkDA9
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
"par_id3150654\n"
"help.text"
-msgid "Choose <emph>Shape - Arrange - Behind Object</emph> (%PRODUCTNAME Draw only)"
+msgid "Choose <emph>Shape - Arrange - Behind Object</emph>"
msgstr ""
-#. ECTJD
+#. PEAAB
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
"par_id3150482\n"
"help.text"
-msgid "Open the context menu of a selected object and choose <emph>Arrange - Behind Object</emph>"
-msgstr "የተመረጠውን እቃ አገባብ ዝርዝር ይክፈቱ እና ይምረጡ <emph> ማዘጋጃ - ከ እቃው ጀርባ </emph>"
+msgid "Choose <emph>Arrange - Behind Object</emph>"
+msgstr ""
-#. YUkxE
+#. fAunA
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
-"par_id3149886\n"
+"par_id691693062938308\n"
"help.text"
-msgid "On the <menuitem>Drawing</menuitem> bar, open the <menuitem>Arrange</menuitem> toolbar and click:"
+msgid "Choose <menuitem>Home - Arrange - Behind Object</menuitem>."
msgstr ""
-#. HWm5x
+#. 2JbXL
#: 00000413.xhp
msgctxt ""
"00000413.xhp\n"
"par_id3150865\n"
"help.text"
-msgid "<image id=\"img_id3145597\" src=\"cmd/sc_behindobject.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145597\">Icon Behind Object</alt></image>"
+msgid "<image id=\"img_id3145597\" src=\"cmd/lc_behindobject.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145597\">Icon Behind Object</alt></image>"
msgstr ""
#. zJ8mS
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index c755b718988..70a84cd9f8b 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/01.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: 2023-05-10 12:32+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3481,14 +3481,14 @@ msgctxt ""
msgid "Update Style"
msgstr "የ ማሻሻያ ዘዴ"
-#. SFa4R
+#. zSbLC
#: 05100000.xhp
msgctxt ""
"05100000.xhp\n"
"hd_id3153936\n"
"help.text"
-msgid "Style List / Style Groups / Context menu: New / Modify / Delete"
-msgstr "የ ዘዴ ዝርዝር / የ ዘዴ ቡድኖች / የ አገባብ ዝርዝር: አዲስ / ማሻሻያ / ማጥፊያ"
+msgid "Style List / Style Groups / Context menu: New / Edit Style / Hide"
+msgstr ""
#. eo3sy
#: 05100000.xhp
@@ -7729,6 +7729,33 @@ msgctxt ""
msgid "In a selected text, choose <menuitem>Format - Bullets and Numbering</menuitem>."
msgstr ""
+#. HC9PJ
+#: bulletandposition.xhp
+msgctxt ""
+"bulletandposition.xhp\n"
+"par_id151692539352713\n"
+"help.text"
+msgid "In a selected text, choose <menuitem>Bullets and Numbering</menuitem>."
+msgstr ""
+
+#. CKDCB
+#: bulletandposition.xhp
+msgctxt ""
+"bulletandposition.xhp\n"
+"par_id571692539528746\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgstr ""
+
+#. 8ABFW
+#: bulletandposition.xhp
+msgctxt ""
+"bulletandposition.xhp\n"
+"par_id111692539654810\n"
+"help.text"
+msgid "On the <menuitem>Lists</menuitem> deck of <menuitem>Properties</menuitem> panel, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
+msgstr ""
+
#. ysA68
#: bulletandposition.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter.po b/source/am/helpcontent2/source/text/swriter.po
index 9c123449abc..f4c81c4fa04 100644
--- a/source/am/helpcontent2/source/text/swriter.po
+++ b/source/am/helpcontent2/source/text/swriter.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2019-07-07 17:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -286,42 +286,6 @@ msgctxt ""
msgid "<ahelp hid=\".\">This menu contains commands to control the on-screen display of the document, change the user interface and access the sidebar panels.</ahelp>"
msgstr ""
-#. ewZgE
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id102720150854019880\n"
-"help.text"
-msgid "Comments"
-msgstr "አስተያየቶች"
-
-#. hjPDz
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_id102720150854014989\n"
-"help.text"
-msgid "Show or hide a document's comments and replies to them."
-msgstr "የ ሰነድ አስተያየቶች ማሳያ ወይንም መደበቂያ እና መመለሻ"
-
-#. EWoyn
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id981573492083329\n"
-"help.text"
-msgid "Resolved comments"
-msgstr ""
-
-#. 8FzFE
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_id331573492076499\n"
-"help.text"
-msgid "Show or hide <link href=\"text/shared/01/04050000.xhp#resolvecomments\">resolved comments</link>."
-msgstr ""
-
#. KqRGM
#: main0103.xhp
msgctxt ""
@@ -466,24 +430,6 @@ msgctxt ""
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
msgstr "<ahelp hid=\".uno:FormatMenu\">የ ያዛቸው ትእዛዞች በ እርስዎ ሰነድ ውስጥ የ እቅድ እና የ ይዞታዎችን አቀራረብ ነው</ahelp>"
-#. zjGX9
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id551602974854459\n"
-"help.text"
-msgid "Align Text"
-msgstr ""
-
-#. 7FD3V
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"par_id741602974888780\n"
-"help.text"
-msgid "Opens a submenu where you can align text and objects."
-msgstr ""
-
#. Vsjn5
#: main0105.xhp
msgctxt ""
@@ -502,58 +448,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05030000.xhp\">Paragraph</link>"
msgstr "<link href=\"text/shared/01/05030000.xhp\">አንቀጽ</link>"
-#. 7iyia
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id951602975070826\n"
-"help.text"
-msgid "Lists"
-msgstr ""
-
-#. MKjWR
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"par_id461602975083850\n"
-"help.text"
-msgid "Opens a submenu where you can modify the formatting of list paragraphs."
-msgstr ""
-
-#. aJdFV
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id3145784\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\">Bullets and Numbering</link>"
-msgstr "<link href=\"text/shared/01/06050000.xhp\">ነጥቦች እና ቁጥር መስጫ</link>"
-
-#. E6Eut
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id871602976197055\n"
-"help.text"
-msgid "Title Page"
-msgstr ""
-
-#. crAFH
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"par_id471602976213270\n"
-"help.text"
-msgid "Opens a dialog where you can design a title page."
-msgstr ""
-
-#. QKypm
+#. 7AF5Q
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
"hd_id201602976343046\n"
"help.text"
-msgid "Comments"
+msgid "<link href=\"text/shared/01/05020000.xhp\">Comments</link>"
msgstr ""
#. ercCs
@@ -574,69 +475,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05040500.xhp\">Columns</link>"
msgstr "<link href=\"text/swriter/01/05040500.xhp\">አምዶች</link>"
-#. xxsJP
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id11602979335965\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/watermark.xhp\">Watermark</link>"
-msgstr ""
-
-#. GWQbW
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id3145717\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/02170000.xhp\">Sections</link>"
-msgstr "<link href=\"text/swriter/01/02170000.xhp\">ክፍሎች</link>"
-
-#. G7ZKH
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id3149935\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05060000.xhp\">Image</link>"
-msgstr "<link href=\"text/swriter/01/05060000.xhp\">ምስል</link>"
-
-#. FUiBn
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id881602977719329\n"
-"help.text"
-msgid "Frame and Object"
-msgstr ""
-
-#. hLVBp
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"par_id951602977746649\n"
-"help.text"
-msgid "Opens a submenu to link and unlink frames, and edit properties of a selected frame."
-msgstr ""
-
-#. JWALC
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"hd_id871602978482880\n"
-"help.text"
-msgid "Rotate or Flip"
-msgstr ""
-
-#. BpkEj
-#: main0105.xhp
-msgctxt ""
-"main0105.xhp\n"
-"par_id561602978499640\n"
-"help.text"
-msgid "Opens a submenu where you can rotate or and flip a selected shape or image. Text boxes can only be rotated."
-msgstr ""
-
#. r9nLs
#: main0106.xhp
msgctxt ""
@@ -790,14 +628,14 @@ msgctxt ""
msgid "Table"
msgstr "ሰንጠረዥ"
-#. v6SF2
+#. io75q
#: main0110.xhp
msgctxt ""
"main0110.xhp\n"
"par_idN10553\n"
"help.text"
-msgid "<link href=\"text/swriter/main0110.xhp\">Table</link>"
-msgstr "<link href=\"text/swriter/main0110.xhp\">ሰንጠረዥ</link>"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/main0110.xhp\">Table</link></variable>"
+msgstr ""
#. DunBb
#: main0110.xhp
@@ -808,6 +646,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows commands to insert, edit, and delete a table and its elements inside a text document.</ahelp>"
msgstr "<ahelp hid=\".\">ትእዛዞች ማሳያ ለ ማስገቢያ: ማረሚያ: እና ማጥፊያ በ ጽሁፍ ሰነድ ውስጥ ለሚገኝ ሰንጠረዥ</ahelp>"
+#. 9xm6e
+#: main0110.xhp
+msgctxt ""
+"main0110.xhp\n"
+"par_id381693604855427\n"
+"help.text"
+msgid "Choose <menuitem>Table</menuitem>."
+msgstr ""
+
#. jBnDR
#: main0110.xhp
msgctxt ""
@@ -826,564 +673,6 @@ msgctxt ""
msgid "Inserts a new table."
msgstr "አዲስ ሰንጠረዥ ማስገቢያ"
-#. cwdAZ
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Insert"
-msgstr "ማስገቢያ"
-
-#. bYChy
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id881605975490097\n"
-"help.text"
-msgid "<variable id=\"submenu\">Opens a submenu with the following command options:</variable>"
-msgstr ""
-
-#. dAYGb
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id71605976065472\n"
-"help.text"
-msgid "Rows Above"
-msgstr ""
-
-#. ETuzB
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id811605976075887\n"
-"help.text"
-msgid "Insert a row above the row where the cursor is currently placed."
-msgstr ""
-
-#. 3B4Ea
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id621605976125265\n"
-"help.text"
-msgid "Rows Below"
-msgstr ""
-
-#. sZV4E
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id701605976138113\n"
-"help.text"
-msgid "Insert a row below the row where the cursor is currently placed."
-msgstr ""
-
-#. KfmGG
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105E5\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\">Rows</link>"
-msgstr ""
-
-#. AN99u
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105E8\n"
-"help.text"
-msgid "Opens dialog box for inserting rows."
-msgstr ""
-
-#. FedsM
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id841605976313559\n"
-"help.text"
-msgid "Columns Before"
-msgstr ""
-
-#. 7CVcf
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id531605976347665\n"
-"help.text"
-msgid "Inserts a column before the column where the cursor is currently placed."
-msgstr ""
-
-#. UE3RA
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id21605976318849\n"
-"help.text"
-msgid "Columns After"
-msgstr ""
-
-#. fooJR
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id731605976350615\n"
-"help.text"
-msgid "Inserts a column after the column where the cursor is currently placed."
-msgstr ""
-
-#. GM6FW
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105CD\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\">Columns</link>"
-msgstr ""
-
-#. i3nKB
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105D0\n"
-"help.text"
-msgid "Opens dialog box for inserting columns."
-msgstr ""
-
-#. ttkBa
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105AF\n"
-"help.text"
-msgid "Delete"
-msgstr "ማጥፊያ"
-
-#. mkgZ4
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "Rows"
-msgstr "ረድፎች"
-
-#. ADvQJ
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10616\n"
-"help.text"
-msgid "Deletes the selected rows."
-msgstr "የ ተመረጡትን ረድፎች ማጥፊያ"
-
-#. TdA3g
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1060D\n"
-"help.text"
-msgid "Columns"
-msgstr "አምዶች"
-
-#. egcgE
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "Deletes the selected columns."
-msgstr "የተመረጡትን አምዶች ማጥፊያ"
-
-#. QTm9i
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1063E\n"
-"help.text"
-msgid "Table"
-msgstr "ሰንጠረዥ"
-
-#. 4ExJk
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1060A\n"
-"help.text"
-msgid "<ahelp hid=\".\">Deletes the current table.</ahelp>"
-msgstr "<ahelp hid=\".\">የ አሁኑን ሰንጠረዥ ማጥፊያ</ahelp>"
-
-#. vCbDT
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105B3\n"
-"help.text"
-msgid "Select"
-msgstr "ይምረጡ"
-
-#. EKDPA
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10635\n"
-"help.text"
-msgid "Cell"
-msgstr "ክፍል"
-
-#. gBmZP
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the current cell.</ahelp>"
-msgstr "<ahelp hid=\".\">የ አሁኑን ሰንጠረዥ መምረጫ</ahelp>"
-
-#. HmSyb
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1062F\n"
-"help.text"
-msgid "Row"
-msgstr "ረድፍ"
-
-#. WCPpF
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10632\n"
-"help.text"
-msgid "Selects the current row."
-msgstr "የ አሁኑን ረድፍ ይመርጣል"
-
-#. vk5ie
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10629\n"
-"help.text"
-msgid "Column"
-msgstr "አምድ"
-
-#. zB3JC
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1062C\n"
-"help.text"
-msgid "Selects the current column."
-msgstr "የ አሁኑን አምድ ይመርጣል"
-
-#. TA2Qc
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "Table"
-msgstr "ሰንጠረዥ"
-
-#. MsH9h
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10626\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the current table.</ahelp>"
-msgstr "<ahelp hid=\".\">የ አሁኑን ሰንጠረዥ መምረጫ</ahelp>"
-
-#. 5eQNa
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105FB\n"
-"help.text"
-msgid "Size"
-msgstr ""
-
-#. C4FY8
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106E9\n"
-"help.text"
-msgid "Row Height"
-msgstr "የ ረድፍ እርዝመት"
-
-#. NE7NJ
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106EC\n"
-"help.text"
-msgid "Opens the Row Height dialog where you can change the height of a row."
-msgstr "የ ረድፍ እርዝመትን የሚቀይሩበት የ ረድፍ እርዝመት ንግግር መክፈቻ"
-
-#. zBhmB
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id451605990864684\n"
-"help.text"
-msgid "<link href=\"text/shared/01/minimal_row_height.xhp\">Minimal Row Height</link>"
-msgstr ""
-
-#. EF7XB
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106EF\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05110200.xhp\">Optimal Row Height</link>"
-msgstr "<link href=\"text/swriter/01/05110200.xhp\">አጥጋቢ የ ረድፍ እርዝመት</link>"
-
-#. FqtLY
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10706\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\">Distribute Rows Evenly</link>"
-msgstr "<link href=\"text/shared/01/05110600m.xhp\">ረድፎችን እኩል ማሰራጫ</link>"
-
-#. pTncP
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106B5\n"
-"help.text"
-msgid "Column Width"
-msgstr ""
-
-#. cuCmA
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106B8\n"
-"help.text"
-msgid "Opens the Column Width dialog where you can change the width of a column."
-msgstr "የ አምድ ስፋት ንግግር መክፈቻ የ አምዱን ስፋት የሚቀያዩርበት"
-
-#. qi4p9
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id671605991381461\n"
-"help.text"
-msgid "<link href=\"text/shared/01/minimal_column_width.xhp\">Minimal Column Width</link>"
-msgstr ""
-
-#. Y4m4U
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106BB\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120200.xhp\">Optimal Column Width</link>"
-msgstr "<link href=\"text/swriter/01/05120200.xhp\">አጥጋቢ የ አምድ ስፋት</link>"
-
-#. yEGjw
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN106D2\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\">Distribute Columns Evenly</link>"
-msgstr "<link href=\"text/shared/01/05120600.xhp\">አምዶቹን እኩል ማሰራጫ</link>"
-
-#. ChNkP
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\">Merge Cells</link>"
-msgstr "<link href=\"text/shared/01/05100100.xhp\">ክፍሎች ማዋሀጃ</link>"
-
-#. T8apK
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05100200.xhp\">Split Cells</link>"
-msgstr "<link href=\"text/shared/01/05100200.xhp\">ክፍሎች መለያያ</link>"
-
-#. LCqxC
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id371605978330177\n"
-"help.text"
-msgid "Protect Cells"
-msgstr ""
-
-#. GHXsD
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id531605978352545\n"
-"help.text"
-msgid "Unprotect Cells"
-msgstr ""
-
-#. 5CFq9
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05150101.xhp\">AutoFormat Styles</link>"
-msgstr ""
-
-#. KRMHM
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1060F\n"
-"help.text"
-msgid "Number Format"
-msgstr "የ ቁጥር አቀራረብ"
-
-#. xfWAX
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN107AC\n"
-"help.text"
-msgid "Opens <link href=\"text/shared/optionen/01040500.xhp\">a dialog</link> where you can specify the format of numbers in the table."
-msgstr "መክፈቻ <link href=\"text/shared/optionen/01040500.xhp\"> ንግግር </link> እርስዎ በ ሰንጠረዥ ውስጥ የ ቁጥር አቀራረብ የሚወስኑበት"
-
-#. z2HSC
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id931605978707761\n"
-"help.text"
-msgid "<link href=\"text/swriter/guide/number_date_conv.xhp\">Number Recognition</link>"
-msgstr ""
-
-#. CW8ME
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id511605978897703\n"
-"help.text"
-msgid "Toggles the setting for automatically recognizing numbers or dates that you enter into a table cell, converting them from text to an appropriate number format."
-msgstr ""
-
-#. kz8tL
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id711630938569930\n"
-"help.text"
-msgid "Header Rows Repeat Across Pages"
-msgstr ""
-
-#. pV6gM
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id451630938722616\n"
-"help.text"
-msgid "Repeat a table heading on each new page that the table spans."
-msgstr ""
-
-#. kXsZH
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"hd_id191630938574129\n"
-"help.text"
-msgid "Rows to Break Across Pages"
-msgstr ""
-
-#. iUmYL
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_id841630938899606\n"
-"help.text"
-msgid "Allows a page break or column break inside a row of the table. This option is not applied to the first row in a table if the <emph>Repeat Heading</emph> option is selected."
-msgstr ""
-
-#. kwKdS
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10603\n"
-"help.text"
-msgid "Convert"
-msgstr "መቀየሪያ"
-
-#. SCAJt
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1074C\n"
-"help.text"
-msgid "Text to Table"
-msgstr "ከ ጽሁፍ ወደ ሰንጠረዥ"
-
-#. tAGig
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1074F\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can convert the selected text to a table.</ahelp> Opens <link href=\"text/swriter/01/06090000.xhp\">a dialog</link> where you can convert the selected text to a table."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">የተመረጠውን ጽሁፍ ወደ ሰንጠረዥ መቀየሪያ ንግግር መክፋቻ</ahelp> መክፋቻ <link href=\"text/swriter/01/06090000.xhp\">ንግግር</link> የተመረጠውን ጽሁፍ ወደ ሰንጠረዥ መቀየሪያ"
-
-#. C9Sn9
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10763\n"
-"help.text"
-msgid "Table to Text"
-msgstr "ከ ሰንጠረዥ ወደ ጽሁፍ"
-
-#. LAbdZ
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10766\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can convert the current table to text.</ahelp> Opens <link href=\"text/swriter/01/06090000.xhp\">a dialog</link> where you can convert the current table to text."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">መክፈቻ የ አሁኑን ሰንጠረዥ ንግግር ወደ ጽሁፍ መቀየሪያ </ahelp> መክፈቻ <link href=\"text/swriter/01/06090000.xhp\">ንግግር</link> የተመረጠውን ሰንጠረዥ ወደ ጽሁፍ መቀየሪያ"
-
-#. VjgYf
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN1092F\n"
-"help.text"
-msgid "Edit Formula"
-msgstr ""
-
-#. xLmxB
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10933\n"
-"help.text"
-msgid "Opens the <link href=\"text/swriter/main0214.xhp\">Formula bar</link> to enter or edit a formula."
-msgstr "መክፈቻ የ <link href=\"text/swriter/main0214.xhp\">መቀመሪያ መደርደሪያ</link> መቀመሪያ ለ ማስገባት ወይንም ለ ማረም"
-
-#. HAZVY
-#: main0110.xhp
-msgctxt ""
-"main0110.xhp\n"
-"par_idN10607\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/06100000.xhp\">Sort</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\">መለያ</link>"
-
#. YtQGA
#: main0110.xhp
msgctxt ""
@@ -1420,6 +709,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Contains commands to apply, create, edit, update, load, and manage <link href=\"text/swriter/01/05130000.xhp\">styles</link> in a text document.</ahelp>"
msgstr "<ahelp hid=\".\">መፍጠሪያ: ማሻሻያ: መጫኛ: እና አስተዳዳሪ የሚፈጸም ትእዛዝ ይዟል:<link href=\"text/swriter/01/05130000.xhp\"> ዘዴዎች </link> በ ጽሁፍ ሰነድ ውስጥ: </ahelp>"
+#. gz3Qt
+#: main0115.xhp
+msgctxt ""
+"main0115.xhp\n"
+"par_id71693522443488\n"
+"help.text"
+msgid "Choose <menuitem>Styles</menuitem>."
+msgstr ""
+
#. gsPnE
#: main0115.xhp
msgctxt ""
@@ -1447,96 +745,6 @@ msgctxt ""
msgid "You can customize the list of styles entries using menu <link href=\"text/shared/01/06140100.xhp\"><emph>Tools - Customize</emph></link>. Because custom styles belongs to the actual document, remember to store the customized menu in the document scope."
msgstr "እርስዎ ዝርዝር ዘዴዎችን ማስገቢያን ማስተካከል ይችላሉ: በ መጠቀም ዝርዝር <link href=\"text/shared/01/06140100.xhp\"><emph> መሳሪያዎች - ማስተካከያ </emph></link>: ምክንያቱም ዘዴዎች ማስተካከያ የሚኖረው በ ዋናው ሰነድ ውስጥ ነው: ያስታውሱ የ ተስተካከል ዝርዝር በ ሰነድ ክፍል ውስጥ መቀመጡን:"
-#. 7kWCz
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"hd_id991529881414793\n"
-"help.text"
-msgid "Edit Style"
-msgstr "ዘዴ ማረሚያ"
-
-#. yrGy9
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"par_id111529881420452\n"
-"help.text"
-msgid "Opens the Paragraph Style dialog box of the current paragraph."
-msgstr "የ አንቀጽ ዘዴ ንግግር ሳጥን መክፈቻ ለ አሁን አንቀጽ:"
-
-#. uAA8T
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"hd_id111529881431158\n"
-"help.text"
-msgid "Update Selected Style"
-msgstr ""
-
-#. ZwMWW
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"par_id971529881437377\n"
-"help.text"
-msgid "Update the paragraph style with the <link href=\"text/shared/00/00000005.xhp#Section7\">direct formatting</link> applied to the current paragraph."
-msgstr "የ አንቀጽ ዘዴ ማሻሻያ በ <link href=\"text/shared/00/00000005.xhp#Section7\">ቀጥታ አቀራረብ </link> በ አሁኑ አንቀጽ ላይ ይፈጸማል:"
-
-#. DdHfV
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"hd_id191529881446409\n"
-"help.text"
-msgid "New Style from Selection"
-msgstr ""
-
-#. gYvit
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"par_id331529881457275\n"
-"help.text"
-msgid "Adds a paragraph style with the settings of the current selection. You will be prompted to enter the style name."
-msgstr "የ አንቀጽ ዘዴ ለ አሁኑ ምርጫ ከ ማሰናጃ ጋር መጨመሪያ: እርስዎ የ ዘዴ ስም እንዲያስገቡ ይጠየቃሉ:"
-
-#. 8cXPR
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"hd_id351529881470044\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05170000.xhp\">Load Styles from Template</link>"
-msgstr ""
-
-#. EycDZ
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"par_id551529883682302\n"
-"help.text"
-msgid "<link href=\"text/swriter/guide/load_styles.xhp\">Import styles</link> from another document or template into the current document."
-msgstr "<link href=\"text/swriter/guide/load_styles.xhp\">ዘዴዎች ማምጫ </link>ከ ሌላ ሰነድ ወይንም ቴምፕሌት ወደ አሁኑ ሰነድ ውስጥ:"
-
-#. Fec4Z
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"hd_id361529881482828\n"
-"help.text"
-msgid "Manage Styles"
-msgstr "የ ዘዴዎች አስተዳዳሪ"
-
-#. Er7Gx
-#: main0115.xhp
-msgctxt ""
-"main0115.xhp\n"
-"par_id901529883673111\n"
-"help.text"
-msgid "Opens the <link href=\"text/swriter/01/05140000.xhp\">Styles deck</link> in the sidebar."
-msgstr "መክፈቻ የ <link href=\"text/swriter/01/05140000.xhp\">ዘዴዎች ማሳረፊያ</link> በ ጎን መደርደሪያ ውስጥ:"
-
#. VmXct
#: main0120.xhp
msgctxt ""
@@ -1915,14 +1123,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05100100.xhp\">Merge Cells</link>"
msgstr "<link href=\"text/shared/01/05100100.xhp\">ክፍሎችን ማዋሀጃ</link>"
-#. USPoA
+#. rtMkW
#: main0204.xhp
msgctxt ""
"main0204.xhp\n"
"hd_id943333820\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150101.xhp\">AutoFormat</link>"
-msgstr "<link href=\"text/swriter/01/05150101.xhp\">በራሱ አቀራረብ</link>"
+msgid "<link href=\"text/shared/01/AutoFormat.xhp\">AutoFormat</link>"
+msgstr ""
#. uGJzG
#: main0204.xhp
@@ -2293,23 +1501,23 @@ msgctxt ""
msgid "Formula Bar"
msgstr "መቀመሪያ መደርደሪያ"
-#. Fqyww
+#. DFo2F
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"hd_id3145782\n"
"help.text"
-msgid "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\">Formula Bar</link></variable>"
-msgstr "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\">መቀመሪያ መደርደሪያ </link></variable>"
+msgid "<variable id=\"releistename\"><link href=\"text/swriter/main0214.xhp\">Edit Formula</link></variable>"
+msgstr ""
-#. aQsd3
+#. YEVMG
#: main0214.xhp
msgctxt ""
"main0214.xhp\n"
"par_id3154254\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Formula</emph> Bar allows you to create and insert calculations into a text document.</ahelp> To activate the <emph>Formula</emph> Bar, press F2."
-msgstr "<ahelp hid=\".\">የ <emph> መቀመሪያ </emph> መደርደሪያ የሚያስችለው በ ሰነድ ጽሁፍ ውስጥ ስሌቶችን ለ መፍጠር እና ለማስገባት ነው </ahelp> ለ ማስነሳት <emph> መቀመሪያ </emph> መደርደሪያ ይጫኑ F2."
+msgid "<ahelp hid=\".\">Opens the <emph>Formula</emph> bar to create and insert calculations into a text document.</ahelp>"
+msgstr ""
#. NmvGn
#: main0215.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index e2c3bf5138c..d64a8f6046f 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/helpcontent2/source/text/swriter/00.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: 2023-06-23 13:37+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2019-07-07 16:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -484,6 +484,24 @@ msgctxt ""
msgid "<variable id=\"bereiche\">Choose <emph>Format - Sections</emph></variable>"
msgstr "<variable id=\"bereiche\">ይምረጡ <emph> አቀራረብ - ክፍሎች </emph></variable>"
+#. uRDvs
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id321692739764058\n"
+"help.text"
+msgid "Click on the <menuitem>Object Info</menuitem> area."
+msgstr ""
+
+#. PgikB
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
+"par_id491692740252611\n"
+"help.text"
+msgid "On the <menuitem>Navigation</menuitem> panel, open the context menu of the selected section, choose <menuitem>Edit</menuitem>."
+msgstr ""
+
#. Y3Vug
#: 00000402.xhp
msgctxt ""
@@ -682,22 +700,49 @@ msgctxt ""
msgid "On the <menuitem>View</menuitem> menu of the <menuitem>View</menuitem> tab, choose <menuitem>Text Boundaries</menuitem>."
msgstr ""
-#. nnySY
+#. tTWz3
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3153248\n"
"help.text"
-msgid "Choose <menuitem>View - Field Shadings</menuitem>"
+msgid "Choose <menuitem>View - Field Shadings</menuitem>."
msgstr ""
-#. JRFUp
+#. xnjGK
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id921686954154014\n"
+"help.text"
+msgid "On the <menuitem>View</menuitem> menu of the <menuitem>View</menuitem> tab, select <menuitem>Field Shadings</menuitem>."
+msgstr ""
+
+#. fx4Hc
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id351686953658789\n"
+"help.text"
+msgid "<image src=\"cmd/lc_marks.svg\" id=\"img_id121686953658790\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id491686953658791\">Icon Field Shadings</alt></image>"
+msgstr ""
+
+#. 834oT
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id561686953658793\n"
+"help.text"
+msgid "Field Shadings"
+msgstr ""
+
+#. AA6FR
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3154763\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F8</keycode>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F8</keycode>"
msgstr ""
#. wYngB
@@ -709,13 +754,40 @@ msgctxt ""
msgid "Choose <menuitem>View - Field Names</menuitem>"
msgstr ""
-#. krDbj
+#. eDmAA
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id811686955158021\n"
+"help.text"
+msgid "On the <menuitem>View</menuitem> menu of the <menuitem>View</menuitem> tab, select <menuitem>Field Names</menuitem>."
+msgstr ""
+
+#. VPSRs
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id981686954865569\n"
+"help.text"
+msgid "<image src=\"cmd/lc_addfield.svg\" id=\"img_id461686954865570\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id761686954865571\">Icon Field Names</alt></image>"
+msgstr ""
+
+#. DmCYc
+#: 00000403.xhp
+msgctxt ""
+"00000403.xhp\n"
+"par_id271686954865573\n"
+"help.text"
+msgid "Field Names"
+msgstr ""
+
+#. vFYVF
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3151387\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F9</keycode>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F9</keycode>"
msgstr ""
#. VgPmS
@@ -907,13 +979,13 @@ msgctxt ""
msgid "Normal View"
msgstr ""
-#. xjXHF
+#. Ark4C
#: 00000403.xhp
msgctxt ""
"00000403.xhp\n"
"par_id3149808\n"
"help.text"
-msgid "<variable id=\"hidden_para\">Choose <menuitem>View - Hidden Paragraphs</menuitem> </variable>"
+msgid "Choose <menuitem>View - Hidden Paragraphs</menuitem>"
msgstr ""
#. yDXA6
@@ -961,13 +1033,67 @@ msgctxt ""
msgid "Choose <menuitem>Insert - Field</menuitem>"
msgstr ""
-#. 28cuG
+#. L4pYz
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3146966\n"
"help.text"
-msgid "<variable id=\"fieldcontextmenu\" visibility=\"hidden\">Open context menu - choose <menuitem>Fields</menuitem> (inserted fields)</variable>"
+msgid "Open context menu - choose <menuitem>Edit Field</menuitem> (inserted fields)"
+msgstr ""
+
+#. qi59x
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id691689980338451\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Fields</menuitem>."
+msgstr ""
+
+#. DqQGg
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id51689980575206\n"
+"help.text"
+msgid "Choose <menuitem>Reference - Field</menuitem>."
+msgstr ""
+
+#. nAVFo
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id351689980815707\n"
+"help.text"
+msgid "On the <menuitem>References</menuitem> menu of the <menuitem>References</menuitem> tab, choose <menuitem>Field</menuitem>."
+msgstr ""
+
+#. DTitn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id521689980363695\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertfieldctrl.svg\" id=\"img_id541689980363696\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id601689980363697\">Icon Insert Field</alt></image>"
+msgstr ""
+
+#. wdYGC
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id601689980363699\n"
+"help.text"
+msgid "Insert Field"
+msgstr ""
+
+#. N7Gis
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id611689980953500\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F2</keycode>"
msgstr ""
#. TNXhr
@@ -1087,23 +1213,68 @@ msgctxt ""
msgid "<variable id=\"felddokument\">Choose <emph>Insert - Field - More Fields - Document</emph> tab</variable>"
msgstr "<variable id=\"felddokument\"> ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ - ሜዳዎች - ሰነድ </emph> tab </variable>"
-#. XrdXS
+#. sYnef
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154692\n"
"help.text"
-msgid "Choose <emph>Insert - Field - More Fields - Cross-references</emph> tab"
-msgstr "ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች - መስቀልኛ-ማመሳከሪያ </emph> tab"
+msgid "Choose <menuitem>Insert - Field - More Fields - Cross-references</menuitem> tab"
+msgstr ""
-#. UKFbV
+#. BwuRW
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3145411\n"
"help.text"
-msgid "Choose <emph>Insert - Cross-reference</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ - መስቀልኛ-ማመሳከሪያ </emph>"
+msgid "Choose <menuitem>Insert - Cross-reference</menuitem>"
+msgstr ""
+
+#. PvJGY
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id451689712532244\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Cross-reference</menuitem>."
+msgstr ""
+
+#. GpCzY
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id171689712540117\n"
+"help.text"
+msgid "Choose <menuitem>References - Cross-reference</menuitem>."
+msgstr ""
+
+#. GnMZd
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id991689712350327\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertreferencefield.svg\" id=\"img_id721689712350328\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21689712350329\">Icon Insert Cross-reference</alt></image>"
+msgstr ""
+
+#. Xu3WW
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id271689712350331\n"
+"help.text"
+msgid "Insert Cross-reference"
+msgstr ""
+
+#. DWQ4n
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id801689712491587\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F2</keycode>"
+msgstr ""
#. GJDk8
#: 00000404.xhp
@@ -1141,23 +1312,32 @@ msgctxt ""
msgid "<variable id=\"felddatenbank\">Choose <emph>Insert - Field - More Fields - Database</emph> tab</variable>"
msgstr "<variable id=\"felddatenbank\">ይምረጡ <emph> ማስገቢያ - ሜዳ - ተጨማሪ ሜዳዎች - ዳታቤዝ </emph> tab </variable>"
-#. 4dGC3
+#. dAW8z
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149810\n"
"help.text"
-msgid "Choose <emph>Insert - Section</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ - ክፍል </emph>"
+msgid "Choose <menuitem>Insert - Section</menuitem>"
+msgstr ""
-#. jpNCE
+#. uvkPV
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3150973\n"
+"par_id351689427529576\n"
"help.text"
-msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
+msgid "Choose <menuitem>Insert - Section</menuitem>"
+msgstr ""
+
+#. CWCYt
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id1001689428082365\n"
+"help.text"
+msgid "On the <menuitem>Insert</menuitem> menu of the <menuitem>Insert</menuitem> Tab, choose <menuitem>Section</menuitem>."
+msgstr ""
#. WgGL9
#: 00000404.xhp
@@ -1195,40 +1375,49 @@ msgctxt ""
msgid "<variable id=\"sectionindents\">Choose <menuitem>Insert - Section - Indents</menuitem> tab or choose <menuitem>Format - Sections</menuitem> - <widget>Options</widget> button - <emph>Indents</emph> tab</variable>"
msgstr ""
-#. oCG8Q
+#. rpz79
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3151322\n"
"help.text"
-msgid "Choose <emph>Insert - Footnote and Endnote - Footnote or Endnote</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ - የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ - የ ግርጌ ማስታወሻ ወይንም የ መጨረሻ ማስታወሻ </emph>"
+msgid "Choose <menuitem>Insert - Footnote and Endnote - Footnote or Endnote</menuitem>"
+msgstr ""
-#. cExks
+#. DGDoW
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3155178\n"
"help.text"
-msgid "Open context menu - choose <emph>Footnote/Endnote</emph> (inserted Footnote/Endnote)"
-msgstr "ዝርዝር አገባብ መክፈቻ - ይምረጡ <emph> የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ </emph> (ተጨምሯል የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ)"
+msgid "Choose <emph>Footnote/Endnote</emph> (on inserted Footnote/Endnote)"
+msgstr ""
-#. rHySW
+#. AVaDA
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3143279\n"
+"par_id961689951954119\n"
"help.text"
-msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
+msgid "Choose <menuitem>Reference - Footnote</menuitem>."
+msgstr ""
-#. wBbNd
+#. mdCyi
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id471689951958563\n"
+"help.text"
+msgid "Choose <menuitem>Reference - Endnote</menuitem>."
+msgstr ""
+
+#. ztUfY
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3151261\n"
"help.text"
-msgid "<image id=\"img_id3149099\" src=\"cmd/sc_insertfootnote.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149099\">Icon</alt></image>"
+msgid "<image id=\"img_id3149099\" src=\"cmd/lc_insertfootnote.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149099\">Icon Insert Footnote Directly</alt></image>"
msgstr ""
#. VgB6H
@@ -1240,13 +1429,13 @@ msgctxt ""
msgid "Insert Footnote Directly"
msgstr "የ ግርጌ ማስታወሻ በቀጥታ ማስገቢያ"
-#. 9p7cP
+#. qCCYL
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3147579\n"
"help.text"
-msgid "<image id=\"img_id3147586\" src=\"cmd/sc_insertendnote.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147586\">Icon</alt></image>"
+msgid "<image id=\"img_id3147586\" src=\"cmd/lc_insertendnote.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147586\">Icon Insert Endnote Directly</alt></image>"
msgstr ""
#. YsSsR
@@ -1258,23 +1447,50 @@ msgctxt ""
msgid "Insert Endnote Directly"
msgstr "የ መጨረሻ ማስታወሻ በቀጥታ ማስገቢያ"
-#. cNyhQ
+#. AKkD3
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154385\n"
"help.text"
-msgid "Choose <emph>Insert - Caption</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ - መግለጫ ጽሁፍ </emph>"
+msgid "Choose <menuitem>Insert - Caption</menuitem>"
+msgstr ""
-#. V3onD
+#. bFUNG
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3153358\n"
"help.text"
-msgid "Open context menu - choose <emph>Caption</emph>"
-msgstr "የዝርዝር አገባብ መክፈቻ - ይምረጡ <emph> መግለጫ ጽሁፍ </emph>"
+msgid "Choose <menuitem>Insert Caption</menuitem>"
+msgstr ""
+
+#. zYhoH
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id861689710207672\n"
+"help.text"
+msgid "Choose <menuitem>Image - Caption</menuitem>."
+msgstr ""
+
+#. kgAeb
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id311689710414911\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertcaptiondialog.svg\" id=\"img_id971689710414912\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id321689710414914\">Icon Insert Caption</alt></image>"
+msgstr ""
+
+#. NVN2H
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id321689710414915\n"
+"help.text"
+msgid "Insert Caption"
+msgstr ""
#. dzvpw
#: 00000404.xhp
@@ -1294,41 +1510,41 @@ msgctxt ""
msgid "Open context menu - choose <emph>Caption - Options</emph>"
msgstr "ዝርዝር አገባብ መክፈቻ - ይምረጡ <emph>መግለጫ ጽሁፍ - ምርጫዎች</emph>"
-#. NVLUa
+#. kpDVD
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150587\n"
"help.text"
-msgid "Choose <emph>Insert - Bookmark</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ - ምልክት ማድረጊያ </emph>"
+msgid "Choose <menuitem>Insert - Bookmark</menuitem>"
+msgstr ""
-#. 2Eb4B
+#. 8BVDc
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3145785\n"
+"par_id661689711419419\n"
"help.text"
-msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
+msgid "Choose <menuitem>Insert - Bookmark</menuitem>"
+msgstr ""
-#. RByCZ
+#. QdccD
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3148884\n"
"help.text"
-msgid "<image id=\"img_id3151369\" src=\"sw/res/nc20005.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151369\">Icon</alt></image>"
-msgstr "<image id=\"img_id3151369\" src=\"sw/res/nc20005.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3151369\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3151369\" src=\"cmd/lc_insertbookmark.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151369\">Icon Insert Bookmark</alt></image>"
+msgstr ""
-#. A5qEq
+#. RALxn
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150689\n"
"help.text"
-msgid "Bookmark"
-msgstr "ምልክት ማድረጊያ"
+msgid "Insert Bookmark"
+msgstr ""
#. t5HbC
#: 00000404.xhp
@@ -1339,14 +1555,14 @@ msgctxt ""
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
msgstr "<variable id=\"einfscript\">ይምረጡ <emph> ማስገቢያ - Script </emph> (HTML ሰነድ ብቻ) </variable>"
-#. Ghd8y
+#. qYWD8
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3155866\n"
"help.text"
-msgid "<variable id=\"verzeichnisseeinf\">Choose <emph>Insert - Table of Contents and Index</emph></variable>"
-msgstr "<variable id=\"verzeichnisseeinf\">ይምረጡ <emph> ማስገቢያ - ማውጫ እና የ ሰንጠረዥ ማውጫ </emph></variable>"
+msgid "Choose <menuitem>Insert - Table of Contents and Index</menuitem>"
+msgstr ""
#. DDBoM
#: 00000404.xhp
@@ -1384,14 +1600,59 @@ msgctxt ""
msgid "Insert Index Entry"
msgstr ""
-#. k7zqb
+#. 7ByK6
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149217\n"
"help.text"
-msgid "<variable id=\"stichwortverzeichnisverz\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography</emph></variable>"
-msgstr "<variable id=\"stichwortverzeichnisverz\">ይምረጡ <emph> ማስገቢያ - የ ሰንጠረዥ ማውጫ እና - ማውጫ - የ ሰንጠረዥ ማውጫ እና ማውጫ ወይንም የ ጽሁፎች ዝርዝር </emph> </variable>"
+msgid "Choose <menuitem>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography</menuitem>"
+msgstr ""
+
+#. tdCBd
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id861689978192607\n"
+"help.text"
+msgid "Choose <menuitem>Edit Index</menuitem> in the index."
+msgstr ""
+
+#. ZqGjn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id321689978196577\n"
+"help.text"
+msgid "Choose <menuitem>Reference - Table of Contents</menuitem>."
+msgstr ""
+
+#. FdFbP
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id771689978202897\n"
+"help.text"
+msgid "On the <menuitem>Reference</menuitem> menu of the <menuitem>Reference</menuitem> tab, choose <menuitem>Table of Contents, Index or Bibliography</menuitem>."
+msgstr ""
+
+#. YYSPr
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id631689978370800\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertmultiindex.svg\" id=\"img_id51689978370801\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id191689978370802\">Icon Insert Index</alt></image>"
+msgstr ""
+
+#. hkQaQ
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id751689978370804\n"
+"help.text"
+msgid "Insert Index"
+msgstr ""
#. wGD6e
#: 00000404.xhp
@@ -1591,14 +1852,59 @@ msgctxt ""
msgid "<variable id=\"stylestab\">Choose <emph>Insert - Table of Contents and Index - Table of Contents, Index or Bibliography - Styles</emph> tab</variable>"
msgstr ""
-#. DDiWX
+#. aG6wh
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149249\n"
"help.text"
-msgid "<variable id=\"briefumschlag\">Choose <emph>Insert - Envelope</emph></variable>"
-msgstr "<variable id=\"briefumschlag\">ይምረጡ <emph> ማስገቢያ - ፖስታ </emph></variable>"
+msgid "Choose <menuitem>Insert - Envelope</menuitem>"
+msgstr ""
+
+#. squo3
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id861690028411283\n"
+"help.text"
+msgid "Choose <menuitem>Tools - Envelope</menuitem>."
+msgstr ""
+
+#. 7rruA
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id541690028489549\n"
+"help.text"
+msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Envelope</menuitem>."
+msgstr ""
+
+#. hYQF9
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id261690026892790\n"
+"help.text"
+msgid "On the <menuitem>Insert</menuitem> menu of the <menuitem>Insert</menuitem> tab, choose <menuitem>Envelope</menuitem>."
+msgstr ""
+
+#. UWXwk
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id471690027329615\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertenvelope.svg\" id=\"img_id921690027329616\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id411690027329617\">Icon Insert Envelope</alt></image>"
+msgstr ""
+
+#. 87GZD
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id41690027329619\n"
+"help.text"
+msgid "Insert Envelope"
+msgstr ""
#. 9V7Qa
#: 00000404.xhp
@@ -1627,50 +1933,41 @@ msgctxt ""
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
msgstr "<variable id=\"druckerbr\">ይምረጡ <emph> ማስገቢያ - የ ፖስታ - ማተሚያ </emph> tab </variable>"
-#. RmDRv
+#. 6LPWf
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3148781\n"
"help.text"
-msgid "Choose <emph>Insert - Frame</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ - ክፈፍ </emph>"
+msgid "Choose <menuitem>Insert - Frame - Frame</menuitem>"
+msgstr ""
-#. Kqvsj
+#. XnNX8
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150084\n"
"help.text"
-msgid "Choose <emph>Format - Frame and Object - Properties</emph>"
-msgstr "ይምረጡ <emph> አቀራረብ - ክፈፍ እና እቃ - ባህሪዎች </emph>"
-
-#. f4vSS
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3150103\n"
-"help.text"
-msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
+msgid "Choose <menuitem>Format - Frame and Object - Properties</menuitem>"
+msgstr ""
-#. 8jBbi
+#. WFNme
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149372\n"
"help.text"
-msgid "<image id=\"img_id3149379\" src=\"cmd/sc_insertframe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149379\">Icon Insert Frame</alt></image>"
+msgid "<image id=\"img_id3149379\" src=\"cmd/lc_insertframe.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149379\">Icon Insert Frame</alt></image>"
msgstr ""
-#. 9WJAn
+#. WEVYB
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3151229\n"
"help.text"
-msgid "Insert Frame Manually"
-msgstr "ክፈፍ በእጅ ማስገቢያ"
+msgid "Insert Frame"
+msgstr ""
#. 48zNA
#: 00000404.xhp
@@ -1681,41 +1978,104 @@ msgctxt ""
msgid "Choose <emph>Table - Insert Table</emph>"
msgstr "ይምረጡ <emph> ሰንጠረዥ - ማስገቢያ - ሰንጠረዥ </emph>"
-#. G4vMQ
+#. M2AKn
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3153129\n"
+"par_id331693606769016\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgid "Choose <menuitem>Insert - Table - More Options</menuitem>."
+msgstr ""
-#. pZRkv
+#. BeWA5
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3148817\n"
+"par_id411693606860933\n"
"help.text"
-msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
+msgid "Choose <menuitem>Home - Table - More Options</menuitem>."
+msgstr ""
-#. ZV3pG
+#. Kx8Eu
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3154620\n"
"help.text"
-msgid "<image id=\"img_id3154627\" src=\"cmd/sc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154627\">Icon</alt></image>"
+msgid "<image id=\"img_id3154627\" src=\"cmd/lc_inserttable.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154627\">Icon Insert Table</alt></image>"
msgstr ""
-#. 7XCPh
+#. bPNqU
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3147382\n"
"help.text"
-msgid "Table"
-msgstr "ሰንጠረዥ"
+msgid "Insert Table"
+msgstr ""
+
+#. XYYTx
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id3153129\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F12</keycode>"
+msgstr ""
+
+#. GK3A9
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id51693613953440\n"
+"help.text"
+msgid "Choose <menuitem>Table - Insert</menuitem>."
+msgstr ""
+
+#. Z7Spi
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id411693614570100\n"
+"help.text"
+msgid "Choose <menuitem>Insert</menuitem>."
+msgstr ""
+
+#. sHC6S
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id151693614315312\n"
+"help.text"
+msgid "Choose <menuitem>Table</menuitem>."
+msgstr ""
+
+#. 5stFn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id941693614362015\n"
+"help.text"
+msgid "<image src=\"cmd/lc_insertrowsafter.svg\" id=\"img_id731693614362015\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id31693614362016\">Icon Insert</alt></image>"
+msgstr ""
+
+#. DyZri
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id331693614362017\n"
+"help.text"
+msgid "Insert"
+msgstr ""
+
+#. FJytA
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761693614504387\n"
+"help.text"
+msgid "On the <menuitem>Properties</menuitem> panel, choose <menuitem>Table</menuitem>."
+msgstr ""
#. EJeBg
#: 00000404.xhp
@@ -1735,22 +2095,22 @@ msgctxt ""
msgid "Choose <menuitem>Insert - Text from File</menuitem>"
msgstr ""
-#. Yk7M7
+#. p6gia
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
-"par_id3150679\n"
+"par_id151689428910681\n"
"help.text"
-msgid "Open <emph>Insert</emph> toolbar, click"
-msgstr "መክፈቻ <emph> ማስገቢያ </emph> እቃ መደርደሪያ ይጫኑ"
+msgid "On the <menuitem>Insert</menuitem> menu of the <menuitem>Insert</menuitem> Tab, choose <menuitem>Text from File</menuitem>."
+msgstr ""
-#. xELER
+#. LQPLD
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3149959\n"
"help.text"
-msgid "<image id=\"img_id3149966\" src=\"cmd/sc_insertdoc.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149966\">Icon</alt></image>"
+msgid "<image id=\"img_id3149966\" src=\"cmd/lc_insertdoc.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149966\">Icon Text from File</alt></image>"
msgstr ""
#. e6VAk
@@ -1807,13 +2167,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Drop Caps</emph> tab."
msgstr ""
-#. iE5E9
+#. n5PsU
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3149294\n"
"help.text"
-msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Drop Caps</emph> tab."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>New/Edit Style - Drop Caps</menuitem> tab."
msgstr ""
#. JSAcg
@@ -1825,13 +2185,13 @@ msgctxt ""
msgid "Choose <emph>Format - Paragraph - Text Flow</emph> tab."
msgstr ""
-#. HGsyD
+#. GMbJS
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3154260\n"
"help.text"
-msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Text Flow</emph> tab."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>New/Edit Style - Text Flow</menuitem> tab."
msgstr ""
#. ANWP6
@@ -1924,13 +2284,121 @@ msgctxt ""
msgid "Choose <menuitem>Format - Page Style</menuitem>."
msgstr ""
-#. ZE7hk
+#. XRMDj
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id471692554629614\n"
+"help.text"
+msgid "Choose <menuitem>Page Style</menuitem>."
+msgstr ""
+
+#. tm9dT
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id351692557625631\n"
+"help.text"
+msgid "On the <menuitem>Layout</menuitem> tab, choose <menuitem>Page Margins</menuitem> or <menuitem>Page Size</menuitem> or <menuitem>Page Columns</menuitem> and click on <menuitem>More Options</menuitem>."
+msgstr ""
+
+#. FGnke
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id211692556452077\n"
+"help.text"
+msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Page Style</menuitem>."
+msgstr ""
+
+#. sanBD
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id51692556190345\n"
+"help.text"
+msgid "<image src=\"cmd/lc_pagedialog.svg\" id=\"img_id371692556190346\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id41692556190347\">Icon Page Style</alt></image>"
+msgstr ""
+
+#. 73BSH
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id271692556190349\n"
+"help.text"
+msgid "Page Style"
+msgstr ""
+
+#. WRDoR
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id561692556074023\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + Shift + P</keycode>"
+msgstr ""
+
+#. vyuEN
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id241692555856579\n"
+"help.text"
+msgid "Click on the <menuitem>Page Style</menuitem> area."
+msgstr ""
+
+#. XH453
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153536\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose Page Styles - open context menu for selected style - <emph>New/Modify</emph>."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - choose <menuitem>Page Styles</menuitem> - open context menu for selected style - <menuitem>New/Edit Style</menuitem>."
+msgstr ""
+
+#. 9Ak54
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id300920161443292710\n"
+"help.text"
+msgid "Choose menu <menuitem>Format - Title Page</menuitem>."
+msgstr ""
+
+#. DxLNJ
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id391690927099363\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Title Page</menuitem>."
+msgstr ""
+
+#. ohAHK
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id631690927677592\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Title Page</menuitem>."
+msgstr ""
+
+#. gKuoE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id801690927170814\n"
+"help.text"
+msgid "<image src=\"cmd/lc_titlepagedialog.svg\" id=\"img_id901690927170815\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id141690927170816\">Icon Title Page</alt></image>"
+msgstr ""
+
+#. ELxap
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id681690927170817\n"
+"help.text"
+msgid "Title Page"
msgstr ""
#. 4fpCB
@@ -1969,13 +2437,13 @@ msgctxt ""
msgid "Choose <menuitem>Styles - Edit Style - Outline & List</menuitem> tab (Paragraph Styles)."
msgstr ""
-#. Tz3Kw
+#. NJKBC
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147525\n"
"help.text"
-msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>Modify/New - Outline & List</menuitem> tab (Paragraph Styles)."
+msgid "Choose <menuitem>View - Styles -</menuitem> open context menu <menuitem>New/Edit Style - Outline & List</menuitem> tab (Paragraph Styles)."
msgstr ""
#. Rp3Q3
@@ -1987,22 +2455,31 @@ msgctxt ""
msgid "<variable id=\"spaltenber\">Choose <menuitem>Format - Sections - Options</menuitem> button.</variable>"
msgstr ""
-#. w4TAg
+#. VfzTE
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3150836\n"
+"par_id711692649164626\n"
"help.text"
-msgid "Choose <emph>Format - Page Style - Columns</emph> tab."
+msgid "Choose <menuitem>Format - Columns</menuitem>."
msgstr ""
-#. xDwV2
+#. dNFJf
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3149298\n"
+"par_id991692649333873\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - <emph>Page Styles</emph> - open context menu for selected page style - <menuitem>Modify/New - Columns</menuitem> tab."
+msgid "Choose <menuitem>Format - Title Page</menuitem>, select the page style, click <widget>Edit</widget>."
+msgstr ""
+
+#. w4TAg
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3150836\n"
+"help.text"
+msgid "Choose <emph>Format - Page Style - Columns</emph> tab."
msgstr ""
#. 9sMo7
@@ -2014,6 +2491,15 @@ msgctxt ""
msgid "Choose <emph>Insert - Frame - Frame - Columns</emph> tab."
msgstr "ይምረጡ <emph> ማስገቢያ - ክፈፍ - ክፈፍ - አምዶች </emph> tab"
+#. TEDtR
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3149298\n"
+"help.text"
+msgid "Choose <menuitem>View - Styles</menuitem> - <emph>Page Styles</emph> - open context menu for selected page style - <menuitem>New/Edit Style - Columns</menuitem> tab."
+msgstr ""
+
#. 9F5Bz
#: 00000405.xhp
msgctxt ""
@@ -2041,6 +2527,42 @@ msgctxt ""
msgid "Choose <menuitem>Format - Section - </menuitem><widget>Options</widget> button - <menuitem>Columns</menuitem> tab."
msgstr ""
+#. snEUp
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id421692652861051\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Page Columns - More Options - Columns</menuitem> tab."
+msgstr ""
+
+#. hFidE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id151692652866926\n"
+"help.text"
+msgid "On the <menuitem>Layout</menuitem> menu and the <menuitem>Layout</menuitem> tab, choose <menuitem>Page Columns</menuitem>."
+msgstr ""
+
+#. 9YfCE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id421692652916896\n"
+"help.text"
+msgid "<image src=\"cmd/lc_formatcolumns.svg\" id=\"img_id51692652916897\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id631692652916898\">Icon Page Columns</alt></image>"
+msgstr ""
+
+#. Hxa4Z
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id621692652916900\n"
+"help.text"
+msgid "Page Columns"
+msgstr ""
+
#. Gdf8J
#: 00000405.xhp
msgctxt ""
@@ -2050,14 +2572,14 @@ msgctxt ""
msgid "Choose <emph>Format - Page Style - Footnote</emph> tab."
msgstr ""
-#. CDmGU
+#. jSDrT
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3149109\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New - Footnote</emph> tab."
-msgstr "ይምረጡ <emph>መመልከቻ - ዘዴዎች -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ - የ ግርጌ ማስታወሻ</emph> tab"
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu <menuitem>New/Edit Style - Footnote</menuitem> tab."
+msgstr ""
#. GpwGB
#: 00000405.xhp
@@ -2077,14 +2599,14 @@ msgctxt ""
msgid "Choose <emph>Format - Sections - Options</emph> button <emph>Footnotes/Endnotes</emph> tab."
msgstr "ይምረጡ <emph> አቀራረብ - ክፍሎች - ምርጫዎች </emph> ቁልፍ <emph> የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ </emph> tab"
-#. f8wAM
+#. VyZD3
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3155140\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New</emph> (for Paragraph Styles)."
-msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች -</emph> ዝርዝር አገባብ መክፈቻ <emph> ማሻሻያ/አዲስ </emph> (ለ አንቀጽ ዘዴዎች)"
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu <menuitem>New/Edit Style</menuitem> (for Paragraph Styles)."
+msgstr ""
#. bAmxC
#: 00000405.xhp
@@ -2104,13 +2626,13 @@ msgctxt ""
msgid "Click on the Character Style icon at top of the deck, then select a character style."
msgstr ""
-#. j5skL
+#. 4pkAz
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id501610557723109\n"
"help.text"
-msgid "Right-click to open context menu and choose <menuitem>Modify/New</menuitem>."
+msgid "Right-click to open context menu and choose <menuitem>New/Edit Style</menuitem>."
msgstr ""
#. SrKCw
@@ -2131,22 +2653,22 @@ msgctxt ""
msgid "Character Style icon"
msgstr ""
-#. woQEB
+#. LfCG2
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3149179\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New</emph> (for Frame Styles)."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu <menuitem>New/Edit Style</menuitem> (for Frame Styles)."
msgstr ""
-#. LwHDD
+#. CtXVj
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3156364\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - open context menu <menuitem>Modify/New</menuitem> (for List Styles)."
+msgid "Choose <menuitem>View - Styles</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>) - open context menu <menuitem>New/Edit Style</menuitem> (for List Styles)."
msgstr ""
#. GnSG7
@@ -2248,13 +2770,13 @@ msgctxt ""
msgid "Choose <menuitem>Format - Frame and Object - Properties - Position and Size</menuitem> tab."
msgstr ""
-#. 7WVGQ
+#. aqVqW
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3148856\n"
"help.text"
-msgid "Choose <menuitem>View - Styles - Frame Styles</menuitem> - open context menu <menuitem>Modify/New - Type</menuitem> tab."
+msgid "Choose <menuitem>View - Styles - Frame Styles</menuitem> - open context menu <menuitem>New/Edit Style - Type</menuitem> tab."
msgstr ""
#. j5nXW
@@ -2266,6 +2788,51 @@ msgctxt ""
msgid "Choose <menuitem>Insert - Frame - Frame - Position and Size</menuitem> tab."
msgstr ""
+#. FbtVd
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id351690923285730\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Position and Size</menuitem> tab."
+msgstr ""
+
+#. kvFPC
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id331690923767580\n"
+"help.text"
+msgid "On the <menuitem>Image</menuitem> menu of the <menuitem>Image</menuitem> tab, choose<menuitem> Properties - Position and Size</menuitem> tab."
+msgstr ""
+
+#. Zw2FE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id541690923773172\n"
+"help.text"
+msgid "On the <menuitem>Object</menuitem> menu of the <menuitem>Object</menuitem> tab, choose <menuitem>Properties - Position and Size</menuitem> tab."
+msgstr ""
+
+#. Qde5i
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id881690923420747\n"
+"help.text"
+msgid "Click on the <menuitem>Selected Object Size</menuitem> area, <menuitem>Position and Size</menuitem> tab."
+msgstr ""
+
+#. tiaLu
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id561692972468397\n"
+"help.text"
+msgid "Choose <menuitem>Format - Wrap</menuitem>."
+msgstr ""
+
#. GVNFT
#: 00000405.xhp
msgctxt ""
@@ -2302,6 +2869,42 @@ msgctxt ""
msgid "Choose <emph>Format - Wrap - Edit - Wrap</emph> tab."
msgstr ""
+#. 2Xgot
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id591692974583627\n"
+"help.text"
+msgid "Choose <menuitem>Wrap</menuitem>."
+msgstr ""
+
+#. NAGsC
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id121692972596484\n"
+"help.text"
+msgid "Choose <menuitem>Wrap - Edit - Wrap</menuitem> tab."
+msgstr ""
+
+#. pRD4y
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id931692974564015\n"
+"help.text"
+msgid "Choose <menuitem>Image - Wrap</menuitem> tab."
+msgstr ""
+
+#. BDnVQ
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id891692974559993\n"
+"help.text"
+msgid "On the <menuitem>Properties</menuitem> panel, choose <menuitem>Wrap</menuitem> deck."
+msgstr ""
+
#. uQtgx
#: 00000405.xhp
msgctxt ""
@@ -2356,13 +2959,13 @@ msgctxt ""
msgid "Choose <emph>Format - Frame and Object - Properties - Options</emph> tab."
msgstr ""
-#. y6FeX
+#. zfgDE
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3149774\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> - open context menu for selected <menuitem>Frame style</menuitem> - <menuitem>Modify/New - Options</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> - open context menu for selected <menuitem>Frame style</menuitem> - <menuitem>New/Edit Style - Options</menuitem> tab."
msgstr ""
#. 8DneW
@@ -2437,60 +3040,6 @@ msgctxt ""
msgid "Choose <emph>Format - Character - Hyperlink</emph> tab - <emph>Events</emph> button."
msgstr ""
-#. PfEZC
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155114\n"
-"help.text"
-msgid "<variable id=\"formattable\">Choose <menuitem>Table - Properties</menuitem>.</variable>"
-msgstr ""
-
-#. 7rYXk
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id351656587408071\n"
-"help.text"
-msgid "On the <emph>Table</emph> bar (with cursor in table), click"
-msgstr ""
-
-#. HBbyP
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id191656586861385\n"
-"help.text"
-msgid "<image src=\"cmd/lc_tabledialog.svg\" id=\"img_id101656586861385\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id201656586861385\">Table Properties Icon</alt></image>"
-msgstr ""
-
-#. aPEVQ
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id301656586861385\n"
-"help.text"
-msgid "Table Properties"
-msgstr ""
-
-#. TBJPz
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3149377\n"
-"help.text"
-msgid "<variable id=\"tabauf\">Choose <emph>Table - Split Table</emph>.</variable>"
-msgstr ""
-
-#. 2TCie
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155810\n"
-"help.text"
-msgid "<variable id=\"tabverb\">Choose <emph>Table - Merge Table</emph>.</variable>"
-msgstr ""
-
#. MVBHQ
#: 00000405.xhp
msgctxt ""
@@ -2599,31 +3148,76 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Unmerge Cells</caseinline><defaultinline>Split Cells</defaultinline></switchinline>"
msgstr ""
-#. BGm4B
+#. g5Dxw
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id331694100929699\n"
+"help.text"
+msgid "Choose <menuitem>Table - Protect Cells</menuitem>."
+msgstr ""
+
+#. gwQsD
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id161694101223040\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Protect Cells</menuitem>."
+msgstr ""
+
+#. svsX9
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id911694101003319\n"
+"help.text"
+msgid "<image src=\"cmd/lc_protect.svg\" id=\"img_id501694101003320\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id511694101003321\">Icon Protect Cells</alt></image>"
+msgstr ""
+
+#. s9TpC
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id101694101003323\n"
+"help.text"
+msgid "Protect Cells"
+msgstr ""
+
+#. wJCya
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id591694101404861\n"
+"help.text"
+msgid "Choose <menuitem>Table - Unprotect Cells</menuitem>."
+msgstr ""
+
+#. iB7D9
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3149617\n"
+"par_id161694101531443\n"
"help.text"
-msgid "<variable id=\"schtzenze\">In the context menu of a cell, choose <emph>Cell - Protect</emph>.</variable>"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Unprotect Cells</menuitem>."
msgstr ""
-#. Lh5om
+#. 5NHsM
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3150786\n"
+"par_id391694101615687\n"
"help.text"
-msgid "In the context menu of a cell, choose <emph>Cell - Unprotect</emph>."
+msgid "<image src=\"cmd/lc_unsetcellsreadonly.svg\" id=\"img_id961694101615688\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id111694101615689\">Icon Unprotect Cells</alt></image>"
msgstr ""
-#. JqhNZ
+#. yMTxr
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3145656\n"
+"par_id371694101615690\n"
"help.text"
-msgid "Open context menu in <emph>Navigator</emph> for tables."
+msgid "Unprotect Cells"
msgstr ""
#. Eh3ud
@@ -2635,13 +3229,58 @@ msgctxt ""
msgid "<variable id=\"zeile\">In the context menu of a cell, choose <emph>Row</emph>.</variable>"
msgstr ""
-#. GXGax
+#. RCHXV
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id821693922352366\n"
+"help.text"
+msgid "Choose <menuitem>Table - Size - Row Height</menuitem>."
+msgstr ""
+
+#. EhpMd
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3155345\n"
"help.text"
-msgid "<variable id=\"hoehez\">In the context menu of a cell, choose <emph>Row - Height</emph>.</variable>"
+msgid "<variable id=\"hoehez\">Choose <menuitem>Size - Row Height</menuitem>.</variable>"
+msgstr ""
+
+#. Ab4Xu
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id751693922488102\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Row Height</menuitem>."
+msgstr ""
+
+#. KnbBF
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id811693922871642\n"
+"help.text"
+msgid "Choose <menuitem>Table - Size - Column Width</menuitem>."
+msgstr ""
+
+#. nPnJS
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id471693922986317\n"
+"help.text"
+msgid "<variable id=\"hoehez\">Choose <menuitem>Size - Column Width</menuitem>.</variable>"
+msgstr ""
+
+#. qu4Cg
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id721693923030382\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Column Width</menuitem>."
msgstr ""
#. sa4Tg
@@ -2662,32 +3301,50 @@ msgctxt ""
msgid "Choose <emph>Table - Delete - Rows</emph>."
msgstr ""
-#. fHaeJ
+#. mKmoJ
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3149591\n"
+"par_id521693687115685\n"
"help.text"
-msgid "On <emph>Table</emph> bar, click"
+msgid "Choose <menuitem>Delete - Rows</menuitem>."
msgstr ""
-#. UrDQE
+#. v5QrJ
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id291693687406969\n"
+"help.text"
+msgid "Choose <menuitem>Table - Delete Rows</menuitem>."
+msgstr ""
+
+#. DBvQ6
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3147555\n"
"help.text"
-msgid "<image id=\"img_id3150361\" src=\"cmd/sc_deleterows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150361\">Icon Delete Row</alt></image>"
+msgid "<image id=\"img_id3150361\" src=\"cmd/lc_deleterows.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150361\">Icon Delete Rows</alt></image>"
msgstr ""
-#. EfTgN
+#. fxuw6
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3156248\n"
"help.text"
-msgid "Delete Row"
-msgstr "ረድፍ ማጥፊያ"
+msgid "Delete Rows"
+msgstr ""
+
+#. qySGD
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id451693687256314\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Delete Rows</menuitem>."
+msgstr ""
#. STSLi
#: 00000405.xhp
@@ -2734,76 +3391,76 @@ msgctxt ""
msgid "Choose <emph>Table - Insert - Rows</emph>."
msgstr ""
-#. tVtsx
+#. 7tzQu
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3150813\n"
+"par_id711693672954703\n"
"help.text"
-msgid "On <emph>Table</emph> bar, click"
+msgid "Choose <menuitem>Insert - Rows</menuitem>."
msgstr ""
-#. tY9nN
+#. 5DaWz
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3150279\n"
+"par_id771693672959358\n"
"help.text"
-msgid "<image id=\"img_id3150286\" src=\"cmd/sc_insertcolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150286\">Icon Insert Column</alt></image>"
+msgid "Choose <menuitem>Insert - Columns</menuitem>."
msgstr ""
-#. jeDiz
+#. cotVq
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3150872\n"
+"par_id71693673072887\n"
"help.text"
-msgid "Insert Column"
-msgstr "አምድ ማስገቢያ"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Insert Rows</menuitem>."
+msgstr ""
-#. oB4az
+#. 7spxB
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3150895\n"
+"par_id511693673078815\n"
"help.text"
-msgid "<image id=\"img_id3150902\" src=\"cmd/sc_insertrows.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150902\">Icon Insert Row</alt></image>"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Insert Columns</menuitem>."
msgstr ""
-#. MFvHr
+#. BiyKv
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3149140\n"
+"par_id3155310\n"
"help.text"
-msgid "Insert Row"
-msgstr "ረድፍ ማስገቢያ"
+msgid "Choose <emph>Table - Delete - Columns</emph>."
+msgstr ""
-#. BiyKv
+#. 7yE4U
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3155310\n"
+"par_id681693688270842\n"
"help.text"
-msgid "Choose <emph>Table - Delete - Columns</emph>."
+msgid "choose <menuitem>Delete - Columns</menuitem>."
msgstr ""
-#. C2LDS
+#. BRSwg
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
-"par_id3155328\n"
+"par_id361693688303638\n"
"help.text"
-msgid "On <emph>Table</emph> bar, click"
+msgid "Choose <menuitem>Table - Delete Columns</menuitem>."
msgstr ""
-#. dedvZ
+#. oB2d7
#: 00000405.xhp
msgctxt ""
"00000405.xhp\n"
"par_id3153600\n"
"help.text"
-msgid "<image id=\"img_id3153607\" src=\"cmd/sc_deletecolumns.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Delete Column</alt></image>"
+msgid "<image id=\"img_id3153607\" src=\"cmd/lc_deletecolumns.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Delete Column</alt></image>"
msgstr ""
#. ro8Mr
@@ -2815,6 +3472,195 @@ msgctxt ""
msgid "Delete Column"
msgstr "አምድ ማጥፊያ"
+#. rNqW9
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id361693688361224\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Delete Columns</menuitem>."
+msgstr ""
+
+#. Q8XEe
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id461693738469972\n"
+"help.text"
+msgid "Choose <emph>Table - Select - Cell</emph>."
+msgstr ""
+
+#. to3VE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id11693738473349\n"
+"help.text"
+msgid "Choose <menuitem>Table - Select Cell</menuitem>."
+msgstr ""
+
+#. YEkJJ
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id951693738478973\n"
+"help.text"
+msgid "<image id=\"img_id3153607\" src=\"cmd/lc_entirecell.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Select Cell</alt></image>"
+msgstr ""
+
+#. CxN7u
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id371693738484293\n"
+"help.text"
+msgid "Select Cell"
+msgstr ""
+
+#. 8tAPt
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id111693738489245\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Cell</menuitem>."
+msgstr ""
+
+#. ZhcA2
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id821693735827313\n"
+"help.text"
+msgid "Choose <emph>Table - Select - Column</emph>."
+msgstr ""
+
+#. TA6my
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id151693735961318\n"
+"help.text"
+msgid "Choose <menuitem>Table - Column</menuitem>."
+msgstr ""
+
+#. sTfbG
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id731693736031352\n"
+"help.text"
+msgid "<image id=\"img_id3153607\" src=\"cmd/lc_entirecolumn.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Select Column</alt></image>"
+msgstr ""
+
+#. TqfU3
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id771693736053784\n"
+"help.text"
+msgid "Select Column"
+msgstr ""
+
+#. JH8Fp
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id1001693736079105\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Column</menuitem>."
+msgstr ""
+
+#. sK8cB
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id581693737064445\n"
+"help.text"
+msgid "Choose <emph>Table - Select - Row</emph>."
+msgstr ""
+
+#. R7fS8
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id781693737072957\n"
+"help.text"
+msgid "Choose <menuitem>Table - Row</menuitem>."
+msgstr ""
+
+#. UDtp2
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id151693737152671\n"
+"help.text"
+msgid "<image id=\"img_id3153607\" src=\"cmd/lc_entirerow.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Select Row</alt></image>"
+msgstr ""
+
+#. KLVUt
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id131693737155983\n"
+"help.text"
+msgid "Select Row"
+msgstr ""
+
+#. gYPJF
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id481693737160072\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Row</menuitem>."
+msgstr ""
+
+#. ADDT3
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id91693738574824\n"
+"help.text"
+msgid "Choose <emph>Table - Select - Table</emph>."
+msgstr ""
+
+#. Puzip
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id391693741329079\n"
+"help.text"
+msgid "Choose <menuitem>Table - Select Table</menuitem>."
+msgstr ""
+
+#. zvXAG
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id471693738650304\n"
+"help.text"
+msgid "<image id=\"img_id3153607\" src=\"cmd/lc_selecttable.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153607\">Icon Select Row</alt></image>"
+msgstr ""
+
+#. GDfNw
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id181693738653480\n"
+"help.text"
+msgid "Select Table"
+msgstr ""
+
+#. B7ZHb
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id381693738669400\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Table</menuitem>."
+msgstr ""
+
#. BNgAG
#: 00000405.xhp
msgctxt ""
@@ -2869,6 +3715,105 @@ msgctxt ""
msgid "Menu <emph>Format - Page Style </emph> - tab <emph>Text Grid</emph>, if Asian language support is enabled"
msgstr ""
+#. gc3n5
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id131693690148929\n"
+"help.text"
+msgid "Choose <menuitem>Table - Delete - Table</menuitem>."
+msgstr ""
+
+#. DacRK
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id531693690152814\n"
+"help.text"
+msgid "Choose <menuitem>Delete - Table</menuitem>."
+msgstr ""
+
+#. VaCoN
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id751693690022521\n"
+"help.text"
+msgid "<image src=\"cmd/lc_deletetable.svg\" id=\"img_id171693690022522\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id771693690022523\">Icon Delete Table</alt></image>"
+msgstr ""
+
+#. FCrnE
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id531693690022525\n"
+"help.text"
+msgid "Delete Table"
+msgstr ""
+
+#. DRb8i
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id691693690135938\n"
+"help.text"
+msgid "Choose <menuitem>Properties - Table - Delete Table</menuitem>."
+msgstr ""
+
+#. yEuFB
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id61693691400020\n"
+"help.text"
+msgid "Choose <menuitem>Table - Delete</menuitem>."
+msgstr ""
+
+#. UFF62
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id731693734262393\n"
+"help.text"
+msgid "Choose <menuitem>Table - Select</menuitem>."
+msgstr ""
+
+#. ZzCEd
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id861693917583707\n"
+"help.text"
+msgid "Choose <menuitem>Table - Size</menuitem>."
+msgstr ""
+
+#. xMNzr
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id1001693917623947\n"
+"help.text"
+msgid "Choose <menuitem>Size</menuitem>."
+msgstr ""
+
+#. Etr7t
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id941693917813686\n"
+"help.text"
+msgid "<image src=\"cmd/lc_setoptimalrowheight.svg\" id=\"img_id711693917813686\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id181693917813687\">Icon Table Size</alt></image>"
+msgstr ""
+
+#. e6GCB
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id231693917813688\n"
+"help.text"
+msgid "Table Size"
+msgstr ""
+
#. aFWLc
#: 00000406.xhp
msgctxt ""
@@ -2968,14 +3913,14 @@ msgctxt ""
msgid "<variable id=\"texttabelle\">Choose <emph>Table - Convert - Text to Table</emph></variable>"
msgstr "<variable id=\"texttabelle\">ይምረጡ <emph> ሰንጠረዥ - መቀየሪያ - ጽሁፍ ወደ ሰንጠረዥ </emph></variable>"
-#. za5Js
+#. JgCkE
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
"par_id3150833\n"
"help.text"
-msgid "<variable id=\"sortieren\">Choose <emph>Tools - Sort</emph></variable>"
-msgstr "<variable id=\"sortieren\">ይምረጡ <emph> መሳሪያዎች - መለያ </emph></variable>"
+msgid "<variable id=\"sortieren\">Select paragraphs or table rows and choose <emph>Tools - Sort</emph></variable>"
+msgstr ""
#. REM3P
#: 00000406.xhp
@@ -3273,3 +4218,246 @@ msgctxt ""
"help.text"
msgid "<variable id=\"sms\">Choose <emph>Styles - Manage Styles</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline></variable>."
msgstr ""
+
+#. FFUkM
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table Menu"
+msgstr ""
+
+#. Diax4
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"hd_id3154279\n"
+"help.text"
+msgid "Writer Table Menu"
+msgstr ""
+
+#. KeFzu
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id581694255149586\n"
+"help.text"
+msgid "Choose <menuitem>Table - Number Recognition</menuitem>."
+msgstr ""
+
+#. CcuDS
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id571694259687685\n"
+"help.text"
+msgid "Choose <menuitem>Table - Header Rows Repeat Across Pages</menuitem>."
+msgstr ""
+
+#. Xuzcy
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id291694262754427\n"
+"help.text"
+msgid "Choose <menuitem>Table - Row to Break Across Pages</menuitem>."
+msgstr ""
+
+#. Aa4X9
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id111694264220146\n"
+"help.text"
+msgid "Choose <menuitem>Table - Convert</menuitem>."
+msgstr ""
+
+#. fXouk
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id3149377\n"
+"help.text"
+msgid "<variable id=\"tabauf\">Choose <emph>Table - Split Table</emph>.</variable>"
+msgstr ""
+
+#. oHGTe
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id681694089066094\n"
+"help.text"
+msgid "Choose <menuitem>Table - Split Table</menuitem>."
+msgstr ""
+
+#. XwvMt
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id331694089080241\n"
+"help.text"
+msgid "<image src=\"cmd/lc_splittable.svg\" id=\"img_id61694089080242\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id791694089080243\">Icon Split Table</alt></image>"
+msgstr ""
+
+#. DPJpZ
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id641694089080245\n"
+"help.text"
+msgid "Split Table"
+msgstr ""
+
+#. wg568
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id181694089212408\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> deck of the <menuitem>Properties</menuitem> panel, click on <menuitem>Split Table</menuitem>."
+msgstr ""
+
+#. RLRsX
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id3155810\n"
+"help.text"
+msgid "<variable id=\"tabverb\">Choose <emph>Table - Merge Table</emph>.</variable>"
+msgstr ""
+
+#. N2W43
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id821694453702333\n"
+"help.text"
+msgid "Choose <menuitem>Table - Edit Formula</menuitem>."
+msgstr ""
+
+#. CceAS
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id151694453707293\n"
+"help.text"
+msgid "Choose <menuitem>Edit Formula</menuitem>."
+msgstr ""
+
+#. hnvXW
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id451694453711399\n"
+"help.text"
+msgid "Choose <menuitem>Table - Edit Formula</menuitem>."
+msgstr ""
+
+#. kAMcp
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id921694453581828\n"
+"help.text"
+msgid "<image src=\"cmd/lc_dbviewfunctions.svg\" id=\"img_id151694453581829\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id931694453581830\">Icon Edit Formula</alt></image>"
+msgstr ""
+
+#. LPetG
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id931694453581832\n"
+"help.text"
+msgid "Edit Formula"
+msgstr ""
+
+#. 7otBX
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id311694453718710\n"
+"help.text"
+msgid "On the <menuitem>Miscellaneous</menuitem> area of the <menuitem>Table</menuitem> deck on the <menuitem>Properties</menuitem> panel, click <menuitem>Edit Formula</menuitem>."
+msgstr ""
+
+#. RecDR
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id801694454161499\n"
+"help.text"
+msgid "Choose <menuitem>Table - Sort</menuitem>."
+msgstr ""
+
+#. vaXUD
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id471694454278288\n"
+"help.text"
+msgid "Choose <menuitem>Table - Sort</menuitem>."
+msgstr ""
+
+#. MNsbE
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id741694454378595\n"
+"help.text"
+msgid "On the <menuitem>Table</menuitem> menu of the <menuitem>Table</menuitem> tab, choose <menuitem>Sort</menuitem>."
+msgstr ""
+
+#. jzLsB
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id781694454491079\n"
+"help.text"
+msgid "<image src=\"cmd/lc_sortascending.svg\" id=\"img_id151694454491080\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id841694454491081\">Icon Sort</alt></image>"
+msgstr ""
+
+#. rJh3J
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id601694454491083\n"
+"help.text"
+msgid "Sort"
+msgstr ""
+
+#. w3Dw3
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id3155114\n"
+"help.text"
+msgid "<variable id=\"formattable\">Choose <menuitem>Table - Properties</menuitem>.</variable>"
+msgstr ""
+
+#. 8SzNk
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id121694456503344\n"
+"help.text"
+msgid "Choose <menuitem>Table - Table Properties</menuitem>."
+msgstr ""
+
+#. X2KbA
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id191656586861385\n"
+"help.text"
+msgid "<image src=\"cmd/lc_tabledialog.svg\" id=\"img_id101656586861385\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id201656586861385\">Table Properties Icon</alt></image>"
+msgstr ""
+
+#. XVfFW
+#: table_menu.xhp
+msgctxt ""
+"table_menu.xhp\n"
+"par_id301656586861385\n"
+"help.text"
+msgid "Table Properties"
+msgstr ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 32e5462c8f7..c605dd6b256 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.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: 2023-07-06 10:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-12-09 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2194,6 +2194,15 @@ msgctxt ""
msgid "<variable id=\"SortAlphabeticallyh1\"><link href=\"text/swriter/01/02110000.xhp#SortAlphabeticallyh1\">Sort Alphabetically</link></variable>"
msgstr ""
+#. bJBbG
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id421691023214353\n"
+"help.text"
+msgid "Sorts alphabetically all entries in the selected category. Uncheck this option to sort entries according the their order of appearance in the document."
+msgstr ""
+
#. 73b7k
#: 02110000.xhp
msgctxt ""
@@ -4030,23 +4039,32 @@ msgctxt ""
msgid "Edit Sections"
msgstr "ክፍሎችን ማረሚያ"
-#. v53bw
+#. KvFD9
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
"hd_id3153673\n"
"help.text"
-msgid "Edit Sections"
-msgstr "ክፍሎችን ማረሚያ"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/02170000.xhp#edit sections\">Sections</link></variable>"
+msgstr ""
-#. 5SDLi
+#. sBXSk
#: 02170000.xhp
msgctxt ""
"02170000.xhp\n"
"par_id3155902\n"
"help.text"
-msgid "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Changes the properties of sections defined in your document.</ahelp> To insert a section, select text or click in your document, and then choose <emph>Insert - Section</emph>.</variable>"
-msgstr "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">በ እርስዎ ሰነድ ውስጥ የ ተገለጸውን ክፍል ባህሪዎች መቀየሪያ </ahelp> ክፍል ለ ማስገባት: ይምረጡ ጽሁፍ ወይንም በ እርስዎ ሰነድ ላይ ይጫኑ: እና ከዛ ይምረጡ <emph> ማስገቢያ - ክፍል </emph></variable>"
+msgid "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Changes the properties of sections defined in your document.</ahelp></variable>"
+msgstr ""
+
+#. Bf7Bi
+#: 02170000.xhp
+msgctxt ""
+"02170000.xhp\n"
+"par_id781692738749024\n"
+"help.text"
+msgid "To insert a section, select text or click in your document, and then choose <emph>Insert - Section</emph>."
+msgstr ""
#. QkAqn
#: 02170000.xhp
@@ -4273,6 +4291,15 @@ msgctxt ""
msgid "Text Boundaries"
msgstr "የ ጽሁፍ ድንበሮች"
+#. hEzRF
+#: 03070000.xhp
+msgctxt ""
+"03070000.xhp\n"
+"bm_id201686935507193\n"
+"help.text"
+msgid "<bookmark_value>view;text boundaries</bookmark_value><bookmark_value>show;text boundaries</bookmark_value><bookmark_value>text boundaries;view in text document</bookmark_value>"
+msgstr ""
+
#. PewCe
#: 03070000.xhp
msgctxt ""
@@ -4300,6 +4327,15 @@ msgctxt ""
msgid "Field Shadings"
msgstr "የ ሜዳ ጥላዎች"
+#. moty6
+#: 03080000.xhp
+msgctxt ""
+"03080000.xhp\n"
+"bm_id291686935642362\n"
+"help.text"
+msgid "<bookmark_value>show;field shadings</bookmark_value><bookmark_value>view;field shadings</bookmark_value><bookmark_value>field shadings;show</bookmark_value>"
+msgstr ""
+
#. SoGwj
#: 03080000.xhp
msgctxt ""
@@ -4489,6 +4525,15 @@ msgctxt ""
msgid "Field Hidden Paragraphs"
msgstr ""
+#. a3dKA
+#: 03140000.xhp
+msgctxt ""
+"03140000.xhp\n"
+"bm_id181686956447794\n"
+"help.text"
+msgid "<bookmark_value>show;hidden paragraph</bookmark_value> <bookmark_value>view;hidden paragraph;show</bookmark_value> <bookmark_value>hidden paragraph;show</bookmark_value>"
+msgstr ""
+
#. eNASg
#: 03140000.xhp
msgctxt ""
@@ -11491,6 +11536,15 @@ msgctxt ""
msgid "Opens a menu to insert an index or bibliography entry, as well as inserting a table of contents, index, and or bibliography."
msgstr "ዝርዝር መክፈቻ ማውጫ ወይንም የ ጽሁፎች ዝርዝር ለ ማስገቢያ: እንዲሁም የ ሰንጠረዥ ማውጫ እና ወይንም የ ጽሁፎች ዝርዝር ማስገቢያ:"
+#. W9TtX
+#: 04120000.xhp
+msgctxt ""
+"04120000.xhp\n"
+"hd_id3147501\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/04120200.xhp\">Table of Content, Index or Bibliography</link>"
+msgstr "<link href=\"text/swriter/01/04120200.xhp\">የ ሰንጠረዥ ማውጫ: ማውጫ ወይንም የ ጽሁፍ ዝርዝር</link>"
+
#. Fshgc
#: 04120000.xhp
msgctxt ""
@@ -11509,15 +11563,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/04120300.xhp\">Bibliography Entry</link>"
msgstr "<link href=\"text/swriter/01/04120300.xhp\">የ ጽሁፎች ዝርዝር ማስገቢያ</link>"
-#. W9TtX
-#: 04120000.xhp
-msgctxt ""
-"04120000.xhp\n"
-"hd_id3147501\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/04120200.xhp\">Table of Content, Index or Bibliography</link>"
-msgstr "<link href=\"text/swriter/01/04120200.xhp\">የ ሰንጠረዥ ማውጫ: ማውጫ ወይንም የ ጽሁፍ ዝርዝር</link>"
-
#. ceXK3
#: 04120100.xhp
msgctxt ""
@@ -15145,14 +15190,14 @@ msgctxt ""
msgid "Frame"
msgstr "ክፈፍ"
-#. AJT3F
+#. CmuKq
#: 04130000.xhp
msgctxt ""
"04130000.xhp\n"
"hd_id3151189\n"
"help.text"
-msgid "Frame"
-msgstr "ክፈፍ"
+msgid "<link href=\"text/swriter/01/04130000.xhp\">Frame</link>"
+msgstr ""
#. Bsp5M
#: 04130000.xhp
@@ -18583,14 +18628,14 @@ msgctxt ""
msgid "To character"
msgstr "ወደ ባህሪ"
-#. qADax
+#. EeHyA
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id3151377\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the selection to a character.</ahelp>"
-msgstr "<ahelp hid=\".\">የ ተመረጠውን የ አሁኑ ባህሪ ማስቆሚያ </ahelp>"
+msgid "<ahelp hid=\".\">Anchors the selection to a character. This is the default for images.</ahelp>"
+msgstr ""
#. JyE5x
#: 05060100.xhp
@@ -19060,6 +19105,33 @@ msgctxt ""
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
msgstr ""
+#. 9tHZh
+#: 05060100.xhp
+msgctxt ""
+"05060100.xhp\n"
+"par_idN10A8F\n"
+"help.text"
+msgid "Allow frame to split across pages"
+msgstr ""
+
+#. Lu2Hv
+#: 05060100.xhp
+msgctxt ""
+"05060100.xhp\n"
+"par_idN10A93\n"
+"help.text"
+msgid "<ahelp hid=\".\">Allows the frame to continue on a next page when the content of the frame doesn't fit the current page anymore. Content around the frame will be wrapped on the last page.</ahelp>"
+msgstr ""
+
+#. yNPaU
+#: 05060100.xhp
+msgctxt ""
+"05060100.xhp\n"
+"par_idN10AA7\n"
+"help.text"
+msgid "By default, the <emph>Allow frame to split across pages</emph> option is disabled when you create a Text Frame in Writer. However, this option is selected when you open a document in Microsoft Word formats, containing floating tables."
+msgstr ""
+
#. CPpbi
#: 05060100.xhp
msgctxt ""
@@ -19096,14 +19168,23 @@ msgctxt ""
msgid "Wrap"
msgstr "መጠቅለያ"
-#. gQ3fn
+#. qxBeD
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id721692975475647\n"
+"help.text"
+msgid "<bookmark_value>wrap text;around objects</bookmark_value>"
+msgstr ""
+
+#. zAanm
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"hd_id3153527\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060200.xhp\">Wrap</link>"
-msgstr "<link href=\"text/swriter/01/05060200.xhp\">መጠቅለያ</link>"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/05060200.xhp\">Wrap</link></variable>"
+msgstr ""
#. EEaR4
#: 05060200.xhp
@@ -19132,6 +19213,15 @@ msgctxt ""
msgid "Settings"
msgstr "ማሰናጃዎች"
+#. Pb5LL
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id251692975406743\n"
+"help.text"
+msgid "<bookmark_value>wrap;wrap off</bookmark_value><bookmark_value>wrap text;none</bookmark_value>"
+msgstr ""
+
#. hMAG6
#: 05060200.xhp
msgctxt ""
@@ -19150,14 +19240,14 @@ msgctxt ""
msgid "<variable id=\"keinumlauftext\"><ahelp hid=\".\">Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object.</ahelp></variable>"
msgstr "<variable id=\"keinumlauftext\"><ahelp hid=\".\">እቃውን በ ተለየ መስመር ላይ ያደርጋል በ ሰነድ ውስጥ: ጽሁፉ በ ሰነዱ ውስጥ ከ እቃው ከ ላይ እና ከ ታች በኩል ይታያል: ነገር ግን ከ እቃው ጎን በኩል አይደለም</ahelp></variable>"
-#. cnhMj
+#. HNxKD
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3149038\n"
"help.text"
-msgid "<image id=\"img_id3149044\" src=\"sw/res/wr07.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149044\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149044\" src=\"sw/res/wr07.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149044\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3149044\" src=\"sw/res/wr07.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149044\">Icon None</alt></image>"
+msgstr ""
#. qAhyQ
#: 05060200.xhp
@@ -19168,6 +19258,15 @@ msgctxt ""
msgid "None"
msgstr "ምንም"
+#. YYssN
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id781692975526120\n"
+"help.text"
+msgid "<bookmark_value>wrap;wrap left</bookmark_value><bookmark_value>wrap text;before</bookmark_value>"
+msgstr ""
+
#. EE3Zv
#: 05060200.xhp
msgctxt ""
@@ -19186,14 +19285,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Wraps text on the left side of the object if there is enough space.</ahelp>"
msgstr "<ahelp hid=\".\">ጽሁፍ መጠቅለያ ከ እቃው በ ግራ በኩል በቂ ቦታ ካለ</ahelp>"
-#. 7VzMA
+#. vNYAF
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3145774\n"
"help.text"
-msgid "<image id=\"img_id3145780\" src=\"sw/res/wr02.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3145780\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145780\" src=\"sw/res/wr02.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3145780\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3145780\" src=\"sw/res/wr02.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145780\">Icon Before</alt></image>"
+msgstr ""
#. iasFq
#: 05060200.xhp
@@ -19204,6 +19303,15 @@ msgctxt ""
msgid "Before"
msgstr "በፊት"
+#. y248A
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id781692975594815\n"
+"help.text"
+msgid "<bookmark_value>wrap;wrap right</bookmark_value><bookmark_value>wrap text;after</bookmark_value>"
+msgstr ""
+
#. xhbRB
#: 05060200.xhp
msgctxt ""
@@ -19222,14 +19330,14 @@ msgctxt ""
msgid "<ahelp hid=\".\">Wraps text on the right side of the object if there is enough space.</ahelp>"
msgstr "<ahelp hid=\".\">ጽሁፍ መጠቅለያ ከ እቃው በ ቀኝ በኩል በቂ ቦታ ካለ</ahelp>"
-#. BwPhM
+#. J7YLS
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3149560\n"
"help.text"
-msgid "<image id=\"img_id3149567\" src=\"sw/res/wr03.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149567\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149567\" src=\"sw/res/wr03.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3149567\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3149567\" src=\"sw/res/wr03.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149567\">Icon After</alt></image>"
+msgstr ""
#. WoNBZ
#: 05060200.xhp
@@ -19240,6 +19348,15 @@ msgctxt ""
msgid "After"
msgstr "በኋላ"
+#. AXZES
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id451692975634611\n"
+"help.text"
+msgid "<bookmark_value>wrap;wrap parallel</bookmark_value><bookmark_value>wrap text;parallel</bookmark_value>"
+msgstr ""
+
#. 5zPRD
#: 05060200.xhp
msgctxt ""
@@ -19258,14 +19375,14 @@ msgctxt ""
msgid "<variable id=\"seitenumlauftext\"><ahelp hid=\".\">Wraps text on all four sides of the border frame of the object.</ahelp></variable>"
msgstr "<variable id=\"seitenumlauftext\"><ahelp hid=\".\">ጽሁፍ መጠቅለያ ከ እቃው በ አራቱም ጎን የ ድንበር ክፈፍ በኩል</ahelp></variable>"
-#. MGwnw
+#. Fn3BY
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3148845\n"
"help.text"
-msgid "<image id=\"img_id3148851\" src=\"sw/res/wr04.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3148851\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148851\" src=\"sw/res/wr04.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3148851\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3148851\" src=\"sw/res/wr04.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148851\">Icon Parallel</alt></image>"
+msgstr ""
#. YbxzJ
#: 05060200.xhp
@@ -19276,6 +19393,15 @@ msgctxt ""
msgid "Parallel"
msgstr "አጓዳኝ"
+#. FAeJq
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id461692975665095\n"
+"help.text"
+msgid "<bookmark_value>wrap;wrap through</bookmark_value><bookmark_value>wrap text;through</bookmark_value>"
+msgstr ""
+
#. cePPs
#: 05060200.xhp
msgctxt ""
@@ -19294,14 +19420,14 @@ msgctxt ""
msgid "<variable id=\"durchlauftext\"><ahelp hid=\".\">Places the object in front of the text.</ahelp></variable>"
msgstr "<variable id=\"durchlauftext\"><ahelp hid=\".\">እቃውን ከ ጽሁፉ ፊት ለፊት ማድረጊያ</ahelp></variable>"
-#. jJRxy
+#. WhGfz
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3150162\n"
"help.text"
-msgid "<image id=\"img_id3150169\" src=\"sw/res/wr05.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150169\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150169\" src=\"sw/res/wr05.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150169\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150169\" src=\"sw/res/wr05.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150169\">Icon Through</alt></image>"
+msgstr ""
#. NeE2S
#: 05060200.xhp
@@ -19312,6 +19438,15 @@ msgctxt ""
msgid "Through"
msgstr "በሙሉ"
+#. AmjBT
+#: 05060200.xhp
+msgctxt ""
+"05060200.xhp\n"
+"bm_id791692975692202\n"
+"help.text"
+msgid "<bookmark_value>wrap;wrap optimal</bookmark_value><bookmark_value>wrap text;optimal</bookmark_value>"
+msgstr ""
+
#. FBsQw
#: 05060200.xhp
msgctxt ""
@@ -19330,14 +19465,14 @@ msgctxt ""
msgid "<variable id=\"dynamischertext\"><ahelp hid=\".\">Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped. </ahelp></variable>"
msgstr "<variable id=\"dynamischertext\"><ahelp hid=\".\">ራሱ በራሱ ጽሁፍ በ ግራ እና በ ቀኝ በኩል መጠቅለያ: ወይንም በሁሉም አራት ማእዘኖች በ እቃው ድንበር ክፈፍ ውስጥ: በ እቃዎች እና በ ገጽ መስመር መካከል ያለው እርቀት ከ 2 ሴሚ በታች ከሆነ: ጽሁፉ አይጠቀለልም:</ahelp></variable>"
-#. 6mbGD
+#. WywSk
#: 05060200.xhp
msgctxt ""
"05060200.xhp\n"
"par_id3150904\n"
"help.text"
-msgid "<image id=\"img_id3150910\" src=\"sw/res/wr06.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150910\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150910\" src=\"sw/res/wr06.png\" width=\"0.82cm\" height=\"0.82cm\"><alt id=\"alt_id3150910\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3150910\" src=\"sw/res/wr06.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150910\">Icon Optimal</alt></image>"
+msgstr ""
#. N57bG
#: 05060200.xhp
@@ -21985,23 +22120,23 @@ msgctxt ""
msgid "Text Flow"
msgstr "የ ጽሁፍ ፍሰት"
-#. A2Unu
+#. eDCNp
#: 05090300.xhp
msgctxt ""
"05090300.xhp\n"
"bm_id3154558\n"
"help.text"
-msgid "<bookmark_value>tables;text flow around text tables</bookmark_value><bookmark_value>text flow;around text tables</bookmark_value><bookmark_value>columns; breaks in text tables</bookmark_value><bookmark_value>row breaks in text tables</bookmark_value><bookmark_value>tables; allowing page breaks</bookmark_value><bookmark_value>page breaks; tables</bookmark_value><bookmark_value>splitting tables;row breaks</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ: የ ጽሁፍ ፍሰት በ ጽሁፍ ሰንጠረዥ ዙሪያ</bookmark_value><bookmark_value>የ ጽሁፍ ፍሰት: በ ጽሁፍ ሰንጠረዥ ዙሪያ</bookmark_value><bookmark_value>አምዶች: መጨረሻ በ ጽሁፍ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>ረድፍ መጨረሻ በ ጽሁፍ ሰንጠረዥ ውስጥ</bookmark_value><bookmark_value>ሰንጠረዥ; የ ገጽ መጨረሻ መፍቀጃ</bookmark_value><bookmark_value>የ ገጽ መጨረሻ: ሰንጠረዥ</bookmark_value><bookmark_value>ሰንጠረዥ መክፈያ: ረድፍ መጨረሻ</bookmark_value>"
+msgid "<bookmark_value>tables;text flow around text tables</bookmark_value><bookmark_value>text flow;around text tables</bookmark_value><bookmark_value>columns; breaks in text tables</bookmark_value><bookmark_value>row breaks in text tables</bookmark_value><bookmark_value>page breaks; tables</bookmark_value><bookmark_value>splitting tables;row breaks</bookmark_value>"
+msgstr ""
-#. EFXpA
+#. 7iyE4
#: 05090300.xhp
msgctxt ""
"05090300.xhp\n"
"hd_id3154558\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05090300.xhp\">Text Flow</link>"
-msgstr "<link href=\"text/swriter/01/05090300.xhp\">የ ጽሁፍ ፍሰት</link>"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/05090300.xhp\">Text Flow</link></variable>"
+msgstr ""
#. AkSy2
#: 05090300.xhp
@@ -22354,51 +22489,6 @@ msgctxt ""
msgid "This command is only available if you have selected a table in your document, or if the cursor is in a table cell."
msgstr "በ እርስዎ ሰነድ ውስጥ ይህ ትእዛዝ ዝግጁ የሚሆነው መጠቆሚያው በ ሰንጠረዡ ክፍል ውስጥ ሲሆን ብቻ ነው"
-#. 8yBqq
-#: 05100300.xhp
-msgctxt ""
-"05100300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Protect"
-msgstr "መጠበቂያ"
-
-#. uCgFZ
-#: 05100300.xhp
-msgctxt ""
-"05100300.xhp\n"
-"hd_id3146322\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05100300.xhp\">Protect</link>"
-msgstr "<link href=\"text/swriter/01/05100300.xhp\">መጠበቂያ</link>"
-
-#. BDEia
-#: 05100300.xhp
-msgctxt ""
-"05100300.xhp\n"
-"par_id3145822\n"
-"help.text"
-msgid "<ahelp hid=\".uno:Protect\">Prevents the contents of the selected cells from being modified.</ahelp>"
-msgstr "<ahelp hid=\".uno:Protect\">የተመረጠውን ክፍል ይዞታ እንዳይሻሻል መከልከያ</ahelp>"
-
-#. NBjyB
-#: 05100300.xhp
-msgctxt ""
-"05100300.xhp\n"
-"par_id3154641\n"
-"help.text"
-msgid "When the cursor is in a read-only cell, a note appears on the <emph>Status Bar</emph>."
-msgstr "መጠቆሚያው በ ንባብ-ብቻ ክፍል ውስጥ ሲሆነ: ማስታወሻ ይታያል በ <emph>ሁኔታ መደርደሪያ ላይ</emph>."
-
-#. Kaktd
-#: 05100300.xhp
-msgctxt ""
-"05100300.xhp\n"
-"par_id3149292\n"
-"help.text"
-msgid "To remove cell protection, select the cell(s), right-click, and then choose <link href=\"text/swriter/01/05100400.xhp\"><emph>Cell - Unprotect</emph></link>."
-msgstr "ክፍል መጠበቂያውን ለማስወገድ: ይምረጡ የ ክፍል(ሎች): እና በ ቀኝ-ይጫኑ እና ከዛ ይምረጡ <link href=\"text/swriter/01/05100400.xhp\"><emph>ክፍል - አትጠብቅ</emph></link>."
-
#. E68EJ
#: 05100400.xhp
msgctxt ""
@@ -22426,14 +22516,14 @@ msgctxt ""
msgid "<ahelp hid=\".uno:UnsetCellsReadOnly\">Removes the cell protection for all selected cells in the current table.</ahelp>"
msgstr "<ahelp hid=\".uno:UnsetCellsReadOnly\">በ አሁኑ ሰንጠረዥ ውስጥ የተመረጡትን ክፍሎች በ ሙሉ መጠበቂያውን ማስወገጃ</ahelp>"
-#. BMgnL
+#. EKmDK
#: 05100400.xhp
msgctxt ""
"05100400.xhp\n"
"par_id3154558\n"
"help.text"
-msgid "To remove the protection from several tables at once, select the tables, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+T. To remove the protection from all of the tables in a document, click anywhere in the document, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+T."
-msgstr "ከ በርካታ ሰንጠረዦች ላይ በ አንድ ጊዜ መጠበቂያውን ለማስወገድ: ሰንጠረዥ ይምረጡ እና ከዛ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+T. መጠበቂያውን ለማስወገድ ከ ሰንጠረዦቹ ላይ በሙሉ: ይጫኑ በ ሰነዱ ላይ በማንኛውም ቦታ: እና ከዛ ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ትእዛዝ </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+T."
+msgid "To remove the protection from several tables at once, select the tables, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+T</keycode>. To remove the protection from all of the tables in a document, click anywhere in the document, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+T</keycode>."
+msgstr ""
#. NuGEd
#: 05100400.xhp
@@ -22444,60 +22534,6 @@ msgctxt ""
msgid "You can also remove cell protection from a table in the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link>."
msgstr "እርስዎ ከ ሰንጠረዥ ላይ መጠበቂያውን ማስወገድ ይችላሉ በ <link href=\"text/swriter/01/02110000.xhp\">መቃኛ</link>."
-#. TgyNZ
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row"
-msgstr "ረድፍ"
-
-#. otHFo
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149502\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05110000.xhp\">Row</link>"
-msgstr "<link href=\"text/swriter/01/05110000.xhp\">ረድፍ</link>"
-
-#. zrvZE
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"par_id3154652\n"
-"help.text"
-msgid "Set the height of rows, or select, insert, and delete rows."
-msgstr "የ ረድፎች እርዝመት ማሰናጃ ወይንም ይምረጡ ረድፎች ማስገቢያ እና ማጥፊያ"
-
-#. WSM3G
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3083451\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05110100.xhp\">Row Height</link>"
-msgstr ""
-
-#. qaBGU
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149349\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05110200.xhp\">Optimal Row Height</link>"
-msgstr ""
-
-#. CSYUC
-#: 05110000.xhp
-msgctxt ""
-"05110000.xhp\n"
-"hd_id3149883\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\">Insert...</link>"
-msgstr "<link href=\"text/swriter/01/05120400.xhp\">ማስገቢያ...</link>"
-
#. MtE2e
#: 05110100.xhp
msgctxt ""
@@ -22507,14 +22543,14 @@ msgctxt ""
msgid "Row Height"
msgstr "የ ረድፍ እርዝመት"
-#. aox3B
+#. EBL4h
#: 05110100.xhp
msgctxt ""
"05110100.xhp\n"
"hd_id3149871\n"
"help.text"
-msgid "Row Height"
-msgstr "የ ረድፍ እርዝመት"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/05110100.xhp\">Row Height</link></variable>"
+msgstr ""
#. EJ9C7
#: 05110100.xhp
@@ -22570,51 +22606,6 @@ msgctxt ""
msgid "You can also right-click in a cell, and then choose <link href=\"text/shared/01/minimal_row_height.xhp\"><menuitem>Size - Minimal Row Height</menuitem></link>."
msgstr ""
-#. 4JwEA
-#: 05110200.xhp
-msgctxt ""
-"05110200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Height"
-msgstr ""
-
-#. hmSQS
-#: 05110200.xhp
-msgctxt ""
-"05110200.xhp\n"
-"hd_id3150010\n"
-"help.text"
-msgid "<variable id=\"optimal_row_height_h1\"><link href=\"text/swriter/01/05110200.xhp\">Optimal Row Height</link></variable>"
-msgstr ""
-
-#. LZXDJ
-#: 05110200.xhp
-msgctxt ""
-"05110200.xhp\n"
-"par_id3147436\n"
-"help.text"
-msgid "<variable id=\"optimal_row_height_text\"><ahelp hid=\".uno:SetOptimalRowHeight\" visibility=\"visible\">Set row height for selected table rows so that each row has the same height as the row with the tallest content.</ahelp></variable>"
-msgstr ""
-
-#. DCfEi
-#: 05110200.xhp
-msgctxt ""
-"05110200.xhp\n"
-"par_id741656209290506\n"
-"help.text"
-msgid "Row height can increase with this option, with the table always growing downward. The total table height is never reduced by this option."
-msgstr ""
-
-#. WY6Wn
-#: 05110200.xhp
-msgctxt ""
-"05110200.xhp\n"
-"par_id801656117723975\n"
-"help.text"
-msgid "This option is similar to first minimizing row height for selected rows by using <link href=\"text/shared/01/minimal_row_height.xhp\"><menuitem>Minimal Row Height</menuitem></link> and then distributing those rows by using <link href=\"text/shared/01/05110600m.xhp\"><menuitem>Distribute Rows Evenly</menuitem></link>, except that additional height is added to each row if necessary to prevent the total table height from reducing."
-msgstr ""
-
#. kFGSx
#: 05110300.xhp
msgctxt ""
@@ -22678,51 +22669,6 @@ msgctxt ""
msgid "<variable id=\"loeschentext\"><ahelp hid=\".uno:DeleteRows\">Deletes the selected row(s) from the table.</ahelp></variable>"
msgstr "<variable id=\"loeschentext\"><ahelp hid=\".uno:DeleteRows\">ከ ሰንጠረዥ ውስጥ የተመረጠውን ረድፍ(ፎች) ማጥፊያ </ahelp></variable>"
-#. YL8NQ
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column"
-msgstr "አምድ"
-
-#. tyoyE
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3154762\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120000.xhp\">Column</link>"
-msgstr "<link href=\"text/swriter/01/05120000.xhp\">አምድ</link>"
-
-#. yfrR7
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3149052\n"
-"help.text"
-msgid "Set the width of columns, or select, insert, and delete columns."
-msgstr "የ አምዶች ስፋት ማሰናጃ ወይንም ይምረጡ አምዶች ማስገቢያ እና ማጥፊያ"
-
-#. BNVrW
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3146322\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120100.xhp\">Width...</link>"
-msgstr "<link href=\"text/swriter/01/05120100.xhp\">ስፋት...</link>"
-
-#. zqUrC
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3150564\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120400.xhp\">Insert...</link>"
-msgstr "<link href=\"text/swriter/01/05120400.xhp\">ማስገቢያ...</link>"
-
#. AZDCu
#: 05120100.xhp
msgctxt ""
@@ -22732,14 +22678,14 @@ msgctxt ""
msgid "Column Width"
msgstr "የ አምድ ስፋት"
-#. vDiaC
+#. c5iaC
#: 05120100.xhp
msgctxt ""
"05120100.xhp\n"
"hd_id3150345\n"
"help.text"
-msgid "Column Width"
-msgstr "የ አምድ ስፋት"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/05120100.xhp\">Column Width</link></variable>"
+msgstr ""
#. ZACmA
#: 05120100.xhp
@@ -22795,132 +22741,6 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/columnwidth/width\">Enter the width that you want for the selected column(s).</ahelp>"
msgstr "<ahelp hid=\"modules/swriter/ui/columnwidth/width\">የሚፈልጉትን ስፋት ያስገቡ ለተመረጠው አምድ(ዶች)</ahelp>"
-#. wRjGh
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Column Width"
-msgstr ""
-
-#. kU2A6
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"hd_id3149500\n"
-"help.text"
-msgid "<variable id=\"optimal_column_width_h1\"><link href=\"text/swriter/01/05120200.xhp\">Optimal Column Width</link></variable>"
-msgstr ""
-
-#. Rt2Cv
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id3149050\n"
-"help.text"
-msgid "<variable id=\"column_width_text\"><ahelp hid=\".uno:SetOptimalColumnWidth\">Adjust column widths among columns with selected cells, according to the paragraph length in each selected cell. Widen the table, up to page width, if necessary.</ahelp></variable>"
-msgstr ""
-
-#. srS86
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id811655764710135\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SetOptimalColumnWidth\">Adjust column width for selected columns to fit the column’s content, without changing the width of the table or the unselected columns.</ahelp>"
-msgstr ""
-
-#. YxcTu
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id611656069528584\n"
-"help.text"
-msgid "<menuitem>Optimal Column Width</menuitem> attempts to give a column width for the selected cells so that the longest paragraph in each cell can, as a minimum, <emph>fit</emph> exactly on a single line, though it is possible and common for columns to be wider than an exact fit."
-msgstr ""
-
-#. so9Du
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id601656102623025\n"
-"help.text"
-msgid "The final distribution of column widths depends on several factors, such as the paragraph length of selected cells, the initial width of the columns with selected cells, and whether the table can be widened. Space is also included for any horizontal cell padding, paragraph padding, and paragraph indents. The width of the table is never reduced, and unselected columns are not changed."
-msgstr ""
-
-#. vv4Mm
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id651656105163827\n"
-"help.text"
-msgid "The following list indicates how column widths are distributed for the selected cells. If the first step succeeds in distributing column widths for the selected cells so that all paragraphs in the cell are on a single line, then the process stops, otherwise the second step is attempted, if possible. The third step describes how column widths are distributed when it is not possible to fit all the selected cells after the second step."
-msgstr ""
-
-#. WJFc6
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id221656101892491\n"
-"help.text"
-msgid "Distribute column widths proportionally according to the longest paragraph in each cell, but remaining within the total column width for cell selection."
-msgstr ""
-
-#. prUhq
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id641656101994507\n"
-"help.text"
-msgid "If some cells cannot fit exactly in the total width of the selection, and the table can be expanded (up to the page width), then expand the table width until all cells are fit exactly."
-msgstr ""
-
-#. uJQKn
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id511656102101362\n"
-"help.text"
-msgid "If the table width is at the page margin, and more than one selected cell does not fit exactly, then give as much width as possible to the first cell that cannot be fit exactly, and an equal (smaller) column width to the other cells that cannot be fit."
-msgstr ""
-
-#. 3yMfG
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id471656104869532\n"
-"help.text"
-msgid "Step 1 is often sufficient for tables whose cells are primarily short paragraphs, while Step 3 is usually needed if many columns or rows are selected and/or selected cells have longer paragraphs."
-msgstr ""
-
-#. UYb7r
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id601656069480524\n"
-"help.text"
-msgid "<menuitem>Optimal Column Width</menuitem> attempts to give a column width for the selected columns so that the longest paragraph in each column can, as a minimum, <emph>fit</emph> exactly on a single line, though it is possible and common for columns to be wider than an exact fit."
-msgstr ""
-
-#. paBoR
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id721655819449619\n"
-"help.text"
-msgid "The final distribution of column widths depends on several factors, such as the paragraph length and initial width of the selected columns. Space is also included for any horizontal cell padding, paragraph padding, and paragraph indents. The width of the table is never reduced, and unselected columns are not changed."
-msgstr ""
-
-#. U2qgd
-#: 05120200.xhp
-msgctxt ""
-"05120200.xhp\n"
-"par_id581656107648277\n"
-"help.text"
-msgid "The option distributes column widths proportionally according to the longest paragraph in each column, but remaining within the total column width for the selected columns. When selected columns cannot be fit exactly, then the first column that cannot be fit exactly gets as much width as possible, while any additional columns that cannot be fit exactly get a smaller column width, which is equal for each of these additional columns."
-msgstr ""
-
#. kM6QZ
#: 05120300.xhp
msgctxt ""
@@ -23884,13 +23704,13 @@ msgctxt ""
msgid "<ahelp hid=\"modules/swriter/ui/conditionpage/apply\">Click <emph>Apply</emph> to apply the <emph>selected Paragraph Style</emph> to the defined <emph>context</emph>.</ahelp>"
msgstr ""
-#. e2L8Z
+#. B7z8W
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"tit\n"
"help.text"
-msgid "Styles (Sidebar)"
+msgid "Manage Styles"
msgstr ""
#. yJjGG
@@ -23902,13 +23722,13 @@ msgctxt ""
msgid "<bookmark_value>Styles window;applying styles</bookmark_value> <bookmark_value>styles;previews</bookmark_value> <bookmark_value>previews;styles</bookmark_value>"
msgstr "<bookmark_value>የ ዘዴዎች መስኮት: ዘዴዎች መፈጸሚያ</bookmark_value> <bookmark_value>ዘዴዎች: ቅድመ እይታ</bookmark_value> <bookmark_value>ቅድመ እይታ: ዘዴዎች</bookmark_value>"
-#. EMPcC
+#. muNrd
#: 05140000.xhp
msgctxt ""
"05140000.xhp\n"
"hd_id3154505\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\">Styles (Sidebar)</link>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\">Manage Styles</link>"
msgstr ""
#. YEFkv
@@ -24361,14 +24181,14 @@ msgctxt ""
msgid "Opens the AutoCorrect dialog."
msgstr "በራሱ አራሚ ንግግርን ይከፍታል"
-#. kfEx3
+#. BiyGa
#: 05150000.xhp
msgctxt ""
"05150000.xhp\n"
"par_id3147570\n"
"help.text"
-msgid "To open the <link href=\"text/swriter/01/05150101.xhp\">AutoFormat for Tables</link> dialog, click in a table cell, and then choose <emph>Table - AutoFormat Styles</emph>."
-msgstr "ለ መክፈት <link href=\"text/swriter/01/05150101.xhp\"> በራሱ አቀራረብ </link> ንግግር ይጫኑ በ ሰንጠረዥ ክፍል ውስጥ እና ከዛ ይምረጡ <emph> ሰንጠረዥ - በራሱ አቀራረብ </emph>"
+msgid "To open the <link href=\"text/shared/01/AutoFormat.xhp\">AutoFormat for Tables</link> dialog, click in a table cell, and then choose <emph>Table - AutoFormat Styles</emph>."
+msgstr ""
#. ZN4ko
#: 05150100.xhp
@@ -24559,303 +24379,6 @@ msgctxt ""
msgid "<link href=\"text/swriter/01/05150200.xhp\">Other AutoCorrect rules</link>"
msgstr "<link href=\"text/swriter/01/05150200.xhp\">ሌሎች በራሱ ማረሚያ ደንቦች</link>"
-#. CjDuT
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoFormat for Tables"
-msgstr "በራሱ አቀራረብ ለ ሰንጠረዥ"
-
-#. BZFUD
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"bm_id2655415\n"
-"help.text"
-msgid "<bookmark_value>tables;AutoFormat function</bookmark_value> <bookmark_value>styles;table styles</bookmark_value> <bookmark_value>AutoFormat function for tables</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ: በራሱ አቀራረብ ተግባሮች</bookmark_value> <bookmark_value>ዘዴዎች: የ ሰንጠረዥ ዘዴዎች</bookmark_value> <bookmark_value>በራሱ አቀራረብ ተግባሮች ለ ሰንጠረዥ</bookmark_value>"
-
-#. B2AUW
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3148485\n"
-"help.text"
-msgid "AutoFormat for Tables"
-msgstr "በራሱ አቀራረብ ለ ሰንጠረዥ"
-
-#. V6p4i
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3149500\n"
-"help.text"
-msgid "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Automatically applies formats to the current table, including fonts, shading, and borders.</ahelp></variable>"
-msgstr "<variable id=\"autoformattabelle\"><ahelp hid=\".\">ራሱ በራስ ወደ አሁኑ ሰንጠረዥ አቀራረብ መፈጸሚያ: ፊደሎች ጥላዎች እና ድንበሮችን ያካትታል</ahelp></variable>"
-
-#. dumEP
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3151388\n"
-"help.text"
-msgid "Applying an AutoFormat to a Table"
-msgstr "በራሱ አቀራረብ ሰንጠረዥ መፈጸሚያ"
-
-#. zB5Gz
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3145828\n"
-"help.text"
-msgid "Click in a table cell, or select the cells that you want to format."
-msgstr "ይጫኑ በ ሰንጠረዥ ክፍል ውስጥ: ወይንም ክፍሎች ይምረጡ እርስዎ ማቅረብ የሚፈልጉትን"
-
-#. CsiMX
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3153006\n"
-"help.text"
-msgid "Choose <emph>Table - AutoFormat Styles</emph>, and then click the format that you to want to apply."
-msgstr "ይምረጡ <emph> ሰንጠረዥ - በራሱ አቀራረብ </emph> እና ከዛ ይጫኑ መፈጸም የሚፈልጉትን አቀራረብ"
-
-#. AjaCP
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3145585\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "ይጫኑ <emph> እሺ </emph>"
-
-#. skCGC
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3148386\n"
-"help.text"
-msgid "Format"
-msgstr "አቀራረብ"
-
-#. aXDem
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3149022\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/formatlb\">Lists the available formatting styles for tables. Click the format that you want to apply, and then click <emph>OK</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/formatlb\">ዝግጁ የሆኑ የ ሰንጠረዥ አቀራረብ ዘዴዎች ዝርዝር: ይጫኑ አቀራረብ ላይ እርስዎ መፈጸም የሚፈልጉትን: እና ከዛ ይጫኑ <emph> እሺ </emph></ahelp>"
-
-#. WA7yH
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3153722\n"
-"help.text"
-msgid "Add"
-msgstr "መጨመሪያ"
-
-#. iGaqo
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3151185\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/add\">Adds a new table style to the list.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/add\">አዲስ የ ሰንጠረዥ ዘዴ ወደ ዝርዝሩ መጨመሪያ</ahelp>"
-
-#. 7djcU
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3154646\n"
-"help.text"
-msgid "Format a table in your document."
-msgstr "በ ሰነድ ውስጥ የ ሰንጠረዥ አቀራረብ"
-
-#. u6fWX
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3156320\n"
-"help.text"
-msgid "Select the table, and then choose <emph>Table - AutoFormat Styles</emph>."
-msgstr "ይምረጡ ሰንጠረዥ እና ከዛ ይምረጡ <emph> ሰንጠረዥ - በራሱ አቀራረብ </emph>"
-
-#. AMvFw
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3153156\n"
-"help.text"
-msgid "Click <emph>Add</emph>."
-msgstr "ይጫኑ <emph> መጨመሪያ </emph>"
-
-#. Eiwoh
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3151168\n"
-"help.text"
-msgid "In the <emph>Add AutoFormat</emph> dialog, enter a name, and then click <emph>OK</emph>."
-msgstr "የ <emph>በራሱ አቀራረብ መጨመሪያ</emph> ንግግር: ስም ያስገቡ እና ከዛ ይጫኑ <emph> እሺ</emph>:"
-
-#. oTWGL
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3153391\n"
-"help.text"
-msgid "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">ለ አዲሱ አቀራረብ ስም ያስገቡ እና ከዛ ይጫኑ <emph> እሺ </emph></ahelp>"
-
-#. MfFmP
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3147516\n"
-"help.text"
-msgid "Delete"
-msgstr "ማጥፊያ"
-
-#. yFvtW
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3150707\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Deletes the selected table style. You cannot delete \"Default Table Style\".</ahelp>"
-msgstr ""
-
-#. 3rqAx
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3149302\n"
-"help.text"
-msgid "Rename"
-msgstr "እንደገና መሰየሚያ"
-
-#. KVYeV
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3149490\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Changes the name of the selected table style. You cannot rename \"Default Table Style\".</ahelp>"
-msgstr ""
-
-#. 2PEkJ
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3153534\n"
-"help.text"
-msgid "Formatting"
-msgstr "አቀራረብ"
-
-#. Gf3DD
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3154477\n"
-"help.text"
-msgid "Select the formatting attributes to include in the selected table style."
-msgstr ""
-
-#. XRRp9
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3151317\n"
-"help.text"
-msgid "Number format"
-msgstr "የ ቁጥር አቀራረብ"
-
-#. EBxey
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3150970\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/numformatcb\">Includes numbering formats in the selected table style.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/numformatcb\">ለ ተመረጠው የ ሰንጠርዥ ዘዴ የ ቁጥር መስጫ አቀራረብ ማካተቻ</ahelp>"
-
-#. t4APG
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3150350\n"
-"help.text"
-msgid "Font"
-msgstr "ፊደል"
-
-#. gkUvB
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3152961\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/fontcb\">Includes font formatting in the selected table style.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/fontcb\">ለ ተመረጠው የ ሰንጠርዥ ዘዴ የ ፊደል አቀራረብ ማካተቻ </ahelp>"
-
-#. uFEJL
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3154575\n"
-"help.text"
-msgid "Alignment"
-msgstr "ማሰለፊያ"
-
-#. GwGbD
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3155896\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/alignmentcb\">Includes alignment settings in the selected table style.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/alignmentcb\">ለ ተመረጠው የ ሰንጠርዥ ዘዴ የ ማሰለፊያ ማሰናጃ ማካተቻ </ahelp>"
-
-#. edaJm
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3149690\n"
-"help.text"
-msgid "Borders"
-msgstr ""
-
-#. yZ9HG
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3154200\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/bordercb\">Includes border styles in the selected table style.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/bordercb\">ለ ተመረጠው የ ሰንጠርዥ ዘዴ የ ሰንጠረዥ ድንበር ማካተቻ</ahelp>"
-
-#. i3hzF
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"hd_id3159201\n"
-"help.text"
-msgid "Pattern"
-msgstr "ንድፍ"
-
-#. FoPas
-#: 05150101.xhp
-msgctxt ""
-"05150101.xhp\n"
-"par_id3151325\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/patterncb\">Includes background styles in the selected table style.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/patterncb\">ለ ተመረጠው የ ሰንጠርዥ ዘዴ የ መደብ ዘዴዎች ማካተቻ </ahelp>"
-
#. BhJ6B
#: 05150104.xhp
msgctxt ""
@@ -25072,13 +24595,13 @@ msgctxt ""
msgid "Load Styles"
msgstr "ዘዴዎች መጫኛ"
-#. ojR9E
+#. C33tS
#: 05170000.xhp
msgctxt ""
"05170000.xhp\n"
"hd_id3151242\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">Load Master Slide</caseinline> <caseinline select=\"DRAW\">Load Master Page</caseinline> <defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\">Load Styles</link></variable></defaultinline> </switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Load Master Slide</caseinline><caseinline select=\"DRAW\">Load Master Page</caseinline><defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\">Load Styles from Template</link></variable></defaultinline></switchinline>"
msgstr ""
#. 27Nd8
@@ -27187,23 +26710,23 @@ msgctxt ""
msgid "Sort"
msgstr "መለያ"
-#. XncsB
+#. CuoQx
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"bm_id3149353\n"
"help.text"
-msgid "<bookmark_value>tables;sorting rows</bookmark_value> <bookmark_value>sorting;paragraphs/table rows</bookmark_value> <bookmark_value>text; sorting paragraphs</bookmark_value> <bookmark_value>lines of text; sorting paragraphs</bookmark_value> <bookmark_value>sorting;paragraphs in special languages</bookmark_value> <bookmark_value>Asian languages;sorting paragraphs/table rows</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ: መለያ ረድፎች</bookmark_value> <bookmark_value>መለያ: አንቀጽ/የ ሰንጠረዥ ረድፍ</bookmark_value> <bookmark_value>ጽሁፍ: መለያ አንቀጽ</bookmark_value> <bookmark_value>መስመሮች የ ጽሁፍ: መለያ አንቀጾች </bookmark_value> <bookmark_value>መለያ: አንቀጾች በተለዩ ቋንቋዎች</bookmark_value> <bookmark_value>እሲያን ቋንቋዎች: መለያ አንቀጾች/ሰንጠረዥ ረድፎች</bookmark_value>"
+msgid "<bookmark_value>tables;sorting rows</bookmark_value><bookmark_value>sorting;paragraphs/table rows</bookmark_value><bookmark_value>text; sorting paragraphs</bookmark_value><bookmark_value>lines of text; sorting paragraphs</bookmark_value><bookmark_value>sorting;paragraphs in special languages</bookmark_value><bookmark_value>Asian languages;sorting paragraphs/table rows</bookmark_value>"
+msgstr ""
-#. CACeu
+#. EA6YJ
#: 06100000.xhp
msgctxt ""
"06100000.xhp\n"
"hd_id3149353\n"
"help.text"
-msgid "Sort"
-msgstr "መለያ"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/06100000.xhp\">Sort</link></variable>"
+msgstr ""
#. XnAEB
#: 06100000.xhp
@@ -28087,6 +27610,456 @@ msgctxt ""
msgid "Updates items in the current document that have dynamic contents, so as fields and indexes."
msgstr "በ አሁኑ ሰነድ ውስጥ እቃዎች ማሻሻያ ሀይለኛ ይዞታ ያላቸውን እንደ ሜዳዎች እና ማውጫዎች"
+#. 39zrB
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"tit\n"
+"help.text"
+msgid "Edit Style"
+msgstr ""
+
+#. SEWss
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"hd_id291693524138888\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/EditStyle.xhp\">Edit Style</link></variable>"
+msgstr ""
+
+#. 5dGnk
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id111529881420452\n"
+"help.text"
+msgid "Opens the Paragraph Style dialog box of the current paragraph."
+msgstr ""
+
+#. 5dhCF
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id31693524682578\n"
+"help.text"
+msgid "Choose <menuitem>Styles - Edit Style</menuitem>."
+msgstr ""
+
+#. FYjD3
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id181693532428657\n"
+"help.text"
+msgid "Choose <menuitem>Paragraph - Edit Style</menuitem>."
+msgstr ""
+
+#. 4BSPm
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id331693524626393\n"
+"help.text"
+msgid "Choose <menuitem>Home</menuitem>, and double click on the style name highlighted."
+msgstr ""
+
+#. 8Q9Ce
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id321693524457637\n"
+"help.text"
+msgid "<image src=\"cmd/lc_editstyle.svg\" id=\"img_id391693524457637\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291693524457638\">Icon Edit Style</alt></image>"
+msgstr ""
+
+#. KXwrD
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id341693524457638\n"
+"help.text"
+msgid "Edit Style"
+msgstr ""
+
+#. EPNjK
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id871693524390988\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + P</keycode>"
+msgstr ""
+
+#. y8DYB
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id851693524839009\n"
+"help.text"
+msgid "Select the <menuitem>Style</menuitem> panel (<keycode>F11</keycode>), choose Paragraph Styles, open context menu of the selected style, choose <menuitem>Edit Style</menuitem>."
+msgstr ""
+
+#. wEyNc
+#: EditStyle.xhp
+msgctxt ""
+"EditStyle.xhp\n"
+"par_id921693534308719\n"
+"help.text"
+msgid "<link href=\"text/swriter/main0115.xhp\">Styles menu</link>"
+msgstr ""
+
+#. PDPrT
+#: HeadingRowsRepeat.xhp
+msgctxt ""
+"HeadingRowsRepeat.xhp\n"
+"tit\n"
+"help.text"
+msgid "Header Rows Repeat Across Pages"
+msgstr ""
+
+#. ELXQ9
+#: HeadingRowsRepeat.xhp
+msgctxt ""
+"HeadingRowsRepeat.xhp\n"
+"bm_id701694260835034\n"
+"help.text"
+msgid "<bookmark_value>tables; header repetition after page breaks</bookmark_value><bookmark_value>repeating; table headers after page breaks</bookmark_value><bookmark_value>headers; repeating in tables</bookmark_value>"
+msgstr ""
+
+#. K3xAV
+#: HeadingRowsRepeat.xhp
+msgctxt ""
+"HeadingRowsRepeat.xhp\n"
+"hd_id161694258259129\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/HeadingRowsRepeat.xhp\">Header Rows Repeat Across Pages</link></variable>"
+msgstr ""
+
+#. dguEc
+#: HeadingRowsRepeat.xhp
+msgctxt ""
+"HeadingRowsRepeat.xhp\n"
+"par_id451630938722616\n"
+"help.text"
+msgid "Repeat a table header on each new page that the table spans."
+msgstr ""
+
+#. CEDGU
+#: HeadingRowsRepeat.xhp
+msgctxt ""
+"HeadingRowsRepeat.xhp\n"
+"par_id571694256958083\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Header Rows Repeat Across Pages</menuitem> command."
+msgstr ""
+
+#. nAKZ7
+#: RowSplit.xhp
+msgctxt ""
+"RowSplit.xhp\n"
+"tit\n"
+"help.text"
+msgid "Row to Break Across Pages"
+msgstr ""
+
+#. FMzbi
+#: RowSplit.xhp
+msgctxt ""
+"RowSplit.xhp\n"
+"bm_id451694263612943\n"
+"help.text"
+msgid "<bookmark_value>tables; allowing page breaks</bookmark_value>"
+msgstr ""
+
+#. wMEbG
+#: RowSplit.xhp
+msgctxt ""
+"RowSplit.xhp\n"
+"hd_id491694262517019\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/RowSplit.xhp\">Row to Break Across Pages</link></variable>"
+msgstr ""
+
+#. KPHhY
+#: RowSplit.xhp
+msgctxt ""
+"RowSplit.xhp\n"
+"par_id841630938899606\n"
+"help.text"
+msgid "Allows a page break or column break inside a row of the table. This option is not applied to the first row in a table if the <emph>Repeat Heading</emph> option is selected."
+msgstr ""
+
+#. TcWYY
+#: RowSplit.xhp
+msgctxt ""
+"RowSplit.xhp\n"
+"par_id571694256958083\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Row to Break Across Pages</menuitem> command."
+msgstr ""
+
+#. BEqCH
+#: TableAutoFitMenu.xhp
+msgctxt ""
+"TableAutoFitMenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table Size Menu"
+msgstr ""
+
+#. hk9Fh
+#: TableAutoFitMenu.xhp
+msgctxt ""
+"TableAutoFitMenu.xhp\n"
+"hd_id591693917285075\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/TableAutoFitMenu.xhp\">Size</link></variable>"
+msgstr ""
+
+#. QBGBt
+#: TableAutoFitMenu.xhp
+msgctxt ""
+"TableAutoFitMenu.xhp\n"
+"par_id291693917285077\n"
+"help.text"
+msgid "Opens a submenu to resize columns and rows."
+msgstr ""
+
+#. jELGi
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Convert"
+msgstr ""
+
+#. ZERXD
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"hd_id241694263931322\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/TableConvertMenu.xhp\">Convert</link></variable>"
+msgstr ""
+
+#. WiVoG
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"par_id881605975490097\n"
+"help.text"
+msgid "Opens a submenu to convert a text to a table or a table to text."
+msgstr ""
+
+#. 776Pm
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"hd_id451694267130119\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06090000.xhp\">Convert Text to Table</link>"
+msgstr ""
+
+#. qFyaX
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"par_id591694267383708\n"
+"help.text"
+msgid "Opens <link href=\"text/swriter/01/06090000.xhp\">a dialog</link> where you can convert the selected text to a table."
+msgstr ""
+
+#. uiBUA
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"hd_id351694267135190\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/06090000.xhp\">Convert Table to Text</link>"
+msgstr ""
+
+#. CFtrn
+#: TableConvertMenu.xhp
+msgctxt ""
+"TableConvertMenu.xhp\n"
+"par_id371694267414230\n"
+"help.text"
+msgid "Opens <link href=\"text/swriter/01/06090000.xhp\">a dialog</link> where you can convert the current table to text."
+msgstr ""
+
+#. R5DCX
+#: TableDeleteMenu.xhp
+msgctxt ""
+"TableDeleteMenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table Delete Menu"
+msgstr ""
+
+#. DsZ7Q
+#: TableDeleteMenu.xhp
+msgctxt ""
+"TableDeleteMenu.xhp\n"
+"hd_id191693674103291\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/TableDeleteMenu.xhp\">Delete</link></variable>"
+msgstr ""
+
+#. zVWCj
+#: TableDeleteMenu.xhp
+msgctxt ""
+"TableDeleteMenu.xhp\n"
+"par_id901693674103293\n"
+"help.text"
+msgid "Opens a submenu to delete columns, rows and the entire table."
+msgstr ""
+
+#. WFGsi
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table Insert Menu"
+msgstr ""
+
+#. 4qabE
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"hd_id421693612980436\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/TableInsertMenu.xhp\">Insert</link></variable>"
+msgstr ""
+
+#. Eaj3Q
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"par_id881605975490097\n"
+"help.text"
+msgid "Opens a submenu to insert rows and columns."
+msgstr ""
+
+#. Ywb2U
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"par_idN105E5\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05120400.xhp\">Rows</link>"
+msgstr ""
+
+#. ojtts
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"par_idN105E8\n"
+"help.text"
+msgid "Opens dialog box for inserting rows."
+msgstr ""
+
+#. g2LQz
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"par_idN105CD\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05120400.xhp\">Columns</link>"
+msgstr ""
+
+#. 5GnUP
+#: TableInsertMenu.xhp
+msgctxt ""
+"TableInsertMenu.xhp\n"
+"par_idN105D0\n"
+"help.text"
+msgid "Opens dialog box for inserting columns."
+msgstr ""
+
+#. SGUaF
+#: TableNumberRecognition.xhp
+msgctxt ""
+"TableNumberRecognition.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table Number Recognition"
+msgstr ""
+
+#. fYDb5
+#: TableNumberRecognition.xhp
+msgctxt ""
+"TableNumberRecognition.xhp\n"
+"bm_id671694256282744\n"
+"help.text"
+msgid "<bookmark_value>tables; number recognition</bookmark_value>"
+msgstr ""
+
+#. ycGy7
+#: TableNumberRecognition.xhp
+msgctxt ""
+"TableNumberRecognition.xhp\n"
+"hd_id381694255003807\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/TableNumberRecognition.xhp\">Number Recognition</link></variable>"
+msgstr ""
+
+#. RCY2N
+#: TableNumberRecognition.xhp
+msgctxt ""
+"TableNumberRecognition.xhp\n"
+"par_id511605978897703\n"
+"help.text"
+msgid "Toggles the setting for automatically recognizing numbers or dates that you enter into a table cell, converting them from text to an appropriate number format."
+msgstr ""
+
+#. oxFBW
+#: TableNumberRecognition.xhp
+msgctxt ""
+"TableNumberRecognition.xhp\n"
+"par_id571694256958083\n"
+"help.text"
+msgid "When this feature is on, a check mark is displayed in front of the <menuitem>Number Recognition</menuitem> command."
+msgstr ""
+
+#. hBEub
+#: TableNumberRecognition.xhp
+msgctxt ""
+"TableNumberRecognition.xhp\n"
+"par_id201694255804342\n"
+"help.text"
+msgid "<link href=\"text/shared/optionen/01040500.xhp\">%PRODUCTNAME Writer Table Options</link>"
+msgstr ""
+
+#. az68x
+#: TableSelectMenu.xhp
+msgctxt ""
+"TableSelectMenu.xhp\n"
+"tit\n"
+"help.text"
+msgid "Table Select Menu"
+msgstr ""
+
+#. SL3gb
+#: TableSelectMenu.xhp
+msgctxt ""
+"TableSelectMenu.xhp\n"
+"hd_id191693674103291\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/TableSelectMenu.xhp\">Select</link></variable>"
+msgstr ""
+
+#. 6z3gm
+#: TableSelectMenu.xhp
+msgctxt ""
+"TableSelectMenu.xhp\n"
+"par_id901693674103293\n"
+"help.text"
+msgid "Opens a submenu to select cells, columns, rows and the whole table."
+msgstr ""
+
#. T2G4E
#: accessibility_check.xhp
msgctxt ""
@@ -28546,6 +28519,51 @@ msgctxt ""
msgid "Select the date format to display in the date content control."
msgstr ""
+#. sVWAR
+#: format_frame.xhp
+msgctxt ""
+"format_frame.xhp\n"
+"tit\n"
+"help.text"
+msgid "Frame and Object"
+msgstr ""
+
+#. jAXTw
+#: format_frame.xhp
+msgctxt ""
+"format_frame.xhp\n"
+"hd_id891692882707233\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/format_frame.xhp\">Frame and Object</link></variable>"
+msgstr ""
+
+#. QDG8c
+#: format_frame.xhp
+msgctxt ""
+"format_frame.xhp\n"
+"par_id951602977746649\n"
+"help.text"
+msgid "Opens a submenu to link and unlink frames, and edit properties of a selected frame."
+msgstr ""
+
+#. 4PDvR
+#: format_frame.xhp
+msgctxt ""
+"format_frame.xhp\n"
+"par_id401692882792548\n"
+"help.text"
+msgid "Choose <menuitem>Format - Frame and Object</menuitem>."
+msgstr ""
+
+#. pF34c
+#: format_frame.xhp
+msgctxt ""
+"format_frame.xhp\n"
+"hd_id861692882970016\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05080000.xhp\">Properties</link>"
+msgstr ""
+
#. YwkE4
#: format_object.xhp
msgctxt ""
@@ -28573,6 +28591,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected textbox or shape.</ahelp>"
msgstr ""
+#. RJvYn
+#: format_object.xhp
+msgctxt ""
+"format_object.xhp\n"
+"par_id201692832345816\n"
+"help.text"
+msgid "Choose <menuitem>Format - Text Box and Shape</menuitem>."
+msgstr ""
+
#. UWnvc
#: format_object.xhp
msgctxt ""
@@ -32029,6 +32056,15 @@ msgctxt ""
msgid "Choose <menuitem>Insert - Page Number</menuitem>."
msgstr ""
+#. djzWF
+#: pagenumbering.xhp
+msgctxt ""
+"pagenumbering.xhp\n"
+"par_id961690025511791\n"
+"help.text"
+msgid "Choose <menuitem>Layout - Page Number</menuitem>."
+msgstr ""
+
#. WAAjX
#: pagenumbering.xhp
msgctxt ""
@@ -32047,13 +32083,13 @@ msgctxt ""
msgid "Position"
msgstr ""
-#. JeZD5
+#. NyZtB
#: pagenumbering.xhp
msgctxt ""
"pagenumbering.xhp\n"
"par_id811673186011131\n"
"help.text"
-msgid "Select the position of the page number, Options are <emph>Top of page (Header)</emph> or <emph>Bottom of page (Footer)</emph>."
+msgid "Select the position of the page number. The options are <emph>Top of page (Header)</emph> or <emph>Bottom of page (Footer)</emph>."
msgstr ""
#. x4QAd
@@ -32326,157 +32362,175 @@ msgctxt ""
msgid "Displays the document with the top and bottom margins, header and footer and a gap between pages. Uncheck to collapse all the elements cited and display the document in a contiguous page stream. Hiding whitespace is only possible in Single-page view."
msgstr ""
-#. sDVNf
-#: spotlight_styles.xhp
+#. hqmPC
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
+"spotlight_chars_df.xhp\n"
"tit\n"
"help.text"
-msgid "Spotlight Styles"
+msgid "Character Spotlight"
msgstr ""
-#. BGDgd
-#: spotlight_styles.xhp
+#. Gfkdu
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
+"spotlight_chars_df.xhp\n"
"bm_id401688481259265\n"
"help.text"
-msgid "<bookmark_value>spotlight;styles</bookmark_value><bookmark_value>styles spotlight;visual indicator of styles</bookmark_value><bookmark_value>styles visual indicator;spotlighting styles</bookmark_value>"
+msgid "<bookmark_value>spotlighting;characters</bookmark_value><bookmark_value>characters direct formatting;spotlighting</bookmark_value><bookmark_value>styles visual indicator;character spotlighting</bookmark_value>"
msgstr ""
-#. BRDUw
-#: spotlight_styles.xhp
+#. 6E26F
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
-"hd_id901688480262925\n"
+"spotlight_chars_df.xhp\n"
+"hd_id141692649960795\n"
"help.text"
-msgid "<link href=\"text/swriter/01/spotlight_styles.xhp\">Styles Spotlighting</link>"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlight Direct Character Formatting</link></variable>"
msgstr ""
-#. RABFw
-#: spotlight_styles.xhp
+#. jcTBb
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
-"par_id721688480262925\n"
+"spotlight_chars_df.xhp\n"
+"par_id261692649960798\n"
"help.text"
-msgid "The styles spotlight in %PRODUCTNAME Writer gives a visual indicator of styles and direct formatting present in the document."
+msgid "Spotlights direct character formatting applied in the text."
msgstr ""
-#. xzB7C
-#: spotlight_styles.xhp
+#. BiGDt
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
-"par_id361688480578471\n"
+"spotlight_chars_df.xhp\n"
+"par_id751692650117734\n"
"help.text"
-msgid "Open the <emph>Styles</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
+msgid "Choose <menuitem>Format - Spotlight Character Direct Formatting</menuitem>"
msgstr ""
-#. DPLrV
-#: spotlight_styles.xhp
+#. m8BHb
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
-"par_id441688481502370\n"
+"spotlight_chars_df.xhp\n"
+"par_id511692650295026\n"
"help.text"
-msgid "Use the styles spotlight to inspect usage of styles and direct formatting in the document."
+msgid "The Character Direct Formatting feature indicates direct character formatting by a lightgray text \"df\" call-out and by lightgray background highlight."
msgstr ""
-#. ofCvK
-#: spotlight_styles.xhp
+#. YSymU
+#: spotlight_chars_df.xhp
msgctxt ""
-"spotlight_styles.xhp\n"
-"par_id701688481512511\n"
+"spotlight_chars_df.xhp\n"
+"par_id301688481827982\n"
"help.text"
-msgid "The Spotlight visual indicator is codified using numbers and colors. The feature shows direct formatting for characters and paragraphs."
+msgid "Use command <menuitem>Clean direct formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + M</keycode>) to remove character direct formatting of the paragraph."
msgstr ""
-#. 5xLQa
+#. GFhxA
+#: spotlight_chars_df.xhp
+msgctxt ""
+"spotlight_chars_df.xhp\n"
+"par_id511688481841238\n"
+"help.text"
+msgid "The <menuitem>Clean Direct Formatting</menuitem> command only cleans character attributes of paragraphs. Other attributes such as manual lists are not cleaned."
+msgstr ""
+
+#. YDcy5
+#: spotlight_chars_df.xhp
+msgctxt ""
+"spotlight_chars_df.xhp\n"
+"par_id61688482137651\n"
+"help.text"
+msgid "Refer to Styles for more information about <link href=\"text/swriter/01/05130000.xhp\">Style Categories and Style Groups</link>"
+msgstr ""
+
+#. sDVNf
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id631688481526288\n"
+"tit\n"
"help.text"
-msgid "Direct formatting text is indicated by a hatch pattern in the Spotlight colored indicators on the margin."
+msgid "Spotlight Styles"
msgstr ""
-#. UueAi
+#. BGDgd
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id821688481536823\n"
+"bm_id401688481259265\n"
"help.text"
-msgid "Spotlight character direct formatting visual indication is a call-out with string \"df\" next to the text with direct formatting."
+msgid "<bookmark_value>spotlight;styles</bookmark_value><bookmark_value>styles spotlight;visual indicator of styles</bookmark_value><bookmark_value>styles visual indicator;spotlighting styles</bookmark_value>"
msgstr ""
-#. RjcYe
+#. T4gcC
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id871688481600843\n"
+"hd_id901688480262925\n"
"help.text"
-msgid "The Spotlight feature can visualize paragraphs and characters styles only."
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/spotlight_styles.xhp\">Styles Spotlighting</link></variable>"
msgstr ""
-#. agBzx
+#. RABFw
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id751688481764432\n"
+"par_id721688480262925\n"
"help.text"
-msgid "When the extended tips features is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools – Options</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – General</menuitem>, a tooltip shows the style name and many attributes of the style applied."
+msgid "The styles spotlight in %PRODUCTNAME Writer gives a visual indicator of styles and direct formatting present in the document."
msgstr ""
-#. C5AEv
+#. xzB7C
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id891688481774765\n"
+"par_id361688480578471\n"
"help.text"
-msgid "Paragraph direct formatting is indicated in two ways: by a hatch pattern in the coloured indicators and by the text \"+ Paragraph Direct Formatted\" added to the name of the style."
+msgid "Open the <emph>Styles</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
msgstr ""
-#. qvMwL
+#. DPLrV
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"hd_id61688481779566\n"
+"par_id441688481502370\n"
"help.text"
-msgid "Character Direct Formatting"
+msgid "Use the styles spotlight to inspect usage of styles and direct formatting in the document."
msgstr ""
-#. EbbSF
+#. ejCjY
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id791688481879788\n"
+"par_id701688481512511\n"
"help.text"
-msgid "To enable character direct formatting spotlight, go to menu <menuitem>Styles - Spotlight Character Direct Formatting</menuitem>"
+msgid "The Spotlight visual indicator is codified using numbers and colors. The feature shows direct formatting for characters and paragraphs indicated by a hatch pattern in the Spotlight colored on the margin."
msgstr ""
-#. tFWEG
+#. RjcYe
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id111688481812046\n"
+"par_id871688481600843\n"
"help.text"
-msgid "When enabled, the Character Direct Formatting feature indicates direct character formatting by a lightgray text \"df\" call-out and by lightgray highlight."
+msgid "The Spotlight feature can visualize paragraphs and characters styles only."
msgstr ""
-#. FGcGa
+#. agBzx
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id301688481827982\n"
+"par_id751688481764432\n"
"help.text"
-msgid "Use command <menuitem>Clean direct formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + M</keycode>) to remove character direct formatting of the paragraph."
+msgid "When the extended tips features is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools – Options</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – General</menuitem>, a tooltip shows the style name and many attributes of the style applied."
msgstr ""
-#. qMZqG
+#. C5AEv
#: spotlight_styles.xhp
msgctxt ""
"spotlight_styles.xhp\n"
-"par_id511688481841238\n"
+"par_id891688481774765\n"
"help.text"
-msgid "The <menuitem>Clean Direct Formatting</menuitem> command only cleans character attributes of paragraphs. Other attributes such as manual lists are not cleaned."
+msgid "Paragraph direct formatting is indicated in two ways: by a hatch pattern in the coloured indicators and by the text \"+ Paragraph Direct Formatted\" added to the name of the style."
msgstr ""
#. pG2Wi
@@ -32776,302 +32830,266 @@ msgctxt ""
msgid "Using title pages in your document"
msgstr "የ አርእስት ገጾች በ እርስዎ ሰነድ ውስጥ መጠቀሚያ"
-#. 7MEGF
+#. 5BAgZ
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
"bm_id300920161717389897\n"
"help.text"
-msgid "<bookmark_value>page;title page</bookmark_value> <bookmark_value>title pages;first page style</bookmark_value> <bookmark_value>title pages;modifying</bookmark_value> <bookmark_value>title pages;inserting</bookmark_value>"
-msgstr "<bookmark_value>ገጽ: የ አርእስት ገጽ</bookmark_value> <bookmark_value>የ አርእስት ገጾች: የ መጀመሪያ ገጽ ዘዴ</bookmark_value> <bookmark_value>የ አርእስት ገጾች: በ ማሻሻል ላያ</bookmark_value> <bookmark_value>የ አርእስት ገጾች: በ ማስገባት ላይ</bookmark_value>"
+msgid "<bookmark_value>page;title page</bookmark_value><bookmark_value>title page;numbering</bookmark_value><bookmark_value>title page;numbering</bookmark_value>"
+msgstr ""
-#. 2uvfF
+#. efYTZ
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
"hd_id300920161429137211\n"
"help.text"
-msgid "<link href=\"text/swriter/01/title_page.xhp\">Inserting title pages in the document</link>"
-msgstr "<link href=\"text/swriter/01/title_page.xhp\">የ አርእስት ገጾች በ ሰነድ ውስጥ በ ማስገባት ላይ</link>"
-
-#. jGkMA
-#: title_page.xhp
-msgctxt ""
-"title_page.xhp\n"
-"par_id300920161429345505\n"
-"help.text"
-msgid "<ahelp hid=\".\">Insert title pages in your document.</ahelp>"
-msgstr "<ahelp hid=\".\">የ አርእስት ገጾች በ እርስዎ ሰነድ ውስጥ ማስገቢያ</ahelp>"
-
-#. DPuoT
-#: title_page.xhp
-msgctxt ""
-"title_page.xhp\n"
-"par_id300920161429347135\n"
-"help.text"
-msgid "Title pages are pages at the beginning of the document that lists the publication information, such as the title of the publication, the name of the author etc. These pages have a different layout than the pages of the document body, because they may not have page numbering, sometimes a different heading and footer and even different margins settings or background."
-msgstr "የ አርእስት ገጾች: የ ጽሁፉ መረጃ ዝርዝር ሰነድ የሚጀምርበት ገጾች ናቸው: እንደ ጽሁፉ አርእስት አይነት ይለያያል: የ ደራሲው ስም እና ወዘተ: እነዚህ ገጾች የ ተለየ እቅድ አላቸው: ከ ሰነዱ አካል ገጾች ይልቅ: ምክንያቱም የ ገጽ ቁጥር አይኖራቸውም: አንዳንድ ጊዜ የ ተለየ ራስጌ እና ግርጌ እና የ ተለየ መስመር ማሰናጃ ወይንም መደብ ይኖራቸዋል"
-
-#. sw2GX
-#: title_page.xhp
-msgctxt ""
-"title_page.xhp\n"
-"par_id300920161443292710\n"
-"help.text"
-msgid "Choose menu <item type=\"menuitem\">Format - Title Page</item>"
-msgstr "ይምረጡ ዝርዝር <item type=\"menuitem\"> አቀራረብ - የ አርእስት ገጽ </item>"
-
-#. r7CtS
-#: title_page.xhp
-msgctxt ""
-"title_page.xhp\n"
-"par_id300920161443298079\n"
-"help.text"
-msgid "Many documents, such as letters and reports, have a first page that is different from the other pages in the document. For example, the first page of a letterhead typically has a different header or the first page of a report might have no header or footer, while the other pages do. This is simple to achieve with %PRODUCTNAME Writer."
-msgstr "በርካታ ሰነዶች: እንደ ደብዳቤዎች እና መግለጫዎች ያሉ: የ መጀመሪያ ገጻቸው ከ ሌሎቹ የ ሰነዱ ገጾች ይለያሉ: ለምሳሌ: የ መጀመሪያው ገጽ ለ ደብዳቤ ራስጌ ብዙ ጊዜ የ ተለየ ራስጌ ወይንም የ መጀመሪያው ገጽ የ መግለጫ ምናልባት ሊኖረው ይችላል ራስጌ ወይንም ግርጌ: ነገር ግን ሌሎች ገጾች ይኖራቸዋል: ይህን ማድረግ በጣም ቀላል ነው በ %PRODUCTNAME መጻፊያ ውስጥ"
+msgid "<variable id=\"titlepage\"><link href=\"text/swriter/01/title_page.xhp#title page\">Title page</link></variable>"
+msgstr ""
-#. evMYE
+#. GAnoN
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443298274\n"
+"par_id471602976213270\n"
"help.text"
-msgid "Page header and footer, numbering, margins and orientation are some of the properties that belongs to page styles. %PRODUCTNAME Writer let your to insert a blank title page at any point of your document, or format an existing page like a title page, by inserting a page break followed by a page style of your choice or by changing the page style at cursor position."
-msgstr "የ ገጽ ራስጌ እና ግርጌ: ቁጥር መስጫ: መስመሮች እና አቅጣጫ አንዳንድ ጊዜ ባህሪዎች ናቸው ለ ገጽ ዘዴዎች: %PRODUCTNAME መጻፊያ እርስዎን ማስገባት ያስችሎታል ባዶ የ እርእስት ገጽ በ ማንኛውም ጊዜ በ እርስዎ ሰነድ ውስጥ: ወይንም ማቅረብ በ ነበረው ገጽ ላይ እንደ የ ገጽ እርእስት: በማስገባት የ ገጽ መጨረሻ: አስከትለው የ ገጽ ዘዴ በ እርስዎ ምርጫ መሰረት ወይንም የ ገጽ ዘዴ በ መቀየር መጠቆሚያው ባለበት ቦታ"
+msgid "Opens a dialog where you can design a title page."
+msgstr ""
-#. vCmHm
+#. EckFm
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443293374\n"
+"hd_id721690976937899\n"
"help.text"
-msgid "Using the Default (or any other) page style for your document, you can add a header or footer as you wish to the first page by deselecting the <item type=\"menuitem\">Same content on first page</item> option on the header/footer tabs in the <emph>Page Style</emph> dialog, and then adding the header or footer. You can then add a different header or footer to the other pages of the document."
-msgstr "ነባሩን መጠቀም (ወይንም ማንኛውንም አይነት) የ ገጽ ዘዴ በ እርስዎ ሰነድ ውስጥ: እርስዎ መጨመር ይችላሉ ራስጌ ወይንም ግርጌ እርስዎ እንደ ፈለጉ በ መጀመሪያው ገጽ ላይ ባለመምረጥ የ <item type=\"menuitem\"> ተመሳሳይ ይዞታ በ መጀመሪያው ገጽ ላይ በ </item> ምርጫ በ ራስጌ/ግርጌ ገጾች ውስጥ: በ <emph> ገጽ ዘዴ </emph> ንግግር ውስጥ: እና ከዛ በ መጨመር ራስጌ/ግርጌ: እርስዎ ከዛ መጨመር ይችላሉ የ ተለያዩ ራስጌ/ግርጌ ወደ ሌሎች ገጽ ውስጥ በ እርስዎ ሰነድ ውስጥ"
+msgid "Make Title Pages"
+msgstr ""
-#. rABG8
+#. fywMB
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"hd_id300920161443299618\n"
+"hd_id581690976962732\n"
"help.text"
-msgid "To convert the first page of the document into a title page"
-msgstr "በ ሰነድ ውስጥ የ መጀመሪያውን ገጽ ለ መቀየር ወደ አርእስት ገጽ"
+msgid "Converting existing pages to title pages"
+msgstr ""
-#. CfWoy
+#. AHGGq
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443308966\n"
+"par_id441690977483173\n"
"help.text"
-msgid "Place the cursor on the first page,"
-msgstr "መጠቆሚያውን በ መጀመሪያ ገጽ ላይ ያድርጉ"
+msgid "Change the current page style to <emph>First Page</emph> and the following pages will have the <emph>Default Page Style</emph>. The styles <emph>First Page</emph> and <emph>Default Page Style</emph> are %PRODUCTNAME automatic page styles."
+msgstr ""
-#. DUxW7
+#. g9u9h
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443301816\n"
+"hd_id551690976966704\n"
"help.text"
-msgid "From the Menu Bar, choose <item type=\"menuitem\">Format - Title page…</item>"
-msgstr "ከ ዝርዝር መደርደሪያ ውስጥ: ይምረጡ <item type=\"menuitem\"> አቀራረብ > የ አርእስት ገጽ…</item>"
+msgid "Insert new title pages"
+msgstr ""
-#. 4rBjE
+#. KuwJR
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443304794\n"
+"par_id571690977537765\n"
"help.text"
-msgid "Select <emph>Converting existing pages to title pages</emph>"
-msgstr "ይምረጡ <emph>መቀየሪያ የ ነበሩ ገጾች ወደ አርእስት ገጾች</emph>"
+msgid "Insert a page break and change the current page style to <emph>First Page</emph>. The following pages will have the <emph>Default Page Style</emph> page style."
+msgstr ""
-#. 62FTe
+#. yvMWM
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443301533\n"
+"hd_id311690976973163\n"
"help.text"
-msgid "Select the style of the title page in the <emph>Edit Page Properties</emph> area"
-msgstr "ይምረጡ የ አርእስት ገጽ ዘዴ በ <emph> ገጽ ማረሚያ ባህሪዎች </emph> ቦታ ውስጥ"
+msgid "Number of title pages"
+msgstr ""
-#. 3AEdA
+#. pcjtL
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161448355764\n"
+"par_id251690977607245\n"
"help.text"
-msgid "By default, %PRODUCTNAME selects the <emph>First Page</emph> page style."
-msgstr "በ ነባር %PRODUCTNAME ይምረጡ የ <emph> መጀመሪያ ገጽ </emph> የ ገጽ ዘዴ"
+msgid "Set the number of title pages to insert."
+msgstr ""
-#. TWkab
+#. baTpc
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443315175\n"
+"hd_id391690976978480\n"
"help.text"
-msgid "Set the page numbering reset options."
-msgstr "የ ገጽ ቁጥር መስጫ እንደ ነበር መመለሻ ምርጫዎች"
+msgid "Place title pages at"
+msgstr ""
-#. JfCqa
+#. sKHaC
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443316916\n"
+"hd_id1001690976984732\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "ይጫኑ <emph> እሺ </emph>"
+msgid "Document start"
+msgstr ""
-#. kikFx
+#. NJFNN
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443314375\n"
+"par_id171690978034067\n"
"help.text"
-msgid "This will change the current page style to <emph>First Page</emph> and the following pages will have the <emph>Default Style</emph>."
-msgstr "ይህ የ አሁኑን የ ገጽ ዘዴ ይቀይራል ወደ <emph> መጀመሪያ ገጽ </emph> እና የሚቀጥሉት ገጾች የ <emph> ነባር ገጽ </emph> ዘዴ ይኖራቸዋል"
+msgid "The title pages are inserted before the first page of the document."
+msgstr ""
-#. CjHAF
+#. 2R3EC
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"hd_id300920161443317859\n"
+"hd_id921690976995197\n"
"help.text"
-msgid "To insert a title page anywhere in the document"
-msgstr "የ አርእስት ገጽ በ ሰነድ ውስጥ በማንኛውም ቦታ ለማስገባት"
+msgid "Page"
+msgstr ""
-#. yq7tG
+#. pjwJQ
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443317032\n"
+"par_id291690978040595\n"
"help.text"
-msgid "Place the cursor where you want to insert a new title page."
-msgstr "መጠቆሚያውን እርስዎ አዲስ የ አርእስት ገጽ በሚፈልጉበት ቦታ ያድርጉ"
+msgid "The title pages are inserted at the page specified by its current numbering."
+msgstr ""
-#. DF7Wx
+#. cBZah
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443315460\n"
+"hd_id841690976952914\n"
"help.text"
-msgid "From the menu bar select <item type=\"menuitem\">Format - Title page</item>."
-msgstr "ከ ዝርዝር መደርደሪያ ውስጥ ይምረጡ <item type=\"menuitem\"> አቀራረብ -> የ አርእስት ገጽ </item>"
+msgid "Page Numbering"
+msgstr ""
-#. beeGV
+#. TLKqb
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443318611\n"
+"hd_id581690977006188\n"
"help.text"
-msgid "Select <emph>Insert new title pages</emph>"
-msgstr "ይምረጡ <emph> ማስገቢያ አዲስ የ አርእስት ገጾች </emph>"
+msgid "Reset page numbering after title pages"
+msgstr ""
-#. vCAEB
+#. 6PMx8
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443311657\n"
+"par_id651690979013384\n"
"help.text"
-msgid "Set number of title pages to add and"
-msgstr "የ አርእስት ገጾች ቁጥር ማሰናዳት የሚፈልጉትን ይጨምሩ እና"
+msgid "When checked, stop current numbering page count and restart numbering after the last inserted title page."
+msgstr ""
-#. fj4ur
+#. 366Gd
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443311852\n"
+"hd_id41690977010317\n"
"help.text"
-msgid "Set the title page location by setting its page number in the spin box."
-msgstr "የ ገጽ አካባቢ ማሰናጃ የ ገጽ ቁጥር በ ማሽከርከሪያ ሳጥን ውስጥ በ ማሰናዳት"
+msgid "Page number"
+msgstr ""
-#. KreVo
+#. 2XEY8
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443329307\n"
+"par_id371690979008787\n"
"help.text"
-msgid "Set the page numbering reset options."
-msgstr "የ ገጽ መቁጠሪያ ማሰናጃ እንደ ነበር መመለሻ ምርጫዎች"
+msgid "Set the page number of the page following the last title page."
+msgstr ""
-#. WmLNB
+#. osZ8C
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443327672\n"
+"hd_id211690977016241\n"
"help.text"
-msgid "Click <emph>OK</emph>"
-msgstr "ይጫኑ <emph> እሺ </emph>"
+msgid "Set page number for first title page"
+msgstr ""
-#. Y2AoA
+#. FAK65
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443324067\n"
+"par_id481690979004731\n"
"help.text"
-msgid "This will insert a page break and change the current page style to <emph>First Page</emph>. The following pages will have the <emph>Default Style</emph> page style."
-msgstr "ይህ የ ገጽ መጨረሻ ያስገባል እና ይቀይራል የ አሁኑን ገጽ ዘዴ ወደ <emph> መጀመሪያው ገጽ </emph> የሚቀጥሉት ገጾች <emph> ነባር ዘዴ </emph> የ ገጽ ዘዴ ይኖራቸዋል"
+msgid "When checked, set the page number for the first title page inserted."
+msgstr ""
-#. CDPuF
+#. CgsV7
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"hd_id300920161443323335\n"
+"hd_id81690977024457\n"
"help.text"
-msgid "To delete a title page:"
-msgstr "የ አርእስት ገጽ ለማጥፋት:"
+msgid "Page number"
+msgstr ""
-#. 9WgEN
+#. uRTiJ
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id30092016144332559\n"
+"par_id21690979000164\n"
"help.text"
-msgid "You cannot delete a title page. You must change its page style format from <emph>First Page</emph> to whatever other page style you wish."
-msgstr "እርስዎ የ አርእስት ገጽ ማጥፋት አይችሉም: እርስዎ መቀየር አለብዎት የ ገጽ ዘዴ አቀራረብ ከ <emph> መጀመሪያው ገጽ </emph> እርስዎ ወደሚፈልጉት ወደ ማንኛውም የ ገጽ ዘዴ ውስጥ"
+msgid "Set the page number for the first title page."
+msgstr ""
-#. b66mA
+#. z8Jef
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443329339\n"
+"hd_id151690976957674\n"
"help.text"
-msgid "Place the cursor in the page you want to change the style"
-msgstr "መጠቆሚያውን እርስዎ ዘዴ መቀየር በሚፈልጉት ገጽ ላይ ያድርጉ"
+msgid "Edit Page Properties"
+msgstr ""
-#. dnB6J
+#. cmftv
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id30092016144332353\n"
+"hd_id201690977029670\n"
"help.text"
-msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles</emph>."
-msgstr "ከ ጎን መደርደሪያ ማሳረፊያ ውስጥ: ይምረጡ <emph> የ ጎን መደርደሪያ ማሰናጃ - ዘዴዎች </emph>"
+msgid "Style"
+msgstr ""
-#. 33Fxq
+#. xdVdJ
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443329078\n"
+"par_id941690977098457\n"
"help.text"
-msgid "From the <emph>Styles</emph>, select button <emph>Page Styles</emph>."
-msgstr "ከ <emph> ዘዴዎች </emph> ይምረጡ ቁልፍ <emph> የ ገጽ ዘዴዎች </emph>"
+msgid "Select the page style from the available pages styles in the document."
+msgstr ""
-#. urhNH
+#. iaEh8
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443339937\n"
+"hd_id901690977033901\n"
"help.text"
-msgid "From the Style list, select the page style you want to apply."
-msgstr "ከ ዘዴ ዝርዝር ውስጥ: ይምረጡ የ ገጽ ዘዴ እርስዎ መጠቀም የሚፈልጉትን"
+msgid "Edit"
+msgstr ""
-#. MpEK3
+#. KRj66
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
-"par_id300920161443337801\n"
+"par_id421690977055692\n"
"help.text"
-msgid "Double click on the page style to apply."
-msgstr "ሁለት ጊዜ ይጫኑ በ ገጽ ዘዴ ውስጥ ለ መፈጸም"
+msgid "Click to edit the page style."
+msgstr ""
#. xZ5xm
#: title_page.xhp
@@ -33082,23 +33100,23 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05040200.xhp\">Format page</link>,"
msgstr "<link href=\"text/shared/01/05040200.xhp\">የ ገጽ አቀራረብ </link>:"
-#. HsXGQ
+#. rR7vU
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
"par_id300920161915582003\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/page_break.xhp\">Page break</link>,"
-msgstr "<link href=\"text/swriter/guide/page_break.xhp\">የ ገጽ መጨረሻ</link>,"
+msgid "<link href=\"text/swriter/guide/page_break.xhp\">Page break</link>"
+msgstr ""
-#. NUvyD
+#. 68FJE
#: title_page.xhp
msgctxt ""
"title_page.xhp\n"
"par_id300920161915587772\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/change_header.xhp\">Creating a Page Style Based on the Current Page</link>."
-msgstr "<link href=\"text/swriter/guide/change_header.xhp\">የ አሁኑን ገጽ መሰረት ያደረገ የ ገጽ ዘደ መፍጠሪያ </link>"
+msgid "<link href=\"text/swriter/guide/change_header.xhp\">Creating a Page Style Based on the Current Page</link>"
+msgstr ""
#. NU7vn
#: translate.xhp
@@ -33208,6 +33226,15 @@ msgctxt ""
msgid "View Images and Charts"
msgstr ""
+#. hrg2o
+#: view_images_charts.xhp
+msgctxt ""
+"view_images_charts.xhp\n"
+"bm_id561686935375127\n"
+"help.text"
+msgid "<bookmark_value>show;images and charts</bookmark_value><bookmark_value>view;images and charts</bookmark_value><bookmark_value>images;view in text document</bookmark_value><bookmark_value>chart;view in text document</bookmark_value>"
+msgstr ""
+
#. MpHmB
#: view_images_charts.xhp
msgctxt ""
@@ -33262,6 +33289,51 @@ msgctxt ""
msgid "View Images and Charts"
msgstr ""
+#. AvAbE
+#: view_resolved_comments.xhp
+msgctxt ""
+"view_resolved_comments.xhp\n"
+"tit\n"
+"help.text"
+msgid "page_title"
+msgstr ""
+
+#. nRpQa
+#: view_resolved_comments.xhp
+msgctxt ""
+"view_resolved_comments.xhp\n"
+"bm_id361686952958136\n"
+"help.text"
+msgid "<bookmark_value>view;resolved comments</bookmark_value><bookmark_value>show;resolved comments</bookmark_value><bookmark_value>resolved comments;view</bookmark_value>"
+msgstr ""
+
+#. 7NwhR
+#: view_resolved_comments.xhp
+msgctxt ""
+"view_resolved_comments.xhp\n"
+"hd_id811686951821151\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/01/view_resolved_comments.xhp\">Resolved Comments</link></variable>"
+msgstr ""
+
+#. zCFbM
+#: view_resolved_comments.xhp
+msgctxt ""
+"view_resolved_comments.xhp\n"
+"par_id331573492076499\n"
+"help.text"
+msgid "Show or hide <link href=\"text/shared/01/04050000.xhp#resolvecomments\">resolved comments</link>."
+msgstr ""
+
+#. 49QvV
+#: view_resolved_comments.xhp
+msgctxt ""
+"view_resolved_comments.xhp\n"
+"par_id461686952361594\n"
+"help.text"
+msgid "Choose <menuitem>View - Resolved Comments</menuitem>."
+msgstr ""
+
#. 8zAsE
#: view_table_bounds.xhp
msgctxt ""
@@ -33271,6 +33343,15 @@ msgctxt ""
msgid "Table Boundaries"
msgstr ""
+#. MFXSH
+#: view_table_bounds.xhp
+msgctxt ""
+"view_table_bounds.xhp\n"
+"bm_id511686935867019\n"
+"help.text"
+msgid "<bookmark_value>show;table boundaries</bookmark_value><bookmark_value>view;table boundaries</bookmark_value><bookmark_value>table boundaries;view in text document</bookmark_value>"
+msgstr ""
+
#. BRF8V
#: view_table_bounds.xhp
msgctxt ""
@@ -33316,14 +33397,23 @@ msgctxt ""
msgid "Page Watermark"
msgstr "የ ገጽ ውሀ ምልክት"
-#. DCrVm
+#. rFDux
+#: watermark.xhp
+msgctxt ""
+"watermark.xhp\n"
+"bm_id171516897713635\n"
+"help.text"
+msgid "<bookmark_value>watermark;text documents</bookmark_value><bookmark_value>watermark;page background</bookmark_value><bookmark_value>page background;watermark</bookmark_value>"
+msgstr ""
+
+#. MWcuX
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
"hd_id781516897374563\n"
"help.text"
-msgid "<link href=\"text/swriter/01/watermark.xhp\">Page Watermark</link>"
-msgstr "<link href=\"text/swriter/01/watermark.xhp\">የ ገጽ ውሀ ምልክት</link>"
+msgid "<link href=\"text/swriter/01/watermark.xhp\">Watermark</link>"
+msgstr ""
#. xcKBy
#: watermark.xhp
@@ -33334,23 +33424,50 @@ msgctxt ""
msgid "<variable id=\"waterm01\"><ahelp hid=\".\">Insert a watermark text in the current page style background.</ahelp></variable>"
msgstr "<variable id=\"waterm01\"><ahelp hid=\".\">የ ውሀ ምልክት ጽሁፍ ማስገቢያ በ አሁኑ የ ገጽ ዘዴ መደብ ውስጥ </ahelp></variable>"
-#. wo3jz
+#. rLDFB
+#: watermark.xhp
+msgctxt ""
+"watermark.xhp\n"
+"par_id761516899094991\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Format - Watermark</item>."
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - የ ውሀ ምልክት </item>"
+
+#. Ho3JC
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
-"bm_id171516897713635\n"
+"par_id131692737214709\n"
"help.text"
-msgid "<bookmark_value>watermark;text documents</bookmark_value> <bookmark_value>watermark;page background</bookmark_value> <bookmark_value>page background;watermark</bookmark_value>"
-msgstr "<bookmark_value>የ ውሀ ምልክት;የ ጽሁፍ ሰነዶች</bookmark_value> <bookmark_value>የ ውሀ ምልክት;የ ገጽ መደብ</bookmark_value> <bookmark_value>የ ገጽ መደብ;የ ውሀ ምልክት</bookmark_value>"
+msgid "Choose <menuitem>Layout - Watermark</menuitem>."
+msgstr ""
-#. rLDFB
+#. GFLvc
#: watermark.xhp
msgctxt ""
"watermark.xhp\n"
-"par_id761516899094991\n"
+"par_id111692737220214\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Watermark</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - የ ውሀ ምልክት </item>"
+msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Watermark</menuitem>."
+msgstr ""
+
+#. s7PPB
+#: watermark.xhp
+msgctxt ""
+"watermark.xhp\n"
+"par_id781692737738409\n"
+"help.text"
+msgid "<image src=\"cmd/lc_watermark.svg\" id=\"img_id1001692737738410\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id811692737738411\">Icon Watermark</alt></image>"
+msgstr ""
+
+#. q5uAr
+#: watermark.xhp
+msgctxt ""
+"watermark.xhp\n"
+"par_id111692737738413\n"
+"help.text"
+msgid "Watermark"
+msgstr ""
#. WE5EX
#: watermark.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/02.po b/source/am/helpcontent2/source/text/swriter/02.po
index 5ba91007bd5..6c80c401ddd 100644
--- a/source/am/helpcontent2/source/text/swriter/02.po
+++ b/source/am/helpcontent2/source/text/swriter/02.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: 2023-06-12 15:28+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2017-11-23 23:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,13 +25,13 @@ msgctxt ""
msgid "Toggle Ordered List"
msgstr ""
-#. QF2ZL
+#. GhCZ3
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
"hd_id3150220\n"
"help.text"
-msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\">Toggle Ordered List</link></variable>"
+msgid "<variable id=\"numberingh1\"><link href=\"text/swriter/02/02110000.xhp\">Ordered List</link></variable>"
msgstr ""
#. ABQAW
@@ -43,42 +43,78 @@ msgctxt ""
msgid "<ahelp hid=\".uno:DefaultNumbering\">Adds or removes numbering from the selected paragraphs.</ahelp>"
msgstr ""
-#. yGcX6
+#. FsCkE
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id221649422095688\n"
+"par_id721692393222724\n"
"help.text"
-msgid "To define the numbering format, choose <emph>Format - Bullets and Numbering</emph>. To display the <emph>Bullets and Numbering</emph> Bar, choose <emph>View - Toolbars - Bullets and Numbering</emph>."
+msgid "Choose <menuitem>Format - Lists - Ordered List</menuitem>."
msgstr ""
-#. mLmDR
+#. dumqp
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3150952\n"
+"par_id461692393262366\n"
"help.text"
-msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\">Web Layout</link>."
-msgstr "አንዳንድ የ ነጥቦች እና ቁጥር መስጫ ምርጫዎች ዝግጁ አይደሉም በሚሰሩ ጊዜ በ <link href=\"text/swriter/01/03120000.xhp\">ዌብ እቅድ ውስጥ</link>."
+msgid "Choose <menuitem>Lists - Ordered List</menuitem>."
+msgstr ""
-#. dwn77
+#. jBpTV
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3150502\n"
+"par_id261692394295047\n"
"help.text"
-msgid "<image id=\"img_id3150508\" src=\"cmd/lc_defaultnumbering.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150508\">Toggle Ordered List Icon</alt></image>"
+msgid "Choose <menuitem>Home - Ordered List</menuitem>."
msgstr ""
-#. yYfzC
+#. zd7rc
#: 02110000.xhp
msgctxt ""
"02110000.xhp\n"
-"par_id3147525\n"
+"par_id3150355\n"
+"help.text"
+msgid "<image id=\"img_id3157909\" src=\"cmd/lc_defaultnumbering.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3157909\">Icon Ordered List</alt></image>"
+msgstr ""
+
+#. cgFdJ
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3149233\n"
"help.text"
msgid "Toggle Ordered List"
msgstr ""
+#. erfjV
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id231692393562403\n"
+"help.text"
+msgid "On the <menuitem>Paragraph</menuitem> deck of the <menuitem>Properties</menuitem> panel, click on <menuitem>Ordered List</menuitem>."
+msgstr ""
+
+#. yGcX6
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id221649422095688\n"
+"help.text"
+msgid "To define the numbering format, choose <emph>Format - Bullets and Numbering</emph>. To display the <emph>Bullets and Numbering</emph> Bar, choose <emph>View - Toolbars - Bullets and Numbering</emph>."
+msgstr ""
+
+#. mLmDR
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3150952\n"
+"help.text"
+msgid "Some of the bullets and numbering options are not available when working in the <link href=\"text/swriter/01/03120000.xhp\">Web Layout</link>."
+msgstr "አንዳንድ የ ነጥቦች እና ቁጥር መስጫ ምርጫዎች ዝግጁ አይደሉም በሚሰሩ ጊዜ በ <link href=\"text/swriter/01/03120000.xhp\">ዌብ እቅድ ውስጥ</link>."
+
#. AMB3E
#: 02110000.xhp
msgctxt ""
@@ -97,6 +133,15 @@ msgctxt ""
msgid "Link Frames"
msgstr ""
+#. HBFD2
+#: 03210000.xhp
+msgctxt ""
+"03210000.xhp\n"
+"bm_id641692884203505\n"
+"help.text"
+msgid "<bookmark_value>linking;frames</bookmark_value><bookmark_value>frames;linking</bookmark_value>"
+msgstr ""
+
#. yDnvB
#: 03210000.xhp
msgctxt ""
@@ -124,22 +169,22 @@ msgctxt ""
msgid "Choose <menuitem>Format - Frame and Object - Link Frames</menuitem>."
msgstr ""
-#. VTeFM
+#. HCFmL
#: 03210000.xhp
msgctxt ""
"03210000.xhp\n"
-"par_id531613396047070\n"
+"par_id291692884587358\n"
"help.text"
-msgid "On the <emph>Format</emph> bar, click the <emph>Link Frames</emph> icon."
+msgid "Choose <menuitem>Object - Link Frames</menuitem>."
msgstr ""
-#. BA5Cn
+#. AZn4A
#: 03210000.xhp
msgctxt ""
"03210000.xhp\n"
"par_id3145244\n"
"help.text"
-msgid "<image src=\"cmd/sc_chainframes.png\" id=\"img_id3148771\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148771\">Icon Link Frames</alt></image>"
+msgid "<image src=\"cmd/lc_chainframes.svg\" id=\"img_id3148771\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148771\">Icon Link Frames</alt></image>"
msgstr ""
#. kcF9p
@@ -151,6 +196,15 @@ msgctxt ""
msgid "Link Frames"
msgstr "ክፈፎችን አገናኝ"
+#. WCrQA
+#: 03210000.xhp
+msgctxt ""
+"03210000.xhp\n"
+"par_id131692884364682\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/format_frame.xhp\">Frame and Object menu</link>"
+msgstr ""
+
#. 4BWgB
#: 03220000.xhp
msgctxt ""
@@ -187,14 +241,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:UnhainFrames\">Breaks the link between two frames.</ahelp> You can only break the link that extends from the selected frame to the target frame."
msgstr "<ahelp hid=\".uno:UnhainFrames\">አገናኞችን በሁለት ክፈፎች መሀከል መስበሪያ</ahelp> መስበር ይችላሉ የተስፋፋውን አገናኝ ከተመረጠው ክፈፍ ወደ ኢላማው ክፈፍ"
-#. eDuj2
+#. uhC3o
+#: 03220000.xhp
+msgctxt ""
+"03220000.xhp\n"
+"par_id721613395973296\n"
+"help.text"
+msgid "Choose <menuitem>Format - Frame and Object - Unlink Frames</menuitem>."
+msgstr ""
+
+#. CNJ8S
+#: 03220000.xhp
+msgctxt ""
+"03220000.xhp\n"
+"par_id291692884587358\n"
+"help.text"
+msgid "Choose <menuitem>Object - Unlink Frames</menuitem>."
+msgstr ""
+
+#. WVEpN
#: 03220000.xhp
msgctxt ""
"03220000.xhp\n"
"par_id3155903\n"
"help.text"
-msgid "<image id=\"img_id3149687\" src=\"cmd/sc_unhainframes.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149687\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149687\" src=\"cmd/sc_unhainframes.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149687\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3149687\" src=\"cmd/lc_unhainframes.svg\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149687\">Icon Unlink Frames</alt></image>"
+msgstr ""
#. 9CrhG
#: 03220000.xhp
@@ -205,6 +277,15 @@ msgctxt ""
msgid "Unlink Frames"
msgstr "ክፈፎችን አታገናኝ"
+#. feNor
+#: 03220000.xhp
+msgctxt ""
+"03220000.xhp\n"
+"par_id131692884364682\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/format_frame.xhp\">Frame and Object menu</link>"
+msgstr ""
+
#. ytwBC
#: 04090000.xhp
msgctxt ""
@@ -538,6 +619,24 @@ msgctxt ""
msgid "<ahelp hid=\".uno:RemoveBullets\" visibility=\"visible\">Removes numbering or bullets and list indenting for the current paragraph or selected paragraphs.</ahelp>"
msgstr ""
+#. pqG9Y
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id721692393222724\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - No List</menuitem>."
+msgstr ""
+
+#. iojYx
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id461692393262366\n"
+"help.text"
+msgid "Choose <menuitem>Lists - No List</menuitem>."
+msgstr ""
+
#. LDHCy
#: 06040000.xhp
msgctxt ""
@@ -556,6 +655,24 @@ msgctxt ""
msgid "No List"
msgstr ""
+#. ERJEQ
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id281692392523986\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift + F12</keycode>"
+msgstr ""
+
+#. mCxVk
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id231692393562403\n"
+"help.text"
+msgid "On the <menuitem>Paragraph</menuitem> deck of the <menuitem>Properties</menuitem> panel, click on <menuitem>No List</menuitem>."
+msgstr ""
+
#. 5FX23
#: 06040000.xhp
msgctxt ""
@@ -583,13 +700,40 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06070000.xhp\">Demote Outline Level with Subpoints</link>"
msgstr ""
-#. 86XHt
+#. bhmAE
#: 06070000.xhp
msgctxt ""
"06070000.xhp\n"
"par_id3145241\n"
"help.text"
-msgid "<ahelp hid=\".uno:DecrementSubLevels\">Demotes the list of a list paragraph where the cursor is located and its subpoints to the next list level.</ahelp> Multiple list paragraphs can be selected. Demotes the outline level of a numbered heading where the cursor is located and all its subheadings to the next outline level. This command is active only when the cursor is positioned in a list paragraph or a numbered heading."
+msgid "<ahelp hid=\".uno:DecrementSubLevels\">Demotes the list of a list paragraph where the cursor is located and its subpoints to the next list level.</ahelp>"
+msgstr ""
+
+#. iB5KA
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id251692405745079\n"
+"help.text"
+msgid "Multiple list paragraphs can be selected. Demotes the outline level of a numbered heading where the cursor is located and all its subheadings to the next outline level. This command is active only when the cursor is positioned in a list paragraph or a numbered heading."
+msgstr ""
+
+#. dJ7bw
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id31692405388098\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Demote Outline Level with Subpoints</menuitem>."
+msgstr ""
+
+#. BzDr8
+#: 06070000.xhp
+msgctxt ""
+"06070000.xhp\n"
+"par_id461692442690499\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, select <menuitem>Demote Outline Level with Subpoints</menuitem>."
msgstr ""
#. EH6kY
@@ -628,13 +772,40 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06080000.xhp\">Promote Outline Level With Subpoints</link>"
msgstr ""
-#. F6uVG
+#. 9zBPD
#: 06080000.xhp
msgctxt ""
"06080000.xhp\n"
"par_id3151189\n"
"help.text"
-msgid "<ahelp hid=\".uno:IncrementSubLevels\">Promotes the list level of a list paragraph where the cursor is located and its subpoints to the next list level.</ahelp> Multiple list paragraphs can be selected. Promotes the outline level of a numbered heading where the cursor is located and all its subheadings to the next outline level. This command is active only when the cursor is positioned in a list paragraph or numbered heading."
+msgid "<ahelp hid=\".uno:IncrementSubLevels\">Promotes the list level of a list paragraph where the cursor is located and its subpoints to the next list level.</ahelp>"
+msgstr ""
+
+#. vYMtL
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id201692405803109\n"
+"help.text"
+msgid "Multiple list paragraphs can be selected. Promotes the outline level of a numbered heading where the cursor is located and all its subheadings to the next outline level. This command is active only when the cursor is positioned in a list paragraph or numbered heading."
+msgstr ""
+
+#. rEh5B
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id31692405388098\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Promote Outline Level with Subpoints</menuitem>."
+msgstr ""
+
+#. J8FTE
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"par_id481692443072652\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, select <menuitem>Promote Outline Level with Subpoints</menuitem>."
msgstr ""
#. 98iKX
@@ -682,14 +853,32 @@ msgctxt ""
msgid "<ahelp hid=\".uno:InsertNeutralParagraph\">Inserts a paragraph without numbering. The existing numbering will not be affected.</ahelp>"
msgstr "<ahelp hid=\".uno:InsertNeutralParagraph\">አንቀጽ ያለ ቁጥር መስጫ ማስገቢያ ፡ በ ነበረው ቁጥር መስጫ ላይ ምንም ተፅእኖ አያመጣም</ahelp>"
-#. L9LqK
+#. e3M8N
+#: 06090000.xhp
+msgctxt ""
+"06090000.xhp\n"
+"par_id281692411921814\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Insert Unnumbered Entry</menuitem>."
+msgstr ""
+
+#. eLoXL
+#: 06090000.xhp
+msgctxt ""
+"06090000.xhp\n"
+"par_id721692412551042\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Insert Unnumbered Entry</menuitem>."
+msgstr ""
+
+#. r9pA6
#: 06090000.xhp
msgctxt ""
"06090000.xhp\n"
"par_id3156377\n"
"help.text"
-msgid "<image id=\"img_id3156384\" src=\"cmd/sc_insertneutralparagraph.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156384\">Icon</alt></image>"
-msgstr "<image id=\"img_id3156384\" src=\"cmd/sc_insertneutralparagraph.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156384\">ምልክት</alt></image>"
+msgid "<image id=\"img_id3156384\" src=\"cmd/lc_insertneutralparagraph.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156384\">Icon Insert Unnumbered Entry</alt></image>"
+msgstr ""
#. Ut87w
#: 06090000.xhp
@@ -718,13 +907,31 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06120000.xhp\">Move Item Up with Subpoints</link>"
msgstr ""
-#. 2mzdf
+#. Drxeg
#: 06120000.xhp
msgctxt ""
"06120000.xhp\n"
"par_id3148768\n"
"help.text"
-msgid "<ahelp hid=\".uno:MoveUpSubItems\" visibility=\"visible\">Moves a list paragraph where the cursor is located and its subpoints to before the previous list paragraph with the same list level. Moves a numbered heading where the cursor is located and all its subheadings and text to before the previous heading at the same outline level.</ahelp> You can also select and move more than one list paragraph or numbered heading. This command is only active when the cursor is positioned within a list paragraph or numbered heading."
+msgid "<ahelp hid=\".uno:MoveUpSubItems\" visibility=\"visible\">Moves a list paragraph where the cursor is located and its subpoints to before the previous list paragraph with the same list level.</ahelp>"
+msgstr ""
+
+#. bfuN5
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id831692410867343\n"
+"help.text"
+msgid "Moves a numbered heading where the cursor is located and all its subheadings and text to before the previous heading at the same outline level.You can also select and move more than one list paragraph or numbered heading. This command is only active when the cursor is positioned within a list paragraph or numbered heading."
+msgstr ""
+
+#. GRMNU
+#: 06120000.xhp
+msgctxt ""
+"06120000.xhp\n"
+"par_id41692411187803\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Item Up with Subpoints</menuitem>."
msgstr ""
#. KVXUP
@@ -763,13 +970,31 @@ msgctxt ""
msgid "<link href=\"text/swriter/02/06130000.xhp\">Move Item Down with Subpoints</link>"
msgstr ""
-#. D8UNN
+#. Re8MT
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
"par_id3148770\n"
"help.text"
-msgid "<ahelp hid=\".uno:MoveDownSubItems\" visibility=\"visible\">Moves a list paragraph where the cursor is located and its subpoints to after the following list paragraph with the same list level. Moves a numbered heading where the cursor is located and all its subheadings and text to after the following heading at the same outline level.</ahelp> You can also select and move more than one list paragraph or numbered heading. This command is only active when the cursor is positioned in a list paragraph or numbered heading."
+msgid "<ahelp hid=\".uno:MoveDownSubItems\" visibility=\"visible\">Moves a list paragraph where the cursor is located and its subpoints to after the following list paragraph with the same list level</ahelp>."
+msgstr ""
+
+#. jDBCt
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id791692411364377\n"
+"help.text"
+msgid "Moves a numbered heading where the cursor is located and all its subheadings and text to after the following heading at the same outline level. You can also select and move more than one list paragraph or numbered heading. This command is only active when the cursor is positioned in a list paragraph or numbered heading."
+msgstr ""
+
+#. wXwFf
+#: 06130000.xhp
+msgctxt ""
+"06130000.xhp\n"
+"par_id41692411187803\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Move Item Down with Subpoints</menuitem>."
msgstr ""
#. JX6PL
@@ -835,22 +1060,22 @@ msgctxt ""
msgid "Place cursor in a list paragraph, right-click and choose <menuitem>List - Restart Numbering</menuitem>."
msgstr ""
-#. bahpE
+#. CDQCT
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
-"par_id351616370727010\n"
+"par_id721692412551042\n"
"help.text"
-msgid "On <link href=\"text/shared/01/06050000.xhp\"><emph>Bullets and Numbering</emph></link> bar, click"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Restart Numbering</menuitem>."
msgstr ""
-#. SLjuC
+#. rFHDh
#: 06140000.xhp
msgctxt ""
"06140000.xhp\n"
"par_id3145082\n"
"help.text"
-msgid "<image src=\"cmd/sc_numberingstart.png\" id=\"img_id3145089\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145089\">Icon Restart Numbering</alt></image>"
+msgid "<image src=\"cmd/lc_numberingstart.svg\" id=\"img_id3145089\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145089\">Icon Restart Numbering</alt></image>"
msgstr ""
#. dPfnv
@@ -880,6 +1105,186 @@ msgctxt ""
msgid "To restart numbering with a number greater than 1, right-click in the paragraph where you want to restart numbering, choose <menuitem>Paragraph - Paragraph - </menuitem><link href=\"text/swriter/01/05030800.xhp\">Outline & List</link> tab, select <menuitem>Restart numbering at this paragraph</menuitem> and enter the start number in <menuitem>Start with</menuitem>."
msgstr ""
+#. VFHMp
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. Fz5XL
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id631692413485145\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/02/06150000.xhp\">Add to List</link></variable>"
+msgstr ""
+
+#. dAS6b
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id281692413485148\n"
+"help.text"
+msgid "Adds the current paragraph or selected paragraphs to the previous list."
+msgstr ""
+
+#. jSMMb
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id731692414076418\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - Add to List</menuitem>."
+msgstr ""
+
+#. eACCg
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id731692414112727\n"
+"help.text"
+msgid "Choose <menuitem>List - Add to List</menuitem>."
+msgstr ""
+
+#. jzkE3
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id791692414067336\n"
+"help.text"
+msgid "On the <menuitem>Home</menuitem> menu of the <menuitem>Home</menuitem> tab, choose <menuitem>Add to List</menuitem>."
+msgstr ""
+
+#. A2GKo
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id631692413915537\n"
+"help.text"
+msgid "<image src=\"cmd/lc_continuenumbering.svg\" id=\"img_id731692413915537\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661692413915537\">Icon Add to List</alt></image>"
+msgstr ""
+
+#. 9nP4D
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id161692413915538\n"
+"help.text"
+msgid "Add to List"
+msgstr ""
+
+#. WdZ4x
+#: 06160000.xhp
+msgctxt ""
+"06160000.xhp\n"
+"tit\n"
+"help.text"
+msgid "To Next Paragraph in Level"
+msgstr ""
+
+#. xRiUW
+#: 06160000.xhp
+msgctxt ""
+"06160000.xhp\n"
+"hd_id151692414721676\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/02/06160000.xhp\">To Next Paragraph in Level</link></variable>"
+msgstr ""
+
+#. pMUaV
+#: 06160000.xhp
+msgctxt ""
+"06160000.xhp\n"
+"par_id831692414721679\n"
+"help.text"
+msgid "Jumps to the next paragraph with the same list level."
+msgstr ""
+
+#. HgMfm
+#: 06160000.xhp
+msgctxt ""
+"06160000.xhp\n"
+"par_id421692415108218\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - To Next Paragraph in Level</menuitem>."
+msgstr ""
+
+#. fqAR5
+#: 06160000.xhp
+msgctxt ""
+"06160000.xhp\n"
+"par_id341692414998779\n"
+"help.text"
+msgid "<image src=\"cmd/lc_jumpdownthislevel.svg\" id=\"img_id461692414998780\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451692414998780\">Icon To Next Paragraph in Level</alt></image>"
+msgstr ""
+
+#. VdjxC
+#: 06160000.xhp
+msgctxt ""
+"06160000.xhp\n"
+"par_id261692414998781\n"
+"help.text"
+msgid "To Next Paragraph in Level"
+msgstr ""
+
+#. BHkM2
+#: 06170000.xhp
+msgctxt ""
+"06170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "To Previous Paragraph in Level"
+msgstr ""
+
+#. Nf6Rh
+#: 06170000.xhp
+msgctxt ""
+"06170000.xhp\n"
+"hd_id151692414721676\n"
+"help.text"
+msgid "<variable id=\"h1\"><link href=\"text/swriter/02/06170000.xhp\">To Previous Paragraph in Level</link></variable>"
+msgstr ""
+
+#. 9KUj5
+#: 06170000.xhp
+msgctxt ""
+"06170000.xhp\n"
+"par_id831692414721679\n"
+"help.text"
+msgid "Jumps to the previous paragraph with the same list level."
+msgstr ""
+
+#. CuFaZ
+#: 06170000.xhp
+msgctxt ""
+"06170000.xhp\n"
+"par_id421692415108218\n"
+"help.text"
+msgid "Choose <menuitem>Format - Lists - To Previous Paragraph in Level</menuitem>."
+msgstr ""
+
+#. kBjdE
+#: 06170000.xhp
+msgctxt ""
+"06170000.xhp\n"
+"par_id341692414998779\n"
+"help.text"
+msgid "<image src=\"cmd/lc_jumpupthislevel.svg\" id=\"img_id461692414998780\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451692414998780\">Icon To Previous Paragraph in Level</alt></image>"
+msgstr ""
+
+#. n3g35
+#: 06170000.xhp
+msgctxt ""
+"06170000.xhp\n"
+"par_id261692414998781\n"
+"help.text"
+msgid "To Previous Paragraph in Level"
+msgstr ""
+
#. qCdhk
#: 08010000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/04.po b/source/am/helpcontent2/source/text/swriter/04.po
index b9df877218e..8a432bf7650 100644
--- a/source/am/helpcontent2/source/text/swriter/04.po
+++ b/source/am/helpcontent2/source/text/swriter/04.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: 2023-06-19 12:46+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2017-11-05 18:10+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1402,14 +1402,14 @@ msgctxt ""
msgid "Go to beginning of line"
msgstr "ወደ መስመሩ መጀመሪያ መሄጃ"
-#. FYZDD
+#. tpy6X
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3154531\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Left</caseinline><defaultinline>Home</defaultinline></switchinline>+Shift"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+ቀስት ወደ ግራ</caseinline><defaultinline>ቤት</defaultinline></switchinline>+Shift"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Left</caseinline><defaultinline>Shift+Home</defaultinline></switchinline>"
+msgstr ""
#. MyZhF
#: 01020000.xhp
@@ -1438,14 +1438,14 @@ msgctxt ""
msgid "Go to end of line"
msgstr "ወደ መስመሩ መጨረሻ መሄጃ"
-#. EzStS
+#. EgTF5
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3151005\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Right</caseinline><defaultinline>End</defaultinline></switchinline>+Shift"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+ቀስት ወደ ቀኝ</caseinline><defaultinline>መጨረሻ</defaultinline></switchinline>+Shift"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Right</caseinline><defaultinline>Shift+End</defaultinline></switchinline>"
+msgstr ""
#. qCDwe
#: 01020000.xhp
@@ -1474,14 +1474,14 @@ msgctxt ""
msgid "Go to start of document"
msgstr "ወደ ሰነዱ መጀመሪያ መሄጃ"
-#. eTwJd
+#. o4KnD
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3151030\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Up</caseinline><defaultinline>Ctrl+Home</defaultinline></switchinline>+Shift"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+ቀስት ወደ ላይ</caseinline><defaultinline>Ctrl+Home</defaultinline></switchinline>+Shift"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Up</caseinline><defaultinline>Ctrl+Shift+Home</defaultinline></switchinline>"
+msgstr ""
#. Soi4q
#: 01020000.xhp
@@ -1510,14 +1510,14 @@ msgctxt ""
msgid "Go to end of document"
msgstr "ወደ ሰነዱ መጨረሻ መሄጃ"
-#. fSosH
+#. FJCC4
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3149750\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Arrow Down</caseinline><defaultinline>Ctrl+End</defaultinline></switchinline>+Shift"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+ቀስት ወደ ታች</caseinline><defaultinline>Ctrl+መጨረሻ</defaultinline></switchinline>+Shift"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Down</caseinline><defaultinline>Ctrl+Shift+End</defaultinline></switchinline>"
+msgstr ""
#. HD7Wn
#: 01020000.xhp
@@ -1699,14 +1699,14 @@ msgctxt ""
msgid "In a list: delete an empty paragraph in front of the current paragraph"
msgstr "ከ ዝርዝር ውስጥ: ከ አሁኑ አንቀጽ በፊት ያለውን ባዶ አንቀጽ ማጥፊያ"
-#. ghM3E
+#. DnfqW
#: 01020000.xhp
msgctxt ""
"01020000.xhp\n"
"hd_id3151124\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Fn+Backspace</caseinline><defaultinline>Ctrl+Del</defaultinline></switchinline>+Shift"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ+Fn+የ ኋሊት ደምሳሽ</caseinline><defaultinline>Ctrl+Del</defaultinline></switchinline>+Shift"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Fn+Backspace</caseinline><defaultinline>Ctrl+Shift+Del</defaultinline></switchinline>"
+msgstr ""
#. CFwv6
#: 01020000.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 76c0c21539f..cd8493e0bc6 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.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: 2023-07-03 14:58+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10627,13 +10627,13 @@ msgctxt ""
msgid "Turning Number Recognition On or Off in Tables"
msgstr "በ ሰንጠረዥ ውስጥ ቁጥር መለያ ማብሪያ ወይንም ማጥፊያ"
-#. LDFFL
+#. vhubg
#: number_date_conv.xhp
msgctxt ""
"number_date_conv.xhp\n"
"bm_id3156383\n"
"help.text"
-msgid "<bookmark_value>numbers; automatic recognition in text tables</bookmark_value> <bookmark_value>tables; number recognition</bookmark_value> <bookmark_value>tables; date formatting</bookmark_value> <bookmark_value>table cells; date formatting</bookmark_value> <bookmark_value>dates;formatting automatically in tables</bookmark_value> <bookmark_value>recognition;numbers</bookmark_value>"
+msgid "<bookmark_value>number formats; recognition in text tables</bookmark_value><bookmark_value>table; recognizing number formats</bookmark_value><bookmark_value>numbers; automatic recognition in text tables</bookmark_value><bookmark_value>tables; date formatting</bookmark_value><bookmark_value>table cells; date formatting</bookmark_value><bookmark_value>dates;formatting automatically in tables</bookmark_value><bookmark_value>recognition;numbers</bookmark_value>"
msgstr ""
#. HRCAc
@@ -11887,13 +11887,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "የ <emph>ራሱ በራሱ ገጽ መጨረሻ</emph> የሚታየው በ ገጹ መጨረሻ ላይ ነው: የ ገጹ መጨረሻ የተለየ \"የሚቀጥለው ዘዴ\" ሲኖረው"
-#. fcBUG
+#. UF4pc
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the \"First Page\" page style has \"Default Page Style\" as the next style. To see this, you may press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <item type=\"menuitem\">Styles</item> window, click the <item type=\"menuitem\">Page Styles</item> icon, right-click the \"First Page\" entry. Choose <item type=\"menuitem\">Modify</item> from the context menu. On the <item type=\"menuitem\">Organizer</item> tab, you can see the \"Next style\"."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12427,32 +12427,32 @@ msgctxt ""
msgid "To insert a \"page break with style\" at the cursor position, choose <item type=\"menuitem\">Insert - Manual Break</item>, select a <emph>Style</emph> name from the listbox, and click OK."
msgstr "ለማስገባት የ\"ገጽ መጨረሻ ዘዴ\" መጠቆሚያው ባለበት ቦታ: ይምረጡ <item type=\"menuitem\"> ማስገቢያ- በ እጅ መጨረሻ </item> ይምረጡ የ <emph> ዘዴ </emph> ስም ከ ዝርዝር ሳጥን ውስጥ እና ይጫኑ እሺ"
-#. FZrzw
+#. xLXR7
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id9935911\n"
"help.text"
-msgid "To apply the \"page break with style\" property to the current paragraph, choose <item type=\"menuitem\">Format - Paragraph - Text Flow</item>. In the Breaks area, activate <emph>Enable</emph> and <emph>With Page Style</emph>. Select a page style name from the listbox."
-msgstr "የ \"ገጽ መጨረሻ ዘዴ\" ባህሪ ወደ አሁኑ አንቀጽ ውስጥ ለ መፈጸም: ይምረጡ <item type=\"menuitem\"> አቀራረብ - አንቀጽ - የ ጽሁፍ ፍሰት </item> በ መጨረሻው ቦታ ውስጥ: ያስጀምሩ <emph> ማስቻያ </emph> እና <emph> ከ ገጽ ዘዴ ውስጥ </emph> ይምረጡ የ ገጽ ዘዴ ስም ከ ዝርዝር ሳጥን ውስጥ"
+msgid "To apply the “page break with style” property to the current paragraph, choose <menuitem>Format - Paragraph - Text Flow</menuitem>. In the Breaks area, activate <menuitem>Insert</menuitem> and <menuitem>With Page Style</menuitem>. Select a page style name from the listbox."
+msgstr ""
-#. 7vS2R
+#. hf7GD
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id4753868\n"
"help.text"
-msgid "To apply the \"page break with style\" property to the current paragraph style, right-click the current paragraph. Choose <item type=\"menuitem\">Edit Paragraph Style</item> from the context menu. Click the <emph>Text Flow</emph> tab. In the Breaks area, activate <emph>Enable</emph> and <emph>With Page Style</emph>. Select a page style name from the listbox."
-msgstr "ለ መፈጸም የ \"ገጽ መጨረሻ ከ ዘዴ\" ጋር ውስጥ ባህሪዎች ለ አሁኑ የ አንቀጽ ዘዴ: በ ቀኝ-ይጫኑ በ አሁኑ አንቀጽ ላይ: እና ይምረጡ <item type=\"menuitem\"> የ አንቀጽ ዘዴ ማረሚያ </item> ከ አገባብ ዝርዝር ውስጥ: ይጫኑ የ <emph> ጽሁፍ ፍሰት </emph> tab ውስጥ: በ መጨረሻው ቦታ በኩል: ያስጀምሩ <emph> ማስቻያ </emph> እና <emph> ከ ገጽ ዘዴ </emph> ውስጥ ይምረጡ የ ገጽ ዘዴ ስም ከ ዝርዝር ሳጥን ውስጥ"
+msgid "To apply the “page break with style” property to the current paragraph style, right-click the current paragraph. Choose <menuitem>Edit Paragraph Style</menuitem> from the context menu. Click the <menuitem>Text Flow</menuitem> tab. In the Breaks area, activate <menuitem>Insert</menuitem> and <menuitem>With Page Style</menuitem>. Select a page style name from the listbox."
+msgstr ""
-#. AtnkB
+#. fJKrJ
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id4744407\n"
"help.text"
-msgid "To apply the \"page break with style\" property to an arbitrary paragraph style, choose <item type=\"menuitem\">View - Styles</item>. Click the <emph>Paragraph Styles</emph> icon. Right-click the name of the paragraph style you want to modify and choose <emph>Modify</emph>. Click the <emph>Text Flow</emph> tab. In the Breaks area, activate <emph>Enable</emph> and <emph>With Page Style</emph>. Select a page style name from the listbox."
-msgstr "ለ መፈጸም የ \"ገጽ መጨረሻ በ ዘዴ\" ውስጥ ባህሪዎች ለ አሻሚ የ አንቀጽ ዘዴ: ይምረጡ <item type=\"menuitem\"> መመልከቻ - ዘዴዎች </item> ይጫኑ የ <emph> አንቀጽ ዘዴዎች </emph> ምልክት: በ ቀኝ-ይጫኑ በ ስሙ ላይ በ አንቀጽ ዘዴ እርስዎ ማሻሻል በሚፈልጉበት ላይ እና ይምረጡ <emph> ማሻሻያ </emph> ይጫኑ የ <emph> ጽሁፍ ፍሰት </emph> tab. በ መጨረሻው ቦታ በኩል: ያስጀምሩ <emph> ማስቻያ </emph> እና <emph> ከ ገጽ ዘዴ </emph> ውስጥ ይምረጡ የ ገጽ ዘዴ ስም ከ ዝርዝር ሳጥን ውስጥ"
+msgid "To apply the “page break with style” property to an arbitrary paragraph style, choose <menuitem>View - Styles</menuitem>. Click the <menuitem>Paragraph Styles</menuitem> icon. Right-click the name of the paragraph style you want to modify and choose <menuitem>Edit Style</menuitem>. Click the <menuitem>Text Flow</menuitem> tab. In the Breaks area, activate <menuitem>Insert</menuitem> and <menuitem>With Page Style</menuitem>. Select a page style name from the listbox."
+msgstr ""
#. xCQW9
#: pagestyles.xhp
@@ -16819,14 +16819,14 @@ msgctxt ""
msgid "Repeating a Table Header on a New Page"
msgstr "የ ሰንጠረዥ ራስጌ በ አዲስ ገጽ መድገሚያ"
-#. PtFEm
+#. E2BEG
#: table_repeat_multiple_headers.xhp
msgctxt ""
"table_repeat_multiple_headers.xhp\n"
"bm_id3155870\n"
"help.text"
-msgid "<bookmark_value>tables; heading repetition after page breaks</bookmark_value> <bookmark_value>repeating; table headings after page breaks</bookmark_value> <bookmark_value>headings; repeating in tables</bookmark_value> <bookmark_value>multi-page tables</bookmark_value>"
-msgstr "<bookmark_value>ሰንጠረዥ: ራስጌ መድገሚያ ከ ገጽ መጨረሻ በኋላ</bookmark_value> <bookmark_value>መድገሚያ: ሰንጠረዥ ራስጌ መድገሚያ ከ ገጽ መጨረሻ በኋላ</bookmark_value> <bookmark_value>ራስጌ: መድገሚያ በ ሰንጠረዥ</bookmark_value> <bookmark_value>በርካታ-ገጽ ሰንጠረዥ</bookmark_value>"
+msgid "<bookmark_value>multi-page tables</bookmark_value>"
+msgstr ""
#. rR3i4
#: table_repeat_multiple_headers.xhp
@@ -18691,6 +18691,321 @@ msgctxt ""
msgid "$[officename] automatically updates the contents of the inserted section whenever the source document is changed. To manually update the contents of the section, choose <emph>Tools - Update - Update All</emph>."
msgstr "$[officename] ራሱ በራሱ የ ገቡትን ይዞታዎች ክፍል ማሻሻያ የ ሰነዱ ምንጭ በሚቀየር ጊዜ: በ እጅ ለ ማሻሻል የ ክፍሉን ይዞታዎች: ይምረጡ <emph> መሳሪያዎች - ማሻሻያ - ሁሉንም ማሻሻያ </emph>"
+#. wDniB
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using title pages in your document"
+msgstr ""
+
+#. fHh7r
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"bm_id300920161717389897\n"
+"help.text"
+msgid "<bookmark_value>title pages;adding</bookmark_value><bookmark_value>title pages;first page style</bookmark_value><bookmark_value>title pages;modifying</bookmark_value><bookmark_value>title pages;inserting</bookmark_value>"
+msgstr ""
+
+#. J3U7u
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"hd_id300920161429137211\n"
+"help.text"
+msgid "<variable id=\"usingtitlepage\"><link href=\"text/swriter/guide/title_page.xhp\">Using Title Page</link></variable>"
+msgstr ""
+
+#. DPuoT
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161429347135\n"
+"help.text"
+msgid "Title pages are pages at the beginning of the document that lists the publication information, such as the title of the publication, the name of the author etc. These pages have a different layout than the pages of the document body, because they may not have page numbering, sometimes a different heading and footer and even different margins settings or background."
+msgstr ""
+
+#. r7CtS
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443298079\n"
+"help.text"
+msgid "Many documents, such as letters and reports, have a first page that is different from the other pages in the document. For example, the first page of a letterhead typically has a different header or the first page of a report might have no header or footer, while the other pages do. This is simple to achieve with %PRODUCTNAME Writer."
+msgstr ""
+
+#. evMYE
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443298274\n"
+"help.text"
+msgid "Page header and footer, numbering, margins and orientation are some of the properties that belongs to page styles. %PRODUCTNAME Writer let your to insert a blank title page at any point of your document, or format an existing page like a title page, by inserting a page break followed by a page style of your choice or by changing the page style at cursor position."
+msgstr ""
+
+#. vCmHm
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443293374\n"
+"help.text"
+msgid "Using the Default (or any other) page style for your document, you can add a header or footer as you wish to the first page by deselecting the <item type=\"menuitem\">Same content on first page</item> option on the header/footer tabs in the <emph>Page Style</emph> dialog, and then adding the header or footer. You can then add a different header or footer to the other pages of the document."
+msgstr ""
+
+#. rABG8
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"hd_id300920161443299618\n"
+"help.text"
+msgid "To convert the first page of the document into a title page"
+msgstr ""
+
+#. CfWoy
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443308966\n"
+"help.text"
+msgid "Place the cursor on the first page,"
+msgstr ""
+
+#. F4jSV
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443301816\n"
+"help.text"
+msgid "From the Menu Bar, choose <menuitem>Format - Title page</menuitem>"
+msgstr ""
+
+#. 4rBjE
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443304794\n"
+"help.text"
+msgid "Select <emph>Converting existing pages to title pages</emph>"
+msgstr ""
+
+#. 62FTe
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443301533\n"
+"help.text"
+msgid "Select the style of the title page in the <emph>Edit Page Properties</emph> area"
+msgstr ""
+
+#. 3AEdA
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161448355764\n"
+"help.text"
+msgid "By default, %PRODUCTNAME selects the <emph>First Page</emph> page style."
+msgstr ""
+
+#. TWkab
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443315175\n"
+"help.text"
+msgid "Set the page numbering reset options."
+msgstr ""
+
+#. JfCqa
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443316916\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr ""
+
+#. kikFx
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443314375\n"
+"help.text"
+msgid "This will change the current page style to <emph>First Page</emph> and the following pages will have the <emph>Default Style</emph>."
+msgstr ""
+
+#. CjHAF
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"hd_id300920161443317859\n"
+"help.text"
+msgid "To insert a title page anywhere in the document"
+msgstr ""
+
+#. yq7tG
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443317032\n"
+"help.text"
+msgid "Place the cursor where you want to insert a new title page."
+msgstr ""
+
+#. cw6xS
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443315460\n"
+"help.text"
+msgid "From the menu bar select <menuitem>Format - Title page</menuitem>."
+msgstr ""
+
+#. beeGV
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443318611\n"
+"help.text"
+msgid "Select <emph>Insert new title pages</emph>"
+msgstr ""
+
+#. vCAEB
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443311657\n"
+"help.text"
+msgid "Set number of title pages to add and"
+msgstr ""
+
+#. fj4ur
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443311852\n"
+"help.text"
+msgid "Set the title page location by setting its page number in the spin box."
+msgstr ""
+
+#. KreVo
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443329307\n"
+"help.text"
+msgid "Set the page numbering reset options."
+msgstr ""
+
+#. WmLNB
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443327672\n"
+"help.text"
+msgid "Click <emph>OK</emph>"
+msgstr ""
+
+#. Y2AoA
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443324067\n"
+"help.text"
+msgid "This will insert a page break and change the current page style to <emph>First Page</emph>. The following pages will have the <emph>Default Style</emph> page style."
+msgstr ""
+
+#. CDPuF
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"hd_id300920161443323335\n"
+"help.text"
+msgid "To delete a title page:"
+msgstr ""
+
+#. 9WgEN
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id30092016144332559\n"
+"help.text"
+msgid "You cannot delete a title page. You must change its page style format from <emph>First Page</emph> to whatever other page style you wish."
+msgstr ""
+
+#. b66mA
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443329339\n"
+"help.text"
+msgid "Place the cursor in the page you want to change the style"
+msgstr ""
+
+#. dnB6J
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id30092016144332353\n"
+"help.text"
+msgid "From the Sidebar Deck, select <emph>Sidebar Settings - Styles</emph>."
+msgstr ""
+
+#. 33Fxq
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443329078\n"
+"help.text"
+msgid "From the <emph>Styles</emph>, select button <emph>Page Styles</emph>."
+msgstr ""
+
+#. urhNH
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443339937\n"
+"help.text"
+msgid "From the Style list, select the page style you want to apply."
+msgstr ""
+
+#. MpEK3
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443337801\n"
+"help.text"
+msgid "Double click on the page style to apply."
+msgstr ""
+
+#. xZ5xm
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161443378384\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05040200.xhp\">Format page</link>,"
+msgstr ""
+
+#. HsXGQ
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161915582003\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/page_break.xhp\">Page break</link>,"
+msgstr ""
+
+#. NUvyD
+#: title_page.xhp
+msgctxt ""
+"title_page.xhp\n"
+"par_id300920161915587772\n"
+"help.text"
+msgid "<link href=\"text/swriter/guide/change_header.xhp\">Creating a Page Style Based on the Current Page</link>."
+msgstr ""
+
#. 5PYCw
#: using_hyphen.xhp
msgctxt ""
@@ -18718,14 +19033,23 @@ msgctxt ""
msgid "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\">Hyphenation</link></variable>"
msgstr "<variable id=\"using_hyphen\"><link href=\"text/swriter/guide/using_hyphen.xhp\">ጭረት</link></variable>"
-#. 9Z4i3
+#. FGgYr
#: using_hyphen.xhp
msgctxt ""
"using_hyphen.xhp\n"
"par_id3155918\n"
"help.text"
-msgid "By default, $[officename] moves words that do not fit on a line to the next line. If you want, you can use automatic or manual hyphenation to avoid this behavior:"
-msgstr "በ ነባር: $[officename] ቃላቶችን ማንቀሳቀሻ በ መስመሩ ልክ የማይሆኑትን ወደሚቀጥለው መስመር: እርስዎ ከፈለጉ: ራሱ በራሱ ወይንም በ እጅ ጭረት ማድረግ ይችላሉ ይህን ባህሪ ለማስወገድ:"
+msgid "By default, $[officename] moves words that do not fit on a line to the next line. If you want, you can use automatic or manual hyphenation to avoid this behavior."
+msgstr ""
+
+#. CUiD3
+#: using_hyphen.xhp
+msgctxt ""
+"using_hyphen.xhp\n"
+"par_id431690357645045\n"
+"help.text"
+msgid "Hyphenation rules differ between languages. To automatically guess where a word can be hyphenated, you need to have the relevant extension installed. If the rules are missing, an error message or banner will be displayed.<br/> Hyphenation rules are often bundled with dictionaries and installed with $[officename] depending on the language you picked. If they are missing, you can find relevant extensions by searching for \"hyphenation\" on the <link href=\"https://extensions.libreoffice.org/\">Extensions website</link>.<br/> Learn more about <link href=\"https://wiki.documentfoundation.org/Language/Support\">language support</link> on our wiki."
+msgstr ""
#. 2xYjC
#: using_hyphen.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/menu.po b/source/am/helpcontent2/source/text/swriter/menu.po
index 105d8583ab0..082d3f9e2be 100644
--- a/source/am/helpcontent2/source/text/swriter/menu.po
+++ b/source/am/helpcontent2/source/text/swriter/menu.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: 2023-06-07 13:56+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2016-05-30 15:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -331,14 +331,14 @@ msgctxt ""
msgid "Frame"
msgstr "ክፈፍ"
-#. BwzFp
+#. k8vhB
#: insert_frame.xhp
msgctxt ""
"insert_frame.xhp\n"
"hd_id030720160601535384\n"
"help.text"
-msgid "<link href=\"text/swriter/menu/insert_frame.xhp\">Frame</link>"
-msgstr "<link href=\"text/swriter/menu/insert_frame.xhp\">ክፈፍ</link>"
+msgid "<link href=\"text/swriter/menu/insert_frame.xhp\">Insert Frame</link>"
+msgstr ""
#. LZL3Y
#: insert_frame.xhp
@@ -349,6 +349,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu contains both interactive and non-interactive means of inserting a frame.</ahelp>"
msgstr "<ahelp hid=\".\">ይህ ንዑስ ዝርዝር የያዘው ሁለቱንም ግንኙነት ያለው እና ግንኙነት-የሌለው የ ክፈፍ ማስገቢያ ዘዴ ነው </ahelp>"
+#. 2924M
+#: insert_frame.xhp
+msgctxt ""
+"insert_frame.xhp\n"
+"par_id811689500121312\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Frame</menuitem>."
+msgstr ""
+
#. Hq4D6
#: insert_frame.xhp
msgctxt ""
@@ -403,6 +412,15 @@ msgctxt ""
msgid "<ahelp hid=\".\">This submenu includes commands to add and remove page headers and footers.</ahelp>"
msgstr "<ahelp hid=\".\">ይህ ንዑስ ዝርዝር ትእዛዞች ያካትታል ለ መጨመር ወይንም ለ ማስወገድ የ ገጽ ራስጌዎች እና የ ገጽ ግርጌዎች </ahelp>"
+#. tg8kt
+#: insert_header_footer.xhp
+msgctxt ""
+"insert_header_footer.xhp\n"
+"par_id421690025310002\n"
+"help.text"
+msgid "Choose <menuitem>Insert - Header and Footer</menuitem>."
+msgstr ""
+
#. cSY5i
#: submenu_more_breaks.xhp
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index f01b6de1b61..ef0d7f1700c 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.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: 2023-06-19 12:46+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-09-09 11:26+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/am/>\n"
@@ -24898,16 +24898,6 @@ msgctxt ""
msgid "Toggle Print Preview"
msgstr "የ ማተሚያ ቅድመ እይታ መቀያየሪያ"
-#. RmzBC
-#: GenericCommands.xcu
-msgctxt ""
-"GenericCommands.xcu\n"
-"..GenericCommands.UserInterface.Commands..uno:PrintPreview\n"
-"PopupLabel\n"
-"value.text"
-msgid "Close Preview"
-msgstr "ቅድመ እይታ መዝጊያ"
-
#. F4kBv
#: GenericCommands.xcu
msgctxt ""
@@ -26538,6 +26528,16 @@ msgctxt ""
msgid "Insert Non-br~eaking Hyphen"
msgstr ""
+#. vZYBF
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertHardHyphen\n"
+"ContextLabel\n"
+"value.text"
+msgid "Non-br~eaking Hyphen"
+msgstr ""
+
#. EGU5u
#: GenericCommands.xcu
msgctxt ""
@@ -26548,14 +26548,34 @@ msgctxt ""
msgid "Insert S~oft Hyphen"
msgstr ""
-#. Qnw5x
+#. zBUbq
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertSoftHyphen\n"
+"ContextLabel\n"
+"value.text"
+msgid "S~oft Hyphen"
+msgstr ""
+
+#. YjRxG
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertNonBreakingSpace\n"
"Label\n"
"value.text"
-msgid "Insert ~Non-breaking Space"
+msgid "Insert ~No-break Space"
+msgstr ""
+
+#. fvM74
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertNonBreakingSpace\n"
+"ContextLabel\n"
+"value.text"
+msgid "~No-break Space"
msgstr ""
#. KZXXb
@@ -26568,45 +26588,95 @@ msgctxt ""
msgid "Insert N~arrow No-break Space"
msgstr "ቀ~ጭን ምንም-ያልተሰበረ ክፍተት ማስገቢያ"
-#. txaEk
+#. A2bbg
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertNarrowNobreakSpace\n"
+"ContextLabel\n"
+"value.text"
+msgid "N~arrow No-break Space"
+msgstr ""
+
+#. dzpbk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertZWSP\n"
"Label\n"
"value.text"
-msgid "No-~width Optional Break"
-msgstr "ስፋት-~የለም መጨረሻ በምርጫ"
+msgid "Insert Zero ~Width Space"
+msgstr ""
-#. Gjgjy
+#. hctRg
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertZWSP\n"
+"ContextLabel\n"
+"value.text"
+msgid "Zero ~Width Space"
+msgstr ""
+
+#. jzvxv
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
"Label\n"
"value.text"
+msgid "Insert Word ~Joiner"
+msgstr ""
+
+#. v8vDi
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertWJ\n"
+"ContextLabel\n"
+"value.text"
msgid "Word ~Joiner"
-msgstr "ቃል ~ማጋጠሚያ"
+msgstr ""
-#. UvwGS
+#. vqFmk
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertLRM\n"
"Label\n"
"value.text"
-msgid "~Left-to-right Mark"
-msgstr "ከ ~ግራ-ወደ-ቀኝ ምልክት ማድረጊያ"
+msgid "Insert ~Left-to-Right Mark"
+msgstr ""
+
+#. XPw5G
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertLRM\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Left-to-Right Mark"
+msgstr ""
-#. prtF2
+#. JPsHK
#: GenericCommands.xcu
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:InsertRLM\n"
"Label\n"
"value.text"
-msgid "~Right-to-left Mark"
-msgstr "ከ ~ቀኝ-ወደ-ግራ ምልክት ማድረጊያ"
+msgid "Insert ~Right-to-Left Mark"
+msgstr ""
+
+#. 2qBSw
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:InsertRLM\n"
+"ContextLabel\n"
+"value.text"
+msgid "~Right-to-Left Mark"
+msgstr ""
#. o6CJp
#: GenericCommands.xcu
@@ -30288,15 +30358,15 @@ msgctxt ""
msgid "Insert Table of Contents, Index or Bibliography"
msgstr "የ ሰንጠረዥ ማውጫ: ማውጫ ወይንም ቢብሊዮግራፊ ማስገቢያ"
-#. uTYnH
+#. UEm4k
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertMultiIndex\n"
"ContextLabel\n"
"value.text"
-msgid "Table of Contents, ~Index or Bibliography..."
-msgstr "የ ሰንጠረዥ ማውጫ ~ማውጫ: ወይንም ቢብሊዮግራፊ..."
+msgid "Table of Contents, Index or Bibliography..."
+msgstr ""
#. TuWK6
#: WriterCommands.xcu
@@ -30968,6 +31038,16 @@ msgctxt ""
msgid "Properties"
msgstr ""
+#. ADmHG
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Commands..uno:ContentControlProperties\n"
+"PopupLabel\n"
+"value.text"
+msgid "Content Control Properties"
+msgstr ""
+
#. npNpZ
#: WriterCommands.xcu
msgctxt ""
@@ -32598,15 +32678,15 @@ msgctxt ""
msgid "~Table Properties..."
msgstr "የ ~ሰንጠረዥ ባህሪዎች..."
-#. bBVxV
+#. mmpui
#: WriterCommands.xcu
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FootnoteDialog\n"
"Label\n"
"value.text"
-msgid "~Footnotes and Endnotes..."
-msgstr "የ ~ግርጌ እና መጨረሻ ማስታወሻ..."
+msgid "~Footnote/Endnote Settings..."
+msgstr ""
#. eE5gP
#: WriterCommands.xcu
@@ -36818,6 +36898,16 @@ msgctxt ""
msgid "Open the Style Inspector Deck"
msgstr ""
+#. BChtS
+#: WriterCommands.xcu
+msgctxt ""
+"WriterCommands.xcu\n"
+"..WriterCommands.UserInterface.Popups..uno:SidebarDeck.SwManageChangesDeck\n"
+"Label\n"
+"value.text"
+msgid "Open the Manage Changes Deck"
+msgstr ""
+
#. nDjPh
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 9a6165aa1a3..12facc2055a 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2023-02-01 09:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -25336,895 +25336,895 @@ msgid "No solution was found."
msgstr "ምንም መፍትሄ አልተገኘም"
#. iQSEv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2991
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2970
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
msgstr "_ፋይል"
#. wh523
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3010
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2989
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_እርዳታ"
#. 3iDW7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3065
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3044
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~ፋይል"
#. 6GvMB
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4697
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
#. 5kZRD
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4824
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4803
msgctxt "CalcNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
#. bBEGh
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5371
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5350
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
#. VCk9a
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5853
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5832
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. HnjBi
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5958
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5937
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. vruXQ
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7030
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7009
msgctxt "CalcNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
#. eWinY
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7114
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7093
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. pnWd5
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8391
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8370
msgctxt "CalcNotebookbar|StatisticsMenuButton"
msgid "_Statistics"
msgstr "_ስታትስቲክስ"
#. BiHBE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8442
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8421
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_ዳታ"
#. xzx9j
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8548
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8527
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~ዳታ"
#. CBEHA
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9351
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9330
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
#. 7FXbr
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9436
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9415
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
#. NT37F
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10246
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10225
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. rPdAq
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10331
+#: sc/uiconfig/scalc/ui/notebookbar.ui:10310
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. SAv6Z
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11441
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11420
msgctxt "CalcNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
#. rwprK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11562
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11541
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. EjbzV
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12744
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12723
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
#. iagRv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12851
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12830
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. EgeGL
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13309
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13288
msgctxt "CalcNotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
#. PRmbH
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13600
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13579
msgctxt "CalcNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
#. xTKVv
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13707
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13686
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. cHyKz
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14267
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14246
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. CJ2qx
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14372
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14351
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~ብዙሀን መገናኛ"
#. eQK6A
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14754
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14733
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
#. sCGyG
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14837
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14816
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. 5JVAt
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15645
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15624
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. CCEAK
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15729
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15708
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. DHeyE
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15786
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15765
msgctxt "CalcNotebookbar|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ተ_ጨማሪዎች"
#. 4ZDL7
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15860
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15839
msgctxt "CalcNotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "ተ_ጨማሪዎች"
#. 3Ec6T
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17049
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17028
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. 8HTEk
-#: sc/uiconfig/scalc/ui/notebookbar.ui:17133
+#: sc/uiconfig/scalc/ui/notebookbar.ui:17112
msgctxt "CalcNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
#. AJr3Y
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3025
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3004
msgctxt "notebookbar_compact|FileLabel"
msgid "_File"
msgstr "_ፋይል"
#. PU9ct
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3074
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3053
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~ፋይል"
#. UWfVg
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3538
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6106
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3517
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6085
msgctxt "notebookbar_compact|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "ለ ተመረጡት ክፍሎች ድንበር ይወስኑ"
#. JDRKC
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4580
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4559
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
msgstr "_ዝርዝር"
#. Svdz9
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4632
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4611
msgctxt "notebookbar_compact|CalcLabel"
msgid "~Home"
msgstr "~ቤት"
#. ecBqZ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5128
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5107
msgctxt "notebookbar_compact|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
#. zveKA
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5591
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5570
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. CDXv3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5646
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5625
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. EvytN
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6266
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6245
msgctxt "notebookbar_compact|PageMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
#. TbQMa
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6318
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6297
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
#. QqjZP
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7153
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7132
msgctxt "notebookbar_compact|Statistics"
msgid "_Statistics"
msgstr "_ስታትስቲክስ"
#. GFZNz
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7218
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7197
msgctxt "notebookbar_compact|DataMenuButton"
msgid "_Data"
msgstr "_ዳታ"
#. TCt7E
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7269
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7248
msgctxt "notebookbar_compact|DataLabel"
msgid "~Data"
msgstr "~ዳታ"
#. jYD7j
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7951
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7930
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_ከለሳ"
#. Lbj5B
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8003
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7982
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~ከለሳ"
#. 35kA2
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8670
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8649
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. ZGh8C
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8722
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8701
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10036
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10015
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "ምስ_ል"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10088
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10067
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11458
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11437
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "መ_ሳያ"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11510
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11489
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12461
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12440
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "እቃ"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12513
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12492
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13213
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13192
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_መገናኛ"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13266
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13245
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13825
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13804
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "ማተሚያ"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13877
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13856
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15191
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15170
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15243
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15222
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15322
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15301
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ተ_ጨማሪዎች"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15380
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15359
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "ተ_ጨማሪዎች"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16381
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16360
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16433
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16412
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
#. LL2dj
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3298
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3277
msgctxt "notebookbar_groupedbar_compact|fileb"
msgid "_File"
msgstr "_ፋይል"
#. MR7ZB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3406
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3385
msgctxt "notebookbar_groupedbar_compact|editb"
msgid "_Edit"
msgstr "_ማረሚያ"
#. AXNcR
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3522
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5063
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3501
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5042
msgctxt "notebookbar_groupedbar_compact|paragraphstyleb"
msgid "St_yles"
msgstr "ዘዴ_ዎች"
#. scY66
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3673
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3652
msgctxt "notebookbar_groupedbar_compact|formatb"
msgid "F_ont"
msgstr "ፊ_ደል"
#. LFB3L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3899
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3878
msgctxt "notebookbar_groupedbar_compact|paragraphb"
msgid "_Paragraph"
msgstr "_አንቀጽ"
#. UnsAB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4297
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4276
msgctxt "notebookbar_groupedbar_compact|numberb"
msgid "_Number"
msgstr "_ቁጥር"
#. hBvBa
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4408
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4387
msgctxt "notebookbar_groupedbar_compact|datab"
msgid "_Data"
msgstr "_ዳታ"
#. CMGpS
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4519
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4498
msgctxt "notebookbar_groupedbar_compact|insertb"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. 5wZbP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4630
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4609
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
msgstr "_ከለሳ"
#. Uyv2y
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4741
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4720
msgctxt "notebookbar_groupedbar_compact|viewb"
msgid "_View"
msgstr "_መመልከቻ"
#. bgPuY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4850
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11195
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4829
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11174
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. 5fAr4
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4942
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4921
msgctxt "notebookbar_groupedbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ተ_ጨማሪዎች"
#. T2jYU
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5214
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5193
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
msgstr "ፊ_ደል"
#. jZETF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5438
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5417
msgctxt "notebookbar_groupedbar_compact|paragraphS"
msgid "_Paragraph"
msgstr "_አንቀጽ"
#. 5Wp5j
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5687
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5666
msgctxt "notebookbar_groupedbar_compact|viewS"
msgid "_View"
msgstr "_መመልከቻ"
#. DC7Hv
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5822
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5801
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
msgstr "መ_ሳያ"
#. ncAKi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6247
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7786
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8827
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9430
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10239
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6226
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7765
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8806
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9409
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10218
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. 8pLR3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6522
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6501
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
msgstr "_ቅርጽ"
#. NM63T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6769
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10487
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6748
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10466
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
msgstr "ቡድ_ን"
#. cbMTW
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6892
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:6871
msgctxt "notebookbar_groupedbar_compact|3Db"
msgid "3_D"
msgstr "3_ዲ"
#. BTzDn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7120
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7099
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
msgstr "የ _ፊደል ስራ"
#. PLqyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7231
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8277
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9075
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9679
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10599
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7210
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8256
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9054
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9658
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10578
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
msgstr "_መጋጠሚያ"
#. K6izG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7361
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7340
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "Im_age"
msgstr "ምስ_ል"
#. SEFWn
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8013
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:7992
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "Fi_lter"
msgstr "ማጣ_ሪያ"
#. 5a4zV
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8402
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:8381
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
msgstr "_እቃ"
#. Ghwp6
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9201
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9180
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
msgstr "_መገናኛ"
#. nyHDP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9814
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:9793
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "_Edit"
msgstr "_ማረሚያ"
#. PhCFL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11066
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11045
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
#. RC7F3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11950
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11929
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
msgstr "_ዝርዝር"
#. mBSfG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2601
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2580
msgctxt "notebookbar_groupedbar_full|defaultD"
msgid "Default"
msgstr "ነባር"
#. Z7t2R
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2615
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2594
msgctxt "notebookbar_groupedbar_full|Accent1"
msgid "Accent 1"
msgstr "ማጋነኛ 1"
#. xeEFE
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2623
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2602
msgctxt "notebookbar_groupedbar_full|Accent2"
msgid "Accent 2"
msgstr "ማጋነኛ 2"
#. G3TRo
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2631
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2610
msgctxt "notebookbar_groupedbar_full|Accent3"
msgid "Accent 3"
msgstr "ማጋነኛ 3"
#. QcUKG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2645
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2624
msgctxt "notebookbar_groupedbar_full|Header1"
msgid "Heading 1"
msgstr "ራስጌ 1"
#. 6Ej4G
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2632
msgctxt "notebookbar_groupedbar_full|Header2"
msgid "Heading 2"
msgstr "ራስጌ 2"
#. sqE94
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2667
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2646
msgctxt "notebookbar_groupedbar_full|bad"
msgid "Bad"
msgstr "መጥፎ"
#. 3ibZN
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2654
msgctxt "notebookbar_groupedbar_full|good"
msgid "Good"
msgstr "ጥሩ"
#. DGBbw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2683
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2662
msgctxt "notebookbar_groupedbar_full|neutral"
msgid "Neutral"
msgstr "ገለልተኛ"
#. keb9M
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2691
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2670
msgctxt "notebookbar_groupedbar_full|error"
msgid "Error"
msgstr "ስህተት"
#. WtFbH
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2699
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2678
msgctxt "notebookbar_groupedbar_full|warning"
msgid "Warning"
msgstr "ማስጠንቀቂያ"
#. t9EbD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2713
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2692
msgctxt "notebookbar_groupedbar_full|footnote"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. FFrSw
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2721
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2700
msgctxt "notebookbar_groupedbar_full|note"
msgid "Note"
msgstr "ማስታወሻ"
#. EsADr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3211
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3190
msgctxt "notebookbar_groupedbar_full|menub"
msgid "_Menu"
msgstr "_ዝርዝር"
#. Ch63h
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3264
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3243
msgctxt "notebookbar_groupedbar_full|toolsb"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. kdH4L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3318
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3297
msgctxt "notebookbar_groupedbar_full|helpb"
msgid "_Help"
msgstr "_እርዳታ"
#. bkg23
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3425
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3404
msgctxt "notebookbar_groupedbar_full|fileb"
msgid "_File"
msgstr "_ፋይል"
#. aqbEs
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3658
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3637
msgctxt "notebookbar_groupedbar_full|editb"
msgid "_Edit"
msgstr "_ማረሚያ"
#. HFC9U
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3851
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3830
msgctxt "notebookbar_groupedbar_full|paragraphstyleb"
msgid "St_yles"
msgstr "ዘዴ_ዎች"
#. VFtWK
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4115
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4094
msgctxt "notebookbar_groupedbar_full|formatb"
msgid "F_ont"
msgstr "ፊ_ደል"
#. 9HzEG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4352
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4331
msgctxt "notebookbar_groupedbar_full|numberb"
msgid "_Number"
msgstr "_ቁጥር"
#. F7vQ2
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4560
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4539
msgctxt "notebookbar_groupedbar_full|paragraphb"
msgid "_Alignment"
msgstr "_ማሰለፊያ"
#. QnhiG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4788
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4767
msgctxt "notebookbar_groupedbar_full|cellb"
msgid "_Cells"
msgstr "_ክፍሎች"
#. rrpkZ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4946
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:4925
msgctxt "notebookbar_groupedbar_full|insertb"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. NsDSM
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5124
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5103
msgctxt "notebookbar_groupedbar_full|datab"
msgid "_Data"
msgstr "_ዳታ"
#. gQQfL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5292
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5271
msgctxt "notebookbar_groupedbar_full|reviewb"
msgid "_Review"
msgstr "_ከለሳ"
#. BHDdD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5460
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5439
msgctxt "notebookbar_groupedbar_full|viewb"
msgid "_View"
msgstr "_መመልከቻ"
#. ZJufp
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5680
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5659
msgctxt "notebookbar_groupedbar_full|graphicB"
msgid "Im_age"
msgstr "ምስ_ል"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5995
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5974
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6143
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6122
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ቀ_ለም"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6386
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6365
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_መጋጠሚያ"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6521
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6500
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_ቋንቋ"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6745
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6724
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_ከለሳ"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6953
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6932
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_አስተያየቶች"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7152
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7131
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "ማወዳ_ደሪያ"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7350
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7329
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_መመልከቻ"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7779
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7758
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "መ_ሳያ"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8136
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8115
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_ማረሚያ"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8464
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8443
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8627
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8606
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_መመልከቻ"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8825
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8804
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "ቡድ_ን"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8971
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8950
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_ዲ"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9270
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9249
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ፊ_ደል"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9523
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9502
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_ማሰለፊያ"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9721
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9700
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_መመልከቻ"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9872
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9851
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10015
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9994
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_መገናኛ"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10245
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10224
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "ክ_ፈፍ"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10659
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10638
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10821
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10800
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_መጋጠሚያ"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11019
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10998
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_መመልከቻ"
@@ -26980,31 +26980,55 @@ msgid "The Changes dialog specifies various options for highlighting recorded ch
msgstr "የ ለውጦች ንግግር የሚገልጸው የ ተለያዩ ምርጫዎች የ ተመዘገቡ ለውጦች በ ሰነድ ውስጥ ለ ማድመቂያ ነው "
#. CrAWh
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:36
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:33
msgctxt "optcompatibilitypage|label2"
msgid "Select desired _key binding type. Changing the key binding type may overwrite some of the existing key bindings."
msgstr "ይምረጡ የሚፈልጉትን _ቁልፍ ማጣመሪያ አይነት: የቁልፍ ማጣመሪያ አይነቱን መቀየር በነበረው የቁልፍ ማጣመሪያ አይነት ላይ ደርቦ ይጽፍበታል"
#. CER9u
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:56
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:53
msgctxt "optcompatibilitypage|keybindings"
msgid "Default"
msgstr "ነባር"
#. 3mLBb
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:57
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:54
msgctxt "optcompatibilitypage|keybindings"
msgid "OpenOffice.org legacy"
msgstr "OpenOffice.org legacy"
#. g9ysB
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:71
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:68
msgctxt "optcompatibilitypage|label1"
msgid "Key Bindings"
msgstr "ቁልፍ ማጣመሪያዎች"
+#. S4zkN
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:101
+msgctxt "optcompatibilitypage|cellLinkCB"
+msgid "Insert _hyperlink for the cell, not for the text in the cell."
+msgstr ""
+
+#. EwAmb
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:105
+msgctxt "optcompatibilitypage|cellLinkCB|tooltip_text"
+msgid "By default, Excel allows only one hyperlink per cell. (Works only if Excel file format is used.)"
+msgstr ""
+
+#. EiGMR
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:110
+msgctxt "extended_tip|cellLinkCB"
+msgid "%PRODUCTNAME can insert multiple hyperlinks in a cell as text fields, but multiple hyperlinks in a cell cannot be saved to Excel file formats. This option prevents inserting multiple hyperlinks in a cell when Excel files are edited, in order to be interoperable with Excel."
+msgstr ""
+
+#. BJuZV
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:126
+msgctxt "optcompatibilitypage|label3"
+msgid "Hyperlinks"
+msgstr ""
+
#. XXuHE
-#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:86
+#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:141
msgctxt "extended_tip|OptCompatibilityPage"
msgid "Defines compatibility options for Calc."
msgstr ""
@@ -32533,13 +32557,19 @@ msgid "Select the Locale to Use for Import"
msgstr ""
#. iRYr7
-#: sc/uiconfig/scalc/ui/textimportoptions.ui:169
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:176
msgctxt "textimportoptions|convertdata"
msgid "Detect special numbers (such as dates)"
msgstr "የተለዩ ቁጥሮችን መለያ (እንደ ቀን ያሉ)"
+#. y2ucV
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:192
+msgctxt "textimportoptions|convertdata"
+msgid "Detect numbers with _scientific notation"
+msgstr ""
+
#. 6aP7U
-#: sc/uiconfig/scalc/ui/textimportoptions.ui:183
+#: sc/uiconfig/scalc/ui/textimportoptions.ui:212
msgctxt "textimportoptions|label3"
msgid "Options"
msgstr "ምርጫዎች"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index c9f2d46e9f0..5889fe398cf 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/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: 2023-05-31 16:29+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-05-23 12:49+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -437,242 +437,224 @@ msgctxt "STR_UNDO_REPLACE"
msgid "Replace"
msgstr "መቀየሪያ"
-#. AHC3G
-#: sd/inc/strings.hrc:32
-msgctxt "STR_NEXT_SLIDE"
-msgid "Next slide"
-msgstr ""
-
-#. 8cA5i
-#: sd/inc/strings.hrc:33
-msgctxt "STR_PREV_SLIDE"
-msgid "Previous slide"
-msgstr ""
-
-#. A8tmu
-#: sd/inc/strings.hrc:34
-msgctxt "STR_MENU_SLIDE"
-msgid "Menu slide"
-msgstr ""
-
#. eh6CM
-#: sd/inc/strings.hrc:35
+#: sd/inc/strings.hrc:32
msgctxt "STR_UNDO_DRAGDROP"
msgid "Drag and Drop"
msgstr "መጎተቻ እና መጣያ"
#. 3FHKw
-#: sd/inc/strings.hrc:36
+#: sd/inc/strings.hrc:33
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "ምስል ማስገቢያ"
#. 47BGD
-#: sd/inc/strings.hrc:37
+#: sd/inc/strings.hrc:34
msgctxt "STR_UNDO_BEZCLOSE"
msgid "Close Polygon"
msgstr "ፖሊጎን መዝጊያ"
#. ARAxt
-#: sd/inc/strings.hrc:38
+#: sd/inc/strings.hrc:35
msgctxt "STR_SLIDE_SORTER_MODE"
msgid "Slide Sorter"
msgstr "ተንሸራታች መለያ"
#. xpwgF
-#: sd/inc/strings.hrc:39
+#: sd/inc/strings.hrc:36
msgctxt "STR_NORMAL_MODE"
msgid "Normal"
msgstr "መደበኛ"
#. DFBoe
-#: sd/inc/strings.hrc:40
+#: sd/inc/strings.hrc:37
msgctxt "STR_SLIDE_MASTER_MODE"
msgid "Master Slide"
msgstr "ዋናው ተንሸራታች"
#. qBuHh
-#: sd/inc/strings.hrc:41
+#: sd/inc/strings.hrc:38
msgctxt "STR_OUTLINE_MODE"
msgid "Outline"
msgstr "ረቂቅ"
#. kYbwc
-#: sd/inc/strings.hrc:42
+#: sd/inc/strings.hrc:39
msgctxt "STR_NOTES_MODE"
msgid "Notes"
msgstr "ማስታወሻዎች"
#. NJEio
-#: sd/inc/strings.hrc:43
+#: sd/inc/strings.hrc:40
msgctxt "STR_NOTES_MASTER_MODE"
msgid "Master Notes"
msgstr "ዋናው ማስታወሻ"
#. tGt9g
-#: sd/inc/strings.hrc:44
+#: sd/inc/strings.hrc:41
msgctxt "STR_HANDOUT_MASTER_MODE"
msgid "Master Handout"
msgstr "ዋናው በ እጅ የሚሰጥ"
#. GtVe6
-#: sd/inc/strings.hrc:45
+#: sd/inc/strings.hrc:42
msgctxt "STR_AUTOLAYOUT_NONE"
msgid "Blank Slide"
msgstr "ባዶ ተንሸራታች"
#. o4jkH
-#: sd/inc/strings.hrc:46
+#: sd/inc/strings.hrc:43
msgctxt "STR_AUTOLAYOUT_ONLY_TITLE"
msgid "Title Only"
msgstr "አርእስት ብቻ"
#. yEaXc
-#: sd/inc/strings.hrc:47
+#: sd/inc/strings.hrc:44
msgctxt "STR_AUTOLAYOUT_ONLY_TEXT"
msgid "Centered Text"
msgstr "መሀከል ላይ መጻፊያ"
#. vC7LB
-#: sd/inc/strings.hrc:48
+#: sd/inc/strings.hrc:45
msgctxt "STR_AUTOLAYOUT_TITLE"
msgid "Title Slide"
msgstr "የ ተንሸራታች አርእስት"
#. CZCWE
-#: sd/inc/strings.hrc:49
+#: sd/inc/strings.hrc:46
msgctxt "STR_AUTOLAYOUT_CONTENT"
msgid "Title, Content"
msgstr "አርእስት: ይዞታው"
#. D2n4r
-#: sd/inc/strings.hrc:50
+#: sd/inc/strings.hrc:47
msgctxt "STR_AUTOLAYOUT_2CONTENT"
msgid "Title and 2 Content"
msgstr "አርእስት እና 2 ይዞታው"
#. gJvEw
-#: sd/inc/strings.hrc:51
+#: sd/inc/strings.hrc:48
msgctxt "STR_AUTOLAYOUT_CONTENT_2CONTENT"
msgid "Title, Content and 2 Content"
msgstr "አርእስት: ይዞታው እና 2 ይዞታው"
#. BygEm
-#: sd/inc/strings.hrc:52
+#: sd/inc/strings.hrc:49
msgctxt "STR_AUTOLAYOUT_2CONTENT_CONTENT"
msgid "Title, 2 Content and Content"
msgstr "አርእስት: 2 ይዞታው እና ይዞታው"
#. e3iAd
-#: sd/inc/strings.hrc:53
+#: sd/inc/strings.hrc:50
msgctxt "STR_AUTOLAYOUT_2CONTENT_OVER_CONTENT"
msgid "Title, 2 Content over Content"
msgstr "አርእስት: ከ 2 ይዞታው በላይ ይዞታው"
#. D9Ra9
-#: sd/inc/strings.hrc:54
+#: sd/inc/strings.hrc:51
msgctxt "STR_AUTOLAYOUT_CONTENT_OVER_CONTENT"
msgid "Title, Content over Content"
msgstr "አርእስት: ይዞታው ከ ይዞታው በላይ"
#. jnnLj
-#: sd/inc/strings.hrc:55
+#: sd/inc/strings.hrc:52
msgctxt "STR_AUTOLAYOUT_4CONTENT"
msgid "Title, 4 Content"
msgstr "አርእስት: 4 ይዞታ"
#. Bhnxh
-#: sd/inc/strings.hrc:56
+#: sd/inc/strings.hrc:53
msgctxt "STR_AUTOLAYOUT_6CONTENT"
msgid "Title, 6 Content"
msgstr "አርእስት: 6 ይዞታ"
#. G9mLN
-#: sd/inc/strings.hrc:57
+#: sd/inc/strings.hrc:54
msgctxt "STR_AL_TITLE_VERT_OUTLINE"
msgid "Title, Vertical Text"
msgstr "አርእስት: በ ቁመት ጽሁፍ"
#. GsGaq
-#: sd/inc/strings.hrc:58
+#: sd/inc/strings.hrc:55
msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART"
msgid "Title, Vertical Text, Clipart"
msgstr "አርእስት: በ ቁመት ጽሁፍ: Clipart"
#. QvDtk
-#: sd/inc/strings.hrc:59
+#: sd/inc/strings.hrc:56
msgctxt "STR_AL_VERT_TITLE_TEXT_CHART"
msgid "Vertical Title, Text, Chart"
msgstr "በ ቁመት አርእስት: ጽሁፍ: ቻርት"
#. bEiKk
-#: sd/inc/strings.hrc:60
+#: sd/inc/strings.hrc:57
msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE"
msgid "Vertical Title, Vertical Text"
msgstr "በ ቁመት አርእስት: በ ቁመት ጽሁፍ"
#. CAeFA
-#: sd/inc/strings.hrc:61
+#: sd/inc/strings.hrc:58
msgctxt "STR_AUTOLAYOUT_HANDOUT1"
msgid "One Slide"
msgstr "አንድ ተንሸራታች"
#. kGsfV
-#: sd/inc/strings.hrc:62
+#: sd/inc/strings.hrc:59
msgctxt "STR_AUTOLAYOUT_HANDOUT2"
msgid "Two Slides"
msgstr "ሁለት ተንሸራታቾች"
#. P3K6D
-#: sd/inc/strings.hrc:63
+#: sd/inc/strings.hrc:60
msgctxt "STR_AUTOLAYOUT_HANDOUT3"
msgid "Three Slides"
msgstr "ሶስት ተንሸራታቾች"
#. eMsDY
-#: sd/inc/strings.hrc:64
+#: sd/inc/strings.hrc:61
msgctxt "STR_AUTOLAYOUT_HANDOUT4"
msgid "Four Slides"
msgstr "አራት ተንሸራታቾች"
#. 69B5i
-#: sd/inc/strings.hrc:65
+#: sd/inc/strings.hrc:62
msgctxt "STR_AUTOLAYOUT_HANDOUT6"
msgid "Six Slides"
msgstr "ስድስት ተንሸራታቾች"
#. FeJFF
-#: sd/inc/strings.hrc:66
+#: sd/inc/strings.hrc:63
msgctxt "STR_AUTOLAYOUT_HANDOUT9"
msgid "Nine Slides"
msgstr "ዘጠኝ ተንሸራታቾች"
#. khJZE
-#: sd/inc/strings.hrc:67
+#: sd/inc/strings.hrc:64
msgctxt "STR_AUTOLAYOUT_NOTES"
msgid "Notes"
msgstr "ማስታወሻዎች"
#. 4sRi2
-#: sd/inc/strings.hrc:68
+#: sd/inc/strings.hrc:65
msgctxt "STR_TRANSFORM"
msgid "Transform"
msgstr "መቀየሪያ"
#. 3rF5y
-#: sd/inc/strings.hrc:69
+#: sd/inc/strings.hrc:66
msgctxt "STR_LINEEND"
msgid "Line Ends"
msgstr "መስመሩ አልቋል"
#. qJLT9
-#: sd/inc/strings.hrc:70
+#: sd/inc/strings.hrc:67
msgctxt "STR_DESC_LINEEND"
msgid "Please enter a name for the new arrow style:"
msgstr ""
#. 7y2Si
-#: sd/inc/strings.hrc:71
+#: sd/inc/strings.hrc:68
msgctxt "STR_WARN_NAME_DUPLICATE"
msgid ""
"The name chosen already exists. \n"
@@ -682,109 +664,109 @@ msgstr ""
"እባክዎን ሌላ ስም ያስገቡ"
#. arAaK
-#: sd/inc/strings.hrc:72
+#: sd/inc/strings.hrc:69
msgctxt "STR_UNDO_ANIMATION"
msgid "Animation parameters"
msgstr "የ እንቅስቃሴ ደንቦች"
#. DCRRn
-#: sd/inc/strings.hrc:73
+#: sd/inc/strings.hrc:70
msgctxt "STR_UNDO_COPYOBJECTS"
msgid "Duplicate"
msgstr "ማባዣ"
#. NaQdx
-#: sd/inc/strings.hrc:74
+#: sd/inc/strings.hrc:71
msgctxt "STR_TITLE_NAMEGROUP"
msgid "Name Object"
msgstr "የእቃው ስም"
#. hBgQg
-#: sd/inc/strings.hrc:75
+#: sd/inc/strings.hrc:72
msgctxt "STR_DESC_NAMEGROUP"
msgid "Name"
msgstr "ስም"
#. YSZad
-#: sd/inc/strings.hrc:76
+#: sd/inc/strings.hrc:73
msgctxt "STR_WARN_PAGE_EXISTS"
msgid "The slide name already exists or is invalid. Please enter another name."
msgstr "የ ተንሸራታቹ ስም ቀደም ሲል ነበር ወይም ዋጋ የሌለው ነው: እባክዎን ሌላ ስም ያስገቡ"
#. P4bHX
-#: sd/inc/strings.hrc:77
+#: sd/inc/strings.hrc:74
msgctxt "STR_WARN_PAGE_EXISTS_DRAW"
msgid "The page name already exists or is invalid. Please enter another name."
msgstr "የ ገጹ ስም ቀደም ሲል ነበር ወይንም ዋጋ የሌለው ነው: እባክዎን ሌላ ስም ያስገቡ"
#. ryfEt
-#: sd/inc/strings.hrc:78
+#: sd/inc/strings.hrc:75
msgctxt "STR_SNAPDLG_SETLINE"
msgid "Edit Snap Line"
msgstr "መቁረጫ መስመር ማረሚያ"
#. 3c3Hh
-#: sd/inc/strings.hrc:79
+#: sd/inc/strings.hrc:76
msgctxt "STR_SNAPDLG_SETPOINT"
msgid "Edit Snap Point"
msgstr "መቁረጫ ነጥብ ማረሚያ"
#. FWWHm
-#: sd/inc/strings.hrc:80
+#: sd/inc/strings.hrc:77
msgctxt "STR_POPUP_EDIT_SNAPLINE"
msgid "Edit Snap Line..."
msgstr "መቁረጫ መስመር ማረሚያ..."
#. njFAd
-#: sd/inc/strings.hrc:81
+#: sd/inc/strings.hrc:78
msgctxt "STR_POPUP_EDIT_SNAPPOINT"
msgid "Edit Snap Point..."
msgstr "መቁረጫ ነጥብ ማረሚያ..."
#. UwBFu
-#: sd/inc/strings.hrc:82
+#: sd/inc/strings.hrc:79
msgctxt "STR_POPUP_DELETE_SNAPLINE"
msgid "Delete Snap Line"
msgstr "መቁረጫ መስመር ማጥፊያ"
#. BBU6u
-#: sd/inc/strings.hrc:83
+#: sd/inc/strings.hrc:80
msgctxt "STR_POPUP_DELETE_SNAPPOINT"
msgid "Delete Snap Point"
msgstr "መቁረጫ ነጥብ ማጥፊያ"
#. BmRfY
-#: sd/inc/strings.hrc:84
+#: sd/inc/strings.hrc:81
msgctxt "STR_IMPRESS"
msgid "StarImpress 4.0"
msgstr "StarImpress 4.0"
#. aAbqr
-#: sd/inc/strings.hrc:85
+#: sd/inc/strings.hrc:82
msgctxt "STR_LAYER"
msgid "Layer"
msgstr "ደረጃ"
#. Lwrnm
-#: sd/inc/strings.hrc:86
+#: sd/inc/strings.hrc:83
msgctxt "STR_UNDO_DELETEPAGES"
msgid "Delete slides"
msgstr "ተንሸራታቾች ማጥፊያ"
#. F7ZZF
-#: sd/inc/strings.hrc:87
+#: sd/inc/strings.hrc:84
msgctxt "STR_UNDO_DELETEPAGES_DRAW"
msgid "Delete pages"
msgstr "ገጾች ማጥፊያ"
#. EQUBZ
-#: sd/inc/strings.hrc:88
+#: sd/inc/strings.hrc:85
msgctxt "STR_UNDO_INSERTPAGES"
msgid "Insert slides"
msgstr "ተንሸራታቾች ማስገቢያ"
#. 4hGAF
-#: sd/inc/strings.hrc:89
+#: sd/inc/strings.hrc:86
msgctxt "STR_ASK_DELETE_LAYER"
msgid ""
"Are you sure you want to delete the layer \"$\"?\n"
@@ -794,97 +776,103 @@ msgstr ""
"ማስታወሻ: በ ደረጃው ላይ ያሉት ሁሉም እቃዎች አብረው ይጠፋሉ!"
#. EcYBg
-#: sd/inc/strings.hrc:90
+#: sd/inc/strings.hrc:87
msgctxt "STR_ASK_DELETE_ALL_PICTURES"
msgid "Do you really want to delete all images?"
msgstr "በእርግጥ ምስሎቹን በሙሉ ማጥፋት ይፈልጋሉ?"
#. 43diA
-#: sd/inc/strings.hrc:91
+#: sd/inc/strings.hrc:88
msgctxt "STR_UNDO_CHANGE_TITLE_AND_LAYOUT"
msgid "Modify title and outline"
msgstr "አርእስት እና ረቂቁን ማሻሻያ"
#. 6zCeF
-#: sd/inc/strings.hrc:92
+#: sd/inc/strings.hrc:89
msgctxt "STR_WAV_FILE"
msgid "Audio"
msgstr "ድምፅ"
#. EtkBb
-#: sd/inc/strings.hrc:93
+#: sd/inc/strings.hrc:90
msgctxt "STR_MIDI_FILE"
msgid "MIDI"
msgstr "MIDI"
#. ZKZvo
-#: sd/inc/strings.hrc:94
+#: sd/inc/strings.hrc:91
msgctxt "STR_AU_FILE"
msgid "Sun/NeXT Audio"
msgstr "Sun/NeXT Audio"
#. BySwC
-#: sd/inc/strings.hrc:95
+#: sd/inc/strings.hrc:92
msgctxt "STR_VOC_FILE"
msgid "Creative Labs Audio"
msgstr "Creative Labs Audio"
#. CVtFB
-#: sd/inc/strings.hrc:96
+#: sd/inc/strings.hrc:93
msgctxt "STR_AIFF_FILE"
msgid "Apple/SGI Audio"
msgstr "Apple/SGI Audio"
#. qBF5W
-#: sd/inc/strings.hrc:97
+#: sd/inc/strings.hrc:94
msgctxt "STR_SVX_FILE"
msgid "Amiga SVX Audio"
msgstr "Amiga SVX Audio"
+#. x7GnC
+#: sd/inc/strings.hrc:95
+msgctxt "STR_SD_PAGE"
+msgid "Slide"
+msgstr ""
+
#. Myh6k
-#: sd/inc/strings.hrc:98
+#: sd/inc/strings.hrc:96
msgctxt "STR_SD_PAGE_COUNT"
msgid "Slide %1 of %2"
msgstr "ተንሸራታች %1 ከ %2"
#. NakLD
-#: sd/inc/strings.hrc:99
+#: sd/inc/strings.hrc:97
msgctxt "STR_SD_PAGE_COUNT_CUSTOM"
msgid "Slide %1 of %2 (%3)"
msgstr "ተንሸራታች %1 ከ %2 (%3)"
#. AHvxa
-#: sd/inc/strings.hrc:100
+#: sd/inc/strings.hrc:98
msgctxt "STR_SD_PAGE_COUNT_DRAW"
msgid "Page %1 of %2"
msgstr ""
#. hdhKG
-#: sd/inc/strings.hrc:101
+#: sd/inc/strings.hrc:99
msgctxt "STR_SD_PAGE_COUNT_CUSTOM_DRAW"
msgid "Page %1 of %2 (%3)"
msgstr ""
#. WsRvh
-#: sd/inc/strings.hrc:102
+#: sd/inc/strings.hrc:100
msgctxt "STR_ALL_SUPPORTED_FORMATS"
msgid "All supported formats"
msgstr "ሁሉም የ ተደገፉ አቀራረቦች"
#. F8m2G
-#: sd/inc/strings.hrc:103
+#: sd/inc/strings.hrc:101
msgctxt "STR_ALL_FILES"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. jgmq4
-#: sd/inc/strings.hrc:104
+#: sd/inc/strings.hrc:102
msgctxt "STR_UNDO_INSERT_TEXTFRAME"
msgid "Insert text frame"
msgstr "የ ጽሁፍ ክፈፍ ማስገቢያ"
#. KW7A3
-#: sd/inc/strings.hrc:105
+#: sd/inc/strings.hrc:103
msgctxt "STR_ACTION_NOTPOSSIBLE"
msgid ""
"This function cannot be run \n"
@@ -894,19 +882,19 @@ msgstr ""
"ከተመረጠው እቃ ጋር"
#. Sfjvn
-#: sd/inc/strings.hrc:106
+#: sd/inc/strings.hrc:104
msgctxt "STR_DLG_INSERT_PAGES_FROM_FILE"
msgid "Insert File"
msgstr "ፋይል ማስገቢያ"
#. TKeex
-#: sd/inc/strings.hrc:107
+#: sd/inc/strings.hrc:105
msgctxt "STR_READ_DATA_ERROR"
msgid "The file could not be loaded!"
msgstr "ፋይሉን መጫን አልተቻለም!"
#. 8CYyq
-#: sd/inc/strings.hrc:108
+#: sd/inc/strings.hrc:106
msgctxt "STR_SCALE_OBJECTS"
msgid ""
"The page size of the target document is different than the source document.\n"
@@ -918,143 +906,155 @@ msgstr ""
"ኮፒ የተደረገውን እቃ በ አዲሱ ገጽ መጠን መመጠን ይፈልጋሉ??"
#. YC4AD
-#: sd/inc/strings.hrc:109
+#: sd/inc/strings.hrc:107
msgctxt "STR_SCALE_TOOLTIP"
msgid "Scaling factor of the document; right-click to change."
msgstr "የ ሰነድ መመጠኛ ጉዳይ; በ ቀኝ-ይጫኑ ለ መቀየር:"
#. NzFb7
-#: sd/inc/strings.hrc:110
+#: sd/inc/strings.hrc:108
msgctxt "STR_CREATE_PAGES"
msgid "Create Slides"
msgstr "ተንሸራታቾች መፍጠሪያ"
#. ckve2
-#: sd/inc/strings.hrc:111
+#: sd/inc/strings.hrc:109
msgctxt "STR_UNDO_CHANGE_PAGEFORMAT"
msgid "Modify page format"
msgstr "የ ገጽ አቀራረብ ማሻሻያ"
#. FDTtA
-#: sd/inc/strings.hrc:112
+#: sd/inc/strings.hrc:110
msgctxt "STR_UNDO_CHANGE_PAGEBORDER"
msgid "Modify page margins"
msgstr "የ ገጽ መስመሮች ማሻሻያ"
#. H6ceS
-#: sd/inc/strings.hrc:113
+#: sd/inc/strings.hrc:111
msgctxt "STR_EDIT_OBJ"
msgid "~Edit"
msgstr "~ማረሚያ"
#. 3ikze
-#: sd/inc/strings.hrc:114
+#: sd/inc/strings.hrc:112
msgctxt "STR_DELETE_PAGES"
msgid "Delete Slides"
msgstr "ተንሸራታቾች ማጥፊያ"
#. xbTgp
-#: sd/inc/strings.hrc:115
+#: sd/inc/strings.hrc:113
msgctxt "STR_WARN_PRINTFORMAT_FAILURE"
msgid "The document format could not be set on the specified printer."
msgstr "ለ ተወሰነው ማተሚያ የ ሰነዱን አቀራረብ ማሰናዳት አልተቻለም"
#. s6Pco
-#: sd/inc/strings.hrc:116
+#: sd/inc/strings.hrc:114
msgctxt "STR_IMPORT_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "የ ምስል ፋይል መክፈት አልተቻለም"
#. PKXVG
-#: sd/inc/strings.hrc:117
+#: sd/inc/strings.hrc:115
msgctxt "STR_IMPORT_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "የምስል ፋይል ማንበብ አልተቻለም"
#. Wnx5i
-#: sd/inc/strings.hrc:118
+#: sd/inc/strings.hrc:116
msgctxt "STR_IMPORT_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "ያልታወቀ የ ምስል አቀራረብ"
#. GH2S7
-#: sd/inc/strings.hrc:119
+#: sd/inc/strings.hrc:117
msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR"
msgid "This image file version is not supported"
msgstr "ይህ የንድፍ ፋይል እትም የተደገፈ አይደለም"
#. uqpAS
-#: sd/inc/strings.hrc:120
+#: sd/inc/strings.hrc:118
msgctxt "STR_IMPORT_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "የምስል ማጣሪያ አልተገኘም"
#. qdeHG
-#: sd/inc/strings.hrc:121
+#: sd/inc/strings.hrc:119
msgctxt "STR_IMPORT_GRFILTER_TOOBIG"
msgid "Not enough memory to import image"
msgstr "ምስሎቹን ለማምጣት በቂ memory አልተገኘም"
#. BdsAg
-#: sd/inc/strings.hrc:122
+#: sd/inc/strings.hrc:120
msgctxt "STR_OBJECTS"
msgid "Objects"
msgstr "አቃዎች"
#. SDm68
-#: sd/inc/strings.hrc:123
+#: sd/inc/strings.hrc:121
msgctxt "STR_END_SPELLING"
msgid "Spellcheck of entire document has been completed."
msgstr "ጠቅላላ ሰነዱን የፊደል ግድፈት መርምሮ ጨርሷል"
#. gefTJ
-#: sd/inc/strings.hrc:124
+#: sd/inc/strings.hrc:122
msgctxt "STR_END_SPELLING_OBJ"
msgid "The spellcheck for the selected objects has been completed."
msgstr "ለተመረጠው እቃ የፊደል ግድፈት መርምሮ ጨርሷል"
#. aeQeS
-#: sd/inc/strings.hrc:125
+#: sd/inc/strings.hrc:123
msgctxt "STR_ASK_FOR_CONVERT_TO_BEZIER"
msgid "Convert selected object to curve?"
msgstr "የተመረጠውን እቃ ወደ ክብ ልቀይረው?"
#. wLsLp
-#: sd/inc/strings.hrc:126
+#: sd/inc/strings.hrc:124
msgctxt "STR_UNDO_CHANGE_PRES_OBJECT"
msgid "Modify presentation object '$'"
msgstr "የማቅረቢያውን እቃ ማሻሻያ '$'"
#. s8VC9
-#: sd/inc/strings.hrc:127
+#: sd/inc/strings.hrc:125
msgctxt "STR_UNDO_MODIFY_PAGE"
msgid "Slide layout"
msgstr "የ ተንሸራታች ረቂቅ"
#. SUpXD
-#: sd/inc/strings.hrc:128
+#: sd/inc/strings.hrc:126
msgctxt "STR_UNDO_MODIFY_PAGE_DRAW"
msgid "Page layout"
msgstr "የ ገጽ እቅድ"
#. BFzyf
-#: sd/inc/strings.hrc:129
+#: sd/inc/strings.hrc:127
msgctxt "STR_UNDO_INSERT_FILE"
msgid "Insert file"
msgstr "ፋይል ማስገቢያ"
#. WGRwQ
-#: sd/inc/strings.hrc:130
+#: sd/inc/strings.hrc:128
msgctxt "STR_UNDO_INSERT_SPECCHAR"
msgid "Insert special character"
msgstr "የተለየ ባህሪ ማስገቢያ"
#. NFpGf
-#: sd/inc/strings.hrc:131
+#: sd/inc/strings.hrc:129
msgctxt "STR_UNDO_SET_PRESLAYOUT"
msgid "Apply presentation layout"
msgstr "የ ማቅረቢያ እቅድ መፈጸሚያ"
+#. ypaEH
+#: sd/inc/strings.hrc:130
+msgctxt "STR_UNDO_HIDE_SLIDE"
+msgid "Hide slide"
+msgstr ""
+
+#. LmH9V
+#: sd/inc/strings.hrc:131
+msgctxt "STR_UNDO_SHOW_SLIDE"
+msgid "Show slide"
+msgstr ""
+
#. ZMS5R
#: sd/inc/strings.hrc:132
msgctxt "STR_PLAY"
@@ -3496,29 +3496,23 @@ msgid "Page Properties"
msgstr "የ ገጽ ባህሪዎች"
#. Py4db
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:109
msgctxt "drawpagedialog|RID_SVXPAGE_PAGE"
msgid "Page"
msgstr "ገጽ"
#. sn2YQ
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:183
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:132
msgctxt "drawpagedialog|RID_SVXPAGE_AREA"
msgid "Background"
msgstr "መደብ"
#. hNhCi
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:231
+#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:156
msgctxt "drawpagedialog|RID_SVXPAGE_TRANSPARENCE"
msgid "Transparency"
msgstr "ግልጽነት"
-#. fLYAx
-#: sd/uiconfig/sdraw/ui/drawpagedialog.ui:279
-msgctxt "drawpagedialog|RID_SVXPAGE_THEME"
-msgid "Theme"
-msgstr "ገጽታ"
-
#. cKCg3
#: sd/uiconfig/sdraw/ui/drawparadialog.ui:8
msgctxt "drawparadialog|DrawParagraphPropertiesDialog"
@@ -4068,73 +4062,73 @@ msgid "~Object"
msgstr "~እቃ"
#. 4aAxG
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15186
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. ed3LH
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15325
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15290
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. FAL6c
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16133
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16098
msgctxt "drawnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. oaAJU
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:16217
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16182
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. ZBVGA
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17004
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16969
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_ዲ"
#. fEyRX
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17111
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17076
msgctxt "DrawNotebookbar|FormLabel"
msgid "3~d"
msgstr "3~ዲ"
#. 7ZLQw
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17635
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17600
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_ዋናው"
#. oiXVg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17719
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17684
msgctxt "DrawNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~ዋናው"
#. yzvja
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17776
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17741
msgctxt "drawnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr "ተ_ጨማሪ"
#. L3eG5
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:17850
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17815
msgctxt "drawnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr "ተ~ጨማሪ"
#. dkNUg
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18762
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18727
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. Je8XQ
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:18846
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:18811
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -6703,103 +6697,103 @@ msgid "Lists available slides. Double-click a slide to make it the active slide.
msgstr "ዝግጁ የ ተንሸራታች ዝርዝር: ሁለት ጊዜ-ይጫኑ ተንሸራታች ላይ ተንሰራታቹን ንቁ ለማድረግ "
#. LKqE8
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:142
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:141
msgctxt "navigatorpanel|first|tooltip_text"
msgid "First Slide"
msgstr "የ መጀመሪያው ተንሸራታች"
#. Lqedn
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:146
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:145
msgctxt "navigatorpanel|extended_tip|first"
msgid "Jumps to the first page."
msgstr ""
#. NWPFk
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:159
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:157
msgctxt "navigatorpanel|previous|tooltip_text"
msgid "Previous Slide"
msgstr "ቀደም ያለው ተንሸራታች"
#. PJUma
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:163
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:161
msgctxt "navigatorpanel|extended_tip|previous"
msgid "Moves back one page."
msgstr ""
#. bkvQE
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:176
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:173
msgctxt "navigatorpanel|next|tooltip_text"
msgid "Next Slide"
msgstr "የሚቀጥለው ተንሸራታች"
#. zbUVG
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:180
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:177
msgctxt "navigatorpanel|extended_tip|next"
msgid "Move forward one page."
msgstr ""
#. FVSHF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:193
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:189
msgctxt "navigatorpanel|last|tooltip_text"
msgid "Last Slide"
msgstr "የ መጨረሻው ተንሸራታች"
#. aPU7Y
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:197
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:193
msgctxt "navigatorpanel|extended_tip|last"
msgid "Jumps to the last page."
msgstr ""
#. mHVom
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:222
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:217
msgctxt "navigatorpanel|dragmode|tooltip_text"
msgid "Drag Mode"
msgstr "መጎተቻ ዘዴ"
#. BEJEZ
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:226
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:221
msgctxt "navigatorpanel|extended_tip|dragmode"
msgid "Drag and drop slides and named objects into the active slide."
msgstr "መጎተቻ እና መጣያ ተንሸራታች እና የ ተሰየሙ እቃዎች ወደ ንቁ ተንሸራታች ውስጥ "
#. Qb5a9
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:239
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:233
msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "ቅርጾች ማሳያ"
#. EUeae
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:243
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:237
msgctxt "navigatorpanel|extended_tip|shapes"
msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected."
msgstr "በ ንዑስ ዝርዝር ውስጥ እርስዎ መምረጥ ይችላሉ የሚታዩትን ቅርጾች ወይንም የ ተሰየሙ ቅርጾች: ይጠቀሙ መጎተቻ-እና-መጣያ ከ ዝርዝር ውስጥ ቅርጾችን እንደገና ለማዘጋጀት: ትኩረቱን ወደ ተንሸራታቹ ያደርጉ እና ይጫኑ የ Tab ቁልፍ: የሚቀጥለው ቅርጽ ከ ተወሰነው ደንብ ውስጥ ይመረጣል "
#. DzQZC
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:266
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:260
msgctxt "navigatorpanel|extended_tip|NavigatorPanel"
msgid "Opens the Navigator, where you can quickly jump to other slides or move between open files."
msgstr "መቃኛውን መክፈቻ: እርስዎ በፍጥነት ወደ ሌሎች ተንሸራታቾች ውስጥ የሚዘሉበት: ወይንም በ ተከፈቱ ፋይሎች ውስጥ የሚንቀሳቀሱበት "
#. pzb3K
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:277
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:271
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_NAMED_SHAPES"
msgid "Named shapes"
msgstr ""
#. dLEPF
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:287
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:281
msgctxt "navigatorpanel|STR_NAVIGATOR_SHOW_ALL_SHAPES"
msgid "All shapes"
msgstr ""
#. BJmWa
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:303
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:297
msgctxt "navigatorpanel|STR_NAVIGATOR_FRONT_TO_BACK"
msgid "Front to back"
msgstr ""
#. 4e3oj
-#: sd/uiconfig/simpress/ui/navigatorpanel.ui:313
+#: sd/uiconfig/simpress/ui/navigatorpanel.ui:307
msgctxt "navigatorpanel|STR_NAVIGATOR_BACK_TO_FRONT"
msgid "Back to front"
msgstr ""
@@ -6957,85 +6951,85 @@ msgid "~Object"
msgstr "~እቃ"
#. AAosj
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14971
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14936
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
#. GgHEg
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15075
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15040
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. W9oCC
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15883
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15848
msgctxt "impressnotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. 7sAbT
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15967
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15932
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. aAdZJ
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16762
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16727
msgctxt "impressnotebookbar|FormMenuButton"
msgid "_Master"
msgstr "_ዋናው"
#. XAZEm
-#: sd/uiconfig/simpress/ui/notebookbar.ui:16846
+#: sd/uiconfig/simpress/ui/notebookbar.ui:16811
msgctxt "ImpressNotebookbar|MasterLabel"
msgid "~Master"
msgstr "~ዋናው"
#. DyZAq
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17656
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17621
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
#. rUJFu
-#: sd/uiconfig/simpress/ui/notebookbar.ui:17740
+#: sd/uiconfig/simpress/ui/notebookbar.ui:17705
msgctxt "ImpressNotebookbar|View2Label"
msgid "~Outline"
msgstr "~ረቂቅ"
#. pA8DH
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18527
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18492
msgctxt "impressnotebookbar|FormMenuButton"
msgid "3_d"
msgstr "3_ዲ"
#. xwrog
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18634
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18599
msgctxt "impressnotebookbar|FormLabel"
msgid "3~d"
msgstr "3~ዲ"
#. syaDA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18691
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18656
msgctxt "impressnotebookbar|FormMenuButton"
msgid "E_xtension"
msgstr ""
#. Nwrnv
-#: sd/uiconfig/simpress/ui/notebookbar.ui:18765
+#: sd/uiconfig/simpress/ui/notebookbar.ui:18730
msgctxt "impressnotebookbar|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. rBSXA
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19728
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19693
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. DTNDB
-#: sd/uiconfig/simpress/ui/notebookbar.ui:19812
+#: sd/uiconfig/simpress/ui/notebookbar.ui:19777
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index d4c3ad62a76..af3f113664e 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/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: 2023-05-17 15:14+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -829,75 +829,81 @@ msgstr ""
"በ ሰርቨሩ ላይ ያለውን ለውጦች በሙሉ ያስወግዳል መጨረሻ-ከወጡበት ጊዜ ጀምሮ ያለውን \n"
"መቀጠል ይፈልጋሉ?"
-#. jufLD
+#. QeNqB
#: include/sfx2/strings.hrc:152
+msgctxt "STR_QUERY_REMEMBERSIGNATURE"
+msgid "Do you want to remember that signature for each save?"
+msgstr ""
+
+#. jufLD
+#: include/sfx2/strings.hrc:153
msgctxt "STR_INFO_WRONGDOCFORMAT"
msgid "This document must be saved in OpenDocument file format before it can be digitally signed."
msgstr "ይህ ሰነድ በ OpenDocument file format መቀመጥ አለበት: ዲጂታሊ ከ መፈረሙ በፊት"
#. ori9u
-#: include/sfx2/strings.hrc:153
+#: include/sfx2/strings.hrc:154
msgctxt "RID_XMLSEC_DOCUMENTSIGNED"
msgid " (Signed)"
msgstr " (የተፈረመ)"
#. kgWZS
-#: include/sfx2/strings.hrc:154
+#: include/sfx2/strings.hrc:155
msgctxt "STR_EMBEDDED_TITLE"
msgid " (Embedded document)"
msgstr " (የ ተጣበቀ ሰነድ)"
#. 3nT9T
-#: include/sfx2/strings.hrc:155
+#: include/sfx2/strings.hrc:156
msgctxt "STR_STANDARD"
msgid "Standard"
msgstr "መደበኛ"
#. FjCuJ
-#: include/sfx2/strings.hrc:156
+#: include/sfx2/strings.hrc:157
msgctxt "RID_SVXSTR_FILELINK"
msgid "Document"
msgstr "ሰነድ"
#. BfMd3
-#: include/sfx2/strings.hrc:157
+#: include/sfx2/strings.hrc:158
msgctxt "STR_NONE"
msgid "- None -"
msgstr "- ምንም -"
#. XBXvE
-#: include/sfx2/strings.hrc:158
+#: include/sfx2/strings.hrc:159
msgctxt "saveastemplatedlg|categorylist"
msgid "None"
msgstr "ምንም"
#. 5kUsi
-#: include/sfx2/strings.hrc:159
+#: include/sfx2/strings.hrc:160
msgctxt "RID_SVXSTR_GRAPHICLINK"
msgid "Image"
msgstr "ምስል"
#. dUK2G
-#: include/sfx2/strings.hrc:160
+#: include/sfx2/strings.hrc:161
msgctxt "STR_SFX_FILTERNAME_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
#. E39E2
-#: include/sfx2/strings.hrc:161
+#: include/sfx2/strings.hrc:162
msgctxt "STR_SFX_FILTERNAME_PDF"
msgid "PDF files"
msgstr "የ PDF ፋይሎች"
#. gCHbP
-#: include/sfx2/strings.hrc:162
+#: include/sfx2/strings.hrc:163
msgctxt "RID_SVXSTR_EDITGRFLINK"
msgid "Link Image"
msgstr "ምስል አገናኝ"
#. u9H7a
#. i66948 used in project scripting
-#: include/sfx2/strings.hrc:164
+#: include/sfx2/strings.hrc:165
msgctxt "STR_ERRUNOEVENTBINDUNG"
msgid ""
"An appropriate component method %1\n"
@@ -911,43 +917,43 @@ msgstr ""
"የዘዴውን ስም አፃፃፍ ትክክል መሆኑን ይመርምሩ"
#. 2FLYB
-#: include/sfx2/strings.hrc:165
+#: include/sfx2/strings.hrc:166
msgctxt "RID_SVXSTR_GRFILTER_OPENERROR"
msgid "Image file cannot be opened"
msgstr "የ ምስል ፋይሉን መክፈት አልተቻለም"
#. 6eLsb
-#: include/sfx2/strings.hrc:166
+#: include/sfx2/strings.hrc:167
msgctxt "RID_SVXSTR_GRFILTER_IOERROR"
msgid "Image file cannot be read"
msgstr "የ ምስል ፋይሉን ማንበብ አልተቻለም"
#. HGRsV
-#: include/sfx2/strings.hrc:167
+#: include/sfx2/strings.hrc:168
msgctxt "RID_SVXSTR_GRFILTER_FORMATERROR"
msgid "Unknown image format"
msgstr "ያልታወቀ የ ምስል አቀራረብ"
#. YJhGK
-#: include/sfx2/strings.hrc:168
+#: include/sfx2/strings.hrc:169
msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR"
msgid "This version of the image file is not supported"
msgstr "የዚህ እትም ምስል ፋይል የተደገፈ አይደለም"
#. Sn8KQ
-#: include/sfx2/strings.hrc:169
+#: include/sfx2/strings.hrc:170
msgctxt "RID_SVXSTR_GRFILTER_FILTERERROR"
msgid "Image filter not found"
msgstr "የ ምስል ማጣሪያ አልተገኘም"
#. huEFV
-#: include/sfx2/strings.hrc:170
+#: include/sfx2/strings.hrc:171
msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR"
msgid "This is not a text document"
msgstr "ይህ የ ጽሁፍ ሰነድ አይደለም"
#. ejBgZ
-#: include/sfx2/strings.hrc:171
+#: include/sfx2/strings.hrc:172
msgctxt "RID_SVXSTR_END_REDLINING_WARNING"
msgid ""
"This action will exit the change recording mode.\n"
@@ -958,43 +964,43 @@ msgid ""
msgstr ""
#. E2CcY
-#: include/sfx2/strings.hrc:172
+#: include/sfx2/strings.hrc:173
msgctxt "RID_SVXSTR_INCORRECT_PASSWORD"
msgid "Incorrect password"
msgstr "የተሳሳተ የመግቢያ ቃል"
#. 7Ezso
-#: include/sfx2/strings.hrc:173
+#: include/sfx2/strings.hrc:174
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
msgstr "OpenPGP key አይታመንም: የ ተበላሸ ነው: ወይንም መመስጠሪያው ተበላሽቷል: እባክዎን እንደገና ይሞክሩ"
#. DQCUm
-#: include/sfx2/strings.hrc:175
+#: include/sfx2/strings.hrc:176
msgctxt "STR_PASSWD_MIN_LEN"
msgid "(Minimum $(MINLEN) characters)"
msgstr "(አነስተኛ $(MINLEN) ባህሪዎች)"
#. ZKZnh
-#: include/sfx2/strings.hrc:176
+#: include/sfx2/strings.hrc:177
msgctxt "STR_PASSWD_MIN_LEN1"
msgid "(Minimum 1 character)"
msgstr "(አነስተኛ 1 ባህሪ)"
#. B3WoF
-#: include/sfx2/strings.hrc:177
+#: include/sfx2/strings.hrc:178
msgctxt "STR_PASSWD_EMPTY"
msgid "(The password can be empty)"
msgstr "(የመግቢያ ቃሉ ባዶ ሊሆን ይችላል)"
#. iBD9D
-#: include/sfx2/strings.hrc:178
+#: include/sfx2/strings.hrc:179
msgctxt "STR_MODULENOTINSTALLED"
msgid "The action could not be executed. The %PRODUCTNAME program module needed for this action is currently not installed."
msgstr "ተግባሩን ማስኬድ አልተቻለም የ %PRODUCTNAME ፕሮግራሙ ክፍል ለዚህ ተግባር እስከ አሁን አልተገጠመም"
#. TXAV5
-#: include/sfx2/strings.hrc:180
+#: include/sfx2/strings.hrc:181
msgctxt "STR_FILTER_NOT_INSTALLED"
msgid ""
"The selected filter $(FILTER) has not been installed.\n"
@@ -1004,7 +1010,7 @@ msgstr ""
"ይህን አሁን መስራት ይፈልጋሉ?"
#. gQhYY
-#: include/sfx2/strings.hrc:181
+#: include/sfx2/strings.hrc:182
msgctxt "STR_FILTER_CONSULT_SERVICE"
msgid ""
"The selected filter $(FILTER) is not included in your edition.\n"
@@ -1014,184 +1020,184 @@ msgstr ""
"በ ድህረ ገጻችን እቃዎችን ለማዘዝ መረጃ ማግኘት ይችላሉ"
#. Y9yeS
-#: include/sfx2/strings.hrc:183
+#: include/sfx2/strings.hrc:184
msgctxt "STR_WELCOME_LINE1"
msgid "Welcome to %PRODUCTNAME."
msgstr "እንኳን ደህና መጡ ወደ %PRODUCTNAME."
#. DVEkR
-#: include/sfx2/strings.hrc:184
+#: include/sfx2/strings.hrc:185
msgctxt "STR_WELCOME_LINE2"
msgid "Drop a document here or open an app to create one."
msgstr "ሰነድ እዚህ ይጣሉ ወይንም መተግበሪያ ይክፈቱ ለ መፍጠር:"
#. oTVdA
#. Translators: Target types in Auto-redaction dialog
-#: include/sfx2/strings.hrc:187
+#: include/sfx2/strings.hrc:188
msgctxt "STR_REDACTION_TARGET_TYPE_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
#. eG5qc
-#: include/sfx2/strings.hrc:188
+#: include/sfx2/strings.hrc:189
msgctxt "STR_REDACTION_TARGET_TYPE_REGEX"
msgid "Regular expression"
msgstr "መደበኛ አገላለጽ"
#. TaDCG
-#: include/sfx2/strings.hrc:189
+#: include/sfx2/strings.hrc:190
msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF"
msgid "Predefined"
msgstr "በቅድሚያ የ ተገለጸ"
#. bDjwW
-#: include/sfx2/strings.hrc:190
+#: include/sfx2/strings.hrc:191
msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN"
msgid "Unknown"
msgstr "ያልታወቀ"
#. YgzCk
#. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog
-#: include/sfx2/strings.hrc:193
+#: include/sfx2/strings.hrc:194
msgctxt "STR_REDACTION_YES"
msgid "Yes"
msgstr "አዎ"
#. oZNaM
-#: include/sfx2/strings.hrc:194
+#: include/sfx2/strings.hrc:195
msgctxt "STR_REDACTION_NO"
msgid "No"
msgstr "አይ"
#. FM3Gf
#. Translators: Misc strings of the Auto Redaction dialog
-#: include/sfx2/strings.hrc:197
+#: include/sfx2/strings.hrc:198
msgctxt "STR_REDACTION_TARGET"
msgid "Target"
msgstr "ኢላማው"
#. m2i7V
-#: include/sfx2/strings.hrc:198
+#: include/sfx2/strings.hrc:199
msgctxt "STR_REDACTION_LOAD_TARGETS"
msgid "Load Targets"
msgstr "ኢላማዎች መጫኛ"
#. HgrwX
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:200
msgctxt "STR_REDACTION_SAVE_TARGETS"
msgid "Save Targets"
msgstr "ኢላማዎች ማስቀመጫ"
#. MYMTF
-#: include/sfx2/strings.hrc:200
+#: include/sfx2/strings.hrc:201
msgctxt "STR_REDACTION_FIELDS_REQUIRED"
msgid "All fields are required"
msgstr "ሁሉም ሜዳዎች ያስፈልጋሉ"
#. rQS6M
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:202
msgctxt "STR_REDACTION_TARGET_NAME_CLASH"
msgid "There is already a target with this name"
msgstr ""
#. s248s
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:203
msgctxt "STR_REDACTION_MULTI_EDIT"
msgid "You have selected multiple targets, but only one target can be edited at once."
msgstr ""
#. BTayC
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:204
msgctxt "STR_REDACTION_MULTI_DELETE"
msgid "Are you sure you would like to delete $(TARGETSCOUNT) targets at once?"
msgstr "እርስዎ በ እርግጥ ማጥፋት ይፈልጋሉ $(TARGETSCOUNT) ኢላማዎቹን በ አንድ ጊዜ?"
#. qFqDC
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:205
msgctxt "STR_REDACTION_JSON_FILE_FILTER"
msgid "Target Set (*.json)"
msgstr "ኢላማ ማሰናጃ (*.json)"
#. EGCo6
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:206
msgctxt "STR_REDACTION_EDIT_TARGET"
msgid "Edit Target"
msgstr "ኢላማ ማረሚያ"
#. ACY9D
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:207
msgctxt "STR_REDACTION_TARGET_ADD_ERROR"
msgid "An error occurred while adding new target. Please report this incident."
msgstr ""
#. 6Jog7
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:208
msgctxt "STR_REDACTION_NO_DRAW_WARNING"
msgid "Draw module is needed for redaction. Please make sure you have %PRODUCTNAME Draw installed and working correctly."
msgstr ""
#. FQ9kN
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:210
msgctxt "STR_SFX_FILEDLG_ACTUALVERSION"
msgid "Current version"
msgstr "የአሁኑ እትም"
#. GFAEM
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:211
msgctxt "STR_SFX_EXPLORERFILE_EXPORT"
msgid "Export"
msgstr "መላኪያ"
#. 2DBBC
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:212
msgctxt "STR_SFX_EXPLORERFILE_INSERT"
msgid "Insert"
msgstr "ማስገቢያ"
#. VBKtt
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:213
msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT"
msgid "~Insert"
msgstr "~ማስገቢያ"
#. DcLFD
-#: include/sfx2/strings.hrc:213
+#: include/sfx2/strings.hrc:214
msgctxt "STR_SFX_IMPORT_ALL_IMAGES"
msgid "<All images>"
msgstr "<ሁሉንም ምስሎች>"
#. tPDwc
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:215
msgctxt "STR_PB_SAVEACOPY"
msgid "Save a Copy"
msgstr "ኮፒ ማስቀመጫ"
#. CrEzt
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:216
msgctxt "STR_PB_COMPAREDOC"
msgid "Compare to Original Document"
msgstr ""
#. 4qMCh
-#: include/sfx2/strings.hrc:216
+#: include/sfx2/strings.hrc:217
msgctxt "STR_PB_MERGEDOC"
msgid "Merge with"
msgstr "መቀላቀያ ከ"
#. cDMBG
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:219
msgctxt "STR_SFX_NEWOFFICEDOC"
msgid "%PRODUCTNAME document"
msgstr "%PRODUCTNAME ሰነድ"
#. 43QYo
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:220
msgctxt "SFX_ST_DURATION_FORMAT"
msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " አ: %1 ወ: %2 ቀ: %3 ሰ: %4 ደ: %5 ሰ: %6"
#. jQX7C
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:221
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -1201,31 +1207,31 @@ msgstr ""
"ዋጋው እንደ ጽሁፍ ይቀመጣል"
#. cinmA
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:223
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ዘዴው ቀደም ሲል ነበር: በላዩ ላይ ደርቤ ልጻፍበት?"
#. f627N
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:225
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~እንደ ነበር መመለሻ"
#. EXGDb
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:226
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ይህን ስም ቀደም ሲል ተጠቅመውበታል"
#. N5aeR
-#: include/sfx2/strings.hrc:226
+#: include/sfx2/strings.hrc:227
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ይህ ዘዴ አልተገኘም"
#. CYQwN
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:228
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -1235,7 +1241,7 @@ msgstr ""
"ምክንያቱም የድግግሞሽ ማመሳከሪያ ውጤት ያስከትላል"
#. ECPSd
-#: include/sfx2/strings.hrc:228
+#: include/sfx2/strings.hrc:229
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -1245,7 +1251,7 @@ msgstr ""
"እባክዎን ሌላ አዲስ ስም ይምረጡ"
#. NWDmA
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:230
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -1254,73 +1260,73 @@ msgid ""
msgstr ""
#. kuD77
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:231
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "የሚጠቀሙት ዘዴዎች: "
#. 4JhEW
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:232
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "መቃኛ"
#. Acahp
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:233
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "የተሳሳተ የመግቢያ ቃል ማረጋገጫ"
#. 6uv4b
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "መላኪያ"
#. 9HHQw
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:235
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ፊደል"
#. 7baC6
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:237
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "የእትም አስተያየት መመልከቻ"
#. LGiF8
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:238
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ምንም ስም አልተሰናዳም)"
#. rZ4Ao
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:240
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "በ ቅደም ተከተል"
#. 4VXDe
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:242
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "በእርግጥ መመዝገቡን ማጥፋት ይፈልጋሉ? እስከ አሁን የተመዘገበው በሙሉ ይጠፋል"
#. 9MnrK
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:243
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ምዝገባውን መሰረዣ"
#. m9FCm
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:245
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ቴምፕሌቶቹ ለ መጀመሪያ-ጊዜ መጠቀሚያ በ መነሳት ላይ ናቸው"
#. F3ym2
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:247
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1330,7 +1336,7 @@ msgstr ""
"እባክዎን ማተሚያ ይምረጡ እና እንደገና ይሞክሩ"
#. a3NTu
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:248
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1340,19 +1346,19 @@ msgstr ""
"እባክዎን የማተሚያውን ማዋቀሪያ ይመርምሩ"
#. acKHX
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:249
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ማተሚያው በ ስራ ላይ ነው"
#. hDEUj
-#: include/sfx2/strings.hrc:249
+#: include/sfx2/strings.hrc:250
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ለማንበብ ብቻ)"
#. uL87C
-#: include/sfx2/strings.hrc:250
+#: include/sfx2/strings.hrc:251
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1364,7 +1370,7 @@ msgstr ""
"ማስቀመጥ ይፈልጋሉ?"
#. cxuAH
-#: include/sfx2/strings.hrc:251
+#: include/sfx2/strings.hrc:252
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1376,7 +1382,7 @@ msgstr ""
"ማስቀመጥ ይፈልጋሉ?"
#. 4QJxB
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1388,7 +1394,7 @@ msgstr ""
"ማስቀመጥ ይፈልጋሉ?"
#. RXbfs
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1398,7 +1404,7 @@ msgstr ""
" የህትመት ስራ እየተከናወነ ነው"
#. YGyQP
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1409,7 +1415,7 @@ msgstr ""
#. 3nzi6
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1421,19 +1427,19 @@ msgstr ""
"የ ስህተቱ ኮድ ይህ ነው $1"
#. ZWTDr
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "ደብዳቤ በ መላክ ላይ ስህተት ተፈጥሯል"
#. QVS2D
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ይህን ሰነድ ማረም አይቻልም ፡ ምክንያቱም በፍቃድ ማጣት ምክንያት: የሰነዱን ኮፒ ማረም ይፈልጋሉ?"
#. ZdGNX
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_QUERY_OPENASTEMPLATE_LOCKED"
msgid ""
"This document cannot be edited, because it is locked in another session.%LOCKINFO\n"
@@ -1441,591 +1447,597 @@ msgid ""
msgstr ""
#. n3sMB
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid "You can also try to ignore the lock and open the file for editing."
msgstr ""
#. yaKxR
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~ኮፒ መክፈቻ"
#. UYkFP
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~መክፈቻ"
#. GcSXH
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (የተጠገነ ሰነድ)"
#. HPqkX
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "ሰነዱ ከሰርቨሩ አልወጣም"
#. uPc29
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "እባክዎን %PRODUCTNAME የ ተሻለ እንድንሆን ይርዱን!"
#. PboiP
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "ይሳተፉ"
#. GuLGH
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
#. KzgoD
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
#. G8bbK
-#: include/sfx2/strings.hrc:269
+#: include/sfx2/strings.hrc:270
msgctxt "STR_WHATSNEW"
msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
msgstr ""
#. J5UkB
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_WHATSNEW_BUTTON"
msgid "Release Notes"
msgstr "የ ተለቀቁ ማስታወሻዎች"
#. c7NPT
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "ሰነዱ የተከፈተው ለማንበብ-ብቻ ዘዴ ነው"
#. KyyFk
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "ይህ PDF የ ተከፈተው ለ ንባብ-ብቻ ነው የ ነበረውን ፋይል መፈረም እንዲችሉ"
#. MENvD
-#: include/sfx2/strings.hrc:273
+#: include/sfx2/strings.hrc:274
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "ይህ የዚህ ሰነድ ምድብ ምልክት ነው %1."
#. 3B3ij
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "ይህ ሰነድ መመደብ አለበት ቁራጭ ሰሌዳ ከ መለጠፉ በፊት"
#. BYcYH
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "ይህ ሰነድ አነስተኛ መመደቢያ ደረጃ አለው ከ ቁራጭ ሰሌዳ ይልቅ"
#. EJPzh
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "ደረጃ"
#. itVew
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "የ አገር ደህንነት:"
#. ZBXbG
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "የ መላኪያ መቆጣጠሪያ:"
#. QAnvx
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "የ ወጣበት ጊዜ"
#. PwPNw
-#: include/sfx2/strings.hrc:280
+#: include/sfx2/strings.hrc:281
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ሰነድ ማረሚያ"
#. FCeC5
-#: include/sfx2/strings.hrc:281
+#: include/sfx2/strings.hrc:282
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ሰነድ መፈረሚያ"
#. MEfTq
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_READONLY_FINISH_SIGN"
msgid "Finish Signing"
msgstr ""
#. pkWmU
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "ይህ ሰነድ ዋጋ የሌለው ፊርማ አለው"
#. Vd3CU
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "ፊርማው ዋጋ ያለው ነው: ነገር ግን ሰነዱ ተሻሽሏል:"
#. 2HNfx
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "At least one signature has problems: the certificate could not be validated."
msgstr ""
#. tjCmr
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "At least one signature has problems: the document is only partially signed."
msgstr ""
#. mU6ot
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
#. FKDbE
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "ይህ ሰነድ ዲጂታሊ የ ተፈረመ ነው: እና ፊርማው ዋጋ ያለው ነው"
#. rMGka
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "ፊርማዎች ማሳያ"
#. fkzJb
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TRACK_CHANGES_BUTTON"
msgid "Show Toolbar"
msgstr "እቃ መደርደሪያ ማሳያ"
#. 68ZqS
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TRACK_CHANGES_BUTTON_HIDE"
msgid "Hide Toolbar"
msgstr "እቃ መደርደሪያ መደበቂያ"
#. BzVAA
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_HYPHENATION_BUTTON"
msgid "Learn more"
msgstr ""
#. BSyb4
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_REFRESH_MASTER_PASSWORD"
msgid "The master password is stored in an outdated format, you should refresh it"
msgstr ""
#. ysChU
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_REFRESH_PASSWORD"
msgid "Refresh Password"
msgstr ""
#. vf46C
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_MACROS_DISABLED_TITLE"
msgid "Macros disabled"
msgstr ""
#. zkERU
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_CONTAINS_MACROS"
msgid "Macros in this document are disabled due to the Macro Security settings."
msgstr ""
#. XbFQD
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
#. DRiDD
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "የ ንብ እንጀራ"
#. uwaPH
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ሰማያዊ ክብ"
#. hHRDz
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "የ ንድፍ እቅድ"
#. MAnPU
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "ከረሜላ"
#. jEiAn
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "ትኩረት"
#. GADdA
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "የ ጫካ ወፍ"
#. TT8G5
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ቀስቃሽ"
#. fCKG9
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "ብርሃን"
#. pcLWs
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "ትልቅ ከተማ"
#. FFDBk
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "እኩለ ሌሊት ሰማያዊ"
#. yiCzk
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "ተፈጥሮ ማሳያ"
#. cCZzC
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "እርሳስ"
#. Ji4Cw
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ፒያኖ"
#. mrbiq
-#: include/sfx2/strings.hrc:321
+#: include/sfx2/strings.hrc:322
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ቦርሳ"
#. ysBGy
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "ሂደት"
#. gtPt9
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
#. 73Y2e
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "የ ጥንት"
#. MSY8y
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "ደማቅ"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "ስራ ማመልከቻ"
#. Koe3V
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "መቀጠያ"
#. hCpfD
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ነባር"
#. d7Hyk
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "ዘመናዊ"
#. CVJEC
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ serif"
#. XdU49
-#: include/sfx2/strings.hrc:333
+#: include/sfx2/strings.hrc:334
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "የ ንግድ ካርድ ከ አርማ ጋር"
#. UAmSj
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "ቀላል"
#. W7NVH
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:336
+#: include/sfx2/strings.hrc:337
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
-#. ZaGGB
+#. eBJ96
#: include/sfx2/strings.hrc:338
+msgctxt "STR_TEMPLATE_NAME34"
+msgid "Japanese Normal"
+msgstr ""
+
+#. ZaGGB
+#: include/sfx2/strings.hrc:340
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ማስወገጃ"
#. JReRY
-#: include/sfx2/strings.hrc:339
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ሁሉንም ማጽጃ"
#. yC8Gs
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:343
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "የ መግቢያ ቃል እርዝመት"
#. FKFmJ
-#: include/sfx2/strings.hrc:342
+#: include/sfx2/strings.hrc:344
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "እርስዎ ያስገቡት የ መግቢያ ቃል የ መረጃ መለዋወጫ ችግር ይፈጥራል: እባክዎን የ መግቢያ ቃል ያስገቡ ያነሰ ከ 52 ባይትስ: ወይንም የ በለጠ ከ 55 ባይትስ:"
#. jBQFN
-#: include/sfx2/strings.hrc:344
+#: include/sfx2/strings.hrc:346
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:347
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:349
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:351
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "ሰነድ"
#. XDGTb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:352
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "ሰንጠረዥ"
#. 3UZXB
-#: include/sfx2/strings.hrc:351
+#: include/sfx2/strings.hrc:353
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "ማቅረቢያ"
#. noN5s
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:354
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "መሳያ"
#. QpuFo
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:355
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "በቅርብ ጊዜ የ ተጠቀሙበት"
#. EcAjb
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:356
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "የ ቅርብ ጊዜ ባህሪ የለም"
#. tfjbD
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "ሁሉንም ነባ~ር ቴምፕሌቶች እንደ ነበር መመለሻ"
#. GWuDE
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:360
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:361
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:362
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:363
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~ማምጫ"
#. 8Cwfk
-#: include/sfx2/strings.hrc:362
+#: include/sfx2/strings.hrc:364
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "ተ~ጨማሪዎች"
#. idGvM
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:365
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "እንደገና መሰየሚያ"
#. EyjE3
-#: include/sfx2/strings.hrc:364
+#: include/sfx2/strings.hrc:366
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "ምድብ እንደገና መሰየሚያ"
#. T79Eb
-#: include/sfx2/strings.hrc:365
+#: include/sfx2/strings.hrc:367
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "አዲስ ምድብ"
#. fCRA7
-#: include/sfx2/strings.hrc:367
+#: include/sfx2/strings.hrc:369
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
@@ -2920,7 +2932,7 @@ msgid "Recent"
msgstr "የ ቅርብ ጊዜ"
#. BQwCQ
-#: sfx2/uiconfig/ui/charmapcontrol.ui:500
+#: sfx2/uiconfig/ui/charmapcontrol.ui:514
msgctxt "charmapcontrol|specialchardlg"
msgid "More Characters…"
msgstr "ተጨማሪ ባህሪዎች…"
@@ -3021,8 +3033,20 @@ msgctxt "custominfopage|extended_tip|CustomInfoPage"
msgid "Allows you to assign custom information fields to your document."
msgstr "በ እርስዎ ሰነድ ውስጥ የ መረጃ ሜዳዎች ማስተካከያ መመደብ ያስችሎታል"
+#. a9n4d
+#: sfx2/uiconfig/ui/deck.ui:102
+msgctxt "deck|SFX_STR_SIDEBAR_HELP_DECK"
+msgid "Help about this sidebar deck"
+msgstr ""
+
+#. fiTDC
+#: sfx2/uiconfig/ui/deck.ui:108
+msgctxt "deck|SFX_STR_SIDEBAR_HELP_DECK"
+msgid "Sidebar Deck Help"
+msgstr ""
+
#. VHwZA
-#: sfx2/uiconfig/ui/deck.ui:101 sfx2/uiconfig/ui/deck.ui:106
+#: sfx2/uiconfig/ui/deck.ui:121 sfx2/uiconfig/ui/deck.ui:126
msgctxt "deck|SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "የ ጎን መደርደሪያ ማሳራፊያ መዝጊያ"
@@ -3045,38 +3069,92 @@ msgctxt "descriptioninfopage|label29"
msgid "_Keywords:"
msgstr "_ቁልፍ ቃሎች:"
-#. Nayo4
+#. FXZzx
#: sfx2/uiconfig/ui/descriptioninfopage.ui:61
+msgctxt "descriptioninfopage|label31"
+msgid "Co_ntributor:"
+msgstr ""
+
+#. eKsAC
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:76
+msgctxt "descriptioninfopage|label32"
+msgid "Co_verage:"
+msgstr ""
+
+#. Wtpt7
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:91
+msgctxt "descriptioninfopage|label37"
+msgid "_Identifier:"
+msgstr ""
+
+#. 73G3F
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:106
+msgctxt "descriptioninfopage|label39"
+msgid "_Publisher:"
+msgstr ""
+
+#. Axu5g
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:121
+msgctxt "descriptioninfopage|label40"
+msgid "R_elation:"
+msgstr ""
+
+#. AGDpc
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:136
+msgctxt "descriptioninfopage|label41"
+msgid "Ri_ghts:"
+msgstr ""
+
+#. eK4rF
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:151
+msgctxt "descriptioninfopage|label42"
+msgid "So_urce:"
+msgstr ""
+
+#. RFBPC
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:166
+msgctxt "descriptioninfopage|label45"
+msgid "T_ype:"
+msgstr ""
+
+#. Nayo4
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:181
msgctxt "descriptioninfopage|label30"
msgid "_Comments:"
msgstr "_አስተያየቶች:"
#. qw238
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:79
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:199
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
msgstr "ለሰነዱ አርእስት ያስገቡ"
#. rvZHi
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:96
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:216
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
msgstr "ለ ሰነዱ ጉዳይ ያስገቡ: እርስዎ መጠቀም ይችላሉ ተመሳሳይ ይዞታ ያላቸውን ሰነዶች በ ጉዳይ በ ቡድን ማድረግ "
#. FoxGh
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:113
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:233
msgctxt "descriptioninfopage|extended_tip|keywords"
msgid "Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr "ያስገቡ ቃሎች እርስዎ እንደ ማውጫ መጠቀም የሚፈልጉትን ለ እርስዎ ሰነድ ይዞታዎች: ቁልፍ ቃሎች በ ኮማ (,) መለያየት አለባቸው: ቁልፍ ቃሎች ነጭ የ ክፍተት ቦታ ባህሪዎች ወይንም ሴሚኮለን (;) መያዝ ይችላሉ "
+#. k4Umi
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:250
+msgctxt "descriptioninfopage|extended_tip|contributor"
+msgid "contributor accessible description"
+msgstr ""
+
#. bo2q7
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:137
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:393
msgctxt "descriptioninfopage|extended_tip|comments"
msgid "Enter comments to help identify the document."
msgstr "አስተያየቶች ያስገቡ ሰነዱን ለመለየት እንዲረዳዎት"
#. sGW3Z
-#: sfx2/uiconfig/ui/descriptioninfopage.ui:150
+#: sfx2/uiconfig/ui/descriptioninfopage.ui:406
msgctxt "descriptioninfopage|extended_tip|DescriptionInfoPage"
msgid "Contains descriptive information about the document."
msgstr "ስለ ሰነዱ መግለጫ መረጃ ይዟል"
@@ -4028,20 +4106,26 @@ msgctxt "managestylepage|editlinkstyle"
msgid "Edit Style"
msgstr "ዘዴ ማረሚያ"
-#. cKjrA
+#. cFCws
#: sfx2/uiconfig/ui/managestylepage.ui:147
msgctxt "managestylepage|autoupdate"
-msgid "_AutoUpdate"
-msgstr "_ራሱ በራሱ ማሻሻያ"
+msgid "_Automatic update from document"
+msgstr ""
+
+#. TZByH
+#: sfx2/uiconfig/ui/managestylepage.ui:153
+msgctxt "managestylepage|autoupdate|tooltip_text"
+msgid "Any paragraph formatting changes in the document to a paragraph with this style are applied automatically to modify the paragraph style."
+msgstr ""
#. oTXJz
-#: sfx2/uiconfig/ui/managestylepage.ui:192
+#: sfx2/uiconfig/ui/managestylepage.ui:193
msgctxt "managestylepage|label1"
msgid "Style"
msgstr "ዘዴ"
#. NXG9o
-#: sfx2/uiconfig/ui/managestylepage.ui:230
+#: sfx2/uiconfig/ui/managestylepage.ui:231
msgctxt "managestylepage|label2"
msgid "Contains"
msgstr "ይዟል"
@@ -5061,43 +5145,43 @@ msgid "List View"
msgstr "ዝርዝር መመልከቻ"
#. pm89q
-#: sfx2/uiconfig/ui/templatepanel.ui:139
+#: sfx2/uiconfig/ui/templatepanel.ui:131
msgctxt "templatepanel|STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
#. GLRFT
-#: sfx2/uiconfig/ui/templatepanel.ui:152
+#: sfx2/uiconfig/ui/templatepanel.ui:143
msgctxt "templatepanel|STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
#. tAdD9
-#: sfx2/uiconfig/ui/templatepanel.ui:165
+#: sfx2/uiconfig/ui/templatepanel.ui:155
msgctxt "templatepanel|STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
#. Xk5tD
-#: sfx2/uiconfig/ui/templatepanel.ui:178
+#: sfx2/uiconfig/ui/templatepanel.ui:167
msgctxt "templatepanel|STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
#. irBvi
-#: sfx2/uiconfig/ui/templatepanel.ui:246 sfx2/uiconfig/ui/templatepanel.ui:303
+#: sfx2/uiconfig/ui/templatepanel.ui:235 sfx2/uiconfig/ui/templatepanel.ui:292
msgctxt "templatepanel|STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
#. FHud7
-#: sfx2/uiconfig/ui/templatepanel.ui:321
+#: sfx2/uiconfig/ui/templatepanel.ui:310
msgctxt "commontemplate|STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "በ ቅድመ እይታ ማሳያ"
#. BjVRZ
-#: sfx2/uiconfig/ui/templatepanel.ui:336
+#: sfx2/uiconfig/ui/templatepanel.ui:325
msgctxt "commontemplate|STR_HIGHLIGHT_CHECKBOX"
msgid "Spotlight"
msgstr ""
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index 59e8c9e6e91..eddcdc5e37f 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/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: 2022-10-10 13:36+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2021-11-26 20:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/am/>\n"
@@ -2974,176 +2974,194 @@ msgctxt "fontsizedialog|extended_tip|FontSizeDialog"
msgid "Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base."
msgstr "ይህን ንግግር ይጠቀሙ ለ መወሰን የ ፊደል መጥን ለ እርስዎ መቀመሪያ: ይምረጡ የ ቤዝ መጠን እና ሁሉንም አካላቶች በ መቀመሪያ ውስጥ መጠናቸው ከ ቤዝ አንፃር ይመጠናል "
-#. Ahejh
+#. 38iEb
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:12
+msgctxt "fonttypedialog|menuitem0"
+msgid "_Math"
+msgstr ""
+
+#. Ahejh
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:20
msgctxt "fonttypedialog|menuitem1"
msgid "_Variables"
msgstr "_ተለዋዋጮች"
#. wWEhm
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:20
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:28
msgctxt "fonttypedialog|menuitem2"
msgid "_Functions"
msgstr "_ተግባሮች"
#. vGby3
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:28
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:36
msgctxt "fonttypedialog|menuitem3"
msgid "_Numbers"
msgstr "_ቁጥሮች"
#. usaFG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:36
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:44
msgctxt "fonttypedialog|menuitem4"
msgid "_Text"
msgstr "_ጽሁፍ"
#. FRdhi
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:44
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:52
msgctxt "fonttypedialog|menuitem5"
msgid "_Serif"
msgstr "_Serif"
#. qCEgG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:52
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:60
msgctxt "fonttypedialog|menuitem6"
msgid "S_ans-serif"
msgstr "S_ans-serif"
#. gDXFw
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:60
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
msgctxt "fonttypedialog|menuitem7"
msgid "Fixe_d-width"
msgstr "የ ተወሰ_ነ-ስፋት"
#. dXCDj
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:76
msgctxt "fonttypedialog|FontsDialog"
msgid "Fonts"
msgstr "ፊደሎች"
#. p43oF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:98
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:106
msgctxt "fonttypedialog|modify"
msgid "_Modify"
msgstr "_ማሻሻያ"
#. uQCNw
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:111
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:119
msgctxt "fonttypedialog|extended_tip|modify"
msgid "Click one of the choices from this pop-up menu to access the Fonts dialog, where you can define the font and attributes for the respective formula and for custom fonts."
msgstr "ይጫኑ በ አንዱ ምርጫ ላይ ከዚህ ብቅ-ባይ ዝርዝር ውስጥ ለ መድረስ የ ፊደሎች ንግግር ውስጥ: እርስዎ የሚገልጹበት ፊደል እና መለያ ለ እያንዳንዱ መቀመሪያ እና ለ ፊደሎች ማስተካከያ "
#. sdTfG
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:123
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:131
msgctxt "fonttypedialog|default"
msgid "_Default"
msgstr "_ነባር"
#. gAvNx
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:130
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:138
msgctxt "fonttypedialog|extended_tip|default"
msgid "Click this button to save your changes as the default for all new formulas."
msgstr "ይጫኑ ይህን ቁልፍ ለውጡን እንደ ነባር ለማስቀመጥ ለሁሉም አዲስ መቀመሪያ."
+#. i6SEE
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:215
+msgctxt "fonttypedialog|label1"
+msgid "_Math:"
+msgstr ""
+
#. EhoBp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:207
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:232
msgctxt "fonttypedialog|label1"
msgid "_Variables:"
msgstr "_ተለዋዋጮች:"
#. BCVC9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:224
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:249
msgctxt "fonttypedialog|label2"
msgid "_Functions:"
msgstr "_ተግባሮች:"
#. zFooF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:241
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:266
msgctxt "fonttypedialog|label3"
msgid "_Numbers:"
msgstr "_ቁጥሮች:"
#. bYvD9
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:258
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:283
msgctxt "fonttypedialog|label4"
msgid "_Text:"
msgstr "_ጽሁፍ:"
+#. znrKy
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:303
+msgctxt "fonttypedialog|extended_tip|mathCB"
+msgid "You can select the font for the math symbols in your formula."
+msgstr ""
+
#. daPBN
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:278
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:319
msgctxt "fonttypedialog|extended_tip|variableCB"
msgid "You can select the font for the variables in your formula."
msgstr ""
#. CUQQ5
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:294
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:335
msgctxt "fonttypedialog|extended_tip|functionCB"
msgid "Select the font for names and properties of functions."
msgstr ""
#. Ap4gM
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:310
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:351
msgctxt "fonttypedialog|extended_tip|numberCB"
msgid "You can select the font for the numbers in your formula."
msgstr ""
#. gt2wF
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:326
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:367
msgctxt "fonttypedialog|extended_tip|textCB"
msgid "Define the font for the text in your formula here."
msgstr ""
#. PEDax
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:341
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:382
msgctxt "fonttypedialog|formulaL"
msgid "Formula Fonts"
msgstr "የ መቀመሪያ ፊደሎች"
#. FZyFB
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:375
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:416
msgctxt "fonttypedialog|label5"
msgid "_Serif:"
msgstr "_Serif:"
#. TAgaq
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:392
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:433
msgctxt "fonttypedialog|label6"
msgid "S_ans-serif:"
msgstr "S_ans-serif:"
#. qzEea
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:409
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:450
msgctxt "fonttypedialog|label7"
msgid "F_ixed-width:"
msgstr "የ _ተወሰነ-ስፋት:"
#. pJfBE
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:429
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:470
msgctxt "fonttypedialog|extended_tip|serifCB"
msgid "You can specify the font to be used as serif font."
msgstr ""
#. mD8Qp
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:445
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:486
msgctxt "fonttypedialog|extended_tip|sansCB"
msgid "You can specify the font to be used for sans serif font."
msgstr ""
#. BUA9M
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:461
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:502
msgctxt "fonttypedialog|extended_tip|fixedCB"
msgid "You can specify the font to be used for fixed-width font."
msgstr ""
#. PgQfV
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:476
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:517
msgctxt "fonttypedialog|customL"
msgid "Custom Fonts"
msgstr "ፊደሎች ማስተካከያ"
#. gXDAz
-#: starmath/uiconfig/smath/ui/fonttypedialog.ui:505
+#: starmath/uiconfig/smath/ui/fonttypedialog.ui:546
msgctxt "fonttypedialog|extended_tip|FontsDialog"
msgid "Defines the fonts that can be applied to formula elements."
msgstr "የ ፊደሎች መግለጫ ለ መቀመሪያ አካላቶች የሚጠቀሙበት"
@@ -3346,57 +3364,63 @@ msgctxt "smathsettings|label5"
msgid "Print Format"
msgstr "የ ህትመት አቀራረብ"
-#. s7A4r
+#. CUrCA
#: starmath/uiconfig/smath/ui/smathsettings.ui:257
+msgctxt "smathsettings|enableinlineedit"
+msgid "Enable visual editing"
+msgstr ""
+
+#. s7A4r
+#: starmath/uiconfig/smath/ui/smathsettings.ui:272
msgctxt "smathsettings|norightspaces"
msgid "Ig_nore ~~ and ' at the end of the line"
msgstr "መ_ተው ~~ እና ' በ መስመሩ መጨረሻ ላይ"
#. VjvrA
-#: starmath/uiconfig/smath/ui/smathsettings.ui:265
+#: starmath/uiconfig/smath/ui/smathsettings.ui:280
msgctxt "extended_tip|norightspaces"
msgid "Specifies that these space wildcards will be removed if they are at the end of a line."
msgstr "እነዚህ ሁሉገብ ክፍተቶች ይወገዳሉ በ መስመር መጨረሻ ላይ ከሆኑ "
#. RCEH8
-#: starmath/uiconfig/smath/ui/smathsettings.ui:277
+#: starmath/uiconfig/smath/ui/smathsettings.ui:292
msgctxt "smathsettings|saveonlyusedsymbols"
msgid "Embed only used symbols (smaller file size)"
msgstr "የተጠቀሙበትን ምልክቶች ብቻ ማጣበቂያ (ትንሹን የ ፋይል መጠን)"
#. BkZLa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:285
+#: starmath/uiconfig/smath/ui/smathsettings.ui:300
msgctxt "extended_tip|saveonlyusedsymbols"
msgid "Saves only those symbols with each formula that are used in that formula."
msgstr "እያንዳንዳቸውን የ መቀመሪያ ምልክት ያላቸውን ብቻ በ መቀመሪያ ውስጥ የተጠቀሙበትን ማስቀመጫ "
#. DfkEY
-#: starmath/uiconfig/smath/ui/smathsettings.ui:297
+#: starmath/uiconfig/smath/ui/smathsettings.ui:312
msgctxt "smathsettings|autoclosebrackets"
msgid "Auto close brackets, parentheses and braces"
msgstr "በራሱ ቅንፎች መዝጊያ: ቅንፎች እና ቅንፎች"
#. M4uaa
-#: starmath/uiconfig/smath/ui/smathsettings.ui:321
+#: starmath/uiconfig/smath/ui/smathsettings.ui:334
msgctxt "smathsettings|smzoom"
msgid "Scaling code input window:"
msgstr ""
#. sZMPm
-#: starmath/uiconfig/smath/ui/smathsettings.ui:337
-#: starmath/uiconfig/smath/ui/smathsettings.ui:340
+#: starmath/uiconfig/smath/ui/smathsettings.ui:348
+#: starmath/uiconfig/smath/ui/smathsettings.ui:355
msgctxt "extended_tip|smzoom"
msgid "Reduces or enlarges the size of the formula code by a specified enlargement factor."
msgstr ""
#. N4Diy
-#: starmath/uiconfig/smath/ui/smathsettings.ui:363
+#: starmath/uiconfig/smath/ui/smathsettings.ui:378
msgctxt "smathsettings|label1"
msgid "Miscellaneous Options"
msgstr "የተለያዩ ምርጫዎች"
#. BZ6a3
-#: starmath/uiconfig/smath/ui/smathsettings.ui:378
+#: starmath/uiconfig/smath/ui/smathsettings.ui:393
msgctxt "extended_tip|SmathSettings"
msgid "Defines formula settings that will be valid for all documents."
msgstr "ለ ሁሉም ሰነዶች ዋጋ ያለው የ መቀመሪያ መግለጫ ማሰናጃ "
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index f20d55230d8..f09a18c22d4 100644
--- a/source/am/svtools/messages.po
+++ b/source/am/svtools/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: 2023-05-31 16:28+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2021-12-06 02:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/am/>\n"
@@ -5834,20 +5834,14 @@ msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Form menu, %PRODUCTNAME must be restarted."
msgstr "የ ፎርም ዝርዝር እንደገና ለ ማዘጋጀት %PRODUCTNAME እንደገና ማስጀመር ያስፈልጋል"
-#. yojAQ
-#: svtools/uiconfig/ui/restartdialog.ui:265
-msgctxt "restartdialog|reason_save"
-msgid "For the modified save settings to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
-
#. weAzr
-#: svtools/uiconfig/ui/restartdialog.ui:280
+#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|label"
msgid "Do you want to restart %PRODUCTNAME now?"
msgstr "እርስዎ አሁን እንደገና ማስጀመር %PRODUCTNAME ይፈልጋሉ?"
#. fpc8k
-#: svtools/uiconfig/ui/restartdialog.ui:294
+#: svtools/uiconfig/ui/restartdialog.ui:279
msgctxt "restartdialog|reason_skia"
msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted."
msgstr ""
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 74f217661aa..8ca412e3f76 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/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: 2023-07-25 11:20+0200\n"
+"POT-Creation-Date: 2023-09-12 14:57+0200\n"
"PO-Revision-Date: 2022-08-02 21:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -5274,11 +5274,11 @@ msgctxt "RID_SVXSTR_DASH14"
msgid "Dashed"
msgstr ""
-#. T7sVF
+#. XAree
#: include/svx/strings.hrc:923
msgctxt "RID_SVXSTR_DASH15"
-msgid "Line Style 9"
-msgstr "የ መስመር ዘዴ 9"
+msgid "Sparse Dash"
+msgstr ""
#. evPXr
#: include/svx/strings.hrc:924
@@ -6329,359 +6329,365 @@ msgctxt "RID_SVXSTR_THEME_EFFECT_DARKER"
msgid "$THEME_NAME, $PERCENTAGE% Darker"
msgstr ""
+#. PWRtb
+#: include/svx/strings.hrc:1138
+msgctxt "RID_SVXSTR_UNDO_THEME_COLOR_CHANGE"
+msgid "Theme Color Change"
+msgstr ""
+
#. DJGyY
-#: include/svx/strings.hrc:1139
+#: include/svx/strings.hrc:1140
msgctxt "RID_SVX_EXTRUSION_BAR"
msgid "Extrusion"
msgstr "ማሾለኪያ"
#. TyWTi
-#: include/svx/strings.hrc:1140
+#: include/svx/strings.hrc:1141
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ON_OFF"
msgid "Apply Extrusion On/Off"
msgstr "ማሾለኪያ ማብሪያ/ማጥፊያ መፈጸሚያ"
#. DKFYE
-#: include/svx/strings.hrc:1141
+#: include/svx/strings.hrc:1142
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_DOWN"
msgid "Tilt Down"
msgstr "ወደ ታች ማዘንበያ"
#. 2Rrxc
-#: include/svx/strings.hrc:1142
+#: include/svx/strings.hrc:1143
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_UP"
msgid "Tilt Up"
msgstr "ወደ ላይ ማዘንበያ"
#. eDpJK
-#: include/svx/strings.hrc:1143
+#: include/svx/strings.hrc:1144
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_LEFT"
msgid "Tilt Left"
msgstr "ወደ ግራ ማዘንበያ"
#. CWDSN
-#: include/svx/strings.hrc:1144
+#: include/svx/strings.hrc:1145
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ROTATE_RIGHT"
msgid "Tilt Right"
msgstr "ወደ ቀኝ ማዘንበያ"
#. CxYgt
-#: include/svx/strings.hrc:1145
+#: include/svx/strings.hrc:1146
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_DEPTH"
msgid "Change Extrusion Depth"
msgstr "የ ማሾለኪያ ጥልቀት መቀየሪያ"
#. c5JCp
-#: include/svx/strings.hrc:1146
+#: include/svx/strings.hrc:1147
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_ORIENTATION"
msgid "Change Orientation"
msgstr "አቅጣጫ መቀየሪያ"
#. KDSyh
-#: include/svx/strings.hrc:1147
+#: include/svx/strings.hrc:1148
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_PROJECTION"
msgid "Change Projection Type"
msgstr "Change Projection Type"
#. JpzeS
-#: include/svx/strings.hrc:1148
+#: include/svx/strings.hrc:1149
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING"
msgid "Change Lighting"
msgstr "ብርሃን መቀየሪያ"
#. j4AR9
-#: include/svx/strings.hrc:1149
+#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_BRIGHTNESS"
msgid "Change Brightness"
msgstr "ብሩህነቱን መቀየሪያ"
#. yA2xm
-#: include/svx/strings.hrc:1150
+#: include/svx/strings.hrc:1151
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
msgstr "የ ማሾለኪያ ገጽታ መቀየሪያ"
#. DFEZP
-#: include/svx/strings.hrc:1151
+#: include/svx/strings.hrc:1152
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_COLOR"
msgid "Change Extrusion Color"
msgstr "የ ማሾለኪያ ቀለም መቀየሪያ"
#. uPyWe
-#: include/svx/strings.hrc:1153
+#: include/svx/strings.hrc:1154
msgctxt "RID_SVXFLOAT3D_FIX_R"
msgid "R:"
msgstr "ቀ:"
#. UMMJN
-#: include/svx/strings.hrc:1154
+#: include/svx/strings.hrc:1155
msgctxt "RID_SVXFLOAT3D_FIX_G"
msgid "G:"
msgstr "አ:"
#. ocdkG
-#: include/svx/strings.hrc:1155
+#: include/svx/strings.hrc:1156
msgctxt "RID_SVXFLOAT3D_FIX_B"
msgid "B:"
msgstr "ሰ:"
#. L962H
-#: include/svx/strings.hrc:1157
+#: include/svx/strings.hrc:1158
msgctxt "RID_SVX_FONTWORK_BAR"
msgid "Fontwork"
msgstr "የ ፊደል ስራ"
#. 7RVov
-#: include/svx/strings.hrc:1158
+#: include/svx/strings.hrc:1159
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SHAPE"
msgid "Apply Fontwork Shape"
msgstr "የ ፊደል ስራ ቅርጽ መፈጸሚያ"
#. h3CLw
-#: include/svx/strings.hrc:1159
+#: include/svx/strings.hrc:1160
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_SAME_LETTER_HEIGHT"
msgid "Apply Fontwork Same Letter Heights"
msgstr "የ ፊደል ስራ ተመሳሳይ የ ፊደል እርዝመት መፈጸሚያ"
#. 6h2dG
-#: include/svx/strings.hrc:1160
+#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_ALIGNMENT"
msgid "Apply Fontwork Alignment"
msgstr "የ ፊደል ስራ ማሰለፊያ መፈጸሚያ"
#. eKHcV
-#: include/svx/strings.hrc:1161
+#: include/svx/strings.hrc:1162
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
msgstr "የ ፊደል ስራ ባህሪ ክፍተት መፈጸሚያ"
#. oo88Y
-#: include/svx/strings.hrc:1163
+#: include/svx/strings.hrc:1164
msgctxt "RID_SVXSTR_A11Y_WITH"
msgid "with"
msgstr "ጋር"
#. 4sz83
-#: include/svx/strings.hrc:1164
+#: include/svx/strings.hrc:1165
msgctxt "RID_SVXSTR_A11Y_STYLE"
msgid "Style"
msgstr "ዘዴ"
#. fEHXC
-#: include/svx/strings.hrc:1165
+#: include/svx/strings.hrc:1166
msgctxt "RID_SVXSTR_A11Y_AND"
msgid "and"
msgstr "እና"
#. EoET4
#. SvxRectCtl
-#: include/svx/strings.hrc:1167
+#: include/svx/strings.hrc:1168
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
msgstr "የ ጠርዝ መቆጣጠሪያ"
#. CUEEW
-#: include/svx/strings.hrc:1168
+#: include/svx/strings.hrc:1169
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_DESCR"
msgid "Selection of a corner point."
msgstr "የ ጠርዝ ነጥቦች መምረጫ"
#. cQmVp
-#: include/svx/strings.hrc:1169
+#: include/svx/strings.hrc:1170
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LT"
msgid "Top left"
msgstr "ከ ላይ በ ግራ በኩል"
#. TtnJn
-#: include/svx/strings.hrc:1170
+#: include/svx/strings.hrc:1171
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MT"
msgid "Top middle"
msgstr "ከ ላይ መሀከል"
#. UERVC
-#: include/svx/strings.hrc:1171
+#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RT"
msgid "Top right"
msgstr "ከ ላይ በ ቀኝ በኩል"
#. CznfN
-#: include/svx/strings.hrc:1172
+#: include/svx/strings.hrc:1173
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
msgstr "በ ግራ በኩል መሀከል"
#. jvzC7
-#: include/svx/strings.hrc:1173
+#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MM"
msgid "Center"
msgstr "መሀከል"
#. HPtYD
-#: include/svx/strings.hrc:1174
+#: include/svx/strings.hrc:1175
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
msgstr "በ ቀኝ በኩል መሀከል"
#. v4SqB
-#: include/svx/strings.hrc:1175
+#: include/svx/strings.hrc:1176
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LB"
msgid "Bottom left"
msgstr "ከ ታች በ ግራ በኩል"
#. daA8a
-#: include/svx/strings.hrc:1176
+#: include/svx/strings.hrc:1177
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_MB"
msgid "Bottom middle"
msgstr "ከ ታች መካከል"
#. DGWf8
-#: include/svx/strings.hrc:1177
+#: include/svx/strings.hrc:1178
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RB"
msgid "Bottom right"
msgstr "ከ ታች በ ቀኝ በኩል"
#. AZsBC
#. SvxGraphCtrlAccessibleContext
-#: include/svx/strings.hrc:1179
+#: include/svx/strings.hrc:1180
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
msgstr "ቅርጽ መቆጣጠሪያ"
#. aMva8
-#: include/svx/strings.hrc:1180
+#: include/svx/strings.hrc:1181
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_DESCRIPTION"
msgid "This is where you can edit the contour."
msgstr "እዚህ ነው ቅርጹን የሚያርሙት"
#. DXEuF
-#: include/svx/strings.hrc:1181
+#: include/svx/strings.hrc:1182
msgctxt "RID_SVXSTR_CHARACTER_SELECTION"
msgid "Special character selection"
msgstr "የ ተለዩ ባህሪዎች ማረሚያ"
#. JfRzP
-#: include/svx/strings.hrc:1182
+#: include/svx/strings.hrc:1183
msgctxt "RID_SVXSTR_CHAR_SEL_DESC"
msgid "Select special characters in this area."
msgstr "የ ተለዩ ባህሪዎች ከዚህ አካባቢ ይምረጡ"
#. umWuB
#. The space behind is a must.
-#: include/svx/strings.hrc:1184
+#: include/svx/strings.hrc:1185
msgctxt "RID_SVXSTR_CHARACTER_CODE"
msgid "Character code "
msgstr "የ ባህሪዎች ኮድ "
#. HECeC
-#: include/svx/strings.hrc:1186
+#: include/svx/strings.hrc:1187
msgctxt "RID_ERR_FIELDREQUIRED"
msgid "Input required in field '#'. Please enter a value."
msgstr "በ ሜዳው ውስጥ ማስገባት ያስፈልጋል '#'. እባክዎን ዋጋ ያስገቡ"
#. w4wm8
-#: include/svx/strings.hrc:1187
+#: include/svx/strings.hrc:1188
msgctxt "RID_STR_FORMS"
msgid "Forms"
msgstr "ፎርሞች"
#. cz8aS
-#: include/svx/strings.hrc:1188
+#: include/svx/strings.hrc:1189
msgctxt "RID_STR_NO_PROPERTIES"
msgid "No control selected"
msgstr "መቆጣጠሪያ አልተመረጠም"
#. JG7Es
-#: include/svx/strings.hrc:1189
+#: include/svx/strings.hrc:1190
msgctxt "RID_STR_PROPERTIES_CONTROL"
msgid "Properties: "
msgstr "ባህሪዎች : "
#. YQvBF
-#: include/svx/strings.hrc:1190
+#: include/svx/strings.hrc:1191
msgctxt "RID_STR_PROPERTIES_FORM"
msgid "Form Properties"
msgstr "ባህሪዎች መፍጠሪያ"
#. qS9Rn
-#: include/svx/strings.hrc:1191
+#: include/svx/strings.hrc:1192
msgctxt "RID_STR_FMEXPLORER"
msgid "Form Navigator"
msgstr "መቃኛ መፍጠሪያ"
#. PzEVD
-#: include/svx/strings.hrc:1192
+#: include/svx/strings.hrc:1193
msgctxt "RID_STR_FORM"
msgid "Form"
msgstr "ፎርም"
#. FWPxF
-#: include/svx/strings.hrc:1193
+#: include/svx/strings.hrc:1194
msgctxt "RID_STR_HIDDEN"
msgid "Hidden"
msgstr "የ ተደበቀ"
#. DnoDH
-#: include/svx/strings.hrc:1194
+#: include/svx/strings.hrc:1195
msgctxt "RID_STR_STDFORMNAME"
msgid "Form"
msgstr "ፎርም"
#. Ba4Gy
-#: include/svx/strings.hrc:1195
+#: include/svx/strings.hrc:1196
msgctxt "RID_STR_PROPTITLE_HIDDEN"
msgid "Hidden Control"
msgstr "የተደበቀ መቆጣጠሪያ"
#. wtZqP
-#: include/svx/strings.hrc:1196
+#: include/svx/strings.hrc:1197
msgctxt "RID_STR_CONTROL"
msgid "Control"
msgstr "መቆጣጠሪያ"
#. HvXRK
-#: include/svx/strings.hrc:1197
+#: include/svx/strings.hrc:1198
msgctxt "RID_STR_REC_TEXT"
msgid "Record"
msgstr "መቅረጫ"
#. HmTfB
-#: include/svx/strings.hrc:1198
+#: include/svx/strings.hrc:1199
msgctxt "RID_STR_REC_FROM_TEXT"
msgid "of"
msgstr "ከ"
#. NZ68L
-#: include/svx/strings.hrc:1199
+#: include/svx/strings.hrc:1200
msgctxt "RID_STR_FIELDSELECTION"
msgid "Add field:"
msgstr "ሜዳ መጨመሪያ :"
#. vGXiw
-#: include/svx/strings.hrc:1200
+#: include/svx/strings.hrc:1201
msgctxt "RID_STR_WRITEERROR"
msgid "Error writing data to database"
msgstr "ዳታ ወደ ዳታቤዝ ሲጻፍ ስህተት ተፈጥሯል"
#. zzFRi
-#: include/svx/strings.hrc:1201
+#: include/svx/strings.hrc:1202
msgctxt "RID_STR_SYNTAXERROR"
msgid "Syntax error in query expression"
msgstr "Syntax error in query expression"
#. fS8JJ
-#: include/svx/strings.hrc:1202
+#: include/svx/strings.hrc:1203
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
msgstr "1 መዝገብ ሊያጠፉ ነው"
#. Qb4Gk
-#: include/svx/strings.hrc:1203
+#: include/svx/strings.hrc:1204
msgctxt "RID_STR_DELETECONFIRM_RECORDS"
msgid "# records will be deleted."
msgstr "# መዝገብ ይጠፋል"
#. zSJQe
-#: include/svx/strings.hrc:1204
+#: include/svx/strings.hrc:1205
msgctxt "RID_STR_DELETECONFIRM"
msgid ""
"If you click Yes, you won't be able to undo this operation.\n"
@@ -6691,337 +6697,337 @@ msgstr ""
"ለማንኛውም መቀጠል ይፈልጋሉ?"
#. Kb7sF
-#: include/svx/strings.hrc:1205
+#: include/svx/strings.hrc:1206
msgctxt "RID_STR_NAVIGATIONBAR"
msgid "Navigation bar"
msgstr "መቃኛ መደርደሪያ"
#. pKEQb
-#: include/svx/strings.hrc:1206
+#: include/svx/strings.hrc:1207
msgctxt "RID_STR_COLUMN"
msgid "Col"
msgstr "አምድ"
#. FXRKA
-#: include/svx/strings.hrc:1207
+#: include/svx/strings.hrc:1208
msgctxt "RID_STR_UNDO_PROPERTY"
msgid "Set property '#'"
msgstr "ባህሪ ማሰናጃ '#'"
#. hXjTN
-#: include/svx/strings.hrc:1208
+#: include/svx/strings.hrc:1209
msgctxt "RID_STR_UNDO_CONTAINER_INSERT"
msgid "Insert in container"
msgstr "በማጠራቀሚያው ውስጥ ያስገቡ"
#. BWpyC
-#: include/svx/strings.hrc:1209
+#: include/svx/strings.hrc:1210
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE"
msgid "Delete #"
msgstr "ማጥፊያ #"
#. ZeaDk
-#: include/svx/strings.hrc:1210
+#: include/svx/strings.hrc:1211
msgctxt "RID_STR_UNDO_CONTAINER_REMOVE_MULTIPLE"
msgid "Delete # objects"
msgstr "እቃዎችን # ማጥፊያ"
#. VgGrE
-#: include/svx/strings.hrc:1211
+#: include/svx/strings.hrc:1212
msgctxt "RID_STR_UNDO_CONTAINER_REPLACE"
msgid "Replace a container element"
msgstr "የማጠራቀሚያ አካል መቀየሪያ"
#. FoXgt
-#: include/svx/strings.hrc:1212
+#: include/svx/strings.hrc:1213
msgctxt "RID_STR_UNDO_MODEL_REPLACE"
msgid "Replace Control"
msgstr "መቆጣጠሪያ መቀየሪያ"
#. ZGDAr
-#: include/svx/strings.hrc:1214
+#: include/svx/strings.hrc:1215
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
msgstr "የ ጽሁፍ ሳጥን"
#. CBmAL
-#: include/svx/strings.hrc:1215
+#: include/svx/strings.hrc:1216
msgctxt "RID_STR_PROPTITLE_CHECKBOX"
msgid "Check Box"
msgstr "ሳጥኑ ውስጥ ምልክት ያድርጉ"
#. xwuJF
-#: include/svx/strings.hrc:1216
+#: include/svx/strings.hrc:1217
msgctxt "RID_STR_PROPTITLE_COMBOBOX"
msgid "Combo Box"
msgstr "መቀላቀያ ሳጥን"
#. WiNUf
-#: include/svx/strings.hrc:1217
+#: include/svx/strings.hrc:1218
msgctxt "RID_STR_PROPTITLE_LISTBOX"
msgid "List Box"
msgstr "የ ዝርዝር ሳጥን"
#. a7gAj
-#: include/svx/strings.hrc:1218
+#: include/svx/strings.hrc:1219
msgctxt "RID_STR_PROPTITLE_DATEFIELD"
msgid "Date Field"
msgstr "የ ቀን ሜዳ"
#. EaBTj
-#: include/svx/strings.hrc:1219
+#: include/svx/strings.hrc:1220
msgctxt "RID_STR_PROPTITLE_TIMEFIELD"
msgid "Time Field"
msgstr "የ ሰአት ሜዳ"
#. DWfsm
-#: include/svx/strings.hrc:1220
+#: include/svx/strings.hrc:1221
msgctxt "RID_STR_PROPTITLE_NUMERICFIELD"
msgid "Numeric Field"
msgstr "የ ቁጥር ሜዳ"
#. TYjnr
-#: include/svx/strings.hrc:1221
+#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_CURRENCYFIELD"
msgid "Currency Field"
msgstr "የ ገንዘብ ሜዳ"
#. B6MEP
-#: include/svx/strings.hrc:1222
+#: include/svx/strings.hrc:1223
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
msgstr "የ ንድፍ ሜዳ"
#. DEn9D
-#: include/svx/strings.hrc:1223
+#: include/svx/strings.hrc:1224
msgctxt "RID_STR_PROPTITLE_FORMATTED"
msgid "Formatted Field"
msgstr "የ ሜዳ አቀራረብ"
#. V4iMu
-#: include/svx/strings.hrc:1225
+#: include/svx/strings.hrc:1226
msgctxt "RID_STR_PROPTITLE_PUSHBUTTON"
msgid "Push Button"
msgstr "ቁልፉን ይጫኑ"
#. TreFC
-#: include/svx/strings.hrc:1226
+#: include/svx/strings.hrc:1227
msgctxt "RID_STR_PROPTITLE_RADIOBUTTON"
msgid "Option Button"
msgstr "አማራጭ ቁልፍ"
#. NFysA
-#: include/svx/strings.hrc:1227
+#: include/svx/strings.hrc:1228
msgctxt "RID_STR_PROPTITLE_FIXEDTEXT"
msgid "Label Field"
msgstr "የ ምልክት ሜዳ"
#. E5mMK
-#: include/svx/strings.hrc:1228
+#: include/svx/strings.hrc:1229
msgctxt "RID_STR_PROPTITLE_GROUPBOX"
msgid "Group Box"
msgstr "የ ቡድን ሳጥን"
#. 5474w
-#: include/svx/strings.hrc:1229
+#: include/svx/strings.hrc:1230
msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON"
msgid "Image Button"
msgstr "የ ምስል ቁልፍ"
#. qT2Ed
-#: include/svx/strings.hrc:1230
+#: include/svx/strings.hrc:1231
msgctxt "RID_STR_PROPTITLE_IMAGECONTROL"
msgid "Image Control"
msgstr "ምስል መቆጣጠሪያ"
#. 6Qvho
-#: include/svx/strings.hrc:1231
+#: include/svx/strings.hrc:1232
msgctxt "RID_STR_PROPTITLE_FILECONTROL"
msgid "File Selection"
msgstr "የ ፋይል ምርጫዎች"
#. uEYBR
-#: include/svx/strings.hrc:1232
+#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_DBGRID"
msgid "Table Control "
msgstr "ሰንጠረዥ መቆጣጠሪያ "
#. 3SUEn
-#: include/svx/strings.hrc:1233
+#: include/svx/strings.hrc:1234
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
msgstr "መሸብለያ መደርደሪያ"
#. VtEN6
-#: include/svx/strings.hrc:1234
+#: include/svx/strings.hrc:1235
msgctxt "RID_STR_PROPTITLE_SPINBUTTON"
msgid "Spin Button"
msgstr "ማሽከርከሪያ ቁልፍ"
#. eGgm4
-#: include/svx/strings.hrc:1235
+#: include/svx/strings.hrc:1236
msgctxt "RID_STR_PROPTITLE_NAVBAR"
msgid "Navigation Bar"
msgstr "መቃኛ መደርደሪያ"
#. yME46
-#: include/svx/strings.hrc:1236
+#: include/svx/strings.hrc:1237
msgctxt "RID_STR_PROPTITLE_MULTISELECT"
msgid "Multiselection"
msgstr "በርካታ ምርጫ"
#. s94UU
-#: include/svx/strings.hrc:1238
+#: include/svx/strings.hrc:1239
msgctxt "RID_STR_DATE_AND_TIME"
msgid "Date and Time Field"
msgstr "የ ቀን እና ሰአት ሜዳ"
#. PzA5d
-#: include/svx/strings.hrc:1240
+#: include/svx/strings.hrc:1241
msgctxt "RID_STR_NODATACONTROLS"
msgid "No data-related controls in the current form!"
msgstr "በ አሁኑ ፎርም ውስጥ ምንም ዳታ-የተዛመደ መቆጣጠሪያ የለም"
#. ZyBEz
-#: include/svx/strings.hrc:1241
+#: include/svx/strings.hrc:1242
msgctxt "RID_STR_POSTFIX_DATE"
msgid " (Date)"
msgstr " (ቀን)"
#. guA5u
-#: include/svx/strings.hrc:1242
+#: include/svx/strings.hrc:1243
msgctxt "RID_STR_POSTFIX_TIME"
msgid " (Time)"
msgstr " (ሰአት)"
#. 2wgdY
-#: include/svx/strings.hrc:1243
+#: include/svx/strings.hrc:1244
msgctxt "RID_STR_FILTER_NAVIGATOR"
msgid "Filter navigator"
msgstr "መቃኛ ማጣሪያ"
#. BUYuD
-#: include/svx/strings.hrc:1244
+#: include/svx/strings.hrc:1245
msgctxt "RID_STR_FILTER_FILTER_FOR"
msgid "Filter for"
msgstr "ማጣሪያ ከ"
#. AcTBB
-#: include/svx/strings.hrc:1245
+#: include/svx/strings.hrc:1246
msgctxt "RID_STR_FILTER_FILTER_OR"
msgid "Or"
msgstr "ወይም"
#. 6RPtu
-#: include/svx/strings.hrc:1246
+#: include/svx/strings.hrc:1247
msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY"
msgid "Valid bound controls which can be used in the table view do not exist in the current form."
msgstr "ዋጋ ያለው መዝለያ መቆጣጠሪያ በ ሰንጠረዥ መመልከቻ ውስጥ የሚጠቀሙበት በ አሁኑ ፎርም ውስጥ አልተገኘም"
#. iEoGb
-#: include/svx/strings.hrc:1247
+#: include/svx/strings.hrc:1248
msgctxt "RID_STR_AUTOFIELD"
msgid "<AutoField>"
msgstr "<በራሱ ሜዳ>"
#. Da6gx
-#: include/svx/strings.hrc:1248
+#: include/svx/strings.hrc:1249
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
msgstr "Syntax error in SQL statement"
#. ZoEuu
-#: include/svx/strings.hrc:1249
+#: include/svx/strings.hrc:1250
msgctxt "RID_STR_SVT_SQL_SYNTAX_VALUE_NO_LIKE"
msgid "The value #1 cannot be used with LIKE."
msgstr "The value #1 cannot be used with LIKE."
#. 75ECE
-#: include/svx/strings.hrc:1250
+#: include/svx/strings.hrc:1251
msgctxt "RID_STR_SVT_SQL_SYNTAX_FIELD_NO_LIKE"
msgid "LIKE cannot be used with this field."
msgstr "LIKE cannot be used with this field."
#. tzFv5
-#: include/svx/strings.hrc:1251
+#: include/svx/strings.hrc:1252
msgctxt "RID_STR_SVT_SQL_SYNTAX_ACCESS_DAT_NO_VALID"
msgid "The value entered is not a valid date. Please enter a date in a valid format, for example, MM/DD/YY."
msgstr "ያስገቡት ዋጋ ያለው ቀን አይደለም: እባክዎን ዋጋ ያለው ቀን በ አቀራረብ ያስገቡ ለምሳሌ ወወ/ቀቀ/አአ"
#. y6Z26
-#: include/svx/strings.hrc:1252
+#: include/svx/strings.hrc:1253
msgctxt "RID_STR_SVT_SQL_SYNTAX_INT_NO_VALID"
msgid "The field cannot be compared with an integer."
msgstr "ሜዳው መወዳደር አይችልም ከቁጥር ጋር"
#. F8FgA
-#: include/svx/strings.hrc:1253
+#: include/svx/strings.hrc:1254
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE"
msgid "The database does not contain a table named \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ የለም \"#\"."
#. EDcU7
-#: include/svx/strings.hrc:1254
+#: include/svx/strings.hrc:1255
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_OR_QUERY"
msgid "The database does contain neither a table nor a query named \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ ወይንም የ ጥያቄ ስም አለ \"#\"."
#. YBFF5
-#: include/svx/strings.hrc:1255
+#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS"
msgid "The database already contains a table or view with name \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ሰንጠረዥ ወይንም መመልከቻ አለ \"#\"."
#. cECTG
-#: include/svx/strings.hrc:1256
+#: include/svx/strings.hrc:1257
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
msgstr "ዳታቤዙ በ ውስጡ በዚህ ስም ጥያቄ አለ \"#\"."
#. VkeLY
-#: include/svx/strings.hrc:1257
+#: include/svx/strings.hrc:1258
msgctxt "RID_STR_SVT_SQL_SYNTAX_COLUMN"
msgid "The column \"#1\" is unknown in the table \"#2\"."
msgstr "ይህ አምድ \"#1\" ያልታወቀ ሰንጠረዥ ነው \"#2\"."
#. z9bf9
-#: include/svx/strings.hrc:1258
+#: include/svx/strings.hrc:1259
msgctxt "RID_STR_SVT_SQL_SYNTAX_REAL_NO_VALID"
msgid "The field cannot be compared with a floating point number."
msgstr "ሜዳውን ማወዳደር አይቻልም ከተንሳፋፊ ነጥብ ቁጥር ጋር"
#. CEg85
-#: include/svx/strings.hrc:1259
+#: include/svx/strings.hrc:1260
msgctxt "RID_STR_SVT_SQL_SYNTAX_CRIT_NO_COMPARE"
msgid "The entered criterion cannot be compared with this field."
msgstr "ያስገቡት ደንብ ከዚህ ሜዳ ጋር መወዳደር አይችልም"
#. ZGAAQ
-#: include/svx/strings.hrc:1260
+#: include/svx/strings.hrc:1261
msgctxt "RID_STR_DATANAVIGATOR"
msgid "Data Navigator"
msgstr "ዳታ መቃኛ"
#. W4uM2
-#: include/svx/strings.hrc:1261
+#: include/svx/strings.hrc:1262
msgctxt "RID_STR_READONLY_VIEW"
msgid " (read-only)"
msgstr " (ለማንበብ-ብቻ)"
#. DgfNh
-#: include/svx/strings.hrc:1262
+#: include/svx/strings.hrc:1263
msgctxt "RID_STR_ALREADYEXISTOVERWRITE"
msgid "The file already exists. Overwrite?"
msgstr "ፋይሉ ቀደም ሲል ነበር: በላዩ ላይ ደርቤ ልጻፍበት?"
#. dSYCi
-#: include/svx/strings.hrc:1263
+#: include/svx/strings.hrc:1264
msgctxt "RID_STR_OBJECT_LABEL"
msgid "#object# label"
msgstr "#እቃ# ምልክት"
#. JpaM6
-#: include/svx/strings.hrc:1265
+#: include/svx/strings.hrc:1266
msgctxt "RID_STR_QRY_REMOVE_MODEL"
msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
@@ -7031,7 +7037,7 @@ msgstr ""
"በእርግጥ ምሳሌውን ማጥፋት ይፈልጋሉ?"
#. y5Dyt
-#: include/svx/strings.hrc:1266
+#: include/svx/strings.hrc:1267
msgctxt "RID_STR_QRY_REMOVE_INSTANCE"
msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
@@ -7041,7 +7047,7 @@ msgstr ""
"በእርግጥ ምሳሌውን ማጥፋት ይፈልጋሉ?"
#. VEzGF
-#: include/svx/strings.hrc:1267
+#: include/svx/strings.hrc:1268
msgctxt "RID_STR_QRY_REMOVE_ELEMENT"
msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
@@ -7051,13 +7057,13 @@ msgstr ""
"በእርግጥ አካሉን ማጥፋት ይፈልጋሉ?"
#. 3hF6H
-#: include/svx/strings.hrc:1268
+#: include/svx/strings.hrc:1269
msgctxt "RID_STR_QRY_REMOVE_ATTRIBUTE"
msgid "Do you really want to delete the attribute '$ATTRIBUTENAME'?"
msgstr "ባህሪውን ማጥፋት ይፈልጋሉ '$ATTRIBUTENAME'?"
#. AWEbJ
-#: include/svx/strings.hrc:1269
+#: include/svx/strings.hrc:1270
msgctxt "RID_STR_QRY_REMOVE_SUBMISSION"
msgid ""
"Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n"
@@ -7069,7 +7075,7 @@ msgstr ""
"በእርግጥ ማስገቢያውን ማጥፋት ይፈልጋሉ?"
#. SGiK5
-#: include/svx/strings.hrc:1270
+#: include/svx/strings.hrc:1271
msgctxt "RID_STR_QRY_REMOVE_BINDING"
msgid ""
"Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n"
@@ -7081,1068 +7087,1068 @@ msgstr ""
"በእርግጥ ማጣመሪያውን ማጥፋት ይፈልጋሉ?"
#. 2zzHP
-#: include/svx/strings.hrc:1271
+#: include/svx/strings.hrc:1272
msgctxt "RID_STR_INVALID_XMLNAME"
msgid "The name '%1' is not valid in XML. Please enter a different name."
msgstr "ስሙ '%1' ዋጋ የለውም በ XML አይደለም ፡ እባክዎን ሌላ የተለየ ስም ያስገቡ"
#. 4nAtc
-#: include/svx/strings.hrc:1272
+#: include/svx/strings.hrc:1273
msgctxt "RID_STR_INVALID_XMLPREFIX"
msgid "The prefix '%1' is not valid in XML. Please enter a different prefix."
msgstr "መነሻው '%1' ዋጋ የለውም በ XML. እባክዎን የተለየ መነሻ ያስገቡ"
#. qrFQD
-#: include/svx/strings.hrc:1273
+#: include/svx/strings.hrc:1274
msgctxt "RID_STR_DOUBLE_MODELNAME"
msgid "The name '%1' already exists. Please enter a new name."
msgstr "ስሙ '%1' ቀደም ሲል ነበር ፡ እባክዎን ሌላ አዲስ ስም ያስገቡ"
#. DKkaw
-#: include/svx/strings.hrc:1274
+#: include/svx/strings.hrc:1275
msgctxt "RID_STR_EMPTY_SUBMISSIONNAME"
msgid "The submission must have a name."
msgstr "ማስገቢያ ስም ያስፈልገዋል"
#. xcAaD
-#: include/svx/strings.hrc:1275
+#: include/svx/strings.hrc:1276
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
msgstr "Post"
#. XGRQA
-#: include/svx/strings.hrc:1276
+#: include/svx/strings.hrc:1277
msgctxt "RID_STR_METHOD_PUT"
msgid "Put"
msgstr "ማስቀመጫ"
#. tkRR3
-#: include/svx/strings.hrc:1277
+#: include/svx/strings.hrc:1278
msgctxt "RID_STR_METHOD_GET"
msgid "Get"
msgstr "ማግኛ"
#. fsyAL
-#: include/svx/strings.hrc:1278
+#: include/svx/strings.hrc:1279
msgctxt "RID_STR_REPLACE_NONE"
msgid "None"
msgstr "ምንም"
#. Bjxmg
-#: include/svx/strings.hrc:1279
+#: include/svx/strings.hrc:1280
msgctxt "RID_STR_REPLACE_INST"
msgid "Instance"
msgstr "ምሳሌ"
#. affmF
-#: include/svx/strings.hrc:1280
+#: include/svx/strings.hrc:1281
msgctxt "RID_STR_REPLACE_DOC"
msgid "Document"
msgstr "ሰነድ"
#. gJLHj
-#: include/svx/strings.hrc:1281
+#: include/svx/strings.hrc:1282
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
msgstr "መሸፈኛ : "
#. AEHco
-#: include/svx/strings.hrc:1282
+#: include/svx/strings.hrc:1283
msgctxt "RID_STR_DATANAV_SUBM_REF"
msgid "Reference: "
msgstr "ማመሳከሪያ: "
#. iLaBC
-#: include/svx/strings.hrc:1283
+#: include/svx/strings.hrc:1284
msgctxt "RID_STR_DATANAV_SUBM_ACTION"
msgid "Action: "
msgstr "ተግባር : "
#. HBV5Q
-#: include/svx/strings.hrc:1284
+#: include/svx/strings.hrc:1285
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
msgstr "ዘዴ : "
#. dAN2F
-#: include/svx/strings.hrc:1285
+#: include/svx/strings.hrc:1286
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
msgid "Replace: "
msgstr "መቀየሪያ: "
#. QMiqA
-#: include/svx/strings.hrc:1286
+#: include/svx/strings.hrc:1287
msgctxt "RID_STR_DATANAV_ADD_ELEMENT"
msgid "Add Element"
msgstr "አካል መጨመሪያ"
#. C9YBB
-#: include/svx/strings.hrc:1287
+#: include/svx/strings.hrc:1288
msgctxt "RID_STR_DATANAV_EDIT_ELEMENT"
msgid "Edit Element"
msgstr "አካል ማረሚያ"
#. XAh7B
-#: include/svx/strings.hrc:1288
+#: include/svx/strings.hrc:1289
msgctxt "RID_STR_DATANAV_REMOVE_ELEMENT"
msgid "Delete Element"
msgstr "አካል ማጥፊያ"
#. CLHER
-#: include/svx/strings.hrc:1289
+#: include/svx/strings.hrc:1290
msgctxt "RID_STR_DATANAV_ADD_ATTRIBUTE"
msgid "Add Attribute"
msgstr "ባህሪ መጨመሪያ"
#. 6Ycoo
-#: include/svx/strings.hrc:1290
+#: include/svx/strings.hrc:1291
msgctxt "RID_STR_DATANAV_EDIT_ATTRIBUTE"
msgid "Edit Attribute"
msgstr "ባህሪ ማረሚያ"
#. 6dSAd
-#: include/svx/strings.hrc:1291
+#: include/svx/strings.hrc:1292
msgctxt "RID_STR_DATANAV_REMOVE_ATTRIBUTE"
msgid "Delete Attribute"
msgstr "ባህሪ ማጥፊያ"
#. Ljhja
-#: include/svx/strings.hrc:1292
+#: include/svx/strings.hrc:1293
msgctxt "RID_STR_DATANAV_ADD_BINDING"
msgid "Add Binding"
msgstr "ማጣመሪያ መጨመሪያ"
#. CHTrw
-#: include/svx/strings.hrc:1293
+#: include/svx/strings.hrc:1294
msgctxt "RID_STR_DATANAV_EDIT_BINDING"
msgid "Edit Binding"
msgstr "ማጣመሪያ ማረሚያ"
#. yYwEG
-#: include/svx/strings.hrc:1294
+#: include/svx/strings.hrc:1295
msgctxt "RID_STR_DATANAV_REMOVE_BINDING"
msgid "Delete Binding"
msgstr "ማጣመሪያ ማጥፊያ"
#. yVch8
-#: include/svx/strings.hrc:1295
+#: include/svx/strings.hrc:1296
msgctxt "RID_STR_DATANAV_ADD_SUBMISSION"
msgid "Add Submission"
msgstr "ማስገቢያ መጨመሪያ"
#. AX58u
-#: include/svx/strings.hrc:1296
+#: include/svx/strings.hrc:1297
msgctxt "RID_STR_DATANAV_EDIT_SUBMISSION"
msgid "Edit Submission"
msgstr "ማቅረቢያ ማረሚያ"
#. DFxmD
-#: include/svx/strings.hrc:1297
+#: include/svx/strings.hrc:1298
msgctxt "RID_STR_DATANAV_REMOVE_SUBMISSION"
msgid "Delete Submission"
msgstr "ማቅረቢያ ማጥፊያ"
#. qvvD7
-#: include/svx/strings.hrc:1298
+#: include/svx/strings.hrc:1299
msgctxt "RID_STR_ELEMENT"
msgid "Element"
msgstr "አካል"
#. U4Btb
-#: include/svx/strings.hrc:1299
+#: include/svx/strings.hrc:1300
msgctxt "RID_STR_ATTRIBUTE"
msgid "Attribute"
msgstr "መለያ"
#. Prceg
-#: include/svx/strings.hrc:1300
+#: include/svx/strings.hrc:1301
msgctxt "RID_STR_BINDING"
msgid "Binding"
msgstr "ማጣመሪያ"
#. iFARB
-#: include/svx/strings.hrc:1301
+#: include/svx/strings.hrc:1302
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
msgstr "መግለጫ ማጣመሪያ"
#. BTmNa
-#: include/svx/strings.hrc:1303
+#: include/svx/strings.hrc:1304
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
msgstr "በእርግጥ ሰነድ ማዳኑን %PRODUCTNAME መሰረዝ ይፈልጋሉ?"
#. 5WjQZ
-#: include/svx/strings.hrc:1305
+#: include/svx/strings.hrc:1306
msgctxt "RID_SVXSTR_RULER_TAB_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. JC7pc
-#: include/svx/strings.hrc:1306
+#: include/svx/strings.hrc:1307
msgctxt "RID_SVXSTR_RULER_TAB_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. MhfuC
-#: include/svx/strings.hrc:1307
+#: include/svx/strings.hrc:1308
msgctxt "RID_SVXSTR_RULER_TAB_CENTER"
msgid "Center"
msgstr "መሀከል"
#. kX7GR
-#: include/svx/strings.hrc:1308
+#: include/svx/strings.hrc:1309
msgctxt "RID_SVXSTR_RULER_TAB_DECIMAL"
msgid "Decimal"
msgstr "ዴሲማል"
#. 7vecp
-#: include/svx/strings.hrc:1310
+#: include/svx/strings.hrc:1311
msgctxt "RID_SVXSTR_INSERT_HELPTEXT"
msgid "Insert mode. Click to change to overwrite mode."
msgstr "ማስገቢያ ዘዴ: ይጫኑ ለመቀየር ወደ በላዩ ላይ ደርቦ መጻፊያ ዘዴ"
#. ZCWNC
-#: include/svx/strings.hrc:1311
+#: include/svx/strings.hrc:1312
msgctxt "RID_SVXSTR_OVERWRITE_HELPTEXT"
msgid "Overwrite mode. Click to change to insert mode."
msgstr "በላዩ ላይ ደርቦ መጻፊያ ዘዴ: ይጫኑ ለመቀየር ወደ ማስገቢያ ዘዴ"
#. 5GD8g
#. To be shown in the status bar when in overwrite mode, please try to make it not longer than the word 'Overwrite'.
-#: include/svx/strings.hrc:1313
+#: include/svx/strings.hrc:1314
msgctxt "RID_SVXSTR_OVERWRITE_TEXT"
msgid "Overwrite"
msgstr "በላዩ ላይ ደርቦ መጻፊያ"
#. qqCSF
-#: include/svx/strings.hrc:1314
+#: include/svx/strings.hrc:1315
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
msgstr "ማስገቢያ"
#. 2BBEb
-#: include/svx/strings.hrc:1315
+#: include/svx/strings.hrc:1316
msgctxt "RID_SVXSTR_SELECTIONMODE_HELPTEXT"
msgid "%1. Click to change selection mode."
msgstr ""
#. Dh5A2
-#: include/svx/strings.hrc:1316
+#: include/svx/strings.hrc:1317
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
msgid "Digital Signature: The document signature is OK."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው"
#. xZprv
-#: include/svx/strings.hrc:1317
+#: include/svx/strings.hrc:1318
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK_NO_VERIFY"
msgid "Digital Signature: The document signature is OK, but the certificates could not be validated."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው: ነገር ግን የ ምስክር ወረቀቱን ማረጋገጥ አልተቻለም"
#. Yydkh
-#: include/svx/strings.hrc:1318
+#: include/svx/strings.hrc:1319
msgctxt "RID_SVXSTR_XMLSEC_SIG_NOT_OK"
msgid "Digital Signature: The document signature does not match the document content. We strongly recommend you not to trust this document."
msgstr ""
#. X7CjP
-#: include/svx/strings.hrc:1319
+#: include/svx/strings.hrc:1320
msgctxt "RID_SVXSTR_XMLSEC_NO_SIG"
msgid "Digital Signature: The document is not signed."
msgstr "የ ዲጂታል ፊርማ: ሰነዱ አልተፈረመም"
#. BRmFY
-#: include/svx/strings.hrc:1320
+#: include/svx/strings.hrc:1321
msgctxt "RID_SVXSTR_XMLSEC_SIG_CERT_OK_PARTIAL_SIG"
msgid "Digital Signature: The document signature and the certificate are OK, but not all parts of the document are signed."
msgstr "የ ዲጂታል ፊርማ: የ ሰነዱ ፊርማ ትክክል ነው: ነገር ግን አንዳንድ የ ሰነዱ ክፍል አልተፈረመም"
#. Swq5S
-#: include/svx/strings.hrc:1321
+#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_DOC_MODIFIED_YES"
msgid "The document has been modified. Click to save the document."
msgstr "ሰነዱ ተሻሽሏል: ይጫኑ ሰነዱን ለ ማስቀመጥ"
#. tRWKa
-#: include/svx/strings.hrc:1322
+#: include/svx/strings.hrc:1323
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
msgstr "ሰነዱ አልተሻሻለም መጨረሻ ከ ተቀመጠ በኋላ"
#. 7C8GH
-#: include/svx/strings.hrc:1323
+#: include/svx/strings.hrc:1324
msgctxt "RID_SVXSTR_DOC_LOAD"
msgid "Loading document..."
msgstr "ሰነዶችን በመጫን ላይ..."
#. YbNsP
-#: include/svx/strings.hrc:1324
+#: include/svx/strings.hrc:1325
msgctxt "RID_SVXSTR_FIT_SLIDE"
msgid "Fit slide to current window."
msgstr "ተንሸራታቹን በ አሁኑ መስኮት ልክ ማድረጊያ"
#. MJums
-#: include/svx/strings.hrc:1325
+#: include/svx/strings.hrc:1326
msgctxt "RID_SVXSTR_FIT_PAGE"
msgid "Fit page to current window."
msgstr ""
#. Fpkx2
-#: include/svx/strings.hrc:1326
+#: include/svx/strings.hrc:1327
msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART"
msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue."
msgstr ""
#. CKqDa
-#: include/svx/strings.hrc:1327
+#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_TABLECELL_HINT"
msgid "Table cell address. Click to open Table Properties dialog."
msgstr ""
#. MG6GF
-#: include/svx/strings.hrc:1328
+#: include/svx/strings.hrc:1329
msgctxt "RID_SVXSTR_SECTION_HINT"
msgid "Section name. Click to open Edit Sections dialog."
msgstr ""
#. rLN6T
-#: include/svx/strings.hrc:1329
+#: include/svx/strings.hrc:1330
msgctxt "RID_SVXSTR_TOC_HINT"
msgid "Table of Contents. Click to open Table of Contents dialog."
msgstr ""
#. gnk6E
-#: include/svx/strings.hrc:1330
+#: include/svx/strings.hrc:1331
msgctxt "RID_SVXSTR_NUMBERING_HINT"
msgid "Numbering Level. Click to open Numbering dialog."
msgstr ""
#. aT6VC
-#: include/svx/strings.hrc:1331
+#: include/svx/strings.hrc:1332
msgctxt "RID_SVXSTR_LIST_STYLE_HINT"
msgid "List Style and Level."
msgstr ""
#. G5sCs
-#: include/svx/strings.hrc:1332
+#: include/svx/strings.hrc:1333
msgctxt "RID_SVXSTR_FORMULA_HINT"
msgid "Formula"
msgstr ""
#. rBgY5
-#: include/svx/strings.hrc:1333
+#: include/svx/strings.hrc:1334
msgctxt "RID_SVXSTR_ROW_COLUMN_HINT"
msgid "Row and Column"
msgstr ""
#. Bc5Sg
-#: include/svx/strings.hrc:1334
+#: include/svx/strings.hrc:1335
msgctxt "RID_SVXSTR_ZOOMTOOL_HINT"
msgid "Zoom factor. Right-click to change zoom factor or click to open Zoom dialog."
msgstr "የ ማሳያ መጠን: በቀኝ-ይጫኑ ለ መቀየር የ ማሳያ መጠን ወይንም ይጫኑ ለ መክፈት የ ማሳያ ንግግር"
#. HCjAM
-#: include/svx/strings.hrc:1335
+#: include/svx/strings.hrc:1336
msgctxt "RID_SVXSTR_ZOOM_IN"
msgid "Zoom In"
msgstr "በቅርብ ማሳያ"
#. 2YBJE
-#: include/svx/strings.hrc:1336
+#: include/svx/strings.hrc:1337
msgctxt "RID_SVXSTR_ZOOM_OUT"
msgid "Zoom Out"
msgstr "በርቀት ማሳያ"
#. n9EyG
-#: include/svx/strings.hrc:1337
+#: include/svx/strings.hrc:1338
msgctxt "RID_SVXSTR_ZOOM_25"
msgid "25%"
msgstr "25%"
#. vNTaU
-#: include/svx/strings.hrc:1338
+#: include/svx/strings.hrc:1339
msgctxt "RID_SVXSTR_ZOOM_50"
msgid "50%"
msgstr "50%"
#. D6jxs
-#: include/svx/strings.hrc:1339
+#: include/svx/strings.hrc:1340
msgctxt "RID_SVXSTR_ZOOM_75"
msgid "75%"
msgstr "75%"
#. 2Bufm
-#: include/svx/strings.hrc:1340
+#: include/svx/strings.hrc:1341
msgctxt "RID_SVXSTR_ZOOM_100"
msgid "100%"
msgstr "100%"
#. E5Xj8
-#: include/svx/strings.hrc:1341
+#: include/svx/strings.hrc:1342
msgctxt "RID_SVXSTR_ZOOM_150"
msgid "150%"
msgstr "150%"
#. DjBVG
-#: include/svx/strings.hrc:1342
+#: include/svx/strings.hrc:1343
msgctxt "RID_SVXSTR_ZOOM_200"
msgid "200%"
msgstr "200%"
#. 6Axop
-#: include/svx/strings.hrc:1343
+#: include/svx/strings.hrc:1344
msgctxt "RID_SVXSTR_ZOOM_WHOLE_PAGE"
msgid "Entire Page"
msgstr "ጠቅላላ ገጹን"
#. 2UBAF
-#: include/svx/strings.hrc:1344
+#: include/svx/strings.hrc:1345
msgctxt "RID_SVXSTR_ZOOM_PAGE_WIDTH"
msgid "Page Width"
msgstr "የ ገጽ ስፋት"
#. YBg9X
-#: include/svx/strings.hrc:1345
+#: include/svx/strings.hrc:1346
msgctxt "RID_SVXSTR_ZOOM_OPTIMAL_VIEW"
msgid "Optimal View"
msgstr "አጥጋቢ መመልከቻ"
#. Wi5Fy
-#: include/svx/strings.hrc:1347
+#: include/svx/strings.hrc:1348
msgctxt "RID_SVXSTR_SEARCH_STYLES"
msgid "Including Styles"
msgstr "ዘዴዎችን ማካተቻ"
#. BJSzf
-#: include/svx/strings.hrc:1348
+#: include/svx/strings.hrc:1349
msgctxt "RID_SVXSTR_WRITER_STYLES"
msgid "Paragraph St~yles"
msgstr "የ አንቀጽ ዘዴ~ዎች"
#. ARuQM
-#: include/svx/strings.hrc:1349
+#: include/svx/strings.hrc:1350
msgctxt "RID_SVXSTR_CALC_STYLES"
msgid "Cell St~yles"
msgstr "የ ክፍል ዘዴ~ዎች"
#. 7ChAu
-#: include/svx/strings.hrc:1350
+#: include/svx/strings.hrc:1351
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
msgstr "አቀራረብ መፈለጊያ"
#. K6Ave
-#: include/svx/strings.hrc:1351
+#: include/svx/strings.hrc:1352
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
msgstr "በ አቀራረብ መቀየሪያ"
#. USdBy
-#: include/svx/strings.hrc:1352
+#: include/svx/strings.hrc:1353
msgctxt "RID_SVXSTR_SEARCH_END"
msgid "Reached the end of the document"
msgstr "የ ሰነዱ መጨረሻ ላይ ደርሷል"
#. CVSwo
-#: include/svx/strings.hrc:1353
+#: include/svx/strings.hrc:1354
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
msgstr "የ ሰነዱ መጨረሻ ላይ ደርሷል: ከ መጀመሪያው ጀምሮ"
#. yCJzd
-#: include/svx/strings.hrc:1354
+#: include/svx/strings.hrc:1355
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
msgid "Reached the end of the sheet"
msgstr "የ ወረቀቱ መጨረሻ ላይ ደርሷል"
#. Diftw
-#: include/svx/strings.hrc:1355
+#: include/svx/strings.hrc:1356
msgctxt "RID_SVXSTR_SEARCH_NOT_FOUND"
msgid "Search key not found"
msgstr "መፈለጊያ ቁልፍ አልተገኘም"
#. xACuY
-#: include/svx/strings.hrc:1356
+#: include/svx/strings.hrc:1357
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
msgstr "ምንም የ መቃኛ አካል አልተገኘም"
#. CGo5w
-#: include/svx/strings.hrc:1357
+#: include/svx/strings.hrc:1358
msgctxt "RID_SVXSTR_SEARCH_START"
msgid "Reached the beginning of the document"
msgstr "የ ሰነዱ መጀመሪያ ላይ ደርሷል"
#. nDCC4
-#: include/svx/strings.hrc:1358
+#: include/svx/strings.hrc:1359
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
msgstr "የ ሰነዱ መጀመሪያ ላይ ደርሷል: ከ መጨረሻው ጀምሮ"
#. FNdxE
-#: include/svx/strings.hrc:1359
+#: include/svx/strings.hrc:1360
msgctxt "RID_SVXSTR_SEARCH_REMINDER_START_WRAPPED"
msgid "Reached the first reminder, continued from the last"
msgstr ""
#. hAzCn
-#: include/svx/strings.hrc:1360
+#: include/svx/strings.hrc:1361
msgctxt "RID_SVXSTR_SEARCH_REMINDER_END_WRAPPED"
msgid "Reached the last reminder, continued from the first"
msgstr ""
#. ihDqY
-#: include/svx/strings.hrc:1362
+#: include/svx/strings.hrc:1363
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
msgstr "ቀለም ማሰናጃ"
#. sDL47
-#: include/svx/strings.hrc:1363
+#: include/svx/strings.hrc:1364
msgctxt "RID_SVXDLG_BMPMASK_STR_TITLE"
msgid "Color Replacer"
msgstr ""
#. 7FcWA
-#: include/svx/strings.hrc:1365
+#: include/svx/strings.hrc:1366
msgctxt "RID_SVXDLG_FLOAT3D_STR_TITLE"
msgid "3D Effects"
msgstr ""
#. j6dA6
-#: include/svx/strings.hrc:1367
+#: include/svx/strings.hrc:1368
msgctxt "RID_SVXSTR_ERR_OLD_PASSWD"
msgid "Invalid password"
msgstr "ዋጋ የሌለው የ መግቢያ ቃል"
#. JGJ9F
-#: include/svx/strings.hrc:1368
+#: include/svx/strings.hrc:1369
msgctxt "RID_SVXSTR_ERR_REPEAT_PASSWD"
msgid "Passwords do not match"
msgstr "የመግቢያ ቃሎቹ አይመሳሰሉም"
#. VHTRb
-#: include/svx/strings.hrc:1370
+#: include/svx/strings.hrc:1371
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_0"
msgid "Solid small circular bullets"
msgstr "ሙሉ ትንሽ ክብ ነጥቦች"
#. AiNrB
-#: include/svx/strings.hrc:1371
+#: include/svx/strings.hrc:1372
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_1"
msgid "Solid large circular bullets"
msgstr "ሙሉ ትልቅ ክብ ነጥቦች"
#. Vtk8J
-#: include/svx/strings.hrc:1372
+#: include/svx/strings.hrc:1373
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_2"
msgid "Solid diamond bullets"
msgstr "ሙሉ የ አልማዝ ቅርጽ ነጥቦች"
#. bQFBw
-#: include/svx/strings.hrc:1373
+#: include/svx/strings.hrc:1374
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_3"
msgid "Solid large square bullets"
msgstr "ሙሉ ትልቅ ስኴር ነጥቦች"
#. 5eJDd
-#: include/svx/strings.hrc:1374
+#: include/svx/strings.hrc:1375
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_4"
msgid "Right pointing arrow bullets filled out"
msgstr "የተሞላ ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#. D8zQC
-#: include/svx/strings.hrc:1375
+#: include/svx/strings.hrc:1376
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_5"
msgid "Right pointing arrow bullets"
msgstr "ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#. QCULV
-#: include/svx/strings.hrc:1376
+#: include/svx/strings.hrc:1377
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
msgid "Cross mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#. XuXC7
-#: include/svx/strings.hrc:1377
+#: include/svx/strings.hrc:1378
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
msgid "Check mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#. cUEoG
#. do not translate this; instead describe the nth numbering style (LC_NumberingLevel) defined by your locale
-#: include/svx/strings.hrc:1380
+#: include/svx/strings.hrc:1381
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
msgid "Number 1) 2) 3)"
msgstr "ቁጥር 1) 2) 3)"
#. P2aKH
-#: include/svx/strings.hrc:1381
+#: include/svx/strings.hrc:1382
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_1"
msgid "Number 1. 2. 3."
msgstr "ቁጥር 1. 2. 3."
#. W7chC
-#: include/svx/strings.hrc:1382
+#: include/svx/strings.hrc:1383
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_2"
msgid "Number (1) (2) (3)"
msgstr "ቁጥር (1) (2) (3)"
#. k3LBG
-#: include/svx/strings.hrc:1383
+#: include/svx/strings.hrc:1384
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_3"
msgid "Uppercase Roman number I. II. III."
msgstr "በትንንሹ በትልቅ በሮማን ቁጥር መጻፊያ I. II. III."
#. BPgDJ
-#: include/svx/strings.hrc:1384
+#: include/svx/strings.hrc:1385
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_4"
msgid "Uppercase letter A) B) C)"
msgstr "በትንንሹ በትልቅ ፊደል መጻፊያ A) B) C)"
#. GooHz
-#: include/svx/strings.hrc:1385
+#: include/svx/strings.hrc:1386
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_5"
msgid "Lowercase letter a) b) c)"
msgstr "በትንንሽ ፊደል መጻፊያ a) b) c)"
#. k6waJ
-#: include/svx/strings.hrc:1386
+#: include/svx/strings.hrc:1387
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_6"
msgid "Lowercase letter (a) (b) (c)"
msgstr "በትንንሽ ፊደል መጻፊያ (a) (b) (c)"
#. ZiWKK
-#: include/svx/strings.hrc:1387
+#: include/svx/strings.hrc:1388
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_7"
msgid "Lowercase Roman number i. ii. iii."
msgstr "በትንንሽ ፊደል በሮማን ቁጥር መጻፊያ i. ii. iii."
#. VAgDM
#. do not translate this; instead describe the nth outline style (LC_OutLineNumberingLevel) defined by your locale
-#: include/svx/strings.hrc:1390
+#: include/svx/strings.hrc:1391
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_0"
msgid "Uppercase Roman, uppercase letters, numeric, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. DbqB2
-#: include/svx/strings.hrc:1391
+#: include/svx/strings.hrc:1392
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_1"
msgid "Uppercase letters, numeric, lowercase letters, numeric, solid small circular bullet"
msgstr ""
#. FTvR2
-#: include/svx/strings.hrc:1392
+#: include/svx/strings.hrc:1393
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_2"
msgid "Numeric"
msgstr ""
#. EiF5E
-#: include/svx/strings.hrc:1393
+#: include/svx/strings.hrc:1394
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_3"
msgid "Numeric, numeric, lowercase letters, solid small circular bullet"
msgstr ""
#. DZGS4
-#: include/svx/strings.hrc:1394
+#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_4"
msgid "Uppercase letters, uppercase Roman, lowercase letters, lowercase Roman, solid small circular bullet"
msgstr ""
#. upcZy
-#: include/svx/strings.hrc:1395
+#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_5"
msgid "Numeric, lowercase letters, numeric, uppercase letters, solid small circular bullet"
msgstr ""
#. TV9Mc
-#: include/svx/strings.hrc:1396
+#: include/svx/strings.hrc:1397
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_6"
msgid "Numeric with all sublevels"
msgstr "የቁጥር ከሁሉም ንዑስ ደረጃዎች"
#. tiXu5
-#: include/svx/strings.hrc:1397
+#: include/svx/strings.hrc:1398
msgctxt "RID_SVXSTR_OUTLINENUM_DESCRIPTION_7"
msgid "Right pointing bullet, right pointing arrow bullet, solid diamond bullet, solid small circular bullet"
msgstr "ወደ ቀኝ የሚጠቁም ነጥብ: ወደ ቀኝ የሚጠቁም ቀስት ነጥብ: ሙሉ የ አልማዝ ቅርጽ ነጥብ: በትንንሽ ሙሉ ክብ ነጥብ"
#. nEJiF
-#: include/svx/strings.hrc:1399
+#: include/svx/strings.hrc:1400
msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE"
msgid "The zip file could not be created."
msgstr "የ ማመቂያ ዚፕ ፋይል መፍጠር አልተቻለም"
#. PqEay
-#: include/svx/strings.hrc:1400
+#: include/svx/strings.hrc:1401
msgctxt "RID_SVXSTR_SAFEMODE_USER_PROFILE_EXPORTED"
msgid "Your user profile has been exported as 'libreoffice-profile.zip'."
msgstr ""
#. CC6Sw
-#: include/svx/strings.hrc:1402
+#: include/svx/strings.hrc:1403
msgctxt "RID_SVXSTR_STYLEFAMILY_TABLEDESIGN"
msgid "Table Design Styles"
msgstr "የ ሰንጠረዥ ንድፍ ዘዴዎች"
#. c69eB
-#: include/svx/strings.hrc:1404
+#: include/svx/strings.hrc:1405
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
msgstr "የሚተወው ተግባር: $(ARG1)"
#. nsioo
-#: include/svx/strings.hrc:1405
+#: include/svx/strings.hrc:1406
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
msgstr "የሚተወው ተግባር: $(ARG1)"
#. DzJ9Y
-#: include/svx/strings.hrc:1406
+#: include/svx/strings.hrc:1407
msgctxt "RID_SVXSTR_NUM_REDO_ACTIONS"
msgid "Actions to redo: $(ARG1)"
msgstr "እንደገና የሚሰሩ ተግባሮች: $(ARG1)"
#. HTTW5
-#: include/svx/strings.hrc:1407
+#: include/svx/strings.hrc:1408
msgctxt "RID_SVXSTR_NUM_REDO_ACTION"
msgid "Actions to redo: $(ARG1)"
msgstr "እንደገና የሚሰሩ ተግባሮች: $(ARG1)"
#. H9jn7
-#: include/svx/strings.hrc:1409
+#: include/svx/strings.hrc:1410
msgctxt "RID_SVXSTR_FINDBAR_FIND"
msgid "Find"
msgstr "መፈለጊያ"
#. WbEFL
-#: include/svx/strings.hrc:1410
+#: include/svx/strings.hrc:1411
msgctxt "RID_SVXSTR_FINDBAR_MATCHCASE"
msgid "Match Case"
msgstr "ጉዳይ ማመሳሰያ"
#. 59ENV
-#: include/svx/strings.hrc:1411
+#: include/svx/strings.hrc:1412
msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED"
msgid "Formatted Display"
msgstr "የ አቀራረብ ማሳያ"
#. hAmnh
-#: include/svx/strings.hrc:1413
+#: include/svx/strings.hrc:1414
msgctxt "STR_IMAGE_ORIGINAL_SIZE"
msgid "$(WIDTH) × $(HEIGHT) ($(WIDTH_IN_PX) × $(HEIGHT_IN_PX) px)"
msgstr ""
#. ntSYA
-#: include/svx/strings.hrc:1414
+#: include/svx/strings.hrc:1415
msgctxt "STR_IMAGE_VIEW_SIZE"
msgid "$(WIDTH) × $(HEIGHT) at $(DPI) DPI"
msgstr ""
#. EvHUn
-#: include/svx/strings.hrc:1415
+#: include/svx/strings.hrc:1416
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) KiB"
msgstr ""
#. 5qx2C
-#: include/svx/strings.hrc:1416
+#: include/svx/strings.hrc:1417
msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION"
msgid "$(CAPACITY) KiB ($(REDUCTION)% reduction)"
msgstr ""
#. ESUpG
-#: include/svx/strings.hrc:1417
+#: include/svx/strings.hrc:1418
msgctxt "STR_IMAGE_GIF"
msgid "GIF image"
msgstr ""
#. yWL9G
-#: include/svx/strings.hrc:1418
+#: include/svx/strings.hrc:1419
msgctxt "STR_IMAGE_JPEG"
msgid "JPEG image"
msgstr ""
#. oGKBg
-#: include/svx/strings.hrc:1419
+#: include/svx/strings.hrc:1420
msgctxt "STR_IMAGE_PNG"
msgid "PNG image"
msgstr "የ PNG ምስል"
#. Fkrjs
-#: include/svx/strings.hrc:1420
+#: include/svx/strings.hrc:1421
msgctxt "STR_IMAGE_TIFF"
msgid "TIFF image"
msgstr "የ TIFF ምስል"
#. VWyEb
-#: include/svx/strings.hrc:1421
+#: include/svx/strings.hrc:1422
msgctxt "STR_IMAGE_WMF"
msgid "WMF image"
msgstr "የ WMF ምስል"
#. pCpoE
-#: include/svx/strings.hrc:1422
+#: include/svx/strings.hrc:1423
msgctxt "STR_IMAGE_MET"
msgid "MET image"
msgstr "የ MET ምስል"
#. DELaB
-#: include/svx/strings.hrc:1423
+#: include/svx/strings.hrc:1424
msgctxt "STR_IMAGE_PCT"
msgid "PCT image"
msgstr "የ PCT ምስል"
#. 3AZAG
-#: include/svx/strings.hrc:1424
+#: include/svx/strings.hrc:1425
msgctxt "STR_IMAGE_SVG"
msgid "SVG image"
msgstr "የ SVG ምስል"
#. aCEJW
-#: include/svx/strings.hrc:1425
+#: include/svx/strings.hrc:1426
msgctxt "STR_IMAGE_BMP"
msgid "BMP image"
msgstr "የ BMP ምስል"
#. NBoWH
-#: include/svx/strings.hrc:1426
+#: include/svx/strings.hrc:1427
msgctxt "STR_IMAGE_WEBP"
msgid "WebP image"
msgstr ""
#. p2L8C
-#: include/svx/strings.hrc:1427
+#: include/svx/strings.hrc:1428
msgctxt "STR_IMAGE_UNKNOWN"
msgid "Unknown"
msgstr "ያልታወቀ"
#. 8LBFX
-#: include/svx/strings.hrc:1429
+#: include/svx/strings.hrc:1430
msgctxt "STR_SWITCH"
msgid "Switch"
msgstr "መቀየሪያ"
#. xLF42
-#: include/svx/strings.hrc:1431
+#: include/svx/strings.hrc:1432
msgctxt "RID_SVXSTR_UNDO_GRAFMODE"
msgid "Image Mode"
msgstr "የ ምስል ዘዴ"
#. fw5hA
-#: include/svx/strings.hrc:1432
+#: include/svx/strings.hrc:1433
msgctxt "RID_SVXSTR_UNDO_GRAFRED"
msgid "Red"
msgstr "ቀይ"
#. CiQvY
-#: include/svx/strings.hrc:1433
+#: include/svx/strings.hrc:1434
msgctxt "RID_SVXSTR_UNDO_GRAFGREEN"
msgid "Green"
msgstr "አረንጓዴ"
#. BhvBe
-#: include/svx/strings.hrc:1434
+#: include/svx/strings.hrc:1435
msgctxt "RID_SVXSTR_UNDO_GRAFBLUE"
msgid "Blue"
msgstr "ሰማያዊ"
#. HSP36
-#: include/svx/strings.hrc:1435
+#: include/svx/strings.hrc:1436
msgctxt "RID_SVXSTR_UNDO_GRAFLUMINANCE"
msgid "Brightness"
msgstr "ብሩህነት"
#. w5BYP
-#: include/svx/strings.hrc:1436
+#: include/svx/strings.hrc:1437
msgctxt "RID_SVXSTR_UNDO_GRAFCONTRAST"
msgid "Contrast"
msgstr "ማነጻጸሪያ"
#. EZUjS
-#: include/svx/strings.hrc:1437
+#: include/svx/strings.hrc:1438
msgctxt "RID_SVXSTR_UNDO_GRAFGAMMA"
msgid "Gamma"
msgstr "Gamma"
#. ernMB
-#: include/svx/strings.hrc:1438
+#: include/svx/strings.hrc:1439
msgctxt "RID_SVXSTR_UNDO_GRAFTRANSPARENCY"
msgid "Transparency"
msgstr "ግልጽነት"
#. LdkNB
-#: include/svx/strings.hrc:1439
+#: include/svx/strings.hrc:1440
msgctxt "RID_SVXSTR_GRAFCROP"
msgid "Crop"
msgstr "Crop"
#. TJmBu
-#: include/svx/strings.hrc:1441
+#: include/svx/strings.hrc:1442
msgctxt "RID_SVXITEMS_ORI_STANDARD"
msgid "Default orientation"
msgstr "ነባር አቅጣጫ"
#. WQqju
-#: include/svx/strings.hrc:1442
+#: include/svx/strings.hrc:1443
msgctxt "RID_SVXITEMS_ORI_TOPBOTTOM"
msgid "From top to bottom"
msgstr "ከ ላይ ወደ ታች"
#. ipfz6
-#: include/svx/strings.hrc:1443
+#: include/svx/strings.hrc:1444
msgctxt "RID_SVXITEMS_ORI_BOTTOMTOP"
msgid "Bottom to Top"
msgstr "ከ ታች ወደ ላይ"
#. MLR44
-#: include/svx/strings.hrc:1444
+#: include/svx/strings.hrc:1445
msgctxt "RID_SVXITEMS_ORI_STACKED"
msgid "Stacked"
msgstr "የተደረደሩ"
#. vUDeh
-#: include/svx/strings.hrc:1445
+#: include/svx/strings.hrc:1446
msgctxt "RID_SVXITEMS_MARGIN_LEFT"
msgid "Left margin: "
msgstr "የ ግራ መስመር: "
#. EFBbE
-#: include/svx/strings.hrc:1446
+#: include/svx/strings.hrc:1447
msgctxt "RID_SVXITEMS_MARGIN_TOP"
msgid "Top margin: "
msgstr "የ ላይ መስመር: "
#. 7HeyP
-#: include/svx/strings.hrc:1447
+#: include/svx/strings.hrc:1448
msgctxt "RID_SVXITEMS_MARGIN_RIGHT"
msgid "Right margin: "
msgstr "የ ቀኝ መስመር: "
#. HCuWQ
-#: include/svx/strings.hrc:1448
+#: include/svx/strings.hrc:1449
msgctxt "RID_SVXITEMS_MARGIN_BOTTOM"
msgid "Bottom margin: "
msgstr "የታች መስመር : "
#. zD9BB
-#: include/svx/strings.hrc:1449
+#: include/svx/strings.hrc:1450
msgctxt "RID_SVXITEMS_PAGE_COMPLETE"
msgid "Page Description: "
msgstr "የገጽ መግለጫ : "
#. a4eSJ
-#: include/svx/strings.hrc:1450
+#: include/svx/strings.hrc:1451
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_UPPER"
msgid "Capitals"
msgstr "Capitals"
#. DuQGP
-#: include/svx/strings.hrc:1451
+#: include/svx/strings.hrc:1452
msgctxt "RID_SVXITEMS_PAGE_NUM_CHR_LOWER"
msgid "Lowercase"
msgstr "በትንንሽ ፊደል መጻፊያ"
#. nWQ7R
-#: include/svx/strings.hrc:1452
+#: include/svx/strings.hrc:1453
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_UPPER"
msgid "Uppercase Roman"
msgstr "በትንንሹ በ አቢይ ፊደል መጻፊያ"
#. PxkPZ
-#: include/svx/strings.hrc:1453
+#: include/svx/strings.hrc:1454
msgctxt "RID_SVXITEMS_PAGE_NUM_ROM_LOWER"
msgid "Lowercase Roman"
msgstr "በትንንሽ ፊደል መጻፊያ"
#. B7YEa
-#: include/svx/strings.hrc:1454
+#: include/svx/strings.hrc:1455
msgctxt "RID_SVXITEMS_PAGE_NUM_ARABIC"
msgid "Arabic"
msgstr "Arabic"
#. vPbGB
-#: include/svx/strings.hrc:1455
+#: include/svx/strings.hrc:1456
msgctxt "RID_SVXITEMS_PAGE_NUM_NONE"
msgid "None"
msgstr "ምንም"
#. akGGo
-#: include/svx/strings.hrc:1456
+#: include/svx/strings.hrc:1457
msgctxt "RID_SVXITEMS_PAGE_LAND_TRUE"
msgid "Landscape"
msgstr "የመሬት አቀማመጥ"
#. bbcaZ
-#: include/svx/strings.hrc:1457
+#: include/svx/strings.hrc:1458
msgctxt "RID_SVXITEMS_PAGE_LAND_FALSE"
msgid "Portrait"
msgstr "ምስል"
#. BQtGg
-#: include/svx/strings.hrc:1458
+#: include/svx/strings.hrc:1459
msgctxt "RID_SVXITEMS_PAGE_USAGE_LEFT"
msgid "Left"
msgstr "በ ግራ"
#. JWFLj
-#: include/svx/strings.hrc:1459
+#: include/svx/strings.hrc:1460
msgctxt "RID_SVXITEMS_PAGE_USAGE_RIGHT"
msgid "Right"
msgstr "በ ቀኝ"
#. bxvGx
-#: include/svx/strings.hrc:1460
+#: include/svx/strings.hrc:1461
msgctxt "RID_SVXITEMS_PAGE_USAGE_ALL"
msgid "All"
msgstr "ሁሉንም"
#. S3nm4
-#: include/svx/strings.hrc:1461
+#: include/svx/strings.hrc:1462
msgctxt "RID_SVXITEMS_PAGE_USAGE_MIRROR"
msgid "Mirrored"
msgstr "የተንፀባረቀ"
#. dcvEJ
-#: include/svx/strings.hrc:1462
+#: include/svx/strings.hrc:1463
msgctxt "RID_SVXITEMS_AUTHOR_COMPLETE"
msgid "Author: "
msgstr "ደራሲው : "
#. 2siC9
-#: include/svx/strings.hrc:1463
+#: include/svx/strings.hrc:1464
msgctxt "RID_SVXITEMS_DATE_COMPLETE"
msgid "Date: "
msgstr "ቀን: "
#. pWoLe
-#: include/svx/strings.hrc:1464
+#: include/svx/strings.hrc:1465
msgctxt "RID_SVXITEMS_TEXT_COMPLETE"
msgid "Text: "
msgstr "ጽሁፍ : "
#. pAABc
-#: include/svx/strings.hrc:1465
+#: include/svx/strings.hrc:1466
msgctxt "RID_SVXITEMS_BRUSH_CHAR"
msgid "Character background"
msgstr "የ ባህሪ መደብ"
#. Deknh
-#: include/svx/strings.hrc:1467
+#: include/svx/strings.hrc:1468
msgctxt "STR_COLORTABLE"
msgid "Color Palette"
msgstr "ቀለም ማሰናጃ"
#. 9XFJS
#. Used in the Slide Setup dialog of Impress
-#: include/svx/strings.hrc:1470
+#: include/svx/strings.hrc:1471
msgctxt "STR_SLIDE_NUMBERS"
msgid "Slide numbers:"
msgstr ""
#. qWooV
#. String for saving modified image (instead of original)
-#: include/svx/strings.hrc:1473
+#: include/svx/strings.hrc:1474
msgctxt "RID_SVXSTR_SAVE_MODIFIED_IMAGE"
msgid ""
"The image has been modified. By default the original image will be saved.\n"
@@ -8152,2157 +8158,2157 @@ msgstr ""
"እርስዎ የ ተሻሻለውን ምስል ማስቀመጥ ይፈልጋሉ?"
#. KycVH
-#: include/svx/strings.hrc:1475
+#: include/svx/strings.hrc:1476
msgctxt "RID_SUBSETMAP"
msgid "Basic Latin"
msgstr "Basic Latin"
#. bcjRA
-#: include/svx/strings.hrc:1476
+#: include/svx/strings.hrc:1477
msgctxt "RID_SUBSETMAP"
msgid "Latin-1"
msgstr "Latin-1"
#. h6THj
-#: include/svx/strings.hrc:1477
+#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-A"
msgstr "Latin Extended-A"
#. o4EF9
-#: include/svx/strings.hrc:1478
+#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-B"
msgstr "Latin Extended-B"
#. W3CGs
-#: include/svx/strings.hrc:1479
+#: include/svx/strings.hrc:1480
msgctxt "RID_SUBSETMAP"
msgid "IPA Extensions"
msgstr "IPA Extensions"
#. yZjF6
-#: include/svx/strings.hrc:1480
+#: include/svx/strings.hrc:1481
msgctxt "RID_SUBSETMAP"
msgid "Spacing Modifier Letters"
msgstr "የ ፊደሎች ክፍተት ማሻሻያ"
#. EASZR
-#: include/svx/strings.hrc:1481
+#: include/svx/strings.hrc:1482
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks"
msgstr "የተለዩ ምልክቶችን መቀላቀያ"
#. wBjC4
-#: include/svx/strings.hrc:1482
+#: include/svx/strings.hrc:1483
msgctxt "RID_SUBSETMAP"
msgid "Basic Greek"
msgstr "Basic Greek"
#. Dh8Es
-#: include/svx/strings.hrc:1483
+#: include/svx/strings.hrc:1484
msgctxt "RID_SUBSETMAP"
msgid "Greek Symbols And Coptic"
msgstr "Greek Symbols And Coptic"
#. jGT5E
-#: include/svx/strings.hrc:1484
+#: include/svx/strings.hrc:1485
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic"
msgstr "Cyrillic"
#. DQgLS
-#: include/svx/strings.hrc:1485
+#: include/svx/strings.hrc:1486
msgctxt "RID_SUBSETMAP"
msgid "Armenian"
msgstr "Armenian"
#. kXEQY
-#: include/svx/strings.hrc:1486
+#: include/svx/strings.hrc:1487
msgctxt "RID_SUBSETMAP"
msgid "Basic Hebrew"
msgstr "Basic Hebrew"
#. Cb8g4
-#: include/svx/strings.hrc:1487
+#: include/svx/strings.hrc:1488
msgctxt "RID_SUBSETMAP"
msgid "Hebrew Extended"
msgstr "Hebrew Extended"
#. ZmDCd
-#: include/svx/strings.hrc:1488
+#: include/svx/strings.hrc:1489
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
msgstr "Basic Arabic"
#. hZDFV
-#: include/svx/strings.hrc:1489
+#: include/svx/strings.hrc:1490
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
msgstr "Arabic Extended"
#. c3CqD
-#: include/svx/strings.hrc:1490
+#: include/svx/strings.hrc:1491
msgctxt "RID_SUBSETMAP"
msgid "Devanagari"
msgstr "Devanagari"
#. EfVnG
-#: include/svx/strings.hrc:1491
+#: include/svx/strings.hrc:1492
msgctxt "RID_SUBSETMAP"
msgid "Bengali"
msgstr "Bengali"
#. iWzLc
-#: include/svx/strings.hrc:1492
+#: include/svx/strings.hrc:1493
msgctxt "RID_SUBSETMAP"
msgid "Gurmukhi"
msgstr "Gurmukhi"
#. omacG
-#: include/svx/strings.hrc:1493
+#: include/svx/strings.hrc:1494
msgctxt "RID_SUBSETMAP"
msgid "Gujarati"
msgstr "Gujarati"
#. Cdwzw
-#: include/svx/strings.hrc:1494
+#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Odia"
msgstr "Odia"
#. BhEGN
-#: include/svx/strings.hrc:1495
+#: include/svx/strings.hrc:1496
msgctxt "RID_SUBSETMAP"
msgid "Tamil"
msgstr "Tamil"
#. 6YkEo
-#: include/svx/strings.hrc:1496
+#: include/svx/strings.hrc:1497
msgctxt "RID_SUBSETMAP"
msgid "Telugu"
msgstr "Telugu"
#. J5qn4
-#: include/svx/strings.hrc:1497
+#: include/svx/strings.hrc:1498
msgctxt "RID_SUBSETMAP"
msgid "Kannada"
msgstr "Kannada"
#. 4UEFU
-#: include/svx/strings.hrc:1498
+#: include/svx/strings.hrc:1499
msgctxt "RID_SUBSETMAP"
msgid "Malayalam"
msgstr "Malayalam"
#. C5yzo
-#: include/svx/strings.hrc:1499
+#: include/svx/strings.hrc:1500
msgctxt "RID_SUBSETMAP"
msgid "Thai"
msgstr "Thai"
#. EvjbD
-#: include/svx/strings.hrc:1500
+#: include/svx/strings.hrc:1501
msgctxt "RID_SUBSETMAP"
msgid "Lao"
msgstr "Lao"
#. HqFTh
-#: include/svx/strings.hrc:1501
+#: include/svx/strings.hrc:1502
msgctxt "RID_SUBSETMAP"
msgid "Basic Georgian"
msgstr "Basic Georgian"
#. npAc8
-#: include/svx/strings.hrc:1502
+#: include/svx/strings.hrc:1503
msgctxt "RID_SUBSETMAP"
msgid "Georgian Extended"
msgstr "Georgian Extended"
#. AHAB4
-#: include/svx/strings.hrc:1503
+#: include/svx/strings.hrc:1504
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo"
msgstr "Hangul Jamo"
#. dqrF5
-#: include/svx/strings.hrc:1504
+#: include/svx/strings.hrc:1505
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended Additional"
msgstr ""
#. uVYXp
-#: include/svx/strings.hrc:1505
+#: include/svx/strings.hrc:1506
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
msgstr "Greek Extended"
#. LEQg6
-#: include/svx/strings.hrc:1506
+#: include/svx/strings.hrc:1507
msgctxt "RID_SUBSETMAP"
msgid "General punctuation"
msgstr "ጠቅላላ ስርአተ ነጥብ"
#. D9KFj
-#: include/svx/strings.hrc:1507
+#: include/svx/strings.hrc:1508
msgctxt "RID_SUBSETMAP"
msgid "Superscripts and Subscripts"
msgstr "በትንንሹ ከፍ ብሎ እና በትንንሹ ዝቅ ብሎ መጻፊያ"
#. yaxYV
-#: include/svx/strings.hrc:1508
+#: include/svx/strings.hrc:1509
msgctxt "RID_SUBSETMAP"
msgid "Currency Symbols"
msgstr "የ ገንዘብ ምልክቶች"
#. jzA5i
-#: include/svx/strings.hrc:1509
+#: include/svx/strings.hrc:1510
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Symbols"
msgstr "የተለዩ ምልክቶችን መቀላቀያ"
#. CHNBZ
-#: include/svx/strings.hrc:1510
+#: include/svx/strings.hrc:1511
msgctxt "RID_SUBSETMAP"
msgid "Letterlike Symbols"
msgstr "የ ፊደል አይነት ምልክቶች"
#. cDkEd
-#: include/svx/strings.hrc:1511
+#: include/svx/strings.hrc:1512
msgctxt "RID_SUBSETMAP"
msgid "Number Forms"
msgstr "የ ቁጥር ፎርሞች"
#. j25Fp
-#: include/svx/strings.hrc:1512
+#: include/svx/strings.hrc:1513
msgctxt "RID_SUBSETMAP"
msgid "Arrows"
msgstr "ቀስቶች"
#. p5Tbx
-#: include/svx/strings.hrc:1513
+#: include/svx/strings.hrc:1514
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Operators"
msgstr "ሂሳብ አንቀሳቃሾች"
#. ckgof
-#: include/svx/strings.hrc:1514
+#: include/svx/strings.hrc:1515
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Technical"
msgstr "የተለያዩ ቴክኒካል"
#. 8rXdw
-#: include/svx/strings.hrc:1515
+#: include/svx/strings.hrc:1516
msgctxt "RID_SUBSETMAP"
msgid "Control Pictures"
msgstr "ስእል መቆጣጠሪያ"
#. D4J8A
-#: include/svx/strings.hrc:1516
+#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Optical Character Recognition"
msgstr "የሚታይ ባህሪ መለያ"
#. hXwgf
-#: include/svx/strings.hrc:1517
+#: include/svx/strings.hrc:1518
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumerics"
msgstr "የተዘጉ ቁጥሮች እና ፊደሎች ቅልቅል"
#. AD9HJ
-#: include/svx/strings.hrc:1518
+#: include/svx/strings.hrc:1519
msgctxt "RID_SUBSETMAP"
msgid "Box Drawing"
msgstr "ሳጥን መሳያ"
#. vViaR
-#: include/svx/strings.hrc:1519
+#: include/svx/strings.hrc:1520
msgctxt "RID_SUBSETMAP"
msgid "Block Elements"
msgstr "አካሎችን መከልከያ"
#. ok7ks
-#: include/svx/strings.hrc:1520
+#: include/svx/strings.hrc:1521
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes"
msgstr "ጂዮሜትሪክ ቅርጾች"
#. sKty5
-#: include/svx/strings.hrc:1521
+#: include/svx/strings.hrc:1522
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols"
msgstr "የተለያዩ ምልክቶች"
#. yDpNT
-#: include/svx/strings.hrc:1522
+#: include/svx/strings.hrc:1523
msgctxt "RID_SUBSETMAP"
msgid "Dingbats"
msgstr "Dingbats"
#. Cth4P
-#: include/svx/strings.hrc:1523
+#: include/svx/strings.hrc:1524
msgctxt "RID_SUBSETMAP"
msgid "CJK Symbols And Punctuation"
msgstr "የ CJK ምልክቶች እና ስርአተ ነጥቦች"
#. Bo4iK
-#: include/svx/strings.hrc:1524
+#: include/svx/strings.hrc:1525
msgctxt "RID_SUBSETMAP"
msgid "Hiragana"
msgstr "Hiragana"
#. i2Cdr
-#: include/svx/strings.hrc:1525
+#: include/svx/strings.hrc:1526
msgctxt "RID_SUBSETMAP"
msgid "Katakana"
msgstr "Katakana"
#. 9YYLD
-#: include/svx/strings.hrc:1526
+#: include/svx/strings.hrc:1527
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo"
msgstr "Bopomofo"
#. F9UFG
-#: include/svx/strings.hrc:1527
+#: include/svx/strings.hrc:1528
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
msgstr "Hangul Compatibility Jamo"
#. yeRDE
-#: include/svx/strings.hrc:1528
+#: include/svx/strings.hrc:1529
msgctxt "RID_SUBSETMAP"
msgid "CJK Miscellaneous"
msgstr "CJK Miscellaneous"
#. kPFs9
-#: include/svx/strings.hrc:1529
+#: include/svx/strings.hrc:1530
msgctxt "RID_SUBSETMAP"
msgid "Enclosed CJK Letters And Months"
msgstr "የተዘጋ የ CJK ፊደሎች እና ወሮች"
#. 6tAx6
-#: include/svx/strings.hrc:1530
+#: include/svx/strings.hrc:1531
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility"
msgstr "የ CJK ተስማሚነት"
#. VakXP
-#: include/svx/strings.hrc:1531
+#: include/svx/strings.hrc:1532
msgctxt "RID_SUBSETMAP"
msgid "Hangul"
msgstr "Hangul"
#. XzS6D
-#: include/svx/strings.hrc:1532
+#: include/svx/strings.hrc:1533
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs"
msgstr "CJK Unified Ideographs"
#. JVCP5
-#: include/svx/strings.hrc:1533
+#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension A"
msgstr "CJK Unified Ideographs Extension A"
#. Y33VK
-#: include/svx/strings.hrc:1534
+#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Private Use Area"
msgstr "የ ግል መጠቀሚያ ቦታ"
#. 8yYiM
-#: include/svx/strings.hrc:1535
+#: include/svx/strings.hrc:1536
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs"
msgstr "CJK Compatibility Ideographs"
#. BEfFQ
-#: include/svx/strings.hrc:1536
+#: include/svx/strings.hrc:1537
msgctxt "RID_SUBSETMAP"
msgid "Alphabetic Presentation Forms"
msgstr "በ ፊደል ቅደም ተከተል ማቅረቢያ ፎርሞች"
#. NCsAG
-#: include/svx/strings.hrc:1537
+#: include/svx/strings.hrc:1538
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-A"
msgstr "Arabic Presentation Forms-A"
#. adi8G
-#: include/svx/strings.hrc:1538
+#: include/svx/strings.hrc:1539
msgctxt "RID_SUBSETMAP"
msgid "Combining Half Marks"
msgstr "ግማሽ ምልክቶች መቀላቀያ"
#. vLBhn
-#: include/svx/strings.hrc:1539
+#: include/svx/strings.hrc:1540
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Forms"
msgstr "የ CJK ተስማሚ ፎርሞች"
#. i6R3B
-#: include/svx/strings.hrc:1540
+#: include/svx/strings.hrc:1541
msgctxt "RID_SUBSETMAP"
msgid "Small Form Variants"
msgstr "ትንሽ የተለያየ ፎርም"
#. 7EDCh
-#: include/svx/strings.hrc:1541
+#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "Arabic Presentation Forms-B"
msgstr "Arabic ማቅረቢያ ፎርሞች-B"
#. WWoWx
-#: include/svx/strings.hrc:1542
+#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "Half-width and Full-width Forms"
msgstr "ግማሽ-ስፋት እና ሙሉ-ስፋት ፎርሞች"
#. dkDXh
-#: include/svx/strings.hrc:1543
+#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "Specials"
msgstr "የተለዩ"
#. GQSEx
-#: include/svx/strings.hrc:1544
+#: include/svx/strings.hrc:1545
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
msgstr "Yi Syllables"
#. BL66x
-#: include/svx/strings.hrc:1545
+#: include/svx/strings.hrc:1546
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
msgstr "Yi Radicals"
#. cuQ2k
-#: include/svx/strings.hrc:1546
+#: include/svx/strings.hrc:1547
msgctxt "RID_SUBSETMAP"
msgid "Old Italic"
msgstr "Old Italic"
#. wtKAB
-#: include/svx/strings.hrc:1547
+#: include/svx/strings.hrc:1548
msgctxt "RID_SUBSETMAP"
msgid "Gothic"
msgstr "Gothic"
#. GPFqC
-#: include/svx/strings.hrc:1548
+#: include/svx/strings.hrc:1549
msgctxt "RID_SUBSETMAP"
msgid "Deseret"
msgstr "Deseret"
#. 7AovD
-#: include/svx/strings.hrc:1549
+#: include/svx/strings.hrc:1550
msgctxt "RID_SUBSETMAP"
msgid "Byzantine Musical Symbols"
msgstr "Byzantine Musical Symbols"
#. G3GQF
-#: include/svx/strings.hrc:1550
+#: include/svx/strings.hrc:1551
msgctxt "RID_SUBSETMAP"
msgid "Musical Symbols"
msgstr "የ ሙዚቃ ምልክቶች"
#. YzBDD
-#: include/svx/strings.hrc:1551
+#: include/svx/strings.hrc:1552
msgctxt "RID_SUBSETMAP"
msgid "Mathematical Alphanumeric Symbols"
msgstr "የ ሂሳብ እና የ ፊደል እና ቁጥር ምልክቶች"
#. 3XZRw
-#: include/svx/strings.hrc:1552
+#: include/svx/strings.hrc:1553
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
msgstr "CJK Unified Ideographs Extension B"
#. nZnQc
-#: include/svx/strings.hrc:1553
+#: include/svx/strings.hrc:1554
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
msgstr "CJK Unified Ideographs Extension C"
#. HBwZE
-#: include/svx/strings.hrc:1554
+#: include/svx/strings.hrc:1555
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
msgstr "CJK Unified Ideographs Extension D"
#. TTFkh
-#: include/svx/strings.hrc:1555
+#: include/svx/strings.hrc:1556
msgctxt "RID_SUBSETMAP"
msgid "CJK Compatibility Ideographs Supplement"
msgstr "CJK Compatibility Ideographs Supplement"
#. 2jALB
-#: include/svx/strings.hrc:1556
+#: include/svx/strings.hrc:1557
msgctxt "RID_SUBSETMAP"
msgid "Tags"
msgstr "Tags"
#. 2iHJN
-#: include/svx/strings.hrc:1557
+#: include/svx/strings.hrc:1558
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Supplement"
msgstr "Cyrillic Supplementary"
#. ABgr9
-#: include/svx/strings.hrc:1558
+#: include/svx/strings.hrc:1559
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors"
msgstr "መቀያየሪያ መምረጫ"
#. a4q6S
-#: include/svx/strings.hrc:1559
+#: include/svx/strings.hrc:1560
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-A"
msgstr "በተጨማሪ የ ግል መጠቀሚያ ቦታ-A"
#. k638K
-#: include/svx/strings.hrc:1560
+#: include/svx/strings.hrc:1561
msgctxt "RID_SUBSETMAP"
msgid "Supplementary Private Use Area-B"
msgstr "በተጨማሪ የ ግል መጠቀሚያ ቦታ-B"
#. pKFTg
-#: include/svx/strings.hrc:1561
+#: include/svx/strings.hrc:1562
msgctxt "RID_SUBSETMAP"
msgid "Limbu"
msgstr "Limbu"
#. TJHGp
-#: include/svx/strings.hrc:1562
+#: include/svx/strings.hrc:1563
msgctxt "RID_SUBSETMAP"
msgid "Tai Le"
msgstr "Tai Le"
#. nujxa
-#: include/svx/strings.hrc:1563
+#: include/svx/strings.hrc:1564
msgctxt "RID_SUBSETMAP"
msgid "Khmer Symbols"
msgstr "Khmer Symbols"
#. neD93
-#: include/svx/strings.hrc:1564
+#: include/svx/strings.hrc:1565
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions"
msgstr "Phonetic Extensions"
#. C6LwC
-#: include/svx/strings.hrc:1565
+#: include/svx/strings.hrc:1566
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Arrows"
msgstr "የተለያዩ ምልክቶች እና ቀስቶች"
#. giR4r
-#: include/svx/strings.hrc:1566
+#: include/svx/strings.hrc:1567
msgctxt "RID_SUBSETMAP"
msgid "Yijing Hexagram Symbols"
msgstr "Yijing Hexagram Symbols"
#. EqFxm
-#: include/svx/strings.hrc:1567
+#: include/svx/strings.hrc:1568
msgctxt "RID_SUBSETMAP"
msgid "Linear B Syllabary"
msgstr "Linear B Syllabary"
#. VeZNe
-#: include/svx/strings.hrc:1568
+#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Linear B Ideograms"
msgstr "Linear B Ideograms"
#. Tvkgh
-#: include/svx/strings.hrc:1569
+#: include/svx/strings.hrc:1570
msgctxt "RID_SUBSETMAP"
msgid "Aegean Numbers"
msgstr "Aegean Numbers"
#. CuThH
-#: include/svx/strings.hrc:1570
+#: include/svx/strings.hrc:1571
msgctxt "RID_SUBSETMAP"
msgid "Ugaritic"
msgstr "Ugaritic"
#. nBtk5
-#: include/svx/strings.hrc:1571
+#: include/svx/strings.hrc:1572
msgctxt "RID_SUBSETMAP"
msgid "Shavian"
msgstr "Shavian"
#. vvMNk
-#: include/svx/strings.hrc:1572
+#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Osmanya"
msgstr "Osmanya"
#. aiySp
-#: include/svx/strings.hrc:1573
+#: include/svx/strings.hrc:1574
msgctxt "RID_SUBSETMAP"
msgid "Sinhala"
msgstr "Sinhala"
#. PEGiu
-#: include/svx/strings.hrc:1574
+#: include/svx/strings.hrc:1575
msgctxt "RID_SUBSETMAP"
msgid "Tibetan"
msgstr "Tibetan"
#. tRBTP
-#: include/svx/strings.hrc:1575
+#: include/svx/strings.hrc:1576
msgctxt "RID_SUBSETMAP"
msgid "Myanmar"
msgstr "Myanmar"
#. 8sgGF
-#: include/svx/strings.hrc:1576
+#: include/svx/strings.hrc:1577
msgctxt "RID_SUBSETMAP"
msgid "Khmer"
msgstr "Khmer"
#. CdXvH
-#: include/svx/strings.hrc:1577
+#: include/svx/strings.hrc:1578
msgctxt "RID_SUBSETMAP"
msgid "Ogham"
msgstr "Ogham"
#. jFWRQ
-#: include/svx/strings.hrc:1578
+#: include/svx/strings.hrc:1579
msgctxt "RID_SUBSETMAP"
msgid "Runic"
msgstr "Runic"
#. jhzoc
-#: include/svx/strings.hrc:1579
+#: include/svx/strings.hrc:1580
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
msgstr "Syriac"
#. B66QG
-#: include/svx/strings.hrc:1580
+#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Thaana"
msgstr "Thaana"
#. j8cuG
-#: include/svx/strings.hrc:1581
+#: include/svx/strings.hrc:1582
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic"
msgstr "Ethiopic"
#. AE5wq
-#: include/svx/strings.hrc:1582
+#: include/svx/strings.hrc:1583
msgctxt "RID_SUBSETMAP"
msgid "Cherokee"
msgstr "Cherokee"
#. 9mgNF
-#: include/svx/strings.hrc:1583
+#: include/svx/strings.hrc:1584
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllables"
msgstr "Canadian Aboriginal Syllables"
#. d5JWE
-#: include/svx/strings.hrc:1584
+#: include/svx/strings.hrc:1585
msgctxt "RID_SUBSETMAP"
msgid "Mongolian"
msgstr "Mongolian"
#. XnzyB
-#: include/svx/strings.hrc:1585
+#: include/svx/strings.hrc:1586
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-A"
msgstr "የተለያዩ የ ሂሳብ ምልክቶች-A"
#. R5W9H
-#: include/svx/strings.hrc:1586
+#: include/svx/strings.hrc:1587
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-A"
msgstr "ተጨማሪ ቀስቶች-A"
#. QYf7A
-#: include/svx/strings.hrc:1587
+#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Braille Patterns"
msgstr "የ ብሬል ንድፍ"
#. 63BBg
-#: include/svx/strings.hrc:1588
+#: include/svx/strings.hrc:1589
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-B"
msgstr "ተጨማሪ ቀስቶች-B"
#. ykowm
-#: include/svx/strings.hrc:1589
+#: include/svx/strings.hrc:1590
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Mathematical Symbols-B"
msgstr "የተለያዩ የ ሂሳብ ምልክቶች-B"
#. GGdze
-#: include/svx/strings.hrc:1590
+#: include/svx/strings.hrc:1591
msgctxt "RID_SUBSETMAP"
msgid "CJK Radical Supplement"
msgstr "CJK Radical Supplement"
#. WLLAP
-#: include/svx/strings.hrc:1591
+#: include/svx/strings.hrc:1592
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
msgstr "Kangxi Radicals"
#. EyZR2
-#: include/svx/strings.hrc:1592
+#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Description Characters"
msgstr "Ideographic Description Characters"
#. o3AQ6
-#: include/svx/strings.hrc:1593
+#: include/svx/strings.hrc:1594
msgctxt "RID_SUBSETMAP"
msgid "Tagalog"
msgstr "Tagalog"
#. BVieL
-#: include/svx/strings.hrc:1594
+#: include/svx/strings.hrc:1595
msgctxt "RID_SUBSETMAP"
msgid "Hanunoo"
msgstr "Hanunoo"
#. DwAEz
-#: include/svx/strings.hrc:1595
+#: include/svx/strings.hrc:1596
msgctxt "RID_SUBSETMAP"
msgid "Tagbanwa"
msgstr "Tagbanwa"
#. 3GDP5
-#: include/svx/strings.hrc:1596
+#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buhid"
msgstr "Buhid"
#. BfGBm
-#: include/svx/strings.hrc:1597
+#: include/svx/strings.hrc:1598
msgctxt "RID_SUBSETMAP"
msgid "Kanbun"
msgstr "Kanbun"
#. cL7Vo
-#: include/svx/strings.hrc:1598
+#: include/svx/strings.hrc:1599
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
msgstr "Bopomofo Extended"
#. MQoBs
-#: include/svx/strings.hrc:1599
+#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Katakana Phonetics"
msgstr "Katakana Phonetics"
#. fCpRM
-#: include/svx/strings.hrc:1600
+#: include/svx/strings.hrc:1601
msgctxt "RID_SUBSETMAP"
msgid "CJK Strokes"
msgstr "CJK Strokes"
#. zyW2q
-#: include/svx/strings.hrc:1601
+#: include/svx/strings.hrc:1602
msgctxt "RID_SUBSETMAP"
msgid "Cypriot Syllabary"
msgstr "Cypriot Syllabary"
#. GWxb8
-#: include/svx/strings.hrc:1602
+#: include/svx/strings.hrc:1603
msgctxt "RID_SUBSETMAP"
msgid "Tai Xuan Jing Symbols"
msgstr "Tai Xuan Jing Symbols"
#. 8ZJmr
-#: include/svx/strings.hrc:1603
+#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
msgstr "Variation Selectors Supplement"
#. RR6Er
-#: include/svx/strings.hrc:1604
+#: include/svx/strings.hrc:1605
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Musical Notation"
msgstr "Ancient Greek Musical Notation"
#. K3GsF
-#: include/svx/strings.hrc:1605
+#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "Ancient Greek Numbers"
msgstr "Ancient Greek Numbers"
#. y4HCg
-#: include/svx/strings.hrc:1606
+#: include/svx/strings.hrc:1607
msgctxt "RID_SUBSETMAP"
msgid "Arabic Supplement"
msgstr "Arabic Supplement"
#. KUnXb
-#: include/svx/strings.hrc:1607
+#: include/svx/strings.hrc:1608
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
msgstr "Buginese"
#. zDaXa
-#: include/svx/strings.hrc:1608
+#: include/svx/strings.hrc:1609
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Supplement"
msgstr "የተለዩ ምልክቶችን መቀላቀያ ተጨማሪ"
#. 9Z24A
-#: include/svx/strings.hrc:1609
+#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Coptic"
msgstr "Coptic"
#. CANHf
-#: include/svx/strings.hrc:1610
+#: include/svx/strings.hrc:1611
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
msgstr "የ ኢትዮጵያ የ ተስፋፋ"
#. X8DEc
-#: include/svx/strings.hrc:1611
+#: include/svx/strings.hrc:1612
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Supplement"
msgstr "የ ኢትዮጵያ ተጨማሪ"
#. fYpFz
-#: include/svx/strings.hrc:1612
+#: include/svx/strings.hrc:1613
msgctxt "RID_SUBSETMAP"
msgid "Georgian Supplement"
msgstr "Georgian Supplement"
#. 3Gzxx
-#: include/svx/strings.hrc:1613
+#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic"
msgstr "Glagolitic"
#. zKCVG
-#: include/svx/strings.hrc:1614
+#: include/svx/strings.hrc:1615
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
msgstr "Kharoshthi"
#. U8zrU
-#: include/svx/strings.hrc:1615
+#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Modifier Tone Letters"
msgstr "የ ፊደሎች ጥራት ማሻሻያ"
#. B2yF8
-#: include/svx/strings.hrc:1616
+#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
msgstr "New Tai Lue"
#. J4KdA
-#: include/svx/strings.hrc:1617
+#: include/svx/strings.hrc:1618
msgctxt "RID_SUBSETMAP"
msgid "Old Persian"
msgstr "Old Persian"
#. eGPjC
-#: include/svx/strings.hrc:1618
+#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Phonetic Extensions Supplement"
msgstr "Phonetic Extensions Supplement"
#. XboFE
-#: include/svx/strings.hrc:1619
+#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Punctuation"
msgstr "Supplemental Punctuation"
#. tBJi3
-#: include/svx/strings.hrc:1620
+#: include/svx/strings.hrc:1621
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
msgstr "Syloti Nagri"
#. Qrowh
-#: include/svx/strings.hrc:1621
+#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Tifinagh"
msgstr "Tifinagh"
#. aZKS5
-#: include/svx/strings.hrc:1622
+#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Vertical Forms"
msgstr "ፎርሞች በ ቁመት"
#. ihUDF
-#: include/svx/strings.hrc:1623
+#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Nko"
msgstr "Nko"
#. Z3AAi
-#: include/svx/strings.hrc:1624
+#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
msgstr "Balinese"
#. 428ER
-#: include/svx/strings.hrc:1625
+#: include/svx/strings.hrc:1626
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-C"
msgstr "Latin Extended-C"
#. SqFfT
-#: include/svx/strings.hrc:1626
+#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-D"
msgstr "Latin Extended-D"
#. yMmow
-#: include/svx/strings.hrc:1627
+#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Phags-Pa"
msgstr "Phags-Pa"
#. V6CsB
-#: include/svx/strings.hrc:1628
+#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Phoenician"
msgstr "Phoenician"
#. GNBwz
-#: include/svx/strings.hrc:1629
+#: include/svx/strings.hrc:1630
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
msgstr "Cuneiform"
#. VBPZE
-#: include/svx/strings.hrc:1630
+#: include/svx/strings.hrc:1631
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
msgstr "Cuneiform Numbers And Punctuation"
#. 9msGJ
-#: include/svx/strings.hrc:1631
+#: include/svx/strings.hrc:1632
msgctxt "RID_SUBSETMAP"
msgid "Counting Rod Numerals"
msgstr "Counting Rod Numerals"
#. i6Gx9
-#: include/svx/strings.hrc:1632
+#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
msgstr "Sundanese"
#. WrXXX
-#: include/svx/strings.hrc:1633
+#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
msgstr "Lepcha"
#. FhhAQ
-#: include/svx/strings.hrc:1634
+#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
msgstr "Ol Chiki"
#. eHvUh
-#: include/svx/strings.hrc:1635
+#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
msgstr "Cyrillic Extended-A"
#. ZkKwE
-#: include/svx/strings.hrc:1636
+#: include/svx/strings.hrc:1637
msgctxt "RID_SUBSETMAP"
msgid "Vai"
msgstr "Vai"
#. pBASG
-#: include/svx/strings.hrc:1637
+#: include/svx/strings.hrc:1638
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
msgstr "Cyrillic Extended-B"
#. GoQpd
-#: include/svx/strings.hrc:1638
+#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
msgstr "Saurashtra"
#. 6pufg
-#: include/svx/strings.hrc:1639
+#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
msgstr "Kayah Li"
#. bmFny
-#: include/svx/strings.hrc:1640
+#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Rejang"
msgstr "Rejang"
#. EaXay
-#: include/svx/strings.hrc:1641
+#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Cham"
msgstr "Cham"
#. qYaAV
-#: include/svx/strings.hrc:1642
+#: include/svx/strings.hrc:1643
msgctxt "RID_SUBSETMAP"
msgid "Ancient Symbols"
msgstr "Ancient Symbols"
#. At8Tk
-#: include/svx/strings.hrc:1643
+#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
msgstr "Phaistos Disc"
#. ryGAF
-#: include/svx/strings.hrc:1644
+#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
msgstr "Lycian"
#. EYLa8
-#: include/svx/strings.hrc:1645
+#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Carian"
msgstr "Carian"
#. TPN6m
-#: include/svx/strings.hrc:1646
+#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
msgstr "Lydian"
#. G5GLd
-#: include/svx/strings.hrc:1647
+#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Mahjong Tiles"
msgstr "Mahjong Tiles"
#. EyMaF
-#: include/svx/strings.hrc:1648
+#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Domino Tiles"
msgstr "Domino Tiles"
#. r2YQs
-#: include/svx/strings.hrc:1649
+#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
msgstr "Samaritan"
#. feZ2Q
-#: include/svx/strings.hrc:1650
+#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended"
msgstr "Canadian Aboriginal Syllabics Extended"
#. H4FpF
-#: include/svx/strings.hrc:1651
+#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
msgstr "Tai Tham"
#. BgKLG
-#: include/svx/strings.hrc:1652
+#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
msgstr "Vedic Extensions"
#. bVNYf
-#: include/svx/strings.hrc:1653
+#: include/svx/strings.hrc:1654
msgctxt "RID_SUBSETMAP"
msgid "Lisu"
msgstr "Lisu"
#. riEM3
-#: include/svx/strings.hrc:1654
+#: include/svx/strings.hrc:1655
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
msgstr "Bamum"
#. CQMqK
-#: include/svx/strings.hrc:1655
+#: include/svx/strings.hrc:1656
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
msgstr "Common Indic Number Forms"
#. gDEUp
-#: include/svx/strings.hrc:1656
+#: include/svx/strings.hrc:1657
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
msgstr "Devanagari Extended"
#. UsAq2
-#: include/svx/strings.hrc:1657
+#: include/svx/strings.hrc:1658
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
msgstr "Hangul Jamo Extended-A"
#. g5H7j
-#: include/svx/strings.hrc:1658
+#: include/svx/strings.hrc:1659
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
msgstr "Javanese"
#. upBjC
-#: include/svx/strings.hrc:1659
+#: include/svx/strings.hrc:1660
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
msgstr "Myanmar Extended-A"
#. GQ3XX
-#: include/svx/strings.hrc:1660
+#: include/svx/strings.hrc:1661
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
msgstr "Tai Viet"
#. HGVSu
-#: include/svx/strings.hrc:1661
+#: include/svx/strings.hrc:1662
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
msgstr "Meetei Mayek"
#. ryvor
-#: include/svx/strings.hrc:1662
+#: include/svx/strings.hrc:1663
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
msgstr "Hangul Jamo Extended-B"
#. RTxUc
-#: include/svx/strings.hrc:1663
+#: include/svx/strings.hrc:1664
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
msgstr "Imperial Aramaic"
#. 7E6G8
-#: include/svx/strings.hrc:1664
+#: include/svx/strings.hrc:1665
msgctxt "RID_SUBSETMAP"
msgid "Old South Arabian"
msgstr "Old South Arabian"
#. Ab3wu
-#: include/svx/strings.hrc:1665
+#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Avestan"
msgstr "Avestan"
#. 5gN8e
-#: include/svx/strings.hrc:1666
+#: include/svx/strings.hrc:1667
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Parthian"
msgstr "Inscriptional Parthian"
#. D7rcV
-#: include/svx/strings.hrc:1667
+#: include/svx/strings.hrc:1668
msgctxt "RID_SUBSETMAP"
msgid "Inscriptional Pahlavi"
msgstr "Inscriptional Pahlavi"
#. d44Dq
-#: include/svx/strings.hrc:1668
+#: include/svx/strings.hrc:1669
msgctxt "RID_SUBSETMAP"
msgid "Old Turkic"
msgstr "Old Turkic"
#. CLuJC
-#: include/svx/strings.hrc:1669
+#: include/svx/strings.hrc:1670
msgctxt "RID_SUBSETMAP"
msgid "Rumi Numeral Symbols"
msgstr "Rumi Numeral Symbols"
#. FpFeH
-#: include/svx/strings.hrc:1670
+#: include/svx/strings.hrc:1671
msgctxt "RID_SUBSETMAP"
msgid "Kaithi"
msgstr "Kaithi"
#. Swfzy
-#: include/svx/strings.hrc:1671
+#: include/svx/strings.hrc:1672
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyphs"
msgstr "Egyptian Hieroglyphs"
#. bMYVC
-#: include/svx/strings.hrc:1672
+#: include/svx/strings.hrc:1673
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Alphanumeric Supplement"
msgstr "Enclosed Alphanumeric Supplement"
#. Dqcpa
-#: include/svx/strings.hrc:1673
+#: include/svx/strings.hrc:1674
msgctxt "RID_SUBSETMAP"
msgid "Enclosed Ideographic Supplement"
msgstr "Enclosed Ideographic Supplement"
#. 8eCZn
-#: include/svx/strings.hrc:1674
+#: include/svx/strings.hrc:1675
msgctxt "RID_SUBSETMAP"
msgid "Mandaic"
msgstr "Mandaic"
#. 8LVFp
-#: include/svx/strings.hrc:1675
+#: include/svx/strings.hrc:1676
msgctxt "RID_SUBSETMAP"
msgid "Batak"
msgstr "Batak"
#. 9SrgK
-#: include/svx/strings.hrc:1676
+#: include/svx/strings.hrc:1677
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
msgstr "Ethiopic Extended-A"
#. cQEzt
-#: include/svx/strings.hrc:1677
+#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Brahmi"
msgstr "Brahmi"
#. n4oND
-#: include/svx/strings.hrc:1678
+#: include/svx/strings.hrc:1679
msgctxt "RID_SUBSETMAP"
msgid "Bamum Supplement"
msgstr "Bamum Supplement"
#. xibkG
-#: include/svx/strings.hrc:1679
+#: include/svx/strings.hrc:1680
msgctxt "RID_SUBSETMAP"
msgid "Kana Supplement"
msgstr "Kana Supplement"
#. xyswt
-#: include/svx/strings.hrc:1680
+#: include/svx/strings.hrc:1681
msgctxt "RID_SUBSETMAP"
msgid "Playing Cards"
msgstr "Playing Cards"
#. TqExt
-#: include/svx/strings.hrc:1681
+#: include/svx/strings.hrc:1682
msgctxt "RID_SUBSETMAP"
msgid "Miscellaneous Symbols And Pictographs"
msgstr "የተለያዩ ምልክቶች እና ቀስቶች"
#. wtMts
-#: include/svx/strings.hrc:1682
+#: include/svx/strings.hrc:1683
msgctxt "RID_SUBSETMAP"
msgid "Emoticons"
msgstr "የ ስሜት ምልክቶች"
#. WgGuX
-#: include/svx/strings.hrc:1683
+#: include/svx/strings.hrc:1684
msgctxt "RID_SUBSETMAP"
msgid "Transport And Map Symbols"
msgstr "መጓጓዣ እና የ ካርታ ምልክቶች"
#. fBitP
-#: include/svx/strings.hrc:1684
+#: include/svx/strings.hrc:1685
msgctxt "RID_SUBSETMAP"
msgid "Alchemical Symbols"
msgstr "አልኬሚካል ምልክቶች"
#. CWvjP
-#: include/svx/strings.hrc:1685
+#: include/svx/strings.hrc:1686
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-A"
msgstr "Arabic Extended-A"
#. D7mEf
-#: include/svx/strings.hrc:1686
+#: include/svx/strings.hrc:1687
msgctxt "RID_SUBSETMAP"
msgid "Arabic Mathematical Alphabetic Symbols"
msgstr "የ አረብኛ የ ሂሳብ ፊደል ቅደም ተከተል ምልክቶች"
#. 8ouWH
-#: include/svx/strings.hrc:1687
+#: include/svx/strings.hrc:1688
msgctxt "RID_SUBSETMAP"
msgid "Chakma"
msgstr "Chakma"
#. z3gG4
-#: include/svx/strings.hrc:1688
+#: include/svx/strings.hrc:1689
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
msgstr "Meetei Mayek Extensions"
#. mFAeA
-#: include/svx/strings.hrc:1689
+#: include/svx/strings.hrc:1690
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Cursive"
msgstr "Meroitic Cursive"
#. b5m8K
-#: include/svx/strings.hrc:1690
+#: include/svx/strings.hrc:1691
msgctxt "RID_SUBSETMAP"
msgid "Meroitic Hieroglyphs"
msgstr "Meroitic Hieroglyphs"
#. Xrkei
-#: include/svx/strings.hrc:1691
+#: include/svx/strings.hrc:1692
msgctxt "RID_SUBSETMAP"
msgid "Miao"
msgstr "Miao"
#. hG9Na
-#: include/svx/strings.hrc:1692
+#: include/svx/strings.hrc:1693
msgctxt "RID_SUBSETMAP"
msgid "Sharada"
msgstr "Sharada"
#. rTKpL
-#: include/svx/strings.hrc:1693
+#: include/svx/strings.hrc:1694
msgctxt "RID_SUBSETMAP"
msgid "Sora Sompeng"
msgstr "Sora Sompeng"
#. CAKEC
-#: include/svx/strings.hrc:1694
+#: include/svx/strings.hrc:1695
msgctxt "RID_SUBSETMAP"
msgid "Sundanese Supplement"
msgstr "Sundanese Supplement"
#. pTsMT
-#: include/svx/strings.hrc:1695
+#: include/svx/strings.hrc:1696
msgctxt "RID_SUBSETMAP"
msgid "Takri"
msgstr "Takri"
#. HNCk9
-#: include/svx/strings.hrc:1696
+#: include/svx/strings.hrc:1697
msgctxt "RID_SUBSETMAP"
msgid "Bassa Vah"
msgstr "Bassa Vah"
#. GWufB
-#: include/svx/strings.hrc:1697
+#: include/svx/strings.hrc:1698
msgctxt "RID_SUBSETMAP"
msgid "Caucasian Albanian"
msgstr "Caucasian Albanian"
#. t8Bfn
-#: include/svx/strings.hrc:1698
+#: include/svx/strings.hrc:1699
msgctxt "RID_SUBSETMAP"
msgid "Coptic Epact Numbers"
msgstr "Coptic Epact Numbers"
#. kAeYs
-#: include/svx/strings.hrc:1699
+#: include/svx/strings.hrc:1700
msgctxt "RID_SUBSETMAP"
msgid "Combining Diacritical Marks Extended"
msgstr "የተለዩ ምልክቶችን መቀላቀያ የ ተስፋፉ"
#. 8TGuM
-#: include/svx/strings.hrc:1700
+#: include/svx/strings.hrc:1701
msgctxt "RID_SUBSETMAP"
msgid "Duployan"
msgstr "Duployan"
#. Yaq3z
-#: include/svx/strings.hrc:1701
+#: include/svx/strings.hrc:1702
msgctxt "RID_SUBSETMAP"
msgid "Elbasan"
msgstr "Elbasan"
#. QmkME
-#: include/svx/strings.hrc:1702
+#: include/svx/strings.hrc:1703
msgctxt "RID_SUBSETMAP"
msgid "Geometric Shapes Extended"
msgstr "Geometric Shapes Extended"
#. R9PgF
-#: include/svx/strings.hrc:1703
+#: include/svx/strings.hrc:1704
msgctxt "RID_SUBSETMAP"
msgid "Grantha"
msgstr "Grantha"
#. tpSqU
-#: include/svx/strings.hrc:1704
+#: include/svx/strings.hrc:1705
msgctxt "RID_SUBSETMAP"
msgid "Khojki"
msgstr "Khojki"
#. 4pjBM
-#: include/svx/strings.hrc:1705
+#: include/svx/strings.hrc:1706
msgctxt "RID_SUBSETMAP"
msgid "Khudawadi"
msgstr "Khudawadi"
#. GoPep
-#: include/svx/strings.hrc:1706
+#: include/svx/strings.hrc:1707
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-E"
msgstr "Latin Extended-E"
#. wNozk
-#: include/svx/strings.hrc:1707
+#: include/svx/strings.hrc:1708
msgctxt "RID_SUBSETMAP"
msgid "Linear A"
msgstr "Linear A"
#. SjAev
-#: include/svx/strings.hrc:1708
+#: include/svx/strings.hrc:1709
msgctxt "RID_SUBSETMAP"
msgid "Mahajani"
msgstr "Mahajani"
#. CA7vw
-#: include/svx/strings.hrc:1709
+#: include/svx/strings.hrc:1710
msgctxt "RID_SUBSETMAP"
msgid "Manichaean"
msgstr "Manichaean"
#. UUKC4
-#: include/svx/strings.hrc:1710
+#: include/svx/strings.hrc:1711
msgctxt "RID_SUBSETMAP"
msgid "Mende Kikakui"
msgstr "Mende Kikakui"
#. ZhzBz
-#: include/svx/strings.hrc:1711
+#: include/svx/strings.hrc:1712
msgctxt "RID_SUBSETMAP"
msgid "Modi"
msgstr "Modi"
#. jC4Ue
-#: include/svx/strings.hrc:1712
+#: include/svx/strings.hrc:1713
msgctxt "RID_SUBSETMAP"
msgid "Mro"
msgstr "Mro"
#. TiWmd
-#: include/svx/strings.hrc:1713
+#: include/svx/strings.hrc:1714
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-B"
msgstr "Myanmar Extended-B"
#. y7tCX
-#: include/svx/strings.hrc:1714
+#: include/svx/strings.hrc:1715
msgctxt "RID_SUBSETMAP"
msgid "Nabataean"
msgstr "Nabataean"
#. T29Cw
-#: include/svx/strings.hrc:1715
+#: include/svx/strings.hrc:1716
msgctxt "RID_SUBSETMAP"
msgid "Old North Arabian"
msgstr "Old North Arabian"
#. EZADa
-#: include/svx/strings.hrc:1716
+#: include/svx/strings.hrc:1717
msgctxt "RID_SUBSETMAP"
msgid "Old Permic"
msgstr "Old Permic"
#. 9oFL2
-#: include/svx/strings.hrc:1717
+#: include/svx/strings.hrc:1718
msgctxt "RID_SUBSETMAP"
msgid "Ornamental Dingbats"
msgstr "Ornamental Dingbats"
#. TYGv3
-#: include/svx/strings.hrc:1718
+#: include/svx/strings.hrc:1719
msgctxt "RID_SUBSETMAP"
msgid "Pahawh Hmong"
msgstr "Pahawh Hmong"
#. wd8bD
-#: include/svx/strings.hrc:1719
+#: include/svx/strings.hrc:1720
msgctxt "RID_SUBSETMAP"
msgid "Palmyrene"
msgstr "Palmyrene"
#. dkSnn
-#: include/svx/strings.hrc:1720
+#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "Pau Cin Hau"
msgstr "Pau Cin Hau"
#. bts3U
-#: include/svx/strings.hrc:1721
+#: include/svx/strings.hrc:1722
msgctxt "RID_SUBSETMAP"
msgid "Psalter Pahlavi"
msgstr "Psalter Pahlavi"
#. XSwsB
-#: include/svx/strings.hrc:1722
+#: include/svx/strings.hrc:1723
msgctxt "RID_SUBSETMAP"
msgid "Shorthand Format Controls"
msgstr "Shorthand Format Controls"
#. rdXCX
-#: include/svx/strings.hrc:1723
+#: include/svx/strings.hrc:1724
msgctxt "RID_SUBSETMAP"
msgid "Siddham"
msgstr "Siddham"
#. GwT8c
-#: include/svx/strings.hrc:1724
+#: include/svx/strings.hrc:1725
msgctxt "RID_SUBSETMAP"
msgid "Sinhala Archaic Numbers"
msgstr "Sinhala Archaic Numbers"
#. mz3Cs
-#: include/svx/strings.hrc:1725
+#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Arrows-C"
msgstr "Supplemental Arrows-C"
#. iGUzh
-#: include/svx/strings.hrc:1726
+#: include/svx/strings.hrc:1727
msgctxt "RID_SUBSETMAP"
msgid "Tirhuta"
msgstr "Tirhuta"
#. HRBEN
-#: include/svx/strings.hrc:1727
+#: include/svx/strings.hrc:1728
msgctxt "RID_SUBSETMAP"
msgid "Warang Citi"
msgstr "Warang Citi"
#. 9NCBd
-#: include/svx/strings.hrc:1728
+#: include/svx/strings.hrc:1729
msgctxt "RID_SUBSETMAP"
msgid "Ahom"
msgstr "Ahom"
#. cPJhp
-#: include/svx/strings.hrc:1729
+#: include/svx/strings.hrc:1730
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
msgstr "Anatolian Hieroglyphs"
#. GAd7H
-#: include/svx/strings.hrc:1730
+#: include/svx/strings.hrc:1731
msgctxt "RID_SUBSETMAP"
msgid "Cherokee Supplement"
msgstr "Cherokee Supplement"
#. TDgY4
-#: include/svx/strings.hrc:1731
+#: include/svx/strings.hrc:1732
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
msgstr "CJK Unified Ideographs Extension E"
#. ho93C
-#: include/svx/strings.hrc:1732
+#: include/svx/strings.hrc:1733
msgctxt "RID_SUBSETMAP"
msgid "Early Dynastic Cuneiform"
msgstr "Early Dynastic Cuneiform"
#. La5yr
-#: include/svx/strings.hrc:1733
+#: include/svx/strings.hrc:1734
msgctxt "RID_SUBSETMAP"
msgid "Hatran"
msgstr "Hatran"
#. e3aXA
-#: include/svx/strings.hrc:1734
+#: include/svx/strings.hrc:1735
msgctxt "RID_SUBSETMAP"
msgid "Multani"
msgstr "Multani"
#. D6qsK
-#: include/svx/strings.hrc:1735
+#: include/svx/strings.hrc:1736
msgctxt "RID_SUBSETMAP"
msgid "Old Hungarian"
msgstr "Old Hungarian"
#. aVhdm
-#: include/svx/strings.hrc:1736
+#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
msgstr "Supplemental Symbols And Pictographs"
#. B6UHz
-#: include/svx/strings.hrc:1737
+#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Sutton Signwriting"
msgstr "Sutton Signwriting"
#. rFgRw
-#: include/svx/strings.hrc:1738
+#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "Adlam"
msgstr "Adlam"
#. F2AJT
-#: include/svx/strings.hrc:1739
+#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Bhaiksuki"
msgstr "Bhaiksuki"
#. zDLT2
-#: include/svx/strings.hrc:1740
+#: include/svx/strings.hrc:1741
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-C"
msgstr "Cyrillic Extended-C"
#. S69GG
-#: include/svx/strings.hrc:1741
+#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Glagolitic Supplement"
msgstr "Glagolitic Supplement"
#. QeCxG
-#: include/svx/strings.hrc:1742
+#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Ideographic Symbols and Punctuation"
msgstr "Ideographic Symbols and Punctuation"
#. 45hVB
-#: include/svx/strings.hrc:1743
+#: include/svx/strings.hrc:1744
msgctxt "RID_SUBSETMAP"
msgid "Marchen"
msgstr "Marchen"
#. Mr7RB
-#: include/svx/strings.hrc:1744
+#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Mongolian Supplement"
msgstr "Mongolian Supplement"
#. RTgGA
-#: include/svx/strings.hrc:1745
+#: include/svx/strings.hrc:1746
msgctxt "RID_SUBSETMAP"
msgid "Newa"
msgstr "Newa"
#. JJrpR
-#: include/svx/strings.hrc:1746
+#: include/svx/strings.hrc:1747
msgctxt "RID_SUBSETMAP"
msgid "Osage"
msgstr "Osage"
#. o3qMt
-#: include/svx/strings.hrc:1747
+#: include/svx/strings.hrc:1748
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
msgstr "Tangut"
#. nRMFd
-#: include/svx/strings.hrc:1748
+#: include/svx/strings.hrc:1749
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
msgstr "Tangut Components"
#. uFMWt
-#: include/svx/strings.hrc:1749
+#: include/svx/strings.hrc:1750
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
msgstr "CJK Unified Ideographs Extension F"
#. DH39v
-#: include/svx/strings.hrc:1750
+#: include/svx/strings.hrc:1751
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
msgstr "Kana Extended-A"
#. jPSFu
-#: include/svx/strings.hrc:1751
+#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Masaram Gondi"
msgstr "Masaram Gondi"
#. TGJHU
-#: include/svx/strings.hrc:1752
+#: include/svx/strings.hrc:1753
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
msgstr "Nushu"
#. DHbMR
-#: include/svx/strings.hrc:1753
+#: include/svx/strings.hrc:1754
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
msgstr "Soyombo"
#. gPnhH
-#: include/svx/strings.hrc:1754
+#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Syriac Supplement"
msgstr "Syriac Supplement"
#. rbMNp
-#: include/svx/strings.hrc:1755
+#: include/svx/strings.hrc:1756
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
msgstr "ዛናባዛር ስኴር"
#. i5evF
-#: include/svx/strings.hrc:1756
+#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Chess Symbols"
msgstr "የ ቼዝ ምልክት"
#. BYA5Y
-#: include/svx/strings.hrc:1757
+#: include/svx/strings.hrc:1758
msgctxt "RID_SUBSETMAP"
msgid "Dogra"
msgstr "Dogra"
#. xDvRL
-#: include/svx/strings.hrc:1758
+#: include/svx/strings.hrc:1759
msgctxt "RID_SUBSETMAP"
msgid "Gunjala Gondi"
msgstr "Gunjala Gondi"
#. uzq7e
-#: include/svx/strings.hrc:1759
+#: include/svx/strings.hrc:1760
msgctxt "RID_SUBSETMAP"
msgid "Hanifi Rohingya"
msgstr "Hanifi Rohingya"
#. FAwvP
-#: include/svx/strings.hrc:1760
+#: include/svx/strings.hrc:1761
msgctxt "RID_SUBSETMAP"
msgid "Indic Siyaq Numbers"
msgstr "Indic Siyaq Numbers"
#. TYjtp
-#: include/svx/strings.hrc:1761
+#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Makasar"
msgstr "Makasar"
#. abFR5
-#: include/svx/strings.hrc:1762
+#: include/svx/strings.hrc:1763
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
msgstr "Mayan Numerals"
#. aDjHx
-#: include/svx/strings.hrc:1763
+#: include/svx/strings.hrc:1764
msgctxt "RID_SUBSETMAP"
msgid "Medefaidrin"
msgstr "Medefaidrin"
#. qMf5N
-#: include/svx/strings.hrc:1764
+#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Old Sogdian"
msgstr "Old Sogdian"
#. rUG8e
-#: include/svx/strings.hrc:1765
+#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
msgstr "Sogdian"
#. B6UKP
-#: include/svx/strings.hrc:1766
+#: include/svx/strings.hrc:1767
msgctxt "RID_SUBSETMAP"
msgid "Egyptian Hieroglyph Format Controls"
msgstr ""
#. YBxAE
-#: include/svx/strings.hrc:1767
+#: include/svx/strings.hrc:1768
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
msgstr ""
#. ibmgu
-#: include/svx/strings.hrc:1768
+#: include/svx/strings.hrc:1769
msgctxt "RID_SUBSETMAP"
msgid "Nandinagari"
msgstr ""
#. 8A7FD
-#: include/svx/strings.hrc:1769
+#: include/svx/strings.hrc:1770
msgctxt "RID_SUBSETMAP"
msgid "Nyiakeng Puachue Hmong"
msgstr ""
#. DajDi
-#: include/svx/strings.hrc:1770
+#: include/svx/strings.hrc:1771
msgctxt "RID_SUBSETMAP"
msgid "Ottoman Siyaq Numbers"
msgstr ""
#. FAb6M
-#: include/svx/strings.hrc:1771
+#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Small Kana Extension"
msgstr ""
#. bmviu
-#: include/svx/strings.hrc:1772
+#: include/svx/strings.hrc:1773
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
msgstr ""
#. SmFqD
-#: include/svx/strings.hrc:1773
+#: include/svx/strings.hrc:1774
msgctxt "RID_SUBSETMAP"
msgid "Tamil Supplement"
msgstr ""
#. qNixg
-#: include/svx/strings.hrc:1774
+#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Wancho"
msgstr ""
#. EDpqy
-#: include/svx/strings.hrc:1775
+#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
msgstr ""
#. EH9Xf
-#: include/svx/strings.hrc:1776
+#: include/svx/strings.hrc:1777
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
msgstr ""
#. wBzzY
-#: include/svx/strings.hrc:1777
+#: include/svx/strings.hrc:1778
msgctxt "RID_SUBSETMAP"
msgid "Dhives Akuru"
msgstr ""
#. CX5R4
-#: include/svx/strings.hrc:1778
+#: include/svx/strings.hrc:1779
msgctxt "RID_SUBSETMAP"
msgid "Khitan small script"
msgstr ""
#. onKAu
-#: include/svx/strings.hrc:1779
+#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Lisu Supplement"
msgstr ""
#. yMTF4
-#: include/svx/strings.hrc:1780
+#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Symbols for Legacy Computing"
msgstr ""
#. SZmB5
-#: include/svx/strings.hrc:1781
+#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Tangut Supplement"
msgstr ""
#. zxpCG
-#: include/svx/strings.hrc:1782
+#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
msgstr ""
#. 9UAmW
-#: include/svx/strings.hrc:1783
+#: include/svx/strings.hrc:1784
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-B"
msgstr ""
#. QFLaj
-#: include/svx/strings.hrc:1784
+#: include/svx/strings.hrc:1785
msgctxt "RID_SUBSETMAP"
msgid "Cypro-Minoan"
msgstr ""
#. CYEeS
-#: include/svx/strings.hrc:1785
+#: include/svx/strings.hrc:1786
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
msgstr ""
#. ABqB6
-#: include/svx/strings.hrc:1786
+#: include/svx/strings.hrc:1787
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
msgstr ""
#. DmagG
-#: include/svx/strings.hrc:1787
+#: include/svx/strings.hrc:1788
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-F"
msgstr ""
#. tjuhJ
-#: include/svx/strings.hrc:1788
+#: include/svx/strings.hrc:1789
msgctxt "RID_SUBSETMAP"
msgid "Latin Extended-G"
msgstr ""
#. naYAA
-#: include/svx/strings.hrc:1789
+#: include/svx/strings.hrc:1790
msgctxt "RID_SUBSETMAP"
msgid "Old Uyghur"
msgstr ""
#. JGVtT
-#: include/svx/strings.hrc:1790
+#: include/svx/strings.hrc:1791
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
msgstr ""
#. pkBYF
-#: include/svx/strings.hrc:1791
+#: include/svx/strings.hrc:1792
msgctxt "RID_SUBSETMAP"
msgid "Toto"
msgstr ""
#. SEVKT
-#: include/svx/strings.hrc:1792
+#: include/svx/strings.hrc:1793
msgctxt "RID_SUBSETMAP"
msgid "Canadian Aboriginal Syllabics Extended-A"
msgstr ""
#. NpBis
-#: include/svx/strings.hrc:1793
+#: include/svx/strings.hrc:1794
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
msgstr ""
#. ssh5F
-#: include/svx/strings.hrc:1794
+#: include/svx/strings.hrc:1795
msgctxt "RID_SUBSETMAP"
msgid "Znamenny Musical Notation"
msgstr ""
#. xSLkm
-#: include/svx/strings.hrc:1795
+#: include/svx/strings.hrc:1796
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended-C"
msgstr ""
#. v2KBP
-#: include/svx/strings.hrc:1796
+#: include/svx/strings.hrc:1797
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension H"
msgstr ""
#. VXDJy
-#: include/svx/strings.hrc:1797
+#: include/svx/strings.hrc:1798
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-D"
msgstr ""
#. aWGSA
-#: include/svx/strings.hrc:1798
+#: include/svx/strings.hrc:1799
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended-A"
msgstr ""
#. BMCBt
-#: include/svx/strings.hrc:1799
+#: include/svx/strings.hrc:1800
msgctxt "RID_SUBSETMAP"
msgid "Kaktovik Numerals"
msgstr ""
#. VUVDF
-#: include/svx/strings.hrc:1800
+#: include/svx/strings.hrc:1801
msgctxt "RID_SUBSETMAP"
msgid "Kawi"
msgstr ""
#. EyKCr
-#: include/svx/strings.hrc:1801
+#: include/svx/strings.hrc:1802
msgctxt "RID_SUBSETMAP"
msgid "Nag Mundari"
msgstr ""
#. BGGvD
-#: include/svx/strings.hrc:1803
+#: include/svx/strings.hrc:1804
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
msgstr "ከ ግራ-ወደ-ቀኝ (LTR)"
#. Ct9UG
-#: include/svx/strings.hrc:1804
+#: include/svx/strings.hrc:1805
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
msgstr "ከ ቀኝ-ወደ-ግራ (RTL)"
#. XFhAz
-#: include/svx/strings.hrc:1805
+#: include/svx/strings.hrc:1806
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
msgstr "ከፍተኛ የ እቃ ማሰናጃዎችን መጠቀሚያ"
#. G2Jyh
#. page direction
-#: include/svx/strings.hrc:1807
+#: include/svx/strings.hrc:1808
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ አግድም)"
#. b6Guf
-#: include/svx/strings.hrc:1808
+#: include/svx/strings.hrc:1809
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ አግድም)"
#. yQGoC
-#: include/svx/strings.hrc:1809
+#: include/svx/strings.hrc:1810
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
msgstr "ከ ቀኝ-ወደ-ግራ (በ ቁመት)"
#. k7B2r
-#: include/svx/strings.hrc:1810
+#: include/svx/strings.hrc:1811
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
#. DF4B8
-#: include/svx/strings.hrc:1811
+#: include/svx/strings.hrc:1812
msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
msgid "Bottom-to-top, left-to-right (vertical)"
msgstr "ከ ታች-ወደ-ላይ: ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
#. siSmL
-#: include/svx/strings.hrc:1813
+#: include/svx/strings.hrc:1814
msgctxt "RID_SVXSTR_FONTWORK"
msgid "Fontwork"
msgstr ""
#. Eg8QT
-#: include/svx/strings.hrc:1815
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_SIGNATURELINE_DSIGNED_BY"
msgid "Digitally signed by:"
msgstr ""
#. NyP2E
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_SIGNATURELINE_DATE"
msgid "Date: %1"
msgstr ""
#. gsDhD
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TRANSPARENCY"
msgid "Transparency:"
msgstr ""
#. PGuXa
#. strings related to borders
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
#. LzhYZ
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1824
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1825
+#: include/svx/strings.hrc:1826
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1827
+#: include/svx/strings.hrc:1828
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1828
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1829
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1830
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1833
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
#. o8fB8
-#: include/svx/strings.hrc:1833
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
#. 6NnM2
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1836
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
#. fRcEu
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1837
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Left Border Only"
msgstr ""
#. uqzE7
-#: include/svx/strings.hrc:1837
+#: include/svx/strings.hrc:1838
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
msgid "Right Border Only"
msgstr ""
#. 6ecLB
-#: include/svx/strings.hrc:1838
+#: include/svx/strings.hrc:1839
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
msgid "Top Border Only"
msgstr ""
#. B6KZc
-#: include/svx/strings.hrc:1839
+#: include/svx/strings.hrc:1840
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
msgid "Bottom Border Only"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1840
+#: include/svx/strings.hrc:1841
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
@@ -10311,19 +10317,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1846
+#: include/svx/strings.hrc:1847
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1847
+#: include/svx/strings.hrc:1848
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
#. Q2kMw
-#: include/svx/strings.hrc:1848
+#: include/svx/strings.hrc:1849
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -12983,105 +12989,106 @@ msgid "Manage Changes"
msgstr "ለውጦች አስተዳዳሪ"
#. Jyka9
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:77
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
msgctxt "acceptrejectchangesdialog|calcedit"
msgid "Edit Comment..."
msgstr "አስተያየት ማረሚያ..."
#. EnZSS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:80
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:92
msgctxt "acceptrejectchangesdialog|extended_tip|calcedit"
msgid "Edit the comment for the selected change."
msgstr "ለ ተመረጠው ለውጥ አስተያየት ማረሚያ"
#. kqtia
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:89
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:101
msgctxt "acceptrejectchangesdialog|calcsort"
msgid "Sorting"
msgstr "በ መለየት ላይ"
#. 2DLpG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:99
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:111
msgctxt "acceptrejectchangesdialog|calcaction"
msgid "Action"
msgstr "ተግባር"
#. 3YNZ7
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:107
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:119
msgctxt "acceptrejectchangesdialog|calcposition"
msgid "Position"
msgstr "ቦታ"
#. wzRCk
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:116
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:128
msgctxt "acceptrejectchangesdialog|calcauthor"
msgid "Author"
msgstr "ደራሲው"
#. xavjS
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:125
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:137
msgctxt "acceptrejectchangesdialog|calcdate"
msgid "Date"
msgstr "ቀን"
#. CyvEG
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:134
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:146
msgctxt "acceptrejectchangesdialog|calcdesc"
msgid "Description"
msgstr "መግለጫ"
#. VDtBL
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:151
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
msgctxt "acceptrejectchangesdialog|writeredit"
msgid "Edit Comment..."
msgstr "አስተያየት ማረሚያ..."
#. eRArW
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:154
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:166
msgctxt "acceptrejectchangesdialog|extended_tip|writeredit"
msgid "Edit the comment for the selected change."
msgstr "ለ ተመረጠው ለውጥ አስተያየት ማረሚያ"
#. 75VLB
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:163
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:175
msgctxt "acceptrejectchangesdialog|writersort"
msgid "Sort By"
msgstr "መለያ በ"
#. EYaEE
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:173
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:185
msgctxt "acceptrejectchangesdialog|writeraction"
msgid "Action"
msgstr "ተግባር"
#. acfbi
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:193
msgctxt "acceptrejectchangesdialog|writerauthor"
msgid "Author"
msgstr "ደራሲው"
#. WNQ9L
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:190
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:202
msgctxt "acceptrejectchangesdialog|writerdate"
msgid "Date"
msgstr "ቀን"
#. 8qG3o
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:199
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:211
msgctxt "acceptrejectchangesdialog|writerdesc"
msgid "Comment"
msgstr "አስተያየት"
#. Z9yjZ
-#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:208
+#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:220
msgctxt "acceptrejectchangesdialog|writerposition"
msgid "Document Position"
msgstr "የ ሰነድ ቦታ"
-#. 4DiGj
-#: svx/uiconfig/ui/accessibilitycheckentry.ui:51
+#. AHooD
+#. This is a verb. Push this button to quickly fix an a11y problem.
+#: svx/uiconfig/ui/accessibilitycheckentry.ui:49
msgctxt "accessibilitycheckentry|accessibilityCheckEntryFixButton"
-msgid "Fix"
+msgid "Fix…"
msgstr ""
#. k4D3g
@@ -17905,6 +17912,48 @@ msgctxt "linkwarndialog|ask"
msgid "_Ask when linking a graphic"
msgstr "ንድፎችን ስታገናኝ _ጠይቀኝ"
+#. pwRzj
+#: svx/uiconfig/ui/medialine.ui:36
+msgctxt "medialine|toolbutton_open"
+msgid "Open"
+msgstr ""
+
+#. ACDd4
+#: svx/uiconfig/ui/medialine.ui:49
+msgctxt "medialine|toolbutton_apply"
+msgid "Apply"
+msgstr ""
+
+#. NpB3s
+#: svx/uiconfig/ui/medialine.ui:72
+msgctxt "medialine|toolbutton_play"
+msgid "Play"
+msgstr ""
+
+#. nG5y2
+#: svx/uiconfig/ui/medialine.ui:85
+msgctxt "medialine|toolbutton_pause"
+msgid "Pause"
+msgstr ""
+
+#. Q6QEy
+#: svx/uiconfig/ui/medialine.ui:98
+msgctxt "medialine|toolbutton_stop"
+msgid "Stop"
+msgstr ""
+
+#. TEcHD
+#: svx/uiconfig/ui/medialine.ui:121
+msgctxt "medialine|toolbutton_loop"
+msgid "Repeat"
+msgstr ""
+
+#. FuWeE
+#: svx/uiconfig/ui/medialine.ui:206
+msgctxt "medialine|toolbutton_mute"
+msgid "Mute"
+msgstr ""
+
#. GFDF2
#: svx/uiconfig/ui/mediaplayback.ui:22
msgctxt "mediaplayback|label1"
@@ -17923,6 +17972,48 @@ msgctxt "mediaplayback|label3"
msgid "Volume:"
msgstr "መጠን:"
+#. VVYdS
+#: svx/uiconfig/ui/mediawindow.ui:101
+msgctxt "mediawindow|toolbutton_open"
+msgid "Open"
+msgstr ""
+
+#. DWwdL
+#: svx/uiconfig/ui/mediawindow.ui:114
+msgctxt "mediawindow|toolbutton_apply"
+msgid "Apply"
+msgstr ""
+
+#. Aaaba
+#: svx/uiconfig/ui/mediawindow.ui:137
+msgctxt "mediawindow|toolbutton_play"
+msgid "Play"
+msgstr ""
+
+#. jscyJ
+#: svx/uiconfig/ui/mediawindow.ui:150
+msgctxt "mediawindow|toolbutton_pause"
+msgid "Pause"
+msgstr ""
+
+#. CMZYg
+#: svx/uiconfig/ui/mediawindow.ui:163
+msgctxt "mediawindow|toolbutton_stop"
+msgid "Stop"
+msgstr ""
+
+#. Wu5HF
+#: svx/uiconfig/ui/mediawindow.ui:186
+msgctxt "mediawindow|toolbutton_loop"
+msgid "Repeat"
+msgstr ""
+
+#. zXP86
+#: svx/uiconfig/ui/mediawindow.ui:216
+msgctxt "mediawindow|toolbutton_mute"
+msgid "Mute"
+msgstr ""
+
#. 9zT32
#: svx/uiconfig/ui/namespacedialog.ui:18
msgctxt "namespacedialog|NamespaceDialog"
@@ -20292,85 +20383,85 @@ msgid "Theme Color Edit"
msgstr ""
#. ZBvTV
-#: svx/uiconfig/ui/themecoloreditdialog.ui:109
+#: svx/uiconfig/ui/themecoloreditdialog.ui:111
msgctxt "themecoloreditdialog|labelThemeColorsName"
msgid "Name:"
msgstr ""
#. bpeMo
-#: svx/uiconfig/ui/themecoloreditdialog.ui:208
+#: svx/uiconfig/ui/themecoloreditdialog.ui:213
msgctxt "themecoloreditdialog|labelDark"
msgid "Dark 1:"
msgstr ""
#. JrFtB
-#: svx/uiconfig/ui/themecoloreditdialog.ui:225
+#: svx/uiconfig/ui/themecoloreditdialog.ui:230
msgctxt "themecoloreditdialog|labelLight1"
msgid "Light1:"
msgstr ""
#. FGBH2
-#: svx/uiconfig/ui/themecoloreditdialog.ui:242
+#: svx/uiconfig/ui/themecoloreditdialog.ui:247
msgctxt "themecoloreditdialog|labelDark2"
msgid "Dark 2:"
msgstr ""
#. QW9Cr
-#: svx/uiconfig/ui/themecoloreditdialog.ui:259
+#: svx/uiconfig/ui/themecoloreditdialog.ui:264
msgctxt "themecoloreditdialog|labelLight2"
msgid "Light2:"
msgstr ""
#. wgZiU
-#: svx/uiconfig/ui/themecoloreditdialog.ui:295
+#: svx/uiconfig/ui/themecoloreditdialog.ui:301
msgctxt "themecoloreditdialog|labelAccent1"
msgid "Accent 1:"
msgstr ""
#. yKnVi
-#: svx/uiconfig/ui/themecoloreditdialog.ui:312
+#: svx/uiconfig/ui/themecoloreditdialog.ui:318
msgctxt "themecoloreditdialog|labelAccent2"
msgid "Accent 2:"
msgstr ""
#. x4B79
-#: svx/uiconfig/ui/themecoloreditdialog.ui:367
+#: svx/uiconfig/ui/themecoloreditdialog.ui:375
msgctxt "themecoloreditdialog|labelAccent3"
msgid "Accent 3:"
msgstr ""
#. tFUrg
-#: svx/uiconfig/ui/themecoloreditdialog.ui:384
+#: svx/uiconfig/ui/themecoloreditdialog.ui:392
msgctxt "themecoloreditdialog|labelAccent4"
msgid "Accent 4:"
msgstr ""
#. uENPG
-#: svx/uiconfig/ui/themecoloreditdialog.ui:401
+#: svx/uiconfig/ui/themecoloreditdialog.ui:409
msgctxt "themecoloreditdialog|labelAccent5"
msgid "Accent 5:"
msgstr ""
#. sVGF5
-#: svx/uiconfig/ui/themecoloreditdialog.ui:418
+#: svx/uiconfig/ui/themecoloreditdialog.ui:426
msgctxt "themecoloreditdialog|labelAccent6"
msgid "Accent 6:"
msgstr ""
#. uAS9N
-#: svx/uiconfig/ui/themecoloreditdialog.ui:511
+#: svx/uiconfig/ui/themecoloreditdialog.ui:523
msgctxt "themecoloreditdialog|labelHyperlink"
msgid "Hyperlink:"
msgstr ""
#. etJMu
-#: svx/uiconfig/ui/themecoloreditdialog.ui:528
+#: svx/uiconfig/ui/themecoloreditdialog.ui:540
msgctxt "themecoloreditdialog|labelFollowHyperlink"
msgid "Follow Hyperlink:"
msgstr ""
#. sShYV
-#: svx/uiconfig/ui/themecoloreditdialog.ui:583
+#: svx/uiconfig/ui/themecoloreditdialog.ui:597
msgctxt "themecoloreditdialog|frameLabel"
msgid "Colors"
msgstr ""
@@ -20382,7 +20473,7 @@ msgid "Theme"
msgstr ""
#. UaXFU
-#: svx/uiconfig/ui/themedialog.ui:131
+#: svx/uiconfig/ui/themedialog.ui:133
msgctxt "hatchpage|extended_tip|add"
msgid "Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button."
msgstr ""
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index bbea92b2599..4aeae95a89d 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po