/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include namespace basegfx { class b2dpolypolygoncutter : public CppUnit::TestFixture { public: void testMergeToSinglePolyPolygon() { { // Adjacent polygons merged to one, closed manually. B2DPolygon poly1{ { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 }, { 0, 0 } }; B2DPolygon poly2{ { 0, 1 }, { 1, 1 }, { 1, 2 }, { 0, 2 }, { 0, 1 } }; B2DPolyPolygon expected( B2DPolygon{ { 1, 0 }, { 1, 1 }, { 1, 2 }, { 0, 2 }, { 0, 1 }, { 0, 0 } }); expected.setClosed(true); B2DPolyPolygon result = utils::mergeToSinglePolyPolygon({ B2DPolyPolygon(poly1), B2DPolyPolygon(poly2) }); CPPUNIT_ASSERT_EQUAL(expected, result); } { // Adjacent polygons merged to one, closed using setClosed(). B2DPolygon poly1{ { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } }; B2DPolygon poly2{ { 0, 1 }, { 1, 1 }, { 1, 2 }, { 0, 2 } }; poly1.setClosed(true); poly2.setClosed(true); B2DPolyPolygon expected( B2DPolygon{ { 0, 0 }, { 1, 0 }, { 1, 1 }, { 1, 2 }, { 0, 2 }, { 0, 1 } }); expected.setClosed(true); B2DPolyPolygon result = utils::mergeToSinglePolyPolygon({ B2DPolyPolygon(poly1), B2DPolyPolygon(poly2) }); CPPUNIT_ASSERT_EQUAL(expected, result); } { // Non-adjacent polygons, no merge. B2DPolygon poly1{ { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } }; B2DPolygon poly2{ { 0, 2 }, { 1, 3 }, { 1, 3 }, { 0, 3 } }; poly1.setClosed(true); poly2.setClosed(true); B2DPolyPolygon expected; expected.append(poly1); expected.append(poly2); B2DPolyPolygon result = utils::mergeToSinglePolyPolygon({ B2DPolyPolygon(poly1), B2DPolyPolygon(poly2) }); CPPUNIT_ASSERT_EQUAL(expected, result); } { // Horizontal and vertical rectangle that together form a cross. B2DPolygon poly1{ { 1, 0 }, { 2, 0 }, { 2, 3 }, { 1, 3 } }; B2DPolygon poly2{ { 0, 1 }, { 3, 1 }, { 3, 2 }, { 0, 2 } }; poly1.setClosed(true); poly2.setClosed(true); B2DPolyPolygon expected(B2DPolygon{ { 1, 0 }, { 2, 0 }, { 2, 1 }, { 3, 1 }, { 3, 2 }, { 2, 2 }, { 2, 3 }, { 1, 3 }, { 1, 2 }, { 0, 2 }, { 0, 1 }, { 1, 1 } }); expected.setClosed(true); B2DPolyPolygon result = utils::mergeToSinglePolyPolygon({ B2DPolyPolygon(poly1), B2DPolyPolygon(poly2) }); CPPUNIT_ASSERT_EQUAL(expected, result); } } CPPUNIT_TEST_SUITE(b2dpolypolygoncutter); CPPUNIT_TEST(testMergeToSinglePolyPolygon); CPPUNIT_TEST_SUITE_END(); }; } // namespace basegfx CPPUNIT_TEST_SUITE_REGISTRATION(basegfx::b2dpolypolygoncutter); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 891c LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-07-01 16:22:02 +0200
committerAndras Timar <andras.timar@collabora.com>2022-07-02 19:27:12 +0200
commitf9bd9ed1749294bfb0113bbf05645e788918e9b7 (patch)
tree31cd32a91877f3a5e6b7551a54cd9dd01a636127
parent178d01d84358992a53f6e2d5aed3462ad89fd23a (diff)
update translations for 7.3.5 rc1 cp-22.05.4-1
and force-fix errors using pocheck Change-Id: I6b8f0f326c1ef1f3804409057e3081bf2b2caaa0
-rw-r--r--source/ab/chart2/messages.po4
-rw-r--r--source/ab/cui/messages.po76
-rw-r--r--source/ab/dbaccess/messages.po28
-rw-r--r--source/ab/extensions/messages.po188
-rw-r--r--source/ab/fpicker/messages.po20
-rw-r--r--source/ab/sc/messages.po80
-rw-r--r--source/ab/sd/messages.po74
-rw-r--r--source/ab/sw/messages.po84
-rw-r--r--source/ab/vcl/messages.po58
-rw-r--r--source/af/chart2/messages.po4
-rw-r--r--source/af/cui/messages.po78
-rw-r--r--source/af/dbaccess/messages.po30
-rw-r--r--source/af/extensions/messages.po188
-rw-r--r--source/af/fpicker/messages.po20
-rw-r--r--source/af/readlicense_oo/docs.po12
-rw-r--r--source/af/sc/messages.po82
-rw-r--r--source/af/sd/messages.po74
-rw-r--r--source/af/sw/messages.po84
-rw-r--r--source/af/vcl/messages.po58
-rw-r--r--source/am/chart2/messages.po6
-rw-r--r--source/am/cui/messages.po86
-rw-r--r--source/am/dbaccess/messages.po30
-rw-r--r--source/am/dictionaries/ru_RU/dialog.po8
-rw-r--r--source/am/editeng/messages.po8
-rw-r--r--source/am/extensions/messages.po190
-rw-r--r--source/am/fpicker/messages.po20
-rw-r--r--source/am/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/am/sc/messages.po82
-rw-r--r--source/am/sd/messages.po76
-rw-r--r--source/am/svx/messages.po34
-rw-r--r--source/am/sw/messages.po94
-rw-r--r--source/am/vcl/messages.po60
-rw-r--r--source/an/chart2/messages.po6
-rw-r--r--source/an/cui/messages.po78
-rw-r--r--source/an/dbaccess/messages.po30
-rw-r--r--source/an/extensions/messages.po190
-rw-r--r--source/an/fpicker/messages.po22
-rw-r--r--source/an/sc/messages.po82
-rw-r--r--source/an/sd/messages.po76
-rw-r--r--source/an/sw/messages.po91
-rw-r--r--source/an/vcl/messages.po60
-rw-r--r--source/ar/basctl/messages.po20
-rw-r--r--source/ar/chart2/messages.po22
-rw-r--r--source/ar/cui/messages.po236
-rw-r--r--source/ar/dbaccess/messages.po54
-rw-r--r--source/ar/extensions/messages.po205
-rw-r--r--source/ar/extras/source/autocorr/emoji.po123
-rw-r--r--source/ar/filter/messages.po16
-rw-r--r--source/ar/filter/source/config/fragments/filters.po10
-rw-r--r--source/ar/filter/source/config/fragments/internalgraphicfilters.po8
-rw-r--r--source/ar/fpicker/messages.po26
-rw-r--r--source/ar/framework/messages.po6
-rw-r--r--source/ar/librelogo/source/pythonpath.po8
-rw-r--r--source/ar/nlpsolver/src/locale.po6
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office.po20
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po144
-rw-r--r--source/ar/readlicense_oo/docs.po6
-rw-r--r--source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po10
-rw-r--r--source/ar/reportdesign/messages.po42
-rw-r--r--source/ar/sc/messages.po152
-rw-r--r--source/ar/scp2/source/draw.po8
-rw-r--r--source/ar/scp2/source/writer.po10
-rw-r--r--source/ar/sd/messages.po122
-rw-r--r--source/ar/sfx2/messages.po62
-rw-r--r--source/ar/starmath/messages.po10
-rw-r--r--source/ar/svtools/messages.po4
-rw-r--r--source/ar/svx/messages.po107
-rw-r--r--source/ar/sw/messages.po850
-rw-r--r--source/ar/swext/mediawiki/help.po7
-rw-r--r--source/ar/sysui/desktop/share.po8
-rw-r--r--source/ar/vcl/messages.po90
-rw-r--r--source/ar/wizards/messages.po24
-rw-r--r--source/ar/wizards/source/resources.po14
-rw-r--r--source/ar/writerperfect/messages.po6
-rw-r--r--source/ar/xmlsecurity/messages.po16
-rw-r--r--source/as/chart2/messages.po4
-rw-r--r--source/as/cui/messages.po78
-rw-r--r--source/as/dbaccess/messages.po28
-rw-r--r--source/as/extensions/messages.po190
-rw-r--r--source/as/fpicker/messages.po20
-rw-r--r--source/as/sc/messages.po80
-rw-r--r--source/as/sd/messages.po74
-rw-r--r--source/as/sw/messages.po84
-rw-r--r--source/as/vcl/messages.po58
-rw-r--r--source/ast/chart2/messages.po14
-rw-r--r--source/ast/cui/messages.po114
-rw-r--r--source/ast/dbaccess/messages.po35
-rw-r--r--source/ast/extensions/messages.po190
-rw-r--r--source/ast/filter/messages.po6
-rw-r--r--source/ast/forms/messages.po6
-rw-r--r--source/ast/fpicker/messages.po22
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po18
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po28
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po44
-rw-r--r--source/ast/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/ast/helpcontent2/source/text/schart.po6
-rw-r--r--source/ast/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/ast/helpcontent2/source/text/sdraw/guide.po4
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/ast/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ast/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ast/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po24
-rw-r--r--source/ast/helpcontent2/source/text/simpress/04.po6
-rw-r--r--source/ast/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/ast/helpcontent2/source/text/smath/00.po20
-rw-r--r--source/ast/helpcontent2/source/text/smath/04.po6
-rw-r--r--source/ast/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/ast/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ast/helpcontent2/source/text/swriter/04.po4
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ast/helpcontent2/source/text/swriter/menu.po6
-rw-r--r--source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ast/readlicense_oo/docs.po10
-rw-r--r--source/ast/sc/messages.po98
-rw-r--r--source/ast/sd/messages.po87
-rw-r--r--source/ast/sfx2/messages.po8
-rw-r--r--source/ast/svtools/messages.po6
-rw-r--r--source/ast/sw/messages.po101
-rw-r--r--source/ast/vcl/messages.po60
-rw-r--r--source/ast/wizards/messages.po20
-rw-r--r--source/az/chart2/messages.po4
-rw-r--r--source/az/cui/messages.po76
-rw-r--r--source/az/dbaccess/messages.po28
-rw-r--r--source/az/extensions/messages.po188
-rw-r--r--source/az/fpicker/messages.po20
-rw-r--r--source/az/sc/messages.po80
-rw-r--r--source/az/sd/messages.po74
-rw-r--r--source/az/sw/messages.po84
-rw-r--r--source/az/vcl/messages.po58
-rw-r--r--source/be/chart2/messages.po4
-rw-r--r--source/be/cui/messages.po76
-rw-r--r--source/be/dbaccess/messages.po28
-rw-r--r--source/be/extensions/messages.po188
-rw-r--r--source/be/fpicker/messages.po20
-rw-r--r--source/be/sc/messages.po80
-rw-r--r--source/be/sd/messages.po74
-rw-r--r--source/be/sw/messages.po84
-rw-r--r--source/be/vcl/messages.po58
-rw-r--r--source/bg/chart2/messages.po4
-rw-r--r--source/bg/cui/messages.po78
-rw-r--r--source/bg/dbaccess/messages.po30
-rw-r--r--source/bg/extensions/messages.po190
-rw-r--r--source/bg/fpicker/messages.po20
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po52
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po262
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/bg/sc/messages.po82
-rw-r--r--source/bg/sd/messages.po76
-rw-r--r--source/bg/sw/messages.po84
-rw-r--r--source/bg/vcl/messages.po58
-rw-r--r--source/bn-IN/chart2/messages.po4
-rw-r--r--source/bn-IN/cui/messages.po78
-rw-r--r--source/bn-IN/dbaccess/messages.po28
-rw-r--r--source/bn-IN/extensions/messages.po188
-rw-r--r--source/bn-IN/fpicker/messages.po20
-rw-r--r--source/bn-IN/sc/messages.po80
-rw-r--r--source/bn-IN/sd/messages.po74
-rw-r--r--source/bn-IN/sw/messages.po84
-rw-r--r--source/bn-IN/vcl/messages.po58
-rw-r--r--source/bn/chart2/messages.po4
-rw-r--r--source/bn/cui/messages.po77
-rw-r--r--source/bn/dbaccess/messages.po28
-rw-r--r--source/bn/extensions/messages.po190
-rw-r--r--source/bn/fpicker/messages.po20
-rw-r--r--source/bn/sc/messages.po80
-rw-r--r--source/bn/sd/messages.po74
-rw-r--r--source/bn/sw/messages.po84
-rw-r--r--source/bn/vcl/messages.po58
-rw-r--r--source/bo/chart2/messages.po4
-rw-r--r--source/bo/cui/messages.po77
-rw-r--r--source/bo/dbaccess/messages.po28
-rw-r--r--source/bo/extensions/messages.po190
-rw-r--r--source/bo/fpicker/messages.po20
-rw-r--r--source/bo/sc/messages.po80
-rw-r--r--source/bo/sd/messages.po74
-rw-r--r--source/bo/sw/messages.po84
-rw-r--r--source/bo/vcl/messages.po58
-rw-r--r--source/br/chart2/messages.po4
-rw-r--r--source/br/cui/messages.po76
-rw-r--r--source/br/dbaccess/messages.po28
-rw-r--r--source/br/extensions/messages.po188
-rw-r--r--source/br/fpicker/messages.po20
-rw-r--r--source/br/sc/messages.po80
-rw-r--r--source/br/sd/messages.po74
-rw-r--r--source/br/sw/messages.po84
-rw-r--r--source/br/vcl/messages.po58
-rw-r--r--source/brx/chart2/messages.po4
-rw-r--r--source/brx/cui/messages.po77
-rw-r--r--source/brx/dbaccess/messages.po28
-rw-r--r--source/brx/extensions/messages.po190
-rw-r--r--source/brx/fpicker/messages.po20
-rw-r--r--source/brx/sc/messages.po80
-rw-r--r--source/brx/sd/messages.po74
-rw-r--r--source/brx/sw/messages.po84
-rw-r--r--source/brx/vcl/messages.po58
-rw-r--r--source/bs/chart2/messages.po4
-rw-r--r--source/bs/cui/messages.po78
-rw-r--r--source/bs/dbaccess/messages.po28
-rw-r--r--source/bs/extensions/messages.po190
-rw-r--r--source/bs/fpicker/messages.po20
-rw-r--r--source/bs/sc/messages.po80
-rw-r--r--source/bs/sd/messages.po74
-rw-r--r--source/bs/sw/messages.po84
-rw-r--r--source/bs/vcl/messages.po58
-rw-r--r--source/ca-valencia/chart2/messages.po4
-rw-r--r--source/ca-valencia/cui/messages.po76
-rw-r--r--source/ca-valencia/dbaccess/messages.po28
-rw-r--r--source/ca-valencia/extensions/messages.po188
-rw-r--r--source/ca-valencia/fpicker/messages.po20
-rw-r--r--source/ca-valencia/sc/messages.po80
-rw-r--r--source/ca-valencia/sd/messages.po74
-rw-r--r--source/ca-valencia/sw/messages.po84
-rw-r--r--source/ca-valencia/vcl/messages.po58
-rw-r--r--source/ca/chart2/messages.po14
-rw-r--r--source/ca/cui/messages.po86
-rw-r--r--source/ca/dbaccess/messages.po30
-rw-r--r--source/ca/extensions/messages.po190
-rw-r--r--source/ca/fpicker/messages.po22
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po20
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po18
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/ca/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ca/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/ca/helpcontent2/source/text/shared/autopi.po10
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/ca/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/ca/sc/messages.po88
-rw-r--r--source/ca/sd/messages.po76
-rw-r--r--source/ca/setup_native/source/mac.po16
-rw-r--r--source/ca/svtools/messages.po6
-rw-r--r--source/ca/sw/messages.po92
-rw-r--r--source/ca/vcl/messages.po60
-rw-r--r--source/ca/xmlsecurity/messages.po8
-rw-r--r--source/ckb/chart2/messages.po4
-rw-r--r--source/ckb/cui/messages.po76
-rw-r--r--source/ckb/dbaccess/messages.po28
-rw-r--r--source/ckb/extensions/messages.po188
-rw-r--r--source/ckb/fpicker/messages.po20
-rw-r--r--source/ckb/sc/messages.po80
-rw-r--r--source/ckb/sd/messages.po74
-rw-r--r--source/ckb/sw/messages.po86
-rw-r--r--source/ckb/vcl/messages.po58
-rw-r--r--source/cs/chart2/messages.po6
-rw-r--r--source/cs/cui/messages.po78
-rw-r--r--source/cs/dbaccess/messages.po30
-rw-r--r--source/cs/extensions/messages.po190
-rw-r--r--source/cs/fpicker/messages.po22
-rw-r--r--source/cs/sc/messages.po82
-rw-r--r--source/cs/sd/messages.po76
-rw-r--r--source/cs/sw/messages.po86
-rw-r--r--source/cs/vcl/messages.po60
-rw-r--r--source/cy/chart2/messages.po4
-rw-r--r--source/cy/cui/messages.po78
-rw-r--r--source/cy/dbaccess/messages.po30
-rw-r--r--source/cy/extensions/messages.po188
-rw-r--r--source/cy/fpicker/messages.po20
-rw-r--r--source/cy/sc/messages.po106
-rw-r--r--source/cy/sd/messages.po76
-rw-r--r--source/cy/sw/messages.po86
-rw-r--r--source/cy/vcl/messages.po58
-rw-r--r--source/da/chart2/messages.po6
-rw-r--r--source/da/cui/messages.po78
-rw-r--r--source/da/dbaccess/messages.po30
-rw-r--r--source/da/extensions/messages.po190
-rw-r--r--source/da/fpicker/messages.po20
-rw-r--r--source/da/sc/messages.po82
-rw-r--r--source/da/sd/messages.po76
-rw-r--r--source/da/sw/messages.po86
-rw-r--r--source/da/vcl/messages.po58
-rw-r--r--source/de/chart2/messages.po6
-rw-r--r--source/de/cui/messages.po88
-rw-r--r--source/de/dbaccess/messages.po38
-rw-r--r--source/de/desktop/messages.po8
-rw-r--r--source/de/extensions/messages.po194
-rw-r--r--source/de/filter/messages.po6
-rw-r--r--source/de/fpicker/messages.po20
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po952
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po64
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po766
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po42
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po94
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po20
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po64
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po68
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po54
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po182
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po96
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/de/sc/messages.po86
-rw-r--r--source/de/sd/messages.po80
-rw-r--r--source/de/svx/messages.po8
-rw-r--r--source/de/sw/messages.po94
-rw-r--r--source/de/vcl/messages.po64
-rw-r--r--source/dgo/chart2/messages.po4
-rw-r--r--source/dgo/cui/messages.po76
-rw-r--r--source/dgo/dbaccess/messages.po28
-rw-r--r--source/dgo/extensions/messages.po188
-rw-r--r--source/dgo/fpicker/messages.po20
-rw-r--r--source/dgo/sc/messages.po80
-rw-r--r--source/dgo/sd/messages.po74
-rw-r--r--source/dgo/sw/messages.po84
-rw-r--r--source/dgo/vcl/messages.po58
-rw-r--r--source/dsb/chart2/messages.po6
-rw-r--r--source/dsb/cui/messages.po86
-rw-r--r--source/dsb/dbaccess/messages.po34
-rw-r--r--source/dsb/editeng/messages.po8
-rw-r--r--source/dsb/extensions/messages.po190
-rw-r--r--source/dsb/extras/source/autocorr/emoji.po15
-rw-r--r--source/dsb/formula/messages.po8
-rw-r--r--source/dsb/fpicker/messages.po20
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice.po9
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/dsb/sc/messages.po82
-rw-r--r--source/dsb/sccomp/messages.po10
-rw-r--r--source/dsb/scp2/source/base.po11
-rw-r--r--source/dsb/sd/messages.po76
-rw-r--r--source/dsb/starmath/messages.po6
-rw-r--r--source/dsb/svx/messages.po6
-rw-r--r--source/dsb/sw/messages.po90
-rw-r--r--source/dsb/vcl/messages.po78
-rw-r--r--source/dz/chart2/messages.po4
-rw-r--r--source/dz/cui/messages.po77
-rw-r--r--source/dz/dbaccess/messages.po28
-rw-r--r--source/dz/extensions/messages.po190
-rw-r--r--source/dz/fpicker/messages.po20
-rw-r--r--source/dz/sc/messages.po80
-rw-r--r--source/dz/sd/messages.po74
-rw-r--r--source/dz/sw/messages.po84
-rw-r--r--source/dz/vcl/messages.po58
-rw-r--r--source/el/chart2/messages.po6
-rw-r--r--source/el/cui/messages.po78
-rw-r--r--source/el/dbaccess/messages.po30
-rw-r--r--source/el/extensions/messages.po188
-rw-r--r--source/el/fpicker/messages.po20
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po788
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/el/sc/messages.po80
-rw-r--r--source/el/sd/messages.po76
-rw-r--r--source/el/sw/messages.po90
-rw-r--r--source/el/vcl/messages.po58
-rw-r--r--source/en-GB/chart2/messages.po6
-rw-r--r--source/en-GB/cui/messages.po202
-rw-r--r--source/en-GB/dbaccess/messages.po30
-rw-r--r--source/en-GB/extensions/messages.po190
-rw-r--r--source/en-GB/fpicker/messages.po20
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/python.po22
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po44
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po276
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po150
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/04.po64
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/guide.po50
-rw-r--r--source/en-GB/helpcontent2/source/text/sdatabase.po166
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw.po16
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/01.po40
-rw-r--r--source/en-GB/helpcontent2/source/text/sdraw/guide.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/shared.po56
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po86
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po198
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po26
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/04.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po86
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/02.po46
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/guide.po82
-rw-r--r--source/en-GB/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po104
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po65
-rw-r--r--source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po32
-rw-r--r--source/en-GB/sc/messages.po293
-rw-r--r--source/en-GB/sd/messages.po74
-rw-r--r--source/en-GB/sfx2/messages.po280
-rw-r--r--source/en-GB/svx/messages.po365
-rw-r--r--source/en-GB/sw/messages.po1133
-rw-r--r--source/en-GB/vcl/messages.po60
-rw-r--r--source/en-ZA/chart2/messages.po4
-rw-r--r--source/en-ZA/cui/messages.po77
-rw-r--r--source/en-ZA/dbaccess/messages.po28
-rw-r--r--source/en-ZA/extensions/messages.po190
-rw-r--r--source/en-ZA/fpicker/messages.po20
-rw-r--r--source/en-ZA/sc/messages.po80
-rw-r--r--source/en-ZA/sd/messages.po74
-rw-r--r--source/en-ZA/sw/messages.po84
-rw-r--r--source/en-ZA/vcl/messages.po58
-rw-r--r--source/eo/chart2/messages.po4
-rw-r--r--source/eo/cui/messages.po78
-rw-r--r--source/eo/dbaccess/messages.po30
-rw-r--r--source/eo/extensions/messages.po188
-rw-r--r--source/eo/fpicker/messages.po20
-rw-r--r--source/eo/sc/messages.po82
-rw-r--r--source/eo/sd/messages.po74
-rw-r--r--source/eo/sw/messages.po84
-rw-r--r--source/eo/vcl/messages.po58
-rw-r--r--source/es/chart2/messages.po20
-rw-r--r--source/es/cui/messages.po302
-rw-r--r--source/es/dbaccess/messages.po52
-rw-r--r--source/es/desktop/messages.po12
-rw-r--r--source/es/extensions/messages.po210
-rw-r--r--source/es/extras/source/autocorr/emoji.po22
-rw-r--r--source/es/filter/messages.po24
-rw-r--r--source/es/formula/messages.po18
-rw-r--r--source/es/fpicker/messages.po20
-rw-r--r--source/es/helpcontent2/source/auxiliary.po14
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po26
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po18
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po238
-rw-r--r--source/es/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po64
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po42
-rw-r--r--source/es/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/es/helpcontent2/source/text/shared.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po22
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po172
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po14
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po120
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/es/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/es/helpcontent2/source/text/smath/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po34
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po36
-rw-r--r--source/es/librelogo/source/pythonpath.po8
-rw-r--r--source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po54
-rw-r--r--source/es/sc/messages.po107
-rw-r--r--source/es/scaddins/messages.po18
-rw-r--r--source/es/sd/messages.po104
-rw-r--r--source/es/sfx2/messages.po28
-rw-r--r--source/es/starmath/messages.po28
-rw-r--r--source/es/svtools/messages.po10
-rw-r--r--source/es/svx/messages.po16
-rw-r--r--source/es/sw/messages.po368
-rw-r--r--source/es/vcl/messages.po72
-rw-r--r--source/es/wizards/messages.po14
-rw-r--r--source/es/wizards/source/resources.po16
-rw-r--r--source/et/chart2/messages.po6
-rw-r--r--source/et/cui/messages.po78
-rw-r--r--source/et/dbaccess/messages.po30
-rw-r--r--source/et/extensions/messages.po190
-rw-r--r--source/et/fpicker/messages.po20
-rw-r--r--source/et/sc/messages.po82
-rw-r--r--source/et/sd/messages.po76
-rw-r--r--source/et/sw/messages.po86
-rw-r--r--source/et/vcl/messages.po60
-rw-r--r--source/eu/chart2/messages.po6
-rw-r--r--source/eu/cui/messages.po78
-rw-r--r--source/eu/dbaccess/messages.po36
-rw-r--r--source/eu/extensions/messages.po188
-rw-r--r--source/eu/fpicker/messages.po20
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice.po10
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/eu/sc/messages.po82
-rw-r--r--source/eu/scp2/source/ooo.po10
-rw-r--r--source/eu/sd/messages.po76
-rw-r--r--source/eu/sw/messages.po86
-rw-r--r--source/eu/vcl/messages.po58
-rw-r--r--source/fa/chart2/messages.po4
-rw-r--r--source/fa/cui/messages.po79
-rw-r--r--source/fa/dbaccess/messages.po30
-rw-r--r--source/fa/extensions/messages.po189
-rw-r--r--source/fa/fpicker/messages.po20
-rw-r--r--source/fa/sc/messages.po80
-rw-r--r--source/fa/sd/messages.po74
-rw-r--r--source/fa/sw/messages.po84
-rw-r--r--source/fa/vcl/messages.po58
-rw-r--r--source/fi/chart2/messages.po6
-rw-r--r--source/fi/cui/messages.po94
-rw-r--r--source/fi/dbaccess/messages.po34
-rw-r--r--source/fi/extensions/messages.po196
-rw-r--r--source/fi/fpicker/messages.po20
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po24
-rw-r--r--source/fi/helpcontent2/source/text/sdraw.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/help.po14
-rw-r--r--source/fi/helpcontent2/source/text/swriter/menu.po22
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/fi/sc/messages.po88
-rw-r--r--source/fi/sd/messages.po80
-rw-r--r--source/fi/sfx2/classification.po14
-rw-r--r--source/fi/svx/messages.po42
-rw-r--r--source/fi/sw/messages.po118
-rw-r--r--source/fi/vcl/messages.po60
-rw-r--r--source/fr/chart2/messages.po4
-rw-r--r--source/fr/cui/messages.po84
-rw-r--r--source/fr/dbaccess/messages.po30
-rw-r--r--source/fr/extensions/messages.po190
-rw-r--r--source/fr/fpicker/messages.po26
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/guide.po10
-rw-r--r--source/fr/sc/messages.po82
-rw-r--r--source/fr/sd/messages.po74
-rw-r--r--source/fr/svtools/messages.po10
-rw-r--r--source/fr/sw/messages.po86
-rw-r--r--source/fr/vcl/messages.po60
-rw-r--r--source/fur/chart2/messages.po4
-rw-r--r--source/fur/cui/messages.po76
-rw-r--r--source/fur/dbaccess/messages.po28
-rw-r--r--source/fur/extensions/messages.po188
-rw-r--r--source/fur/fpicker/messages.po20
-rw-r--r--source/fur/sc/messages.po80
-rw-r--r--source/fur/sd/messages.po74
-rw-r--r--source/fur/sw/messages.po84
-rw-r--r--source/fur/vcl/messages.po58
-rw-r--r--source/fy/chart2/messages.po4
-rw-r--r--source/fy/cui/messages.po78
-rw-r--r--source/fy/dbaccess/messages.po30
-rw-r--r--source/fy/extensions/messages.po188
-rw-r--r--source/fy/fpicker/messages.po20
-rw-r--r--source/fy/sc/messages.po80
-rw-r--r--source/fy/sd/messages.po74
-rw-r--r--source/fy/sw/messages.po84
-rw-r--r--source/fy/vcl/messages.po58
-rw-r--r--source/ga/chart2/messages.po4
-rw-r--r--source/ga/cui/messages.po76
-rw-r--r--source/ga/dbaccess/messages.po28
-rw-r--r--source/ga/extensions/messages.po188
-rw-r--r--source/ga/fpicker/messages.po20
-rw-r--r--source/ga/sc/messages.po80
-rw-r--r--source/ga/sd/messages.po74
-rw-r--r--source/ga/sw/messages.po84
-rw-r--r--source/ga/vcl/messages.po58
-rw-r--r--source/gd/chart2/messages.po4
-rw-r--r--source/gd/cui/messages.po76
-rw-r--r--source/gd/dbaccess/messages.po28
-rw-r--r--source/gd/extensions/messages.po188
-rw-r--r--source/gd/fpicker/messages.po20
-rw-r--r--source/gd/sc/messages.po80
-rw-r--r--source/gd/sd/messages.po74
-rw-r--r--source/gd/sw/messages.po84
-rw-r--r--source/gd/vcl/messages.po58
-rw-r--r--source/gl/chart2/messages.po12
-rw-r--r--source/gl/cui/messages.po100
-rw-r--r--source/gl/dbaccess/messages.po30
-rw-r--r--source/gl/extensions/messages.po190
-rw-r--r--source/gl/extras/source/autocorr/emoji.po8
-rw-r--r--source/gl/formula/messages.po10
-rw-r--r--source/gl/fpicker/messages.po20
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/gl/sc/messages.po96
-rw-r--r--source/gl/sd/messages.po80
-rw-r--r--source/gl/svx/messages.po6
-rw-r--r--source/gl/sw/messages.po168
-rw-r--r--source/gl/vcl/messages.po64
-rw-r--r--source/gu/chart2/messages.po4
-rw-r--r--source/gu/cui/messages.po77
-rw-r--r--source/gu/dbaccess/messages.po28
-rw-r--r--source/gu/extensions/messages.po188
-rw-r--r--source/gu/fpicker/messages.po20
-rw-r--r--source/gu/sc/messages.po80
-rw-r--r--source/gu/sd/messages.po74
-rw-r--r--source/gu/sw/messages.po84
-rw-r--r--source/gu/vcl/messages.po58
-rw-r--r--source/gug/chart2/messages.po4
-rw-r--r--source/gug/cui/messages.po76
-rw-r--r--source/gug/dbaccess/messages.po28
-rw-r--r--source/gug/extensions/messages.po188
-rw-r--r--source/gug/fpicker/messages.po20
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po14
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po8
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po26
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po18
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po238
-rw-r--r--source/gug/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po24
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po64
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po42
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared.po10
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po30
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/gug/helpcontent2/source/text/shared/05.po22
-rw-r--r--source/gug/helpcontent2/source/text/shared/autopi.po172
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po14
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po120
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/gug/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po12
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/gug/helpcontent2/source/text/smath/guide.po12
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po34
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po10
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po36
-rw-r--r--source/gug/sc/messages.po80
-rw-r--r--source/gug/sd/messages.po74
-rw-r--r--source/gug/sw/messages.po84
-rw-r--r--source/gug/vcl/messages.po58
-rw-r--r--source/he/chart2/messages.po4
-rw-r--r--source/he/cui/messages.po76
-rw-r--r--source/he/dbaccess/messages.po28
-rw-r--r--source/he/extensions/messages.po188
-rw-r--r--source/he/fpicker/messages.po20
-rw-r--r--source/he/sc/messages.po80
-rw-r--r--source/he/sd/messages.po74
-rw-r--r--source/he/sw/messages.po86
-rw-r--r--source/he/vcl/messages.po58
-rw-r--r--source/hi/chart2/messages.po4
-rw-r--r--source/hi/cui/messages.po78
-rw-r--r--source/hi/dbaccess/messages.po28
-rw-r--r--source/hi/extensions/messages.po190
-rw-r--r--source/hi/fpicker/messages.po20
-rw-r--r--source/hi/sc/messages.po80
-rw-r--r--source/hi/sd/messages.po74
-rw-r--r--source/hi/sw/messages.po84
-rw-r--r--source/hi/vcl/messages.po58
-rw-r--r--source/hr/accessibility/messages.po12
-rw-r--r--source/hr/avmedia/messages.po12
-rw-r--r--source/hr/basctl/messages.po8
-rw-r--r--source/hr/basic/messages.po10
-rw-r--r--source/hr/chart2/messages.po14
-rw-r--r--source/hr/connectivity/messages.po12
-rw-r--r--source/hr/cui/messages.po88
-rw-r--r--source/hr/dbaccess/messages.po38
-rw-r--r--source/hr/desktop/messages.po258
-rw-r--r--source/hr/editeng/messages.po14
-rw-r--r--source/hr/extensions/messages.po200
-rw-r--r--source/hr/filter/messages.po12
-rw-r--r--source/hr/forms/messages.po12
-rw-r--r--source/hr/formula/messages.po8
-rw-r--r--source/hr/fpicker/messages.po28
-rw-r--r--source/hr/framework/messages.po54
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/hr/oox/messages.po12
-rw-r--r--source/hr/reportdesign/messages.po12
-rw-r--r--source/hr/sc/messages.po90
-rw-r--r--source/hr/scaddins/messages.po60
-rw-r--r--source/hr/sccomp/messages.po12
-rw-r--r--source/hr/sd/messages.po86
-rw-r--r--source/hr/sfx2/messages.po8
-rw-r--r--source/hr/shell/messages.po12
-rw-r--r--source/hr/starmath/messages.po14
-rw-r--r--source/hr/svl/messages.po12
-rw-r--r--source/hr/svtools/messages.po32
-rw-r--r--source/hr/svx/messages.po12
-rw-r--r--source/hr/sw/messages.po97
-rw-r--r--source/hr/uui/messages.po242
-rw-r--r--source/hr/vcl/messages.po70
-rw-r--r--source/hr/wizards/messages.po12
-rw-r--r--source/hr/writerperfect/messages.po12
-rw-r--r--source/hr/xmlsecurity/messages.po8
-rw-r--r--source/hsb/chart2/messages.po6
-rw-r--r--source/hsb/cui/messages.po82
-rw-r--r--source/hsb/dbaccess/messages.po34
-rw-r--r--source/hsb/extensions/messages.po190
-rw-r--r--source/hsb/extras/source/autocorr/emoji.po16
-rw-r--r--source/hsb/formula/messages.po8
-rw-r--r--source/hsb/fpicker/messages.po20
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice.po9
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/hsb/sc/messages.po82
-rw-r--r--source/hsb/sccomp/messages.po10
-rw-r--r--source/hsb/scp2/source/base.po11
-rw-r--r--source/hsb/sd/messages.po76
-rw-r--r--source/hsb/starmath/messages.po8
-rw-r--r--source/hsb/sw/messages.po86
-rw-r--r--source/hsb/vcl/messages.po78
-rw-r--r--source/hu/chart2/messages.po6
-rw-r--r--source/hu/cui/messages.po76
-rw-r--r--source/hu/dbaccess/messages.po30
-rw-r--r--source/hu/extensions/messages.po190
-rw-r--r--source/hu/fpicker/messages.po20
-rw-r--r--source/hu/sc/messages.po82
-rw-r--r--source/hu/sd/messages.po76
-rw-r--r--source/hu/sw/messages.po84
-rw-r--r--source/hu/vcl/messages.po60
-rw-r--r--source/id/accessibility/messages.po10
-rw-r--r--source/id/chart2/messages.po24
-rw-r--r--source/id/cui/messages.po82
-rw-r--r--source/id/dbaccess/messages.po30
-rw-r--r--source/id/desktop/messages.po6
-rw-r--r--source/id/extensions/messages.po196
-rw-r--r--source/id/fpicker/messages.po20
-rw-r--r--source/id/framework/messages.po10
-rw-r--r--source/id/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/02.po12
-rw-r--r--source/id/helpcontent2/source/text/sdraw/guide.po12
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po14
-rw-r--r--source/id/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/id/helpcontent2/source/text/simpress/guide.po16
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/id/sc/messages.po90
-rw-r--r--source/id/sd/messages.po82
-rw-r--r--source/id/svx/messages.po8
-rw-r--r--source/id/sw/messages.po96
-rw-r--r--source/id/swext/mediawiki/help.po8
-rw-r--r--source/id/vcl/messages.po60
-rw-r--r--source/is/chart2/messages.po6
-rw-r--r--source/is/cui/messages.po80
-rw-r--r--source/is/dbaccess/messages.po34
-rw-r--r--source/is/extensions/messages.po190
-rw-r--r--source/is/fpicker/messages.po26
-rw-r--r--source/is/sc/messages.po82
-rw-r--r--source/is/sd/messages.po76
-rw-r--r--source/is/sw/messages.po88
-rw-r--r--source/is/vcl/messages.po60
-rw-r--r--source/it/chart2/messages.po6
-rw-r--r--source/it/cui/messages.po84
-rw-r--r--source/it/dbaccess/messages.po30
-rw-r--r--source/it/editeng/messages.po8
-rw-r--r--source/it/extensions/messages.po190
-rw-r--r--source/it/filter/messages.po124
-rw-r--r--source/it/fpicker/messages.po20
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po30
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/it/sc/messages.po82
-rw-r--r--source/it/sd/messages.po76
-rw-r--r--source/it/sw/messages.po108
-rw-r--r--source/it/vcl/messages.po60
-rw-r--r--source/ja/chart2/messages.po6
-rw-r--r--source/ja/cui/messages.po88
-rw-r--r--source/ja/dbaccess/messages.po36
-rw-r--r--source/ja/extensions/messages.po190
-rw-r--r--source/ja/fpicker/messages.po26
-rw-r--r--source/ja/sc/messages.po82
-rw-r--r--source/ja/sd/messages.po76
-rw-r--r--source/ja/svx/messages.po8
-rw-r--r--source/ja/sw/messages.po92
-rw-r--r--source/ja/vcl/messages.po66
-rw-r--r--source/jv/chart2/messages.po4
-rw-r--r--source/jv/cui/messages.po76
-rw-r--r--source/jv/dbaccess/messages.po28
-rw-r--r--source/jv/extensions/messages.po188
-rw-r--r--source/jv/fpicker/messages.po20
-rw-r--r--source/jv/sc/messages.po80
-rw-r--r--source/jv/sd/messages.po74
-rw-r--r--source/jv/sw/messages.po84
-rw-r--r--source/jv/vcl/messages.po58
-rw-r--r--source/ka/chart2/messages.po4
-rw-r--r--source/ka/cui/messages.po76
-rw-r--r--source/ka/dbaccess/messages.po28
-rw-r--r--source/ka/extensions/messages.po190
-rw-r--r--source/ka/fpicker/messages.po20
-rw-r--r--source/ka/sc/messages.po80
-rw-r--r--source/ka/sd/messages.po74
-rw-r--r--source/ka/sw/messages.po84
-rw-r--r--source/ka/vcl/messages.po58
-rw-r--r--source/kab/chart2/messages.po6
-rw-r--r--source/kab/cui/messages.po78
-rw-r--r--source/kab/dbaccess/messages.po30
-rw-r--r--source/kab/extensions/messages.po190
-rw-r--r--source/kab/fpicker/messages.po22
-rw-r--r--source/kab/sc/messages.po82
-rw-r--r--source/kab/sd/messages.po76
-rw-r--r--source/kab/sw/messages.po86
-rw-r--r--source/kab/vcl/messages.po60
-rw-r--r--source/kk/chart2/messages.po6
-rw-r--r--source/kk/cui/messages.po78
-rw-r--r--source/kk/dbaccess/messages.po30
-rw-r--r--source/kk/extensions/messages.po188
-rw-r--r--source/kk/fpicker/messages.po20
-rw-r--r--source/kk/sc/messages.po82
-rw-r--r--source/kk/sd/messages.po76
-rw-r--r--source/kk/sw/messages.po86
-rw-r--r--source/kk/vcl/messages.po58
-rw-r--r--source/kl/chart2/messages.po4
-rw-r--r--source/kl/cui/messages.po76
-rw-r--r--source/kl/dbaccess/messages.po28
-rw-r--r--source/kl/extensions/messages.po188
-rw-r--r--source/kl/fpicker/messages.po20
-rw-r--r--source/kl/sc/messages.po80
-rw-r--r--source/kl/sd/messages.po74
-rw-r--r--source/kl/sw/messages.po84
-rw-r--r--source/kl/vcl/messages.po58
-rw-r--r--source/km/chart2/messages.po4
-rw-r--r--source/km/cui/messages.po78
-rw-r--r--source/km/dbaccess/messages.po28
-rw-r--r--source/km/extensions/messages.po188
-rw-r--r--source/km/fpicker/messages.po20
-rw-r--r--source/km/sc/messages.po80
-rw-r--r--source/km/sd/messages.po74
-rw-r--r--source/km/sw/messages.po84
-rw-r--r--source/km/vcl/messages.po58
-rw-r--r--source/kmr-Latn/chart2/messages.po4
-rw-r--r--source/kmr-Latn/cui/messages.po77
-rw-r--r--source/kmr-Latn/dbaccess/messages.po28
-rw-r--r--source/kmr-Latn/extensions/messages.po190
-rw-r--r--source/kmr-Latn/fpicker/messages.po20
-rw-r--r--source/kmr-Latn/sc/messages.po80
-rw-r--r--source/kmr-Latn/sd/messages.po74
-rw-r--r--source/kmr-Latn/sw/messages.po84
-rw-r--r--source/kmr-Latn/vcl/messages.po58
-rw-r--r--source/kn/chart2/messages.po4
-rw-r--r--source/kn/cui/messages.po78
-rw-r--r--source/kn/dbaccess/messages.po28
-rw-r--r--source/kn/extensions/messages.po188
-rw-r--r--source/kn/fpicker/messages.po20
-rw-r--r--source/kn/sc/messages.po80
-rw-r--r--source/kn/sd/messages.po74
-rw-r--r--source/kn/sw/messages.po84
-rw-r--r--source/kn/vcl/messages.po58
-rw-r--r--source/ko/chart2/messages.po4
-rw-r--r--source/ko/cui/messages.po76
-rw-r--r--source/ko/dbaccess/messages.po28
-rw-r--r--source/ko/extensions/messages.po188
-rw-r--r--source/ko/fpicker/messages.po20
-rw-r--r--source/ko/sc/messages.po80
-rw-r--r--source/ko/sd/messages.po74
-rw-r--r--source/ko/sw/messages.po84
-rw-r--r--source/ko/vcl/messages.po58
-rw-r--r--source/kok/chart2/messages.po4
-rw-r--r--source/kok/cui/messages.po77
-rw-r--r--source/kok/dbaccess/messages.po28
-rw-r--r--source/kok/extensions/messages.po190
-rw-r--r--source/kok/fpicker/messages.po20
-rw-r--r--source/kok/sc/messages.po80
-rw-r--r--source/kok/sd/messages.po74
-rw-r--r--source/kok/sw/messages.po84
-rw-r--r--source/kok/vcl/messages.po58
-rw-r--r--source/ks/chart2/messages.po4
-rw-r--r--source/ks/cui/messages.po77
-rw-r--r--source/ks/dbaccess/messages.po28
-rw-r--r--source/ks/extensions/messages.po190
-rw-r--r--source/ks/fpicker/messages.po20
-rw-r--r--source/ks/sc/messages.po80
-rw-r--r--source/ks/sd/messages.po74
-rw-r--r--source/ks/sw/messages.po84
-rw-r--r--source/ks/vcl/messages.po58
-rw-r--r--source/ky/chart2/messages.po4
-rw-r--r--source/ky/cui/messages.po76
-rw-r--r--source/ky/dbaccess/messages.po28
-rw-r--r--source/ky/extensions/messages.po188
-rw-r--r--source/ky/fpicker/messages.po20
-rw-r--r--source/ky/sc/messages.po80
-rw-r--r--source/ky/sd/messages.po74
-rw-r--r--source/ky/sw/messages.po84
-rw-r--r--source/ky/vcl/messages.po58
-rw-r--r--source/lb/chart2/messages.po4
-rw-r--r--source/lb/cui/messages.po76
-rw-r--r--source/lb/dbaccess/messages.po28
-rw-r--r--source/lb/extensions/messages.po189
-rw-r--r--source/lb/fpicker/messages.po20
-rw-r--r--source/lb/sc/messages.po80
-rw-r--r--source/lb/sd/messages.po74
-rw-r--r--source/lb/sw/messages.po84
-rw-r--r--source/lb/vcl/messages.po58
-rw-r--r--source/lo/chart2/messages.po4
-rw-r--r--source/lo/cui/messages.po77
-rw-r--r--source/lo/dbaccess/messages.po28
-rw-r--r--source/lo/extensions/messages.po188
-rw-r--r--source/lo/fpicker/messages.po20
-rw-r--r--source/lo/sc/messages.po80
-rw-r--r--source/lo/sd/messages.po74
-rw-r--r--source/lo/sw/messages.po84
-rw-r--r--source/lo/vcl/messages.po58
-rw-r--r--source/lt/chart2/messages.po4
-rw-r--r--source/lt/cui/messages.po82
-rw-r--r--source/lt/dbaccess/messages.po28
-rw-r--r--source/lt/extensions/messages.po188
-rw-r--r--source/lt/fpicker/messages.po20
-rw-r--r--source/lt/sc/messages.po80
-rw-r--r--source/lt/sd/messages.po74
-rw-r--r--source/lt/sw/messages.po84
-rw-r--r--source/lt/vcl/messages.po58
-rw-r--r--source/lv/chart2/messages.po4
-rw-r--r--source/lv/cui/messages.po76
-rw-r--r--source/lv/dbaccess/messages.po30
-rw-r--r--source/lv/extensions/messages.po190
-rw-r--r--source/lv/fpicker/messages.po20
-rw-r--r--source/lv/sc/messages.po80
-rw-r--r--source/lv/sd/messages.po74
-rw-r--r--source/lv/sw/messages.po86
-rw-r--r--source/lv/vcl/messages.po60
-rw-r--r--source/mai/chart2/messages.po4
-rw-r--r--source/mai/cui/messages.po77
-rw-r--r--source/mai/dbaccess/messages.po28
-rw-r--r--source/mai/extensions/messages.po190
-rw-r--r--source/mai/fpicker/messages.po20
-rw-r--r--source/mai/sc/messages.po80
-rw-r--r--source/mai/sd/messages.po74
-rw-r--r--source/mai/sw/messages.po84
-rw-r--r--source/mai/vcl/messages.po58
-rw-r--r--source/mk/chart2/messages.po4
-rw-r--r--source/mk/cui/messages.po77
-rw-r--r--source/mk/dbaccess/messages.po28
-rw-r--r--source/mk/extensions/messages.po190
-rw-r--r--source/mk/fpicker/messages.po20
-rw-r--r--source/mk/sc/messages.po80
-rw-r--r--source/mk/sd/messages.po74
-rw-r--r--source/mk/sw/messages.po84
-rw-r--r--source/mk/vcl/messages.po58
-rw-r--r--source/ml/chart2/messages.po4
-rw-r--r--source/ml/cui/messages.po77
-rw-r--r--source/ml/dbaccess/messages.po28
-rw-r--r--source/ml/extensions/messages.po190
-rw-r--r--source/ml/fpicker/messages.po20
-rw-r--r--source/ml/sc/messages.po80
-rw-r--r--source/ml/sd/messages.po74
-rw-r--r--source/ml/sw/messages.po84
-rw-r--r--source/ml/vcl/messages.po58
-rw-r--r--source/mn/chart2/messages.po6
-rw-r--r--source/mn/cui/messages.po76
-rw-r--r--source/mn/dbaccess/messages.po30
-rw-r--r--source/mn/extensions/messages.po190
-rw-r--r--source/mn/fpicker/messages.po22
-rw-r--r--source/mn/sc/messages.po80
-rw-r--r--source/mn/sd/messages.po74
-rw-r--r--source/mn/sw/messages.po86
-rw-r--r--source/mn/vcl/messages.po60
-rw-r--r--source/mni/chart2/messages.po4
-rw-r--r--source/mni/cui/messages.po76
-rw-r--r--source/mni/dbaccess/messages.po28
-rw-r--r--source/mni/extensions/messages.po190
-rw-r--r--source/mni/fpicker/messages.po20
-rw-r--r--source/mni/sc/messages.po80
-rw-r--r--source/mni/sd/messages.po74
-rw-r--r--source/mni/sw/messages.po84
-rw-r--r--source/mni/vcl/messages.po58
-rw-r--r--source/mr/chart2/messages.po4
-rw-r--r--source/mr/cui/messages.po78
-rw-r--r--source/mr/dbaccess/messages.po28
-rw-r--r--source/mr/extensions/messages.po190
-rw-r--r--source/mr/fpicker/messages.po20
-rw-r--r--source/mr/sc/messages.po80
-rw-r--r--source/mr/sd/messages.po74
-rw-r--r--source/mr/sw/messages.po84
-rw-r--r--source/mr/vcl/messages.po58
-rw-r--r--source/my/chart2/messages.po4
-rw-r--r--source/my/cui/messages.po78
-rw-r--r--source/my/dbaccess/messages.po28
-rw-r--r--source/my/extensions/messages.po190
-rw-r--r--source/my/fpicker/messages.po20
-rw-r--r--source/my/sc/messages.po80
-rw-r--r--source/my/sd/messages.po74
-rw-r--r--source/my/sw/messages.po84
-rw-r--r--source/my/vcl/messages.po58
-rw-r--r--source/nb/chart2/messages.po4
-rw-r--r--source/nb/cui/messages.po78
-rw-r--r--source/nb/dbaccess/messages.po30
-rw-r--r--source/nb/extensions/messages.po190
-rw-r--r--source/nb/fpicker/messages.po20
-rw-r--r--source/nb/sc/messages.po82
-rw-r--r--source/nb/sd/messages.po76
-rw-r--r--source/nb/sw/messages.po86
-rw-r--r--source/nb/vcl/messages.po58
-rw-r--r--source/ne/chart2/messages.po4
-rw-r--r--source/ne/cui/messages.po77
-rw-r--r--source/ne/dbaccess/messages.po28
-rw-r--r--source/ne/extensions/messages.po190
-rw-r--r--source/ne/fpicker/messages.po20
-rw-r--r--source/ne/sc/messages.po80
-rw-r--r--source/ne/sd/messages.po74
-rw-r--r--source/ne/sw/messages.po84
-rw-r--r--source/ne/vcl/messages.po58
-rw-r--r--source/nl/basctl/messages.po10
-rw-r--r--source/nl/chart2/messages.po6
-rw-r--r--source/nl/cui/messages.po86
-rw-r--r--source/nl/dbaccess/messages.po34
-rw-r--r--source/nl/extensions/messages.po190
-rw-r--r--source/nl/formula/messages.po126
-rw-r--r--source/nl/fpicker/messages.po22
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po10
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/guide.po20
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/python.po42
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po550
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/02.po10
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po4352
-rw-r--r--source/nl/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/nl/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/guide.po22
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po22
-rw-r--r--source/nl/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po14
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po12
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po38
-rw-r--r--source/nl/sc/messages.po82
-rw-r--r--source/nl/scaddins/messages.po22
-rw-r--r--source/nl/sd/messages.po84
-rw-r--r--source/nl/starmath/messages.po78
-rw-r--r--source/nl/svtools/messages.po8
-rw-r--r--source/nl/svx/messages.po18
-rw-r--r--source/nl/sw/messages.po86
-rw-r--r--source/nl/vcl/messages.po60
-rw-r--r--source/nn/chart2/messages.po6
-rw-r--r--source/nn/cui/messages.po112
-rw-r--r--source/nn/dbaccess/messages.po30
-rw-r--r--source/nn/desktop/messages.po8
-rw-r--r--source/nn/extensions/messages.po190
-rw-r--r--source/nn/fpicker/messages.po20
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/guide.po14
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po84
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/02.po28
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po653
-rw-r--r--source/nn/helpcontent2/source/text/scalc.po10
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po850
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/nn/sc/messages.po82
-rw-r--r--source/nn/sd/messages.po76
-rw-r--r--source/nn/sw/messages.po86
-rw-r--r--source/nn/vcl/messages.po60
-rw-r--r--source/nr/chart2/messages.po4
-rw-r--r--source/nr/cui/messages.po76
-rw-r--r--source/nr/dbaccess/messages.po28
-rw-r--r--source/nr/extensions/messages.po190
-rw-r--r--source/nr/fpicker/messages.po20
-rw-r--r--source/nr/sc/messages.po80
-rw-r--r--source/nr/sd/messages.po74
-rw-r--r--source/nr/sw/messages.po84
-rw-r--r--source/nr/vcl/messages.po58
-rw-r--r--source/nso/chart2/messages.po4
-rw-r--r--source/nso/cui/messages.po77
-rw-r--r--source/nso/dbaccess/messages.po28
-rw-r--r--source/nso/extensions/messages.po190
-rw-r--r--source/nso/fpicker/messages.po20
-rw-r--r--source/nso/sc/messages.po80
-rw-r--r--source/nso/sd/messages.po74
-rw-r--r--source/nso/sw/messages.po84
-rw-r--r--source/nso/vcl/messages.po58
-rw-r--r--source/oc/chart2/messages.po6
-rw-r--r--source/oc/cui/messages.po120
-rw-r--r--source/oc/dbaccess/messages.po30
-rw-r--r--source/oc/dictionaries/en/dialog.po12
-rw-r--r--source/oc/extensions/messages.po190
-rw-r--r--source/oc/filter/messages.po8
-rw-r--r--source/oc/formula/messages.po6
-rw-r--r--source/oc/fpicker/messages.po20
-rw-r--r--source/oc/sc/messages.po86
-rw-r--r--source/oc/scp2/source/ooo.po10
-rw-r--r--source/oc/sd/messages.po76
-rw-r--r--source/oc/sfx2/messages.po8
-rw-r--r--source/oc/sw/messages.po146
-rw-r--r--source/oc/vcl/messages.po60
-rw-r--r--source/om/chart2/messages.po4
-rw-r--r--source/om/cui/messages.po77
-rw-r--r--source/om/dbaccess/messages.po28
-rw-r--r--source/om/extensions/messages.po190
-rw-r--r--source/om/fpicker/messages.po20
-rw-r--r--source/om/sc/messages.po80
-rw-r--r--source/om/sd/messages.po74
-rw-r--r--source/om/sw/messages.po84
-rw-r--r--source/om/vcl/messages.po58
-rw-r--r--source/or/chart2/messages.po4
-rw-r--r--source/or/cui/messages.po77
-rw-r--r--source/or/dbaccess/messages.po28
-rw-r--r--source/or/extensions/messages.po190
-rw-r--r--source/or/fpicker/messages.po20
-rw-r--r--source/or/sc/messages.po80
-rw-r--r--source/or/sd/messages.po74
-rw-r--r--source/or/sw/messages.po84
-rw-r--r--source/or/vcl/messages.po58
-rw-r--r--source/pa-IN/chart2/messages.po6
-rw-r--r--source/pa-IN/cui/messages.po78
-rw-r--r--source/pa-IN/dbaccess/messages.po28
-rw-r--r--source/pa-IN/desktop/messages.po10
-rw-r--r--source/pa-IN/editeng/messages.po16
-rw-r--r--source/pa-IN/extensions/messages.po190
-rw-r--r--source/pa-IN/fpicker/messages.po20
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po25
-rw-r--r--source/pa-IN/sc/messages.po249
-rw-r--r--source/pa-IN/sd/messages.po98
-rw-r--r--source/pa-IN/starmath/messages.po37
-rw-r--r--source/pa-IN/sw/messages.po86
-rw-r--r--source/pa-IN/vcl/messages.po60
-rw-r--r--source/pl/chart2/messages.po4
-rw-r--r--source/pl/cui/messages.po86
-rw-r--r--source/pl/dbaccess/messages.po30
-rw-r--r--source/pl/extensions/messages.po188
-rw-r--r--source/pl/filter/source/config/fragments/filters.po8
-rw-r--r--source/pl/fpicker/messages.po20
-rw-r--r--source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pl/sc/messages.po90
-rw-r--r--source/pl/scp2/source/writer.po10
-rw-r--r--source/pl/sd/messages.po74
-rw-r--r--source/pl/sfx2/messages.po8
-rw-r--r--source/pl/svtools/messages.po8
-rw-r--r--source/pl/sw/messages.po86
-rw-r--r--source/pl/vcl/messages.po58
-rw-r--r--source/pt-BR/chart2/messages.po4
-rw-r--r--source/pt-BR/cui/messages.po118
-rw-r--r--source/pt-BR/dbaccess/messages.po30
-rw-r--r--source/pt-BR/extensions/messages.po188
-rw-r--r--source/pt-BR/fpicker/messages.po20
-rw-r--r--source/pt-BR/helpcontent2/source/auxiliary.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/pt-BR/sc/messages.po82
-rw-r--r--source/pt-BR/sd/messages.po74
-rw-r--r--source/pt-BR/svx/messages.po12
-rw-r--r--source/pt-BR/sw/messages.po86
-rw-r--r--source/pt-BR/swext/mediawiki/help.po8
-rw-r--r--source/pt-BR/vcl/messages.po64
-rw-r--r--source/pt/chart2/messages.po4
-rw-r--r--source/pt/cui/messages.po76
-rw-r--r--source/pt/dbaccess/messages.po30
-rw-r--r--source/pt/extensions/messages.po188
-rw-r--r--source/pt/fpicker/messages.po20
-rw-r--r--source/pt/sc/messages.po82
-rw-r--r--source/pt/sd/messages.po74
-rw-r--r--source/pt/sw/messages.po86
-rw-r--r--source/pt/vcl/messages.po58
-rw-r--r--source/ro/basctl/messages.po6
-rw-r--r--source/ro/chart2/messages.po6
-rw-r--r--source/ro/cui/messages.po78
-rw-r--r--source/ro/dbaccess/messages.po34
-rw-r--r--source/ro/extensions/messages.po190
-rw-r--r--source/ro/fpicker/messages.po22
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po54
-rw-r--r--source/ro/sc/messages.po226
-rw-r--r--source/ro/sd/messages.po80
-rw-r--r--source/ro/svx/messages.po4
-rw-r--r--source/ro/sw/messages.po120
-rw-r--r--source/ro/vcl/messages.po60
-rw-r--r--source/ro/wizards/source/resources.po6
-rw-r--r--source/ru/chart2/messages.po6
-rw-r--r--source/ru/cui/messages.po78
-rw-r--r--source/ru/dbaccess/messages.po30
-rw-r--r--source/ru/extensions/messages.po190
-rw-r--r--source/ru/fpicker/messages.po22
-rw-r--r--source/ru/sc/messages.po82
-rw-r--r--source/ru/sd/messages.po76
-rw-r--r--source/ru/sw/messages.po86
-rw-r--r--source/ru/vcl/messages.po60
-rw-r--r--source/rw/chart2/messages.po4
-rw-r--r--source/rw/cui/messages.po77
-rw-r--r--source/rw/dbaccess/messages.po28
-rw-r--r--source/rw/extensions/messages.po190
-rw-r--r--source/rw/fpicker/messages.po20
-rw-r--r--source/rw/sc/messages.po80
-rw-r--r--source/rw/sd/messages.po74
-rw-r--r--source/rw/sw/messages.po84
-rw-r--r--source/rw/vcl/messages.po58
-rw-r--r--source/sa-IN/chart2/messages.po4
-rw-r--r--source/sa-IN/cui/messages.po76
-rw-r--r--source/sa-IN/dbaccess/messages.po28
-rw-r--r--source/sa-IN/extensions/messages.po188
-rw-r--r--source/sa-IN/fpicker/messages.po20
-rw-r--r--source/sa-IN/sc/messages.po80
-rw-r--r--source/sa-IN/sd/messages.po74
-rw-r--r--source/sa-IN/sw/messages.po84
-rw-r--r--source/sa-IN/vcl/messages.po58
-rw-r--r--source/sah/chart2/messages.po4
-rw-r--r--source/sah/cui/messages.po76
-rw-r--r--source/sah/dbaccess/messages.po28
-rw-r--r--source/sah/extensions/messages.po188
-rw-r--r--source/sah/fpicker/messages.po20
-rw-r--r--source/sah/sc/messages.po80
-rw-r--r--source/sah/sd/messages.po74
-rw-r--r--source/sah/sw/messages.po84
-rw-r--r--source/sah/vcl/messages.po58
-rw-r--r--source/sat/chart2/messages.po4
-rw-r--r--source/sat/cui/messages.po78
-rw-r--r--source/sat/dbaccess/messages.po28
-rw-r--r--source/sat/extensions/messages.po188
-rw-r--r--source/sat/fpicker/messages.po20
-rw-r--r--source/sat/sc/messages.po80
-rw-r--r--source/sat/sd/messages.po74
-rw-r--r--source/sat/sw/messages.po84
-rw-r--r--source/sat/vcl/messages.po58
-rw-r--r--source/sd/chart2/messages.po4
-rw-r--r--source/sd/cui/messages.po78
-rw-r--r--source/sd/dbaccess/messages.po28
-rw-r--r--source/sd/extensions/messages.po188
-rw-r--r--source/sd/fpicker/messages.po20
-rw-r--r--source/sd/sc/messages.po80
-rw-r--r--source/sd/sd/messages.po74
-rw-r--r--source/sd/sw/messages.po84
-rw-r--r--source/sd/vcl/messages.po58
-rw-r--r--source/si/chart2/messages.po4
-rw-r--r--source/si/cui/messages.po78
-rw-r--r--source/si/dbaccess/messages.po28
-rw-r--r--source/si/extensions/messages.po190
-rw-r--r--source/si/fpicker/messages.po20
-rw-r--r--source/si/sc/messages.po80
-rw-r--r--source/si/sd/messages.po74
-rw-r--r--source/si/sw/messages.po84
-rw-r--r--source/si/vcl/messages.po58
-rw-r--r--source/sid/chart2/messages.po4
-rw-r--r--source/sid/cui/messages.po78
-rw-r--r--source/sid/dbaccess/messages.po28
-rw-r--r--source/sid/extensions/messages.po190
-rw-r--r--source/sid/fpicker/messages.po20
-rw-r--r--source/sid/sc/messages.po80
-rw-r--r--source/sid/sd/messages.po74
-rw-r--r--source/sid/sw/messages.po84
-rw-r--r--source/sid/vcl/messages.po58
-rw-r--r--source/sk/chart2/messages.po6
-rw-r--r--source/sk/cui/messages.po76
-rw-r--r--source/sk/dbaccess/messages.po30
-rw-r--r--source/sk/extensions/messages.po190
-rw-r--r--source/sk/fpicker/messages.po20
-rw-r--r--source/sk/sc/messages.po82
-rw-r--r--source/sk/sd/messages.po76
-rw-r--r--source/sk/sw/messages.po84
-rw-r--r--source/sk/vcl/messages.po60
-rw-r--r--source/sq/chart2/messages.po4
-rw-r--r--source/sq/cui/messages.po76
-rw-r--r--source/sq/dbaccess/messages.po28
-rw-r--r--source/sq/extensions/messages.po190
-rw-r--r--source/sq/fpicker/messages.po20
-rw-r--r--source/sq/sc/messages.po80
-rw-r--r--source/sq/sd/messages.po74
-rw-r--r--source/sq/sw/messages.po84
-rw-r--r--source/sq/vcl/messages.po58
-rw-r--r--source/sr-Latn/chart2/messages.po4
-rw-r--r--source/sr-Latn/cui/messages.po77
-rw-r--r--source/sr-Latn/dbaccess/messages.po28
-rw-r--r--source/sr-Latn/extensions/messages.po188
-rw-r--r--source/sr-Latn/fpicker/messages.po20
-rw-r--r--source/sr-Latn/sc/messages.po80
-rw-r--r--source/sr-Latn/sd/messages.po74
-rw-r--r--source/sr-Latn/sw/messages.po84
-rw-r--r--source/sr-Latn/vcl/messages.po58
-rw-r--r--source/sr/chart2/messages.po4
-rw-r--r--source/sr/cui/messages.po76
-rw-r--r--source/sr/dbaccess/messages.po28
-rw-r--r--source/sr/extensions/messages.po188
-rw-r--r--source/sr/fpicker/messages.po20
-rw-r--r--source/sr/sc/messages.po80
-rw-r--r--source/sr/sd/messages.po74
-rw-r--r--source/sr/sw/messages.po84
-rw-r--r--source/sr/vcl/messages.po58
-rw-r--r--source/ss/chart2/messages.po4
-rw-r--r--source/ss/cui/messages.po76
-rw-r--r--source/ss/dbaccess/messages.po28
-rw-r--r--source/ss/extensions/messages.po190
-rw-r--r--source/ss/fpicker/messages.po20
-rw-r--r--source/ss/sc/messages.po80
-rw-r--r--source/ss/sd/messages.po74
-rw-r--r--source/ss/sw/messages.po84
-rw-r--r--source/ss/vcl/messages.po58
-rw-r--r--source/st/chart2/messages.po4
-rw-r--r--source/st/cui/messages.po76
-rw-r--r--source/st/dbaccess/messages.po28
-rw-r--r--source/st/extensions/messages.po190
-rw-r--r--source/st/fpicker/messages.po20
-rw-r--r--source/st/sc/messages.po80
-rw-r--r--source/st/sd/messages.po74
-rw-r--r--source/st/sw/messages.po84
-rw-r--r--source/st/vcl/messages.po58
-rw-r--r--source/sv/chart2/messages.po4
-rw-r--r--source/sv/cui/messages.po412
-rw-r--r--source/sv/dbaccess/messages.po30
-rw-r--r--source/sv/extensions/messages.po190
-rw-r--r--source/sv/fpicker/messages.po20
-rw-r--r--source/sv/sc/messages.po82
-rw-r--r--source/sv/sd/messages.po76
-rw-r--r--source/sv/sw/messages.po96
-rw-r--r--source/sv/vcl/messages.po58
-rw-r--r--source/sw-TZ/chart2/messages.po4
-rw-r--r--source/sw-TZ/cui/messages.po77
-rw-r--r--source/sw-TZ/dbaccess/messages.po28
-rw-r--r--source/sw-TZ/extensions/messages.po190
-rw-r--r--source/sw-TZ/fpicker/messages.po20
-rw-r--r--source/sw-TZ/sc/messages.po80
-rw-r--r--source/sw-TZ/sd/messages.po74
-rw-r--r--source/sw-TZ/sw/messages.po84
-rw-r--r--source/sw-TZ/vcl/messages.po58
-rw-r--r--source/szl/chart2/messages.po6
-rw-r--r--source/szl/cui/messages.po78
-rw-r--r--source/szl/dbaccess/messages.po30
-rw-r--r--source/szl/extensions/messages.po190
-rw-r--r--source/szl/fpicker/messages.po22
-rw-r--r--source/szl/sc/messages.po82
-rw-r--r--source/szl/sd/messages.po76
-rw-r--r--source/szl/sw/messages.po86
-rw-r--r--source/szl/vcl/messages.po60
-rw-r--r--source/ta/chart2/messages.po4
-rw-r--r--source/ta/cui/messages.po76
-rw-r--r--source/ta/dbaccess/messages.po28
-rw-r--r--source/ta/extensions/messages.po188
-rw-r--r--source/ta/fpicker/messages.po20
-rw-r--r--source/ta/sc/messages.po80
-rw-r--r--source/ta/sd/messages.po74
-rw-r--r--source/ta/sw/messages.po84
-rw-r--r--source/ta/vcl/messages.po58
-rw-r--r--source/te/chart2/messages.po4
-rw-r--r--source/te/cui/messages.po78
-rw-r--r--source/te/dbaccess/messages.po28
-rw-r--r--source/te/extensions/messages.po190
-rw-r--r--source/te/fpicker/messages.po20
-rw-r--r--source/te/sc/messages.po80
-rw-r--r--source/te/sd/messages.po74
-rw-r--r--source/te/sw/messages.po84
-rw-r--r--source/te/vcl/messages.po58
-rw-r--r--source/tg/chart2/messages.po4
-rw-r--r--source/tg/cui/messages.po77
-rw-r--r--source/tg/dbaccess/messages.po28
-rw-r--r--source/tg/extensions/messages.po190
-rw-r--r--source/tg/fpicker/messages.po20
-rw-r--r--source/tg/sc/messages.po80
-rw-r--r--source/tg/sd/messages.po74
-rw-r--r--source/tg/sw/messages.po84
-rw-r--r--source/tg/vcl/messages.po58
-rw-r--r--source/th/chart2/messages.po6
-rw-r--r--source/th/cui/messages.po79
-rw-r--r--source/th/dbaccess/messages.po30
-rw-r--r--source/th/extensions/messages.po190
-rw-r--r--source/th/fpicker/messages.po22
-rw-r--r--source/th/instsetoo_native/inc_openoffice/windows/msi_languages.po797
-rw-r--r--source/th/sc/messages.po82
-rw-r--r--source/th/sd/messages.po76
-rw-r--r--source/th/sw/messages.po86
-rw-r--r--source/th/vcl/messages.po60
-rw-r--r--source/ti/chart2/messages.po4
-rw-r--r--source/ti/cui/messages.po76
-rw-r--r--source/ti/dbaccess/messages.po28
-rw-r--r--source/ti/extensions/messages.po188
-rw-r--r--source/ti/fpicker/messages.po20
-rw-r--r--source/ti/sc/messages.po80
-rw-r--r--source/ti/sd/messages.po74
-rw-r--r--source/ti/sw/messages.po84
-rw-r--r--source/ti/vcl/messages.po58
-rw-r--r--source/tn/chart2/messages.po4
-rw-r--r--source/tn/cui/messages.po76
-rw-r--r--source/tn/dbaccess/messages.po28
-rw-r--r--source/tn/extensions/messages.po188
-rw-r--r--source/tn/fpicker/messages.po20
-rw-r--r--source/tn/sc/messages.po80
-rw-r--r--source/tn/sd/messages.po74
-rw-r--r--source/tn/sw/messages.po84
-rw-r--r--source/tn/vcl/messages.po58
-rw-r--r--source/tr/chart2/messages.po8
-rw-r--r--source/tr/cui/messages.po78
-rw-r--r--source/tr/dbaccess/messages.po30
-rw-r--r--source/tr/extensions/messages.po190
-rw-r--r--source/tr/fpicker/messages.po20
-rw-r--r--source/tr/sc/messages.po82
-rw-r--r--source/tr/sd/messages.po76
-rw-r--r--source/tr/sw/messages.po86
-rw-r--r--source/tr/vcl/messages.po60
-rw-r--r--source/ts/chart2/messages.po4
-rw-r--r--source/ts/cui/messages.po76
-rw-r--r--source/ts/dbaccess/messages.po28
-rw-r--r--source/ts/extensions/messages.po190
-rw-r--r--source/ts/fpicker/messages.po20
-rw-r--r--source/ts/sc/messages.po80
-rw-r--r--source/ts/sd/messages.po74
-rw-r--r--source/ts/sw/messages.po84
-rw-r--r--source/ts/vcl/messages.po58
-rw-r--r--source/tt/chart2/messages.po4
-rw-r--r--source/tt/cui/messages.po77
-rw-r--r--source/tt/dbaccess/messages.po28
-rw-r--r--source/tt/extensions/messages.po188
-rw-r--r--source/tt/fpicker/messages.po20
-rw-r--r--source/tt/sc/messages.po80
-rw-r--r--source/tt/sd/messages.po74
-rw-r--r--source/tt/sw/messages.po84
-rw-r--r--source/tt/vcl/messages.po58
-rw-r--r--source/ug/chart2/messages.po4
-rw-r--r--source/ug/cui/messages.po76
-rw-r--r--source/ug/dbaccess/messages.po28
-rw-r--r--source/ug/extensions/messages.po190
-rw-r--r--source/ug/fpicker/messages.po20
-rw-r--r--source/ug/sc/messages.po80
-rw-r--r--source/ug/sd/messages.po74
-rw-r--r--source/ug/sw/messages.po84
-rw-r--r--source/ug/vcl/messages.po58
-rw-r--r--source/uk/chart2/messages.po4
-rw-r--r--source/uk/cui/messages.po78
-rw-r--r--source/uk/dbaccess/messages.po30
-rw-r--r--source/uk/extensions/messages.po190
-rw-r--r--source/uk/fpicker/messages.po20
-rw-r--r--source/uk/sc/messages.po88
-rw-r--r--source/uk/sd/messages.po74
-rw-r--r--source/uk/sw/messages.po86
-rw-r--r--source/uk/vcl/messages.po60
-rw-r--r--source/ur/chart2/messages.po4
-rw-r--r--source/ur/cui/messages.po76
-rw-r--r--source/ur/dbaccess/messages.po28
-rw-r--r--source/ur/extensions/messages.po188
-rw-r--r--source/ur/fpicker/messages.po20
-rw-r--r--source/ur/sc/messages.po80
-rw-r--r--source/ur/sd/messages.po74
-rw-r--r--source/ur/sw/messages.po84
-rw-r--r--source/ur/vcl/messages.po58
-rw-r--r--source/uz/chart2/messages.po4
-rw-r--r--source/uz/cui/messages.po77
-rw-r--r--source/uz/dbaccess/messages.po28
-rw-r--r--source/uz/extensions/messages.po188
-rw-r--r--source/uz/fpicker/messages.po20
-rw-r--r--source/uz/sc/messages.po80
-rw-r--r--source/uz/sd/messages.po74
-rw-r--r--source/uz/sw/messages.po84
-rw-r--r--source/uz/vcl/messages.po58
-rw-r--r--source/ve/chart2/messages.po4
-rw-r--r--source/ve/cui/messages.po76
-rw-r--r--source/ve/dbaccess/messages.po28
-rw-r--r--source/ve/extensions/messages.po190
-rw-r--r--source/ve/fpicker/messages.po20
-rw-r--r--source/ve/sc/messages.po80
-rw-r--r--source/ve/sd/messages.po74
-rw-r--r--source/ve/sw/messages.po84
-rw-r--r--source/ve/vcl/messages.po58
-rw-r--r--source/vec/chart2/messages.po4
-rw-r--r--source/vec/cui/messages.po76
-rw-r--r--source/vec/dbaccess/messages.po28
-rw-r--r--source/vec/extensions/messages.po188
-rw-r--r--source/vec/fpicker/messages.po20
-rw-r--r--source/vec/sc/messages.po80
-rw-r--r--source/vec/sd/messages.po74
-rw-r--r--source/vec/sw/messages.po86
-rw-r--r--source/vec/vcl/messages.po58
-rw-r--r--source/vi/chart2/messages.po4
-rw-r--r--source/vi/cui/messages.po78
-rw-r--r--source/vi/dbaccess/messages.po28
-rw-r--r--source/vi/extensions/messages.po190
-rw-r--r--source/vi/fpicker/messages.po20
-rw-r--r--source/vi/sc/messages.po80
-rw-r--r--source/vi/sd/messages.po74
-rw-r--r--source/vi/sw/messages.po84
-rw-r--r--source/vi/vcl/messages.po58
-rw-r--r--source/xh/chart2/messages.po4
-rw-r--r--source/xh/cui/messages.po76
-rw-r--r--source/xh/dbaccess/messages.po28
-rw-r--r--source/xh/extensions/messages.po190
-rw-r--r--source/xh/fpicker/messages.po20
-rw-r--r--source/xh/sc/messages.po80
-rw-r--r--source/xh/sd/messages.po74
-rw-r--r--source/xh/sw/messages.po84
-rw-r--r--source/xh/vcl/messages.po58
-rw-r--r--source/zh-CN/chart2/messages.po6
-rw-r--r--source/zh-CN/cui/messages.po90
-rw-r--r--source/zh-CN/dbaccess/messages.po30
-rw-r--r--source/zh-CN/editeng/messages.po8
-rw-r--r--source/zh-CN/extensions/messages.po190
-rw-r--r--source/zh-CN/fpicker/messages.po20
-rw-r--r--source/zh-CN/sc/messages.po88
-rw-r--r--source/zh-CN/sd/messages.po82
-rw-r--r--source/zh-CN/svx/messages.po8
-rw-r--r--source/zh-CN/sw/messages.po97
-rw-r--r--source/zh-CN/vcl/messages.po58
-rw-r--r--source/zh-TW/chart2/messages.po4
-rw-r--r--source/zh-TW/cui/messages.po76
-rw-r--r--source/zh-TW/dbaccess/messages.po30
-rw-r--r--source/zh-TW/extensions/messages.po188
-rw-r--r--source/zh-TW/fpicker/messages.po20
-rw-r--r--source/zh-TW/sc/messages.po82
-rw-r--r--source/zh-TW/sd/messages.po76
-rw-r--r--source/zh-TW/sw/messages.po84
-rw-r--r--source/zh-TW/vcl/messages.po58
-rw-r--r--source/zu/chart2/messages.po4
-rw-r--r--source/zu/cui/messages.po76
-rw-r--r--source/zu/dbaccess/messages.po28
-rw-r--r--source/zu/extensions/messages.po190
-rw-r--r--source/zu/fpicker/messages.po20
-rw-r--r--source/zu/sc/messages.po80
-rw-r--r--source/zu/sd/messages.po74
-rw-r--r--source/zu/sw/messages.po84
-rw-r--r--source/zu/vcl/messages.po58
1494 files changed, 48842 insertions, 53644 deletions
diff --git a/source/ab/chart2/messages.po b/source/ab/chart2/messages.po
index 6390e8fcb3e..b7841bf7637 100644
--- a/source/ab/chart2/messages.po
+++ b/source/ab/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ab/>\n"
@@ -3600,7 +3600,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Иалышәх адиаграмма абазатә тип."
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 0828e023de1..7080e189c3d 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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -17126,176 +17126,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Автоматикала"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Агалактика"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Аконтраст"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Аклассикатә"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Аграфикатә ҭагалара"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Ашрифтқәа рыхәаҧшра"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Ашрифтқәа рыхьӡынҵа"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/ab/dbaccess/messages.po b/source/ab/dbaccess/messages.po
index 9174b46d7d3..177e4f76ed8 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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-02-12 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ab/>\n"
@@ -3327,73 +3327,73 @@ msgid "Create a n_ew database"
msgstr "Иаҧҵатәуп иҿыцу адырқәа рбаза"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr ""
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Иаарттәуп иҟоу адырқәа рбаза афаил"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Аҵыхәтәантәиқәа:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Иаарттәуп"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3401,7 +3401,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/ab/extensions/messages.po b/source/ab/extensions/messages.po
index f62ddac94e2..45e8fe4473b 100644
--- a/source/ab/extensions/messages.po
+++ b/source/ab/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -290,537 +290,525 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Ирҿыцтәуп аформа"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Get"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr ""
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Атеқст"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr ""
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr ""
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr ""
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr ""
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr ""
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr ""
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr ""
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr ""
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr ""
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr ""
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr ""
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr ""
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr ""
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr ""
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr ""
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr ""
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Иалхӡам"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Иалхуп"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr ""
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr ""
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr ""
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Уажәтәи адаҟьа"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Мап"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ааи"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr ""
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "Хыхьла"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Мап"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr ""
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr ""
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Адиапазон"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Горизонталла"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr ""
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Астандарт"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "OK"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Аҟәыхра"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Аилыркаага"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Иалху анҵамҭа"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr ""
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr ""
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr ""
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr ""
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr ""
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr ""
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Мап"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Горизонталла"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr ""
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr ""
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr ""
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr ""
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Арымарахь"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr ""
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr ""
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr ""
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr ""
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr ""
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr ""
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr ""
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr ""
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr ""
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr ""
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Ацентр ала"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr ""
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Иҧсахтәуп"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Иеикәрҳәтәуп"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Мап"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr ""
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Ашәагаа иақәыршәатәуп"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Армарахьтә арӷьарахь"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Арӷьарахьтә армарахь"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr ""
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr ""
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr ""
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Абзац ахь"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Асимвол еиҧш"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Адаҟьахь"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr ""
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Асимвол ахь"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Адаҟьахь"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr ""
diff --git a/source/ab/fpicker/messages.po b/source/ab/fpicker/messages.po
index e4f9f242afd..4818b8ee760 100644
--- a/source/ab/fpicker/messages.po
+++ b/source/ab/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -211,55 +211,55 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Афаил ахьӡ:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Афаил атип:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Аҧхьара мацараз"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Иеиқәырхатәуп ажәамаӡа шацу"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr ""
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Иҧсахтәуп афильтр архиарақәа"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index bcc60e67502..f5b92066879 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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-02-09 16:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -25211,97 +25211,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -25665,143 +25665,143 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr ""
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Аҧштәы"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr ""
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Абызшәа"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Акомментариқәа"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Ахәаҧшра"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Ариашара"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Ахәаҧшра"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Агәыҧ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Ашрифт"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Аиҟаратәра"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Ахәаҧшра"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Ибжьаргылатәуп"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Амедиа"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Афреим"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr ""
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr ""
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index e114ee20553..c0e776c8384 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-02-08 11:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -4171,109 +4171,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7064,109 +7064,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 9e078016be1..675b3dd3a49 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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Abkhazian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -10535,19 +10535,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Астиль"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Астильқәа"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14055,37 +14055,37 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr ""
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Аҭыҧхәаҧшра..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14093,31 +14093,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20304,111 +20304,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Аҭыҧхәаҧшра..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Аҭыҧхәаҧшра..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22569,49 +22569,49 @@ msgid "Object"
msgstr "Аобиеқтқәа"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Атип"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Апараметрқәа"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr ""
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Агиперзхьарҧш"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr ""
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr ""
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr ""
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
#, fuzzy
msgctxt "objectdialog|macro"
msgid "Macro"
@@ -27409,7 +27409,7 @@ msgid "Update"
msgstr "Ирҿыцтәуп"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index ed1cfbe2a54..230b1dada02 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-02-07 23:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ab/>\n"
@@ -2325,170 +2325,170 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Даҽакы:"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr ""
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "адаҟьақәа рыбжьара"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Аброшиура"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/af/chart2/messages.po b/source/af/chart2/messages.po
index 83d44448387..02b79b0443c 100644
--- a/source/af/chart2/messages.po
+++ b/source/af/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-09-14 10:10+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/af/>\n"
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Spesifiseer die aantal lyne vir kolom- en lyndiagramme."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Kies 'n basiese kaarttipe."
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index be45278e5a5..afe863271ca 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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-01-27 17:40+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-7-3/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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976497.000000\n"
#. GyY9M
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Outomaties"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Hoë kontras"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klassiek"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Kies die simboolstyl vir die simbole in die nutsbalke en dialoogvensters."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Ikoons_tyl:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Voeg meer ikoon-temas by via die uitbreiding"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Simbool Grootte"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Benodig herbegin"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Gebruik harde_wareversnelling"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Gaan direk toegang tot die hardeware-kenmerke van die grafiese skerm-kaart om die skermvertoon te verbeter."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Gebruik anti-aliasing"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "As dit ondersteun word, kan u skakeling vir voorwerpe aan of afskakel. As \"anti-aliasing\" geaktiveer is, lyk die meeste grafiese voorwerpe gladder en met minder artefakte."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Gebruik Skia vir alle Vertoning"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Forseer die vertoning van die Skia-sagteware"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Herlaai is nodig. Aktivering voorkom die gebruik van grafiese drywers."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia is huidig Aktief."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia is huidig Gedeaktiveerd."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafika-afvoer"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Wys voo_rskou van fonte"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Vertoon die name van die selekteerbare lettertipes in die toepaslike lettertipe, byvoorbeeld in die \"Lettertipe\"-veld op die \"Formateer\"-werkbalk."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Anti-aliasing van die skerm lettertipes"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Laat teks gladder op die skerm vertoon."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "va_naf:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Voer in die kleinste lettergrootte, waarop gelykmaking toegepas moet word."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Fontlyste"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Doen Grafiese Toetse"
diff --git a/source/af/dbaccess/messages.po b/source/af/dbaccess/messages.po
index b4b16be24a0..3ff90f0d4e7 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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548168630.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Sk_ep ’n nuwe databasis"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Selekteer om 'n nuwe databasis te skep."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Ing_ebedde databasis:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Open ’n bestaande _databasislêer"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Kies vanuit 'n lys onlangs gebruikte lêers om 'n databasis oop te maak of kies vanuit lêer seleksie dialoog."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Onlangs geb_ruik:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Kies 'n databasislêer om uit die lys onlangs gebruikte lêers oop te maak. Klik op Voltooi om die lêer onmiddellik oop te maak en uit die slimmerd te gaan."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Open"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Maak 'n dialoog vir lêerseleksie oop waar u 'n databasislêer kan kies. Klik op Oopmaak of OK in die lêerseleksie -dialoog om die lêer onmiddellik oop te maak en uit die slimmerd te gaan."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Verbind _aan ’n bestaande databasis"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Kies om 'n databasiedokument te skep vir 'n bestaande databasisverbinding."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Kies 'n databasistipe vir die bestaande databasis konneksie."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3469,7 +3469,7 @@ msgid ""
msgstr "Dit is nie moontlik om 'n nuwe databasis te skep omdat of HSQLDB, of Firebird nie beskikbaar is in hierdie omgewing."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Die Databasis Simmerd skep 'n databasis lêer wat inligting oor die databasis bevat."
diff --git a/source/af/extensions/messages.po b/source/af/extensions/messages.po
index fcd288eaa25..7fbee48af97 100644
--- a/source/af/extensions/messages.po
+++ b/source/af/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-10-27 11:32+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/af/>\n"
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Verfris vorm"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "GET"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "POST"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multideel"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Teks"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standaard (kort)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standaard (kort JJ)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standaard (kort JJJJ)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standaard (lank)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/JJ"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/JJ"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "JJ/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/JJJJ"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/JJJJ"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "JJJJ/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "JJ-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "JJJJ-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 nm"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 nm"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Nie gemerk nie"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Gemerk"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Nie gedefinieer nie"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Alle rekords"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Aktiewe rekord"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Huidige bladsy"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Nee"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ja"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Ouervorm"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "blanko"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "eienaar"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Geen"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Enkel"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Multi"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Omvang"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horisontaal"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Vertikaal"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Verstek"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "OK"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Kanselleer"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Hulp"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Die gemerkte inskrywing"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Posisie van die gemerkte inskrywing"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Enkelreël"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Multireël"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Multireël met formatering"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Geen"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horisontaal"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Vertikaal"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Altwee"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Plat"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Links bo"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Links middel"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Links onder"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Regs bo"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Regs middel"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Regs onder"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Bo links"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Bo gesentreer"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Bo regs"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Onder links"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Onder gesentreer"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Onder regs"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Gesentreer"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Behou"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Vervang"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Invou"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Nee"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Behou verhouding"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Pas by grootte"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Links na regs"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Regs na links"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Gebruik bogeskikte objekinstellings"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Nooit"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Wanneer gefokus"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Altyd"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Aan paragraaf"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "As karakter"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Aan bladsy"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Aan raam"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Aan karakter"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Aan bladsy"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "Aan sel"
diff --git a/source/af/fpicker/messages.po b/source/af/fpicker/messages.po
index 6df2d5f4022..4622a045fb0 100644
--- a/source/af/fpicker/messages.po
+++ b/source/af/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-01-26 17:36+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/af/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Wysigingsdatum"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "_Oopmaak"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "-Speel"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Lêer_naam:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Lêer_tipe:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Leesalleen"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Stoor met wagwoord"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Outomatiese lêernaamuitbreiding"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Redigeer _filterinstellings"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Enkripteer met GPG-sleutel"
diff --git a/source/af/readlicense_oo/docs.po b/source/af/readlicense_oo/docs.po
index 30067e50401..4643bf2ee66 100644
--- a/source/af/readlicense_oo/docs.po
+++ b/source/af/readlicense_oo/docs.po
@@ -4,16 +4,16 @@ 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:12+0200\n"
-"PO-Revision-Date: 2021-09-13 16:36+0000\n"
-"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
-"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/af/>\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
+"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-7-3/readlicense_oodocs/af/>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022354.000000\n"
#. q6Gg3
@@ -743,7 +743,7 @@ msgctxt ""
"support1\n"
"readmeitem.text"
msgid "The <a href=\"https://www.libreoffice.org/get-help/community-support/\">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
-msgstr "Die bladsy met gebruikersondersteuning <a href=\"https://de.libreoffice.org/get-help/community-support/\"> https://de.libreoffice.org/get-help/community-support/</a > bevat 'n lys van verskillende maniere om hulp op ${PRODUCTNAME} te kry. U vraag is moontlik al beantwoord, sien <a href=\"https://libreoffice.org/get-help/nabble/\"> https://libreoffice.org/get-help/nabble/ </a> of soek die argiewe van die 'users@libreoffice.org' -poslys op <a href=\"https://listarchives.libreoffice.org/de/users/\"> https://listarchives.libreoffice.org/ com / gebruikers / </a>. Stuur alternatiewelik u vrae na <a href=\"https://wiki.documentfoundation.org/Local_Mailing_Lists/de-users/de\"> gebruikers@de.libreoffice.org </a>. Stuur 'n leë e-pos na: <a href=\"mailto:users+subscribe@de.libreoffice.org\"> gebruikers + subscribe@ de. libreoffice.org </a>."
+msgstr "Die bladsy met gebruikersondersteuning <a href=\"https://de.libreoffice.org/get-help/community-support/\"> https://de.libreoffice.org/get-help/community-support/</a> bevat 'n lys van verskillende maniere om hulp op ${PRODUCTNAME} te kry. U vraag is moontlik al beantwoord, sien <a href=\"https://libreoffice.org/get-help/nabble/\"> https://libreoffice.org/get-help/nabble/ </a> of soek die argiewe van die 'users@libreoffice.org' -poslys op <a href=\"https://listarchives.libreoffice.org/de/users/\"> https://listarchives.libreoffice.org/ com / gebruikers / </a>. Stuur alternatiewelik u vrae na <a href=\"https://wiki.documentfoundation.org/Local_Mailing_Lists/de-users/de\"> gebruikers@de.libreoffice.org </a>. Stuur 'n leë e-pos na: <a href=\"mailto:users+subscribe@de.libreoffice.org\"> gebruikers + subscribe@ de. libreoffice.org </a>."
#. YnDMB
#: readme.xrm
@@ -770,7 +770,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"https://bugs.documentfoundation.org/\">https://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr "Ons stelsel om foute aan te meld, op te spoor en op te los, is tans BugZilla en is geleë op <a href=\"https://bugs.documentfoundation.org/\"> https://bugs.documentfoundation.org/</a > beskikbaar. Ons moedig almal aan om self foute aan te meld wat op die platform mag voorkom. Die aktiewe rapportering van foute is een van die belangrikste bydraes wat die gebruikersgemeenskap kan lewer om die verdere ontwikkeling van ${PRODUCTNAME} te ondersteun."
+msgstr "Ons stelsel om foute aan te meld, op te spoor en op te los, is tans BugZilla en is geleë op <a href=\"https://bugs.documentfoundation.org/\"> https://bugs.documentfoundation.org/</a> beskikbaar. Ons moedig almal aan om self foute aan te meld wat op die platform mag voorkom. Die aktiewe rapportering van foute is een van die belangrikste bydraes wat die gebruikersgemeenskap kan lewer om die verdere ontwikkeling van ${PRODUCTNAME} te ondersteun."
#. WpD2B
#: readme.xrm
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index f450d405e2d..e0ce40b4562 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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-06 20:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-7-3/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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976792.000000\n"
#. kBovX
@@ -25253,97 +25253,97 @@ msgid "~View"
msgstr "~Vertoon Merker"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Afbeeldin_g"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Afbeeldin~g"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "\"D_raw\""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "\"~Draw\""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objek"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Media"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Uitdruk"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Uit~druk"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Vo_rm"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uit_breiding"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Uit~breiding"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -25702,139 +25702,139 @@ msgid "Im_age"
msgstr "Afbeeldin_g"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "R_angskik"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "K_leur"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Rooster"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Taal"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Oorsig"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Opmerkings"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Vergelyking"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Aansig"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "\"D_raw\""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Wysig"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Rangskik"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Aansig"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_Groep"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Font"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Belyning"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Aansig"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Voeg in"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Media"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Raam"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Rangskik"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Rooster"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Aansig"
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index 64103681782..3a38074eb4f 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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
@@ -4173,109 +4173,109 @@ msgid "~Table"
msgstr "Tabel"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Beeld"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Beeld"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Draw"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "Draw"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "Objek"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "Media"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "Media"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "Vorm"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "Meester"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "Meester"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_D"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~D"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
@@ -7062,109 +7062,109 @@ msgid "~Table"
msgstr "Tabel"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Beeld"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Beeld"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Tekening"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "Tekening"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "Objek"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "Media"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "Media"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "Vorm"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "Vorm"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "Model"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "Model"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_D"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3-D"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Uitbreiding"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Uitbreiding"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nu_tsbalk"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "Nu~tsgoed"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index cd2fad60312..7bcf8e6ddcd 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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-11-22 01:38+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
@@ -10499,19 +10499,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Skuif die geselekteerde paragraafstyl 'n vlak af in die indekshiërargie."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Styl"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Style"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Skep indeksinskrywings uit spesifieke paragraafsjablone."
@@ -13955,37 +13955,37 @@ msgid "Exchange Databases"
msgstr "Ruil databasisse"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Definieer"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Databasisse in gebruik"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Beskikb_are databasisse"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Rondkyk..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Open 'n \"Lêerseleksie dialoog\" om databasislêers te open (* .odb). Die geselekteerde lêer word by die lys van beskikbare databasisse gevoeg."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13995,31 +13995,31 @@ msgstr ""
"Gebruik die blaaiknoppie om ’n databasislêer te kies."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Lys die databasisse wat in gebruik is."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Lys die databasisse wat in %PRODUCTNAME geregistreer is."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Ruil databasisse"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Databasis toegepas op dokument:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Wysig die databronne vir die huidige dokument."
@@ -20073,109 +20073,109 @@ msgid "Use the current _document"
msgstr "Gebruik die huidige _dokument"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Gebruik die huidige \"Writer\"-dokument as die basis vir die e-pos saamvoegdokument."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Skep ’n nu_we dokument"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Skep 'n nuwe \"Writer\"-dokument vir die e-pos saamvoegdokument."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "B_egin met bestaande dokument"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Gebruik 'n bestaande \"Writer\"-dokument as die basis vir die e-pos saamvoegdokument."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "_Begin met ’n sjabloon"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Selekteer die sjabloon wat u wil gebruik met die skepping van u e-pos saamvoegdokument."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Begi_n met ’n onlangs gestoorde begindokument"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Gebruik die huidige saamvoegdokument as die basis vir die e-pos saamvoegdokument."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Selekteer die dokument."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "B_laai..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Vind die \"Writer\" dokument wat u wil gebruik, en klik dan \"Open\"."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Bl_aai..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Open die \"Sjabloon Selekteerder\"-dialoog."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Die huidige dokument se databron is nie geregistreer. Verwissel databasis asseblief."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Uitruil Databasis..."
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Kies begindokument vir die massapos"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Spesifiseer die dokument wat gebruik moet word as basis vir die epos saamvoegdokument."
@@ -22318,49 +22318,49 @@ msgid "Object"
msgstr "Objek"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Soort"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opsies"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Vou om"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Rande"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Area"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Deursigtigheid"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27056,7 +27056,7 @@ msgid "Update"
msgstr "Werk by"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Vertoon statistieke vir die huidige lêer."
diff --git a/source/af/vcl/messages.po b/source/af/vcl/messages.po
index cf6f31654a1..78a49ebb93c 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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-09-14 10:10+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/af/>\n"
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Druk meerdere bladsye op een vel papier."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Doelgemaak"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Kies hoeveel bladsye om te druk per vel papier."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Bladsye:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Selekteer die aantal rye."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "by"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Selekteer die aantal kolomme."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Kantlyn:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Selekteer die marge tussen individuele bladsye op 'n vel papier."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "tussen bladsye"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Afstand:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Selekteer die marge tussen gedrukte bladsye en papierrand."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "na kant van papier"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Volgorde:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Links na regs, dan af"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Bo na onder, dan regs"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Bo na onder, dan links"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Regs na links, dan af"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Selekter die volgorde waarin bladsye gedruk word."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Teken ’n raam rondom elke bladsy"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Merk die vakkie vir omranding van elke bladsy."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Brosjure"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Spesifiseer om die dokument te druk in brosjure formaat."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Sorteer orde voorskou"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Wysig die bladsyrangskikking soos dit op elke blad gedruk moet word. Die voorskou toon die finale bladuitleg."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "M_eer"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Bladuitleg"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Algemeen"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Druk die huidige: hele dokument of seleksie- of gespesifiseerde-bladsy(/)e. U kan ook die drukopsies vir die huidige dokument spesifiseer."
diff --git a/source/am/chart2/messages.po b/source/am/chart2/messages.po
index 73a6f8e2405..01109029d4e 100644
--- a/source/am/chart2/messages.po
+++ b/source/am/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-11-22 01:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/am/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559505967.000000\n"
#. NCRDD
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "የ መስመሮች ቁጥር ማሰናጃ ለ አምድ እና ለ መስመር ቻርትስ አይነት:"
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "ይምረጡ መሰረታዊ የ ቻርትስ አይነት"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 6a85f6f0e31..c1160dacdc7 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/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: 2022-01-10 12:20+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/am/>\n"
"Language: am\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: 1563646037.000000\n"
#. GyY9M
@@ -2738,7 +2738,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document."
-msgstr ""
+msgstr "በ መቃኛ እርስዎ ራስጌዎችን መምረጥ እና ማንቀሳቀስ ይችላሉ ወደ ላይ/ታች እና ጽሁፍ ከ ራስጌው ስር ማድረግ ይችላሉ: በ መቃኛ እና ሰነድ ውስጥ:"
#. 8qYrk
#: cui/inc/tipoftheday.hrc:152
@@ -2762,7 +2762,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
-msgstr ""
+msgstr "የ እርስዎን የ ግርጌ ማስታወሻ ቁጥር መስጠት ያስችሎታል በየ ገጹ: በየ ምእራፉ: በየ ሰነዱ ውስጥ: መሳሪያዎች ▸ የ ግርጌ ማስታወሻ እና የ መጨረሻ ማስታወሻ ▸ የ ግርጌ ማስታወሻ tab ▸ መቁጠሪያ:"
#. gpVRV
#: cui/inc/tipoftheday.hrc:156
@@ -2774,7 +2774,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management? Use a 3rd party extension."
-msgstr ""
+msgstr "የ ማመሳከሪያ አስተዳዳሪ? የ 3ኛ አካል ተጨማሪዎች ይጠቀሙ:"
#. ALczh
#: cui/inc/tipoftheday.hrc:158
@@ -17133,176 +17133,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "ራሱ በራሱ"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "ጋላክሲ"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "ከፍተኛ ማነጻጸሪያ"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "ኦክስጂን"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "ዘመናዊ"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "ሲፍር"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "ነፋስ"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "የ ምልክት ዘዴ ለ ምልክቶች በ እቃ መደርደሪያ እና ንግግሮች ውስጥ ይወስኑ "
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "የ ምልክት ዘ_ዴ:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "ተጨማሪ የ ምልክቶች ገጽታ መጨመሪያ በ ተጨማሪ በኩል"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "የ ምልክት ዘዴ"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "እንደገና ማስነሳት ያስፈልጋል"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "የ ጠንካራ_አካል ማፍጠኛ ይጠቀሙ"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "በ ቀጥታ መድረሻ ወደ ጠንካራ አካል ገጽታዎች የ ንድፍ ማሳያ ተሰኪ ለ ማሻሻል የ መመልከቻ ማሳያ "
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "ፀረ-ማ_ጥሪያ ይጠቀሙ"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "በሚደገፍ ጊዜ: እርስዎ ማስቻል እና ማሰናከል ይችላሉ ፀረ-ደረጃ የ ንድፎችን: ፀረ-ደረጃ ካስቻሉ በርካታ የ ንድፍ እቃዎች የሚታዩት ለስለስ ብለው ነው ማንኛውም ንድፎች"
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "የ ንድፎች ውጤት"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "ፊደሎችን በ_ቅድመ እይታ ማሳያ"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "ሊመረጡ የሚችሉ ፊደሎች የ ተመሳሳይ ፊደሎች ስም ማሳያ: ለምሳሌ: ፊደሎች በ ፊደሎች ሳጥን ውስጥ በ አቀራረብ መደርደሪያ"
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "የ መመልከቻ ፊደል ማጥሪ _ያ"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "ይምረጡ ለ ጽሁፍ ማለስለሻ በ መመልከቻው ላይ"
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "ከ_:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "የ ፊደል ዝርዝሮች"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/am/dbaccess/messages.po b/source/am/dbaccess/messages.po
index ef90cf77bfd..6bf3c74f023 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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/am/>\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: 1563039147.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "አ_ዲስ የዳታቤዝ መፍጠሪያ"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "ይምረጡ አዲስ ዳታቤዝ ለ መፍጠር"
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "የ _ተጣበቀ ዳታቤዝ:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "የነበረውን የ ዳታቤዝ _ፋይል መክፈቻ"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "ይምረጡ በ ቅርብ ጊዜ የ ተጠቀሙበት ፋይሎች ዝርዝር ውስጥ የ ዳታቤዝ ፋይል ለ መክፈት ወይንም ከ ፋይል መምረጫ ንግግር ውስጥ ለ መምረጥ:"
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_በቅርብ ጊዜ የተጠቀሙት:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "ይምረጡ በ ቅርብ ጊዜ የ ተጠቀሙበት ፋይሎች ዝርዝር ውስጥ የ ዳታቤዝ ፋይል ለ መክፈት: ይጫኑ መጨረሻ ፋይል ወዲያውኑ ለ መክፈት እና ከ አዋቂው ለ መውጣት:"
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "መክፈቻ"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "እርስዎ የ ዳታቤዝ ፋይል የሚመርጡበት የ ፋይል መምረጫ ንግግር መክፈቻ: ይጫኑ መክፈቻ ወይንም እሺ በ ፋይል መምረጫ ንግግር ውስጥ ወዲያውኑ ፋይል ለ መክፈት እና ከ አዋቂው ለ መውጣት:"
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "ወደ ነ_በረው የ ዳታቤዝ መገናኛ"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "ይምረጡ የ ዳታቤዝ ሰነድ ለ ነበረው የ ዳታቤዝ ግንኙነት:"
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "ይምረጡ የ ዳታቤዝ አይነት ለ ነበረው የ ዳታቤዝ ግንኙነት:"
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3471,7 +3471,7 @@ msgstr ""
"ማሰናጃው ውስጥ አልተገኘም:"
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/am/dictionaries/ru_RU/dialog.po b/source/am/dictionaries/ru_RU/dialog.po
index 9b6211fa5bb..0a04a5fa1e1 100644
--- a/source/am/dictionaries/ru_RU/dialog.po
+++ b/source/am/dictionaries/ru_RU/dialog.po
@@ -4,16 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2018-11-26 12:31+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/dictionariesru_rudialog/am/>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1543235510.000000\n"
#. iXbyq
@@ -140,4 +140,4 @@ msgctxt ""
"quotation\n"
"property.text"
msgid "Quotation"
-msgstr "ጥቅሶች"
+msgstr "ጥቅስ"
diff --git a/source/am/editeng/messages.po b/source/am/editeng/messages.po
index 404a3d862f9..ebc561b9d21 100644
--- a/source/am/editeng/messages.po
+++ b/source/am/editeng/messages.po
@@ -4,16 +4,16 @@ 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-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-09-10 21:17+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
-"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/am/>\n"
+"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/editengmessages/am/>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1561216497.000000\n"
#. BHYB4
@@ -1452,7 +1452,7 @@ msgstr "ባህሪ ማዞሪያ በ $(ARG1)°"
#: include/editeng/editrids.hrc:256
msgctxt "RID_SVXITEMS_CHARROTATE_FITLINE"
msgid "Fit to line"
-msgstr "በመስመሩ ልክ"
+msgstr "በ መስመሩ ልክ"
#. 8DQGe
#: include/editeng/editrids.hrc:257
diff --git a/source/am/extensions/messages.po b/source/am/extensions/messages.po
index 8aa55e59e2d..96526dab579 100644
--- a/source/am/extensions/messages.po
+++ b/source/am/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-11-27 22:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/am/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1558548713.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "ፎርም ማነቃቂያ"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "ማግኛ"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "መለጠፊያ"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "በርካታ አካል"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "ጽሁፍ"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "መደበኛ (አጭር)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "መደበኛ (አጭር አመት)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "መደበኛ (አጭር አመት)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "መደበኛ (ረጅም)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "ቀን/ወር/አመት"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "ወር/ቀን/አመት"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "አመት/ወር/ቀን"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "ቀን/ወር/አመት"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "ወር/ቀን/አመት"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "አመት/ወር/ቀን"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "አመት-ወር-ቀን"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "አመት-ወር-ቀን"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 ከሰአት"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 ከሰአት"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "አልተመረጠም"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "ተመርጧል"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "አልተገለጸም"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "ሁሉንም መዝገቦች"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "ንቁ መዝገቦች"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "የ አሁኑ ገጽ"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "አይ"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "አዎ"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "የ ወላጅ ፎርም"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_ባዶ"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_ወላጅ"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_ራስ"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "ከ _ላይ"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "ምንም"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "ነጠላ"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "በርካታ"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "መጠን"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "በ አግድም"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "በ ቁመት"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "ነባር"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "እሺ"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "መሰረዣ"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "እርዳታ"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "የ ተመረጠው ማስገቢያ"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "የ ተመረጠው ማስገቢያ ቦታ"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "ነጠላ-መስመር"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "በርካታ-መስመር"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "በርካታ-መስመር ከ አቀራረብ ጋር"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "መስመር መቀለቢያ (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+ መስመር መቀለቢያ (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "ምንም"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "በ አግድም"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "በ ቁመት"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "ሁለቱንም"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3ዲ"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "ጠፍጣፋ"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "በ ግራ ከ ላይ"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "በ ግራ መሀከል"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "በ ግራ ከ ታች"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "በ ቀኝ ከ ላይ"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "በ ቀኝ መሀከል"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "በ ቀኝ ከ ታች"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "ከ ላይ በ ግራ"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "ከ ላይ መሀከል"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "ከ ላይ በ ቀኝ"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "ከ ታች በ ግራ"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "ከ ታች መሀከል"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "ከ ታች በ ቀኝ"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "መሀከል"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "መጠበቂያ"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "መቀየሪያ"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "ማሳነሻ"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "አይ"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "መጠን መጠበቂያ"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "በ መጠኑ ልክ"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "ከ ግራ-ወደ-ቀኝ"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "ከ ቀኝ-ወደ-ግራ"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "ከፍተኛ የ እቃ ማሰናጃዎችን መጠቀሚያ"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "በፍጹም"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "በሚያተኩር ጊዜ"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "ሁል ጊዜ"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "ወደ አንቀጽ"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "እንደ ባህሪ"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "ወደ ገጽ"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "ወደ ክፈፍ"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "ወደ ባህሪ"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "ወደ ገጽ"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "ወደ ክፍል"
diff --git a/source/am/fpicker/messages.po b/source/am/fpicker/messages.po
index d7a1183f695..b5ba8fef221 100644
--- a/source/am/fpicker/messages.po
+++ b/source/am/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-01-25 14:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/am/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "ቀን ተሻሽሏል"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "_መክፈቻ"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "_ማጫወቻ"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "የ ፋይሉ _ስም:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "የ ፋይሉ _አይነት:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "ለ _ማንበብ-ብቻ"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "በ መግቢያ ቃል ማስቀመጫ"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_ራሱ በራሱ የፋይል ተቀጥያዎችን መሰየሚያ"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ማረሚያ የ _ማጣሪያ ማሰናጃዎች"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "በ GPG ቁልፍ መመስጠሪያ"
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 3a170f3f554..9ac77f8470e 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-06-06 18:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/am/>\n"
"Language: am\n"
@@ -31886,7 +31886,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "None"
-msgstr ""
+msgstr "ምንም"
#. SvFa2
#: WriterCommands.xcu
@@ -31926,7 +31926,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Through"
-msgstr ""
+msgstr "~በሙሉ"
#. SocUA
#: WriterCommands.xcu
@@ -33746,7 +33746,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "After"
-msgstr ""
+msgstr "በኋላ"
#. b5mCd
#: WriterCommands.xcu
@@ -34216,7 +34216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Character Highlighting Color"
-msgstr ""
+msgstr "ባህሪ ማድመቂያ ቀለም"
#. sVA9o
#: WriterCommands.xcu
@@ -34406,7 +34406,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Book Preview"
-msgstr "የመጽሀፍ ቅድመ እይታ"
+msgstr "የ መጽሀፍ ቅድመ እይታ"
#. pk7kQ
#: WriterCommands.xcu
@@ -34536,7 +34536,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~List"
-msgstr ""
+msgstr "~ዝርዝር"
#. ZmR9V
#: WriterCommands.xcu
@@ -34686,7 +34686,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Add to List"
-msgstr ""
+msgstr "ወደ ዝርዝር ~መጨመሪያ"
#. rbB7v
#: WriterCommands.xcu
@@ -35246,7 +35246,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Quotation Character Style"
-msgstr ""
+msgstr "የ ጥቅስ ባህሪ ዘዴ"
#. 9LD4r
#: WriterCommands.xcu
@@ -35486,7 +35486,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default Table Style"
-msgstr ""
+msgstr "ነባር የ ሰንጠረዥ ዘዴ"
#. 4AbSB
#: WriterCommands.xcu
@@ -35646,7 +35646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "ActiveX Controls"
-msgstr "ንቁ መቆጣጠሪያ"
+msgstr "ActiveX መቆጣጠሪያ"
#. vzPPx
#: WriterCommands.xcu
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index ec4be4d437f..251b3ae1a5a 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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/am/>\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: 1563147762.000000\n"
#. kBovX
@@ -25254,97 +25254,97 @@ msgid "~View"
msgstr "~መመልከቻ"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "ምስ_ል"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "መ_ሳያ"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "እቃ"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_መገናኛ"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "ማተሚያ"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~ማተሚያ"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ተ_ጨማሪዎች"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "ተ_ጨማሪዎች"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -25703,139 +25703,139 @@ msgid "Im_age"
msgstr "ምስ_ል"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ቀ_ለም"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_መጋጠሚያ"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_ቋንቋ"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_ከለሳ"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_አስተያየቶች"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "ማወዳ_ደሪያ"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_መመልከቻ"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "መ_ሳያ"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_ማረሚያ"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_መመልከቻ"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "ቡድ_ን"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_ዲ"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ፊ_ደል"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_ማሰለፊያ"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_መመልከቻ"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_ማስገቢያ"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_መገናኛ"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "ክ_ፈፍ"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_ማዘጋጃ"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_መጋጠሚያ"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_መመልከቻ"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index f9849676f1c..9063dd5fccf 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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/am/>\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: 1562267419.000000\n"
#. WDjkB
@@ -4173,109 +4173,109 @@ msgid "~Table"
msgstr "~ሰንጠረዥ"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "ምስል"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "መ_ሳያ"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "እቃ"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_መገናኛ"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_ዋናው"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~ዋናው"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_ዲ"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~ዲ"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ተ_ጨማሪ"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "ተ~ጨማሪ"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -7062,109 +7062,109 @@ msgid "~Table"
msgstr "~ሰንጠረዥ"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "ምስል"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "መ_ሳያ"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~መሳያ"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "እቃ"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_መገናኛ"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_ዋናው"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~ዋናው"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_ዲ"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~ዲ"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index a554eacb716..e9e75dfa6f2 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/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: 2021-11-25 19:34+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-06-06 18:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/svxmessages/am/>\n"
"Language: am\n"
@@ -1124,7 +1124,7 @@ msgstr "ነጥብ ማስገቢያ ወደ %1"
#: include/svx/strings.hrc:209
msgctxt "STR_DragInsertGluePoint"
msgid "Insert gluepoint to %1"
-msgstr ""
+msgstr "መጋጠሚያ ነጥብ ማስገቢያ ወደ %1"
#. 6JqED
#: include/svx/strings.hrc:210
@@ -1292,13 +1292,13 @@ msgstr "%2 ነጥቦች ከ %1"
#: include/svx/strings.hrc:237
msgctxt "STR_ViewMarkedGluePoint"
msgid "Gluepoint from %1"
-msgstr ""
+msgstr "መጋጠሚያ ነጥብ ከ %1"
#. qCFmV
#: include/svx/strings.hrc:238
msgctxt "STR_ViewMarkedGluePoints"
msgid "%2 gluepoints from %1"
-msgstr ""
+msgstr "%2 መጋጠሚያ ነጥቦች ከ %1"
#. CDqRQ
#: include/svx/strings.hrc:239
@@ -1328,13 +1328,13 @@ msgstr "ተጨማሪ ነጥቦችን ምልክት ማድረጊያ"
#: include/svx/strings.hrc:243
msgctxt "STR_ViewMarkGluePoints"
msgid "Mark gluepoints"
-msgstr ""
+msgstr "መጋጠሚያ ነጥቦች ምልክት ማድረጊያ"
#. eH9Vs
#: include/svx/strings.hrc:244
msgctxt "STR_ViewMarkMoreGluePoints"
msgid "Mark additional gluepoints"
-msgstr ""
+msgstr "ተጨማሪ መጋጠሚያ ነጥቦች ምልክት ማድረጊያ"
#. D5ZZA
#: include/svx/strings.hrc:245
@@ -3607,25 +3607,25 @@ msgstr ""
#: include/svx/strings.hrc:632
msgctxt "RID_SVXSTR_COLOR_MATERIAL_ORANGE_A"
msgid "Orange A"
-msgstr ""
+msgstr "ብርቱካን A"
#. DMVTT
#: include/svx/strings.hrc:633
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE_A"
msgid "Deep Orange A"
-msgstr ""
+msgstr "ጥልቅ ብርቱካን A"
#. LgNfg
#: include/svx/strings.hrc:634
msgctxt "RID_SVXSTR_COLOR_MATERIAL_DEEP_ORANGE"
msgid "Deep Orange"
-msgstr ""
+msgstr "ጥልቅ ብርቱካን"
#. A4JAB
#: include/svx/strings.hrc:635
msgctxt "RID_SVXSTR_COLOR_MATERIAL_RED_A"
msgid "Red A"
-msgstr ""
+msgstr "ቀይ A"
#. jsEPc
#: include/svx/strings.hrc:636
@@ -3661,13 +3661,13 @@ msgstr ""
#: include/svx/strings.hrc:641
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
-msgstr ""
+msgstr "ሰማያዊ A"
#. dDQEi
#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_BLUE_A"
msgid "Light Blue A"
-msgstr ""
+msgstr "ነጣ ያለ ሰማያዊ A"
#. BepQT
#: include/svx/strings.hrc:643
@@ -3685,13 +3685,13 @@ msgstr ""
#: include/svx/strings.hrc:645
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GREEN_A"
msgid "Green A"
-msgstr ""
+msgstr "አረንጓዴ A"
#. nZDMp
#: include/svx/strings.hrc:646
msgctxt "RID_SVXSTR_COLOR_MATERIAL_LIGHT_GREEN_A"
msgid "Light Green A"
-msgstr ""
+msgstr "ነጣ ያለ አረንጓዴ A"
#. 7RWqh
#: include/svx/strings.hrc:647
@@ -3703,13 +3703,13 @@ msgstr ""
#: include/svx/strings.hrc:648
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN_A"
msgid "Brown A"
-msgstr ""
+msgstr "ቡናማ A"
#. wcNMK
#: include/svx/strings.hrc:649
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BROWN"
msgid "Brown"
-msgstr ""
+msgstr "ቡናማ"
#. RA8KB
#: include/svx/strings.hrc:650
@@ -4762,7 +4762,7 @@ msgstr ""
#: include/svx/strings.hrc:837
msgctxt "RID_SVXSTR_BMP80"
msgid "Concrete"
-msgstr ""
+msgstr "ኮንክሪት"
#. RxiMA
#: include/svx/strings.hrc:838
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index da7bf803053..a9726a671ee 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-06-01 13:52+0200\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 13:01+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/am/>\n"
"Language: am\n"
@@ -4400,13 +4400,13 @@ msgstr ""
#: sw/inc/strings.hrc:405
msgctxt "STR_CONTENT_FOOTNOTE"
msgid "Footnote"
-msgstr ""
+msgstr "የ ግርጌ ማስታወሻ"
#. X6DYF
#: sw/inc/strings.hrc:406
msgctxt "STR_CONTENT_ENDNOTE"
msgid "Endnote"
-msgstr ""
+msgstr "የ መጨረሻ ማስታወሻ"
#. sEQCK
#: sw/inc/strings.hrc:407
@@ -7831,7 +7831,7 @@ msgstr ""
#: sw/inc/strings.hrc:1035
msgctxt "FMT_REF_PAGE"
msgid "Page number (unstyled)"
-msgstr ""
+msgstr "የ ገጽ ቁጥር (ዘዴ ያልተከተለ)"
#. MaB3q
#: sw/inc/strings.hrc:1036
@@ -7849,7 +7849,7 @@ msgstr ""
#: sw/inc/strings.hrc:1038
msgctxt "FMT_REF_PAGE_PGDSC"
msgid "Page number (styled)"
-msgstr ""
+msgstr "የ ገጽ ቁጥር (ዘዴ የሚከተል)"
#. CQitd
#: sw/inc/strings.hrc:1039
@@ -10487,19 +10487,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "የተመረጠውን የ አንቀጽ ዘዴ አንድ ደረጃ ወደ ታች ማንቀሳቀሻ በ ማውጫ ደረጃ ውስጥ"
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "ዘዴ"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "ዘዴዎች"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "የ ማውጫ ማስገቢያ መፍጠሪያ ከ ተወሰነ የ አንቀጽ ዘዴዎች ውስጥ"
@@ -13943,37 +13943,37 @@ msgid "Exchange Databases"
msgstr "ዳታቤዝ መቀያየሪያ"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "መግለጫ"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "ዳታቤዝ በስራ ላይ"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "_ዝግጁ ዳታቤዞች"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "መቃኛ..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "ፋይል መክፈቻ ንግግር መክፈቻ እርስዎ መምረጥ የሚችሉበት የ ዳታቤዝ ፋይል (*.odb). የ ተመረጠው ፋይል ወደ ዝግጁ ዳታቤዝ ዝርዝር ውስጥ ይጨመራል"
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13983,31 +13983,31 @@ msgstr ""
"የ ዳታቤዝ ፋይል ለመምረጥ የ መቃኛውን ቁልፍ ይጠቀሙ"
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "አሁን እየተጠቀሙ ያሉት ዳታቤዝ ዝርዝር "
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "የተመዘገቡት የ ዳታቤዝ ዝርዝሮች በ %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "ዳታቤዞች መቀያየሪያ"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "ወደ ሰነድ ውስጥ የተፈጸመ ዳታቤዝ:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "ለ አሁኑ ሰነድ የ ዳታ ምንጭ መቀየሪያ "
@@ -20061,109 +20061,109 @@ msgid "Use the current _document"
msgstr "የ አሁኑን _ሰነድ መጠቀሚያ"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "የ አሁኑን የ መጻፊያ ሰነድ እንደ መሰረት ለ ደብዳቤ ማዋሀጃ ሰነድ መጠቀሚያ "
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "አ_ዲስ ሰነድ መፍጠሪያ"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "አዲስ የ መጻፊያ ሰነድ መፍጠሪያ ለ ደብዳቤ ማዋሀጃ ለ መጠቀም "
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "ከ _ነበረው ሰነድ መጀመሪያ"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "ይምረጡ የ ነበረ የ መጻፊያ ሰነድ ለ ደብዳቤ ማዋሀጃ እንደ መሰረት ለ መጠቀም "
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "ከ ቴ_ምፕሌት መጀመሪያ"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "ቴምፕሌት ይምረጡ እርስዎ መፍጠር የሚፈልጉትን ለ ደብዳቤ ማዋሀጃ ሰነድ ከ "
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "በቅርብ ጊዜ ከ_ተቀመጠው ሰነድ መጀመሪያ"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "የ ነበረ የ ደብዳቤ ማዋሀጃ ሰነድ ይጠቀሙ እንደ መሰረት ለ ደብዳቤ ማዋሀጃ ሰነድ "
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "ሰነድ ይምረጡ"
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "መ_ቃኛ..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "እርስዎ መጠቀም የሚፈልጉትን የ መጻፊያ ሰነድ ፈልገው ያግኙ እና ከዛ ይጫኑ መክፈቻ "
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "መ_ቃኛ..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "የ ቲምፕሌት መምረጫ ንግግር መክፈቻ "
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "ለ ደብዳቤ ማዋሀጃ መጀመሪያ ሰነድ ይምረጡ"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "እርስዎ እንደ መሰረት መጠቀም የሚፈልጉትን የ ደብዳቤ ማዋሀጃ ሰነድ ይምረጡ "
@@ -22306,49 +22306,49 @@ msgid "Object"
msgstr "እቃ"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "አይነት"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "ምርጫዎች"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "መጠቅለያ"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ቦታ"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "ግልጽነት"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27042,7 +27042,7 @@ msgid "Update"
msgstr "ማሻሻያ"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "ለ አሁን ፋይል ስታትስቲክስ ማሳያ"
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index efa062c22de..bbe9f0f961f 100644
--- a/source/am/vcl/messages.po
+++ b/source/am/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-11-24 11:09+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/am/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563643746.000000\n"
#. k5jTM
@@ -2322,169 +2322,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "በርካታ ገጾች በ ወረቀቱ ላይ ማተሚያ"
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "ማስተካከያ"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "ምን ያህል ተንሸራታች በ ገጽ ውስጥ እንደሚታተም ይምረጡ"
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "ገጾች:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "የ ረድፎች ቁጥር ይምረጡ"
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "በ"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "የ አምዶች ቁጥር ይምረጡ"
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "መስመር:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "ለ እያንዳንዱ በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ"
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "በ ገጾች መካከል"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "እርቀት:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "በሚታተመው ገጽ እና በ ወረቀቱ ጠርዝ መካከል የሚኖረውን የ መስመር ስፋት ይምረጡ"
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "የ ወረቀቱ ድንበር"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "ደንብ:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "ከ ግራ ወደ ቀኝ: ከዚያ ወደ ታች"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "ከ ላይ ወደ ታች ከዚያ ወደ ቀኝ"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "ከ ላይ ወደ ታች: ክዚያ ወደ ግራ"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "ከ ቀኝ ወደ ግራ: ከዚያ ወደ ታች"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "ለማተም የ ገጾች ቅደም ተከተል ይምረጡ"
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "በ አያንዳንዱ ገጽ ዙሪያ ድንበር መሳያ"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "በ እያንዳንዱ ገጽ ዙሪያ ድንበር እንዲሳል ምልክት ያድርጉ"
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "መግለጫ ጽሁፍ"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "ተ_ጨማሪ"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "የ ገጽ እቅድ"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "ባጠቃላይ"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "የ አሁኑን ሰነድ ማተሚያ: ምርጫ ወይንም እርስዎ መወሰን የሚፈልጉትን ገጽ: እርስዎ እንዲሁም ማስገባት ይችላሉ የ ማተሚያ ምርጫ ለ አሁኑ ሰነድ:"
diff --git a/source/an/chart2/messages.po b/source/an/chart2/messages.po
index bf59e00d867..dfa41e81eb3 100644
--- a/source/an/chart2/messages.po
+++ b/source/an/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-01-17 16:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/an/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149291.000000\n"
#. NCRDD
@@ -3660,7 +3660,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index e4e7414eea5..79286dcc56c 100644
--- a/source/an/cui/messages.po
+++ b/source/an/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/an/>\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: 1542195185.000000\n"
#. GyY9M
@@ -17252,176 +17252,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatica"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr ""
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/an/dbaccess/messages.po b/source/an/dbaccess/messages.po
index ddf82e8d788..33ca66bbcac 100644
--- a/source/an/dbaccess/messages.po
+++ b/source/an/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-01-17 16:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/an/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524566312.000000\n"
#. BiN6g
@@ -3342,73 +3342,73 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr ""
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr ""
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Ubrir"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3416,7 +3416,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/an/extensions/messages.po b/source/an/extensions/messages.po
index 6ae1dfd1296..bcb8ff999d0 100644
--- a/source/an/extensions/messages.po
+++ b/source/an/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-03-23 11:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/an/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022400.000000\n"
#. cBx8W
@@ -294,541 +294,529 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr ""
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr ""
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr ""
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr ""
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Texto"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr ""
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr ""
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr ""
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr ""
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr ""
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr ""
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr ""
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr ""
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr ""
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr ""
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr ""
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr ""
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr ""
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr ""
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr ""
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr ""
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr ""
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr ""
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr ""
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr ""
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr ""
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Calendata actual"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr ""
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr ""
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr ""
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Garra"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr ""
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr ""
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Intervalo"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "~Horizontal"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr ""
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Por defecto"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "D'alcuerdo"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Cancelar"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Aduya"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr ""
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr ""
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr ""
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr ""
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr ""
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr ""
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr ""
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Garra"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "~Horizontal"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr ""
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr ""
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr ""
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr ""
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr ""
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr ""
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr ""
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr ""
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr ""
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr ""
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr ""
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr ""
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr ""
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr ""
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr ""
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr ""
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "~Centrau"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr ""
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr ""
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr ""
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr ""
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr ""
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr ""
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr ""
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "De ~dreita a cucha"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr ""
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr ""
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr ""
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr ""
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr ""
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Ta la pachina"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr ""
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr ""
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Ta la pachina"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr ""
diff --git a/source/an/fpicker/messages.po b/source/an/fpicker/messages.po
index 838ff9a938f..0a9b6afc656 100644
--- a/source/an/fpicker/messages.po
+++ b/source/an/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-05-18 09:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/fpickermessages/an/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496441.000000\n"
#. SJGCw
@@ -212,55 +212,55 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr ""
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr ""
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr ""
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr ""
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr ""
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr ""
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index f34f6995840..87beaf8dc3b 100644
--- a/source/an/sc/messages.po
+++ b/source/an/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-04-11 14:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/an/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. kBovX
@@ -27135,97 +27135,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Obchecto"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Obchecto"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -27600,152 +27600,152 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "~Organizar"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "Quadricula"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr ""
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Comentarios"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Veyer"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr ""
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "~Organizar"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Veyer"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Agrupar"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Tipo de letra"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Aliniación"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Veyer"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Ficar"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr ""
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "~Organizar"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
#, fuzzy
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "Quadricula"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 5a685544c54..f0c8c66feab 100644
--- a/source/an/sd/messages.po
+++ b/source/an/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-05-18 09:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/an/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. WDjkB
@@ -4208,109 +4208,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Imachen"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Obchecto"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Obchecto"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7115,109 +7115,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Imachen"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Obchecto"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Obchecto"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 076311a1f16..9f9b7254bc4 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-04-11 14:45+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-06-06 18:34+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/an/>\n"
"Language: an\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195186.000000\n"
#. v3oJv
@@ -5410,10 +5410,9 @@ msgstr "Obchectos OLE"
#. db5Tg
#: sw/inc/strings.hrc:563
-#, fuzzy
msgctxt "STR_MATH_FORMULA"
msgid "formula"
-msgstr "~Formula"
+msgstr "formula"
#. BirkF
#: sw/inc/strings.hrc:564
@@ -10618,20 +10617,20 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
#, fuzzy
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "E~stilo"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14141,38 +14140,38 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr ""
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
#, fuzzy
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "~Navegar..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14180,31 +14179,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20355,111 +20354,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "~Navegar..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "~Navegar..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22613,49 +22612,49 @@ msgid "Object"
msgstr "Obchecto"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Tipo"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opcions"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr ""
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipervinclo"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Cantos"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr ""
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27442,7 +27441,7 @@ msgid "Update"
msgstr ""
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index 3e2ac4b543d..4322398e39f 100644
--- a/source/an/vcl/messages.po
+++ b/source/an/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2022-05-18 09:18+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/an/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022411.000000\n"
#. k5jTM
@@ -2335,170 +2335,170 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personalizau 1"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr ""
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr ""
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr ""
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ar/basctl/messages.po b/source/ar/basctl/messages.po
index 44000d286db..8f328fadcaa 100644
--- a/source/ar/basctl/messages.po
+++ b/source/ar/basctl/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: 2021-12-21 12:37+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/basctlmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1563566502.000000\n"
#. fniWp
@@ -944,13 +944,13 @@ msgstr "_صدّر..."
#: basctl/uiconfig/basicide/ui/dialogpage.ui:259
msgctxt "dialogpage|extended_tip|DialogPage"
msgid "Lists the existing modules or dialogs."
-msgstr ""
+msgstr "يسرد الوحدات أو الحوارات الحالية."
#. EGyCn
#: basctl/uiconfig/basicide/ui/dockingwatch.ui:113
msgctxt "dockingwatch|RID_STR_WATCHVARIABLE"
msgid "Variable"
-msgstr ""
+msgstr "متغير"
#. QUHSf
#: basctl/uiconfig/basicide/ui/dockingwatch.ui:125
@@ -1256,7 +1256,7 @@ msgstr ""
#: basctl/uiconfig/basicide/ui/modulepage.ui:187
msgctxt "modulepage|extended_tip|delete"
msgid "Creates a new macro, or deletes the selected macro."
-msgstr ""
+msgstr "يُنشئ ماكرو جديداً، أو يحذف الماكرو المحدد."
#. 5FC8g
#: basctl/uiconfig/basicide/ui/modulepage.ui:200
@@ -1292,13 +1292,13 @@ msgstr "_صدّر..."
#: basctl/uiconfig/basicide/ui/modulepage.ui:264
msgctxt "modulepage|extended_tip|ModulePage"
msgid "Lists the existing modules or dialogs."
-msgstr ""
+msgstr "يسرد الوحدات أو الحوارات الحالية."
#. rCNTN
#: basctl/uiconfig/basicide/ui/newlibdialog.ui:32
msgctxt "newlibdialog|extended_tip|ok"
msgid "Runs or saves the current macro."
-msgstr ""
+msgstr "يشغّل أو يحفظ الماكرو الحالي."
#. Skwd5
#: basctl/uiconfig/basicide/ui/newlibdialog.ui:92
@@ -1310,7 +1310,7 @@ msgstr "الا_سم:"
#: basctl/uiconfig/basicide/ui/newlibdialog.ui:133
msgctxt "newlibdialog|extended_tip|NewLibDialog"
msgid "Enter a name for the new library or module."
-msgstr ""
+msgstr "أدخِل اسمًا للمكتبة أو الوحدة الجديدة."
#. uVgXz
#: basctl/uiconfig/basicide/ui/organizedialog.ui:8
@@ -1346,10 +1346,10 @@ msgstr ""
#: basctl/uiconfig/basicide/ui/sortmenu.ui:22
msgctxt "sortmenu|alphabetically"
msgid "_Alphabetically"
-msgstr ""
+msgstr "ألف_بائيًا"
#. PBmML
#: basctl/uiconfig/basicide/ui/sortmenu.ui:32
msgctxt "sortmenu|properorder"
msgid "_Proper order"
-msgstr ""
+msgstr "ترتيب م_ناسب"
diff --git a/source/ar/chart2/messages.po b/source/ar/chart2/messages.po
index e8277596e1e..9ac39034d94 100644
--- a/source/ar/chart2/messages.po
+++ b/source/ar/chart2/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149325.000000\n"
#. NCRDD
@@ -109,7 +109,7 @@ msgstr "_نعم"
#: chart2/inc/strings.hrc:24
msgctxt "STR_DLG_CHART_WIZARD"
msgid "Chart Wizard"
-msgstr "مرشد الرّسم البيانيّ"
+msgstr "مرشد المخطط البياني"
#. HCEG9
#: chart2/inc/strings.hrc:25
@@ -1397,7 +1397,7 @@ msgstr ""
#: chart2/uiconfig/ui/dlg_DataLabel.ui:288
msgctxt "dlg_DataLabel|label1"
msgid "Text Attributes"
-msgstr "صفات النّصّ"
+msgstr "صفات النص"
#. FDBQW
#: chart2/uiconfig/ui/dlg_DataLabel.ui:322
@@ -1535,13 +1535,13 @@ msgstr "اختيار المسافة الفاصلة بين مجموعة من ال
#: chart2/uiconfig/ui/dlg_DataLabel.ui:406
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "خيارات الصفة"
#. gE7CA
#: chart2/uiconfig/ui/dlg_DataLabel.ui:458
msgctxt "dlg_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
-msgstr "اضغط في الواجهة لتحديد اتجاه الكتابة لصيغ البيانات"
+msgstr "انقر في التزويل لتعيّن اتجاه النص للصائق البيانات."
#. MjCoG
#: chart2/uiconfig/ui/dlg_DataLabel.ui:479
@@ -3604,7 +3604,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "حدّد عدد الأسطر للعمود و نوع خط الرسم البياني."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "اختر نوع الرسم البياني القاعدي."
@@ -3715,7 +3715,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_DataLabel.ui:220
msgctxt "tp_DataLabel|label1"
msgid "Text Attributes"
-msgstr "صفات النّصّ"
+msgstr "صفات النص"
#. 2MNGz
#: chart2/uiconfig/ui/tp_DataLabel.ui:254
@@ -3853,13 +3853,13 @@ msgstr "اختيار المسافة البينية بين مجموعة من ال
#: chart2/uiconfig/ui/tp_DataLabel.ui:338
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "خيارات الصفة"
#. avLCL
#: chart2/uiconfig/ui/tp_DataLabel.ui:390
msgctxt "tp_DataLabel|extended_tip|CT_DIAL"
msgid "Click in the dial to set the text orientation for the data labels."
-msgstr "انقر في الشكل لتحديد اتجاه النص لصيغ البيانات."
+msgstr "انقر في التزويل لتعيّن اتجاه النص للصائق البيانات."
#. eKwUH
#: chart2/uiconfig/ui/tp_DataLabel.ui:411
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index c94ee932002..001fa36fd71 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/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: 2022-01-10 12:20+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563567066.000000\n"
#. GyY9M
@@ -1141,7 +1141,7 @@ msgstr "تجاوز، استمرار البحث من النهاية"
#: cui/inc/strings.hrc:199
msgctxt "RID_STR_SEARCH_COUNTING"
msgid "counting records"
-msgstr "عدّ السجلات"
+msgstr "يعدّ السجلات"
#. 7cVWa
#: cui/inc/strings.hrc:201
@@ -1724,7 +1724,7 @@ msgstr ""
#: cui/inc/strings.hrc:318
msgctxt "RID_SVXSTR_DESC_HATCH"
msgid "Please enter a name for the hatching:"
-msgstr "الرجاء إدخال اسم للتظليل هنا:"
+msgstr "الرجاء إدخال اسم للنقش هنا:"
#. rvyBi
#: cui/inc/strings.hrc:319
@@ -2178,13 +2178,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."
-msgstr ""
+msgstr "تريد أن تجمع في خلية عبر عدة أوراق؟ أشِر إلى مدى الأوراق، مثلا ‎=SUM(Sheet1.A1:Sheet3.A1)."
#. AxXYW
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create fillable form documents (even PDFs) with %PRODUCTNAME."
-msgstr ""
+msgstr "يمكنك إنشاء استمارات قابلة للملء من المستندات (حتى مستندات بي دي أف) باستخدام %PRODUCTNAME."
#. BSUoN
#: cui/inc/tipoftheday.hrc:59
@@ -2196,13 +2196,13 @@ msgstr "لا يمكنك رؤية كل النص في الخلية؟ وسّع سط
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Optimize your table layout with Table ▸ Size ▸ Distribute Rows / Columns Evenly."
-msgstr "حسّن تخطيط جدولك بـ جدول ▸ حجم ▸ وزّع الصفوف،الأعمدة بالتساوي."
+msgstr "حسّن تخطيط جدولك بـ جدول ◂ حجم ◂ وزّع الصفوف،الأعمدة بالتساوي."
#. prXEA
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Find all expressions in brackets per Edit ▸ Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"
-msgstr "جد كل التعابير بحسب تحرير ▸ جد واستبدل ▸ جد ▸ \\([^)]+\\) (أشّر “تعابير نظامية”)"
+msgstr "جد كل التعابير من تحرير ◂ جد واستبدل ◂ جد ◂ \\([^)]+\\) (أشّر “تعابير نظامية”)"
#. DUvk6
#: cui/inc/tipoftheday.hrc:62
@@ -2483,7 +2483,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a placeholder for an image in a Writer template? Use Insert ▸ Fields ▸ More fields, click Functions tab, choose PlaceHolder for Type and Image for Format."
-msgstr ""
+msgstr "تريد إدراج عنصر نائب لصورة في قالب رايتر؟ استخدم إدراج ◂ حقل ◂ المزيد من الحقول، انقر تبويب ⟪الدوال⟫ واختر ⟪عنصر نائب⟫ للنوع و ⟪صورة⟫ للنسَق."
#. sSeTz
#: cui/inc/tipoftheday.hrc:110
@@ -2539,7 +2539,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…"
-msgstr ""
+msgstr "خصّص مظهر الملاحظات الذيلية من أدوات ◂ الملاحظات الذيلية والختامية…"
#. muc5F
#: cui/inc/tipoftheday.hrc:119
@@ -2575,7 +2575,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel."
-msgstr ""
+msgstr "تحتاج إلى تحديد الموضع بدقة؟ المفاتيح %MOD2+السهم تحرّك الكائنات (الأشكال، الصور، المعادلات) بمقدار بكسل واحد."
#. FhocH
#: cui/inc/tipoftheday.hrc:125
@@ -2617,7 +2617,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slideshow from a series of pictures with the “Photo Album” feature."
-msgstr ""
+msgstr "في %PRODUCTNAME إمبريس، استخدم إدراج ◂ وسائط ◂ معرض صور لتُنشئ عَرض شرائح من سلسلة من الصور بخاصية \"معرض الصور\"."
#. BcK3A
#: cui/inc/tipoftheday.hrc:132
@@ -2659,7 +2659,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometer."
-msgstr ""
+msgstr "استخدم لصائق الأعمدة أو الصفوف في الصيغ. مثلا، إذا كان لديك عمودان، \"الوقت\" و \"كم\"، فاستخدم =الوقت\\كم لتحصل على الدقائق لكل كيلومتر."
#. E7GZz
#: cui/inc/tipoftheday.hrc:139
@@ -2762,7 +2762,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting."
-msgstr ""
+msgstr "يتيح لك رايتر أن ترقّم الملاحظات الذيلية لكل صفحة أو فصل أو مستند: أدوات ◂ الملاحظات الذيلية والختامية ◂ تبويب الملاحظات الذيلية ◂ تعداد."
#. gpVRV
#: cui/inc/tipoftheday.hrc:156
@@ -5205,7 +5205,7 @@ msgstr "نقش"
#: cui/uiconfig/ui/areatabpage.ui:148
msgctxt "areatabpage|extended_tip|btnhatch"
msgid "Fills the object with a hatching pattern selected on this page."
-msgstr ""
+msgstr "يملأ الكائن بنمط نقش محدد في هذه الصفحة."
#. TFDzi
#: cui/uiconfig/ui/areatabpage.ui:202
@@ -6051,19 +6051,19 @@ msgstr "معاينة"
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
-msgstr "الموقع والحجم"
+msgstr "الموضع و الحجم"
#. te8F8
#: cui/uiconfig/ui/calloutdialog.ui:136
msgctxt "calloutdialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
-msgstr "الموقع والحجم"
+msgstr "الموضع و الحجم"
#. VWZTj
#: cui/uiconfig/ui/calloutdialog.ui:183
msgctxt "calloutdialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
-msgstr "الموقع والحجم"
+msgstr "الموضع و الحجم"
#. sCFW5
#: cui/uiconfig/ui/calloutdialog.ui:231
@@ -6075,7 +6075,7 @@ msgstr "تعليق تفسيري"
#: cui/uiconfig/ui/calloutpage.ui:45
msgctxt "calloutpage|extended_tip|valueset"
msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr ""
+msgstr "انقر طراز التعليق التفسيري الذي تريد تطبيقه على التعليق التفسيري المحدد."
#. cAZqx
#: cui/uiconfig/ui/calloutpage.ui:76
@@ -6117,13 +6117,13 @@ msgstr "رأسي"
#: cui/uiconfig/ui/calloutpage.ui:99
msgctxt "calloutpage|extended_tip|extension"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "حدد من أين تريد تمديد سطر التعليق التفسيري، نسبة إلى صندوق التعليق التفسيري."
#. CGjKD
#: cui/uiconfig/ui/calloutpage.ui:131
msgctxt "calloutpage|extended_tip|length"
msgid "Enter the length of the callout line segment that extends from the callout box to the inflection point of the line."
-msgstr ""
+msgstr "أدخِل طول قطعة سطر التعليق التفسيري التي تمتد من صندوق التعليق إلى نقطة انعكاس السطر."
#. SFvEw
#: cui/uiconfig/ui/calloutpage.ui:144
@@ -6141,7 +6141,7 @@ msgstr "الأم_ثل"
#: cui/uiconfig/ui/calloutpage.ui:170
msgctxt "calloutpage|extended_tip|optimal"
msgid "Click here to display a single-angled line in an optimal way."
-msgstr ""
+msgstr "انقر هنا لتُعرِض سطراً مفرد الزاوية بطريقة مثلى."
#. dD3os
#: cui/uiconfig/ui/calloutpage.ui:190
@@ -6195,13 +6195,13 @@ msgstr "يمين"
#: cui/uiconfig/ui/calloutpage.ui:228
msgctxt "calloutpage|extended_tip|position"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "حدد من أين تريد تمديد سطر التعليق التفسيري، نسبة إلى صندوق التعليق التفسيري."
#. rj7LU
#: cui/uiconfig/ui/calloutpage.ui:248
msgctxt "calloutpage|extended_tip|by"
msgid "Select where you want to extend the callout line from, in relation to the callout box."
-msgstr ""
+msgstr "حدد من أين تريد تمديد سطر التعليق التفسيري، نسبة إلى صندوق التعليق التفسيري."
#. jG4AE
#: cui/uiconfig/ui/calloutpage.ui:273
@@ -6213,7 +6213,7 @@ msgstr "ال_تباعد:"
#: cui/uiconfig/ui/calloutpage.ui:294
msgctxt "calloutpage|extended_tip|spacing"
msgid "Enter the amount of space that you want to leave between the end of the callout line, and the callout box."
-msgstr ""
+msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين نهاية سطر التعليق التفسيري وصندوق التعليق."
#. wvzCN
#: cui/uiconfig/ui/calloutpage.ui:314
@@ -6237,7 +6237,7 @@ msgstr "خط رابط ذو زاوية"
#: cui/uiconfig/ui/calloutpage.ui:333
msgctxt "calloutpage|extended_tip|CalloutPage"
msgid "Click the Callout style that you want to apply to the selected callout."
-msgstr ""
+msgstr "انقر طراز التعليق التفسيري الذي تريد تطبيقه على التعليق التفسيري المحدد."
#. vQp3A
#: cui/uiconfig/ui/cellalignment.ui:49
@@ -6519,7 +6519,7 @@ msgstr ""
#: cui/uiconfig/ui/certdialog.ui:132
msgctxt "certdialog|label2"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:"
-msgstr "اختر أو أضف دليل شهادات خدمات أمن الشبكة الصحيح لاستخدامه للتواقيع الرقمية:"
+msgstr "حدد أو أضف دليل شهادات خدمات أمن الشبكة الصحيح لاستخدامه للتواقيع الرقمية:"
#. BbEyB
#: cui/uiconfig/ui/certdialog.ui:156
@@ -6555,7 +6555,7 @@ msgstr "مسار الشهادة"
#: cui/uiconfig/ui/certdialog.ui:275
msgctxt "certdialog|extended_tip|CertDialog"
msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures."
-msgstr ""
+msgstr "حدد أو أضف دليل شهادات خدمات أمن الشبكة الصحيح لاستخدامه للتواقيع الرقمية."
#. xXVpD
#: cui/uiconfig/ui/charnamepage.ui:234
@@ -7941,7 +7941,7 @@ msgstr ""
#: cui/uiconfig/ui/cuiimapdlg.ui:293
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
-msgstr "ال_وصف:"
+msgstr "الو_صف:"
#. mF6Pw
#: cui/uiconfig/ui/cuiimapdlg.ui:322
@@ -9790,13 +9790,13 @@ msgstr "_من اللون:"
#: cui/uiconfig/ui/gradientpage.ui:604
msgctxt "gradientpage|a11y_center_x"
msgid "Center X"
-msgstr "الوسط السيني"
+msgstr "مركز س"
#. qkLcz
#: cui/uiconfig/ui/gradientpage.ui:618
msgctxt "gradientpage|a11y_center_y"
msgid "Center Y"
-msgstr "الوسط الصادي"
+msgstr "مركز ص"
#. VX2bJ
#: cui/uiconfig/ui/gradientpage.ui:632
@@ -10312,7 +10312,7 @@ msgstr "خيارات"
#: cui/uiconfig/ui/hatchpage.ui:85
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 ""
+msgstr "يضيف نمط نقش مخصص إلى القائمة الحالية. حدد خصائص نمط النقش الخاص بك ثم اضغط هذا الزر."
#. TGiD7
#: cui/uiconfig/ui/hatchpage.ui:97
@@ -10324,7 +10324,7 @@ msgstr "_عدّل"
#: cui/uiconfig/ui/hatchpage.ui:104
msgctxt "hatchpage|extended_tip|modify"
msgid "Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name."
-msgstr ""
+msgstr "يطبّق خصائص النقش الحالي على نمط النقش المحدد. إذا أردت، يمكنك حفظ النمط تحت اسم مختلف."
#. U8bWc
#: cui/uiconfig/ui/hatchpage.ui:127
@@ -10396,7 +10396,7 @@ msgstr "لون الخ_ط:"
#: cui/uiconfig/ui/hatchpage.ui:316
msgctxt "hatchpage|extended_tip|linecolorlb"
msgid "Select the color of the hatch lines."
-msgstr ""
+msgstr "حدد لون خطوط النقش."
#. 3hgCJ
#: cui/uiconfig/ui/hatchpage.ui:328
@@ -10426,7 +10426,7 @@ msgstr "معاينة"
#: cui/uiconfig/ui/hatchpage.ui:454
msgctxt "hatchpage|extended_tip|HatchPage"
msgid "Set the properties of a hatching pattern, or save a new hatching pattern."
-msgstr ""
+msgstr "عيّن خصائص نمط النقش، أو احفظ نمط نقش جديد."
#. QqjhD
#: cui/uiconfig/ui/hyperlinkdialog.ui:10
@@ -10666,7 +10666,7 @@ msgstr "_وب"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:47
msgctxt "hyperlinkinternetpage|extended_tip|linktyp_internet"
msgid "Creates an \"http://\" hyperlink."
-msgstr ""
+msgstr "يُنشئ رابط \"http://‎\"."
#. HybDr
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:58
@@ -10750,7 +10750,7 @@ msgstr "_بروتوكول:"
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:261
msgctxt "hyperlinkinternetpage|label2"
msgid "Hyperlink Type"
-msgstr "نوع الرابط"
+msgstr "نوع الارتباط التشعبي"
#. x4GDd
#: cui/uiconfig/ui/hyperlinkinternetpage.ui:297
@@ -11014,7 +11014,7 @@ msgstr "نوع ال_ملف:"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:163
msgctxt "hyperlinknewdocpage|extended_tip|path"
msgid "Enter a URL for the file that you want to open when you click the hyperlink."
-msgstr ""
+msgstr "أدخِل رابطًا للملف الذي تريد أن يفتح عندما تنقر الارتباط التشعبي."
#. Ee4g2
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:203
@@ -11038,7 +11038,7 @@ msgstr "الإ_طار:"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:280
msgctxt "hyperlinknewdocpage|indication_label"
msgid "Te_xt:"
-msgstr "الن_ص:"
+msgstr "ال_نص:"
#. SVEq9
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:295
@@ -11098,7 +11098,7 @@ msgstr "إعدادات أخرى"
#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
-msgstr ""
+msgstr "استخدم تبويب ⟪مستند جديد⟫ من حوار الارتباط التشعبي لتُعِدّ ارتباطً تشعبيًا لمستند جديد وتُنشئ المستند الجديد تزامنيًا."
#. XkDqc
#: cui/uiconfig/ui/hyphenate.ui:18
@@ -11122,7 +11122,7 @@ msgstr "تطبيق الواصلة"
#: cui/uiconfig/ui/hyphenate.ui:109
msgctxt "hyphenate|extended_tip|ok"
msgid "Inserts the hyphen at the indicated position."
-msgstr ""
+msgstr "يُدرِج الواصلة عند الموضع المحدد."
#. gEGtP
#: cui/uiconfig/ui/hyphenate.ui:121
@@ -11134,13 +11134,13 @@ msgstr "تخطي"
#: cui/uiconfig/ui/hyphenate.ui:127
msgctxt "hyphenate|extended_tip|continue"
msgid "Ignores the hyphenation suggestion and finds the next word to hyphenate."
-msgstr ""
+msgstr "يهمل اقتراح الواصلة ويجد الكلمة التالية لوصلها."
#. zXLRC
#: cui/uiconfig/ui/hyphenate.ui:146
msgctxt "hyphenate|extended_tip|delete"
msgid "Removes the current hyphenation point from the displayed word."
-msgstr ""
+msgstr "يُزيل نقطة الوصل الحالية من الكلمة المحددة."
#. dsjvf
#: cui/uiconfig/ui/hyphenate.ui:166
@@ -11158,19 +11158,19 @@ msgstr ""
#: cui/uiconfig/ui/hyphenate.ui:216
msgctxt "hyphenate|extended_tip|left"
msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed."
-msgstr ""
+msgstr "أعِدّ موضع الواصلة. هذا الخيار متاح فقط إذا عُرِض أكثر من اقتراح وصل واحد."
#. 5gKXt
#: cui/uiconfig/ui/hyphenate.ui:235
msgctxt "hyphenate|extended_tip|right"
msgid "Set the position of the hyphen. This option is only available if more than one hyphenation suggestion is displayed."
-msgstr ""
+msgstr "أعِدّ موضع الواصلة. هذا الخيار متاح فقط إذا عُرِض أكثر من اقتراح وصل واحد."
#. 8QHd8
#: cui/uiconfig/ui/hyphenate.ui:273
msgctxt "hyphenate|extended_tip|HyphenateDialog"
msgid "Inserts hyphens in words that are too long to fit at the end of a line."
-msgstr ""
+msgstr "يُدرِج وصلات في الكلمات الطويلة جدا بحيث لا تُستقر كاملةَ في نهاية السطر."
#. HGCp4
#: cui/uiconfig/ui/iconchangedialog.ui:62
@@ -11564,7 +11564,7 @@ msgstr "المبدئيّ"
#: cui/uiconfig/ui/insertfloatingframe.ui:456
msgctxt "insertfloatingframe|extended_tip|defaultwidth"
msgid "Applies the default horizontal spacing."
-msgstr ""
+msgstr "يطبّق التباعد الأفقي المبدئي."
#. dQ8BY
#: cui/uiconfig/ui/insertfloatingframe.ui:467
@@ -11576,7 +11576,7 @@ msgstr "المبدئيّ"
#: cui/uiconfig/ui/insertfloatingframe.ui:475
msgctxt "insertfloatingframe|extended_tip|defaultheight"
msgid "Applies the default vertical spacing."
-msgstr ""
+msgstr "يطبّق التباعد الرأسي المبدئي."
#. YqkF7
#: cui/uiconfig/ui/insertfloatingframe.ui:490
@@ -12304,7 +12304,7 @@ msgstr "اسم الماكرو"
#: cui/uiconfig/ui/macroselectordialog.ui:281
msgctxt "macroselectordialog|label1"
msgid "_Description"
-msgstr ""
+msgstr "ال_وصف"
#. YTX8B
#: cui/uiconfig/ui/menuassignpage.ui:46
@@ -13372,7 +13372,7 @@ msgstr "يتوقّف مفتاح التبويب عند:"
#: cui/uiconfig/ui/numberingpositionpage.ui:239
msgctxt "numberingpositionpage|extended_tip|atmf"
msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position."
-msgstr ""
+msgstr "إذا حددت توقف مفتاح التبويب ليتابع التعداد، فيمكنك إدخال قيمة غير سالبة كموضع لتوقف مفتاح التبويب."
#. dA4DF
#: cui/uiconfig/ui/numberingpositionpage.ui:258
@@ -13438,7 +13438,7 @@ msgstr "عرض الترقيم:"
#: cui/uiconfig/ui/numberingpositionpage.ui:365
msgctxt "numberingpositionpage|extended_tip|numberingwidthmf"
msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area."
-msgstr ""
+msgstr "أدخِل عُرض منطقة التعداد. رمز التعداد يمكن أن يكون يساراً أو وسطًا أو يمينًا في هذه المساحة."
#. zuD8v
#: cui/uiconfig/ui/numberingpositionpage.ui:384
@@ -13484,13 +13484,13 @@ msgstr "يمين"
#: cui/uiconfig/ui/numberingpositionpage.ui:434
msgctxt "numberingpositionpage|extended_tip|numalignlb"
msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr ""
+msgstr "عيّن محاذاة رموز التعداد. حدد \"يسار\" لتحاذي رمز التعداد ليبدأ مباشرة عند موضع \"محاذى عند\". حدد \"يمين\" لتحاذي رمز التعداد لينتهي مباشرة قبل موضع \"محاذى عند\". حدد \"موسَّط\" لتوسّط الرمز حول موضع \"محاذى عند\"."
#. mLBFy
#: cui/uiconfig/ui/numberingpositionpage.ui:449
msgctxt "numberingpositionpage|extended_tip|num2alignlb"
msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr ""
+msgstr "عيّن محاذاة رموز التعداد. حدد \"يسار\" لتحاذي رمز التعداد ليبدأ مباشرة عند موضع \"محاذى عند\". حدد \"يمين\" لتحاذي رمز التعداد لينتهي مباشرة قبل موضع \"محاذى عند\". حدد \"موسَّط\" لتوسّط الرمز حول موضع \"محاذى عند\"."
#. 6DLtp
#: cui/uiconfig/ui/numberingpositionpage.ui:464
@@ -13508,7 +13508,7 @@ msgstr "المبدئيّ"
#: cui/uiconfig/ui/numberingpositionpage.ui:502
msgctxt "numberingpositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
-msgstr ""
+msgstr "يصفّر قيم الإزاحة والتباعد إلى القيم المبدئية."
#. eLFGG
#: cui/uiconfig/ui/numberingpositionpage.ui:548
@@ -14958,7 +14958,7 @@ msgstr "ا_نسخ الصور المحلية إلى الشابكة"
#: cui/uiconfig/ui/opthtmlpage.ui:492
msgctxt "extended_tip|savegrflocal"
msgid "Mark this check box to automatically upload the embedded pictures to the Internet server when uploading using FTP. Use the Save As dialog to save the document and enter a complete FTP URL as the file name in the Internet."
-msgstr ""
+msgstr "أشّر مربع التأشير هذا لتحمّل تلقائيًا الصور المدمَجة إلى خادوم الانترنت عند التحميل باستخدام FTP. استخدم حوار ⟪حفظ بإسم⟫ لتحفظ المستند وتُدخِل رابط FTP كاملاً كإسم ملف في الانترنت."
#. Xc4iM
#: cui/uiconfig/ui/opthtmlpage.ui:503
@@ -15960,7 +15960,7 @@ msgstr "يدوي"
#: cui/uiconfig/ui/optproxypage.ui:186
msgctxt "extended_tip|proxymode"
msgid "Specifies the type of proxy definition."
-msgstr ""
+msgstr "يحدد نوع تعريف الوسيط."
#. pkdvs
#: cui/uiconfig/ui/optproxypage.ui:199
@@ -16002,7 +16002,7 @@ msgstr "المن_فذ:"
#: cui/uiconfig/ui/optproxypage.ui:281
msgctxt "optproxypage|ftpportft"
msgid "P_ort:"
-msgstr "المنف_ذ:"
+msgstr "المن_فذ:"
#. RW6E4
#: cui/uiconfig/ui/optproxypage.ui:294
@@ -16020,7 +16020,7 @@ msgstr "إعدادات"
#: cui/uiconfig/ui/optproxypage.ui:323
msgctxt "extended_tip|OptProxyPage"
msgid "Specifies the type of proxy definition."
-msgstr ""
+msgstr "يحدد نوع تعريف الوسيط."
#. Cdbvg
#: cui/uiconfig/ui/optsavepage.ui:34
@@ -16056,7 +16056,7 @@ msgstr "تحميل"
#: cui/uiconfig/ui/optsavepage.ui:111
msgctxt "optsavepage|autosave"
msgid "Save _AutoRecovery information every:"
-msgstr "احفظ معلومات الا_ستعادة الآلية كل:"
+msgstr "احفظ معلومات الا_ستعادة التلقائة كل:"
#. 6L2Yh
#: cui/uiconfig/ui/optsavepage.ui:119
@@ -16068,13 +16068,13 @@ msgstr ""
#: cui/uiconfig/ui/optsavepage.ui:137
msgctxt "autosave_spin"
msgid "Specifies the time interval in minutes for the automatic recovery option."
-msgstr ""
+msgstr "يحدد الفترات الزمنية بالدقائق لخيار الاستعادة التلقائية."
#. BN5Js
#: cui/uiconfig/ui/optsavepage.ui:150
msgctxt "optsavepage|autosave_mins"
msgid "minutes"
-msgstr "من الدقائق"
+msgstr "دقائق"
#. UKeCt
#: cui/uiconfig/ui/optsavepage.ui:165
@@ -16098,7 +16098,7 @@ msgstr "حفظ عناوين URL المتعلقة بنظام الملفات"
#: cui/uiconfig/ui/optsavepage.ui:192
msgctxt "relative_fsys"
msgid "Select this box for relative saving of URLs in the file system."
-msgstr ""
+msgstr "حدد هذا المربع للحفظ النسبي للروابط في نظام الملفات."
#. 8xmX3
#: cui/uiconfig/ui/optsavepage.ui:203
@@ -16110,7 +16110,7 @@ msgstr "_تحرير خصائص المستند قبل الحفظ"
#: cui/uiconfig/ui/optsavepage.ui:211
msgctxt "docinfo"
msgid "Specifies that the Properties dialog will appear every time you select the Save As command."
-msgstr ""
+msgstr "يحدد أنّ حوار الخصائص سيظهر في كل مرة تختار فيها أمر ⟪حفظ بإسم⟫."
#. ctAxA
#: cui/uiconfig/ui/optsavepage.ui:222
@@ -17133,176 +17133,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "تلقائي"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "جالاكسي"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "تباين عالٍ"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "أكسجين"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "كلاسيكي"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "صفر"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "نسيم"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "يحدد طراز الأيقونات في أشرطة الأدوات والحوارات."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "نم_ط الأيقونات:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "أضِف المزيد من سمات الأيقونات عبر ملحقة"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "طراز الأيقونات"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "يتطلب إعادة التشغيل"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "استخدم تسريع ال_عتاد"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "يدخل مباشرة إلى خصائص العتاد لمحوّل عَرض الرسوميات لتحسين عَرض الشاشة."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "استخدم ال_تنعيم"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "استخدم سكيا Skia لكل التصيير"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "افرض تصيير سكيا Skia البرمجي"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "يتطلب إعادة التشغيل. تنشيط هذا سيمنع استخدام مشغلات الرسوميات."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "سكيا Skia منشَّطة حاليًا."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "سكيا Skia معطلة حاليًا."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "مُخرجات الرسوميات"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "اعرض م_عاينة الخطوط"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "إزالة ت_عرج خط الشاشة"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_من:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "أدخِل أصغر حجم خط تطبَّق عليه إزالة التعرج."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "قوائم الخطوط"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "شغّل فحوص الرسوميات"
@@ -17781,7 +17757,7 @@ msgstr "١٫١٥ سطر"
#: cui/uiconfig/ui/paraindentspacing.ui:380
msgctxt "paraindentspacing|liststoreLB_LINEDIST"
msgid "1.5 Lines"
-msgstr "سطر و نصف"
+msgstr "1.5 سطر"
#. cD4RR
#: cui/uiconfig/ui/paraindentspacing.ui:381
@@ -18376,19 +18352,19 @@ msgstr "معاينة"
#: cui/uiconfig/ui/positionsizedialog.ui:8
msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
-msgstr "الموقع والحجم"
+msgstr "الموضع و الحجم"
#. K8BFJ
#: cui/uiconfig/ui/positionsizedialog.ui:139
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
-msgstr "الموقع والحجم"
+msgstr "الموضع و الحجم"
#. WZtUp
#: cui/uiconfig/ui/positionsizedialog.ui:186
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
-msgstr "الموقع والحجم"
+msgstr "الموضع و الحجم"
#. p8FjL
#: cui/uiconfig/ui/positionsizedialog.ui:234
@@ -18789,7 +18765,7 @@ msgstr "هل تريد حذف اللون؟"
#: cui/uiconfig/ui/querydeletedictionarydialog.ui:7
msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog"
msgid "Delete Dictionary?"
-msgstr "أأحذف الدليل؟"
+msgstr "أأحذف القاموس؟"
#. eTBd6
#: cui/uiconfig/ui/querydeletedictionarydialog.ui:14
@@ -18819,7 +18795,7 @@ msgstr "هل تريد حذف التدرّج؟"
#: cui/uiconfig/ui/querydeletehatchdialog.ui:7
msgctxt "querydeletehatchdialog|AskDelHatchDialog"
msgid "Delete Hatching?"
-msgstr ""
+msgstr "أأحذف النقش؟"
#. xsuqB
#: cui/uiconfig/ui/querydeletehatchdialog.ui:14
@@ -18849,7 +18825,7 @@ msgstr "لا يمكن التراجع عن هذا الإجراء."
#: cui/uiconfig/ui/querydeletelinestyledialog.ui:7
msgctxt "querydeletelinestyledialog|AskDelLineStyleDialog"
msgid "Delete Line Style?"
-msgstr "أأحذف نمط الخط؟"
+msgstr "أأحذف طراز الخط؟"
#. qLsV8
#: cui/uiconfig/ui/querydeletelinestyledialog.ui:14
@@ -19221,7 +19197,7 @@ msgstr "عند الت_وقيع"
#: cui/uiconfig/ui/securityoptionsdialog.ui:133
msgctxt "extended_tip|whensigning"
msgid "Select to see a warning dialog when you try to sign a document that contains recorded changes, versions, fields, references to other sources (for example linked sections or linked pictures), or comments."
-msgstr ""
+msgstr "حدد لترى حوار تحذير عندما تحاول توقيع مستند يحوي تغييرات مسجلة أو إصدارات أو حقول أو إشارات إلى مصادر أخرى (مثلا مقاطع مربوطة أو صور مربوطة) أو تعليقات."
#. D6Lsv
#: cui/uiconfig/ui/securityoptionsdialog.ui:144
@@ -20397,7 +20373,7 @@ msgstr "إلى ال_صفحة"
#: cui/uiconfig/ui/swpossizepage.ui:240
msgctxt "swpossizepage|extended_tip|topage"
msgid "Anchors the selection to the current page."
-msgstr ""
+msgstr "يربط التحديد إلى الصفحة الحالية."
#. 7GtoG
#: cui/uiconfig/ui/swpossizepage.ui:251
@@ -20409,7 +20385,7 @@ msgstr "إلى ال_فقرة"
#: cui/uiconfig/ui/swpossizepage.ui:260
msgctxt "swpossizepage|extended_tip|topara"
msgid "Anchors the selection to the current paragraph."
-msgstr ""
+msgstr "يربط التحديد إلى الفقرة الحالية."
#. Uj9Pu
#: cui/uiconfig/ui/swpossizepage.ui:271
@@ -20421,7 +20397,7 @@ msgstr "إلى الم_حرف"
#: cui/uiconfig/ui/swpossizepage.ui:280
msgctxt "swpossizepage|extended_tip|tochar"
msgid "Anchors the selection to a character."
-msgstr ""
+msgstr "يربط التحديد إلى المحرف الحالي."
#. GNmu5
#: cui/uiconfig/ui/swpossizepage.ui:291
@@ -20433,7 +20409,7 @@ msgstr "كح_رف"
#: cui/uiconfig/ui/swpossizepage.ui:300
msgctxt "swpossizepage|extended_tip|aschar"
msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
-msgstr ""
+msgstr "يربط التحديد كمحرف. يُغيَّر ارتفاع السطر الحالي ليوافق ارتفاع التحديد."
#. e4F9d
#: cui/uiconfig/ui/swpossizepage.ui:311
@@ -20709,13 +20685,13 @@ msgstr ""
#: cui/uiconfig/ui/textanimtabpage.ui:286
msgctxt "textanimtabpage|TSB_STOP_INSIDE"
msgid "Text _visible when exiting"
-msgstr "إ_ظهار النص عند الانتهاء"
+msgstr "إ_ظهار النص عند الخروج"
#. 6a3Ed
#: cui/uiconfig/ui/textanimtabpage.ui:295
msgctxt "textanimtabpage|extended_tip|TSB_STOP_INSIDE"
msgid "Text remains visible after the effect is applied."
-msgstr ""
+msgstr "يبقى النص مرئيًا بعد تطبيق التأثير."
#. mH7ec
#: cui/uiconfig/ui/textanimtabpage.ui:309
@@ -21267,7 +21243,7 @@ msgstr "خيارات"
#: cui/uiconfig/ui/textflowpage.ui:620
msgctxt "textflowpage|extended_tip|TextFlowPage"
msgid "Specify hyphenation and pagination options."
-msgstr ""
+msgstr "حدّد خيارات الواصلة وترقيم الصفحات"
#. 5BskL
#: cui/uiconfig/ui/thesaurus.ui:23
@@ -21591,13 +21567,13 @@ msgstr "ال_نوع:"
#: cui/uiconfig/ui/transparencytabpage.ui:325
msgctxt "transparencytabpage|FT_TRGR_CENTER_X"
msgid "Center _X:"
-msgstr "وسط _س:"
+msgstr "مركز _س:"
#. Nsx4p
#: cui/uiconfig/ui/transparencytabpage.ui:340
msgctxt "transparencytabpage|FT_TRGR_CENTER_Y"
msgid "Center _Y:"
-msgstr "وسط _ص:"
+msgstr "مركز _ص:"
#. RWNkA
#: cui/uiconfig/ui/transparencytabpage.ui:355
diff --git a/source/ar/dbaccess/messages.po b/source/ar/dbaccess/messages.po
index e3cbefea62f..bf68ba45bbe 100644
--- a/source/ar/dbaccess/messages.po
+++ b/source/ar/dbaccess/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-04-27 10:02+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524566341.000000\n"
#. BiN6g
@@ -2753,7 +2753,7 @@ msgstr "اختر مصدر بيانات:"
#: dbaccess/uiconfig/ui/collectionviewdialog.ui:28
msgctxt "collectionviewdialog|CollectionView"
msgid "Save"
-msgstr "حفظ"
+msgstr "احفظ"
#. dBcxN
#: dbaccess/uiconfig/ui/collectionviewdialog.ui:49
@@ -3202,7 +3202,7 @@ msgstr "اسم الحقل"
#: dbaccess/uiconfig/ui/fielddescpage.ui:88
msgctxt "fielddescpage|STR_AUTOINCREMENT_VALUE"
msgid "A_uto-increment statement"
-msgstr ""
+msgstr "عبارة التزايد التلقا_ئي"
#. QXHDX
#: dbaccess/uiconfig/ui/fielddescpage.ui:115
@@ -3220,32 +3220,32 @@ msgstr "مثال على النسَق"
#: dbaccess/uiconfig/ui/fielddescpage.ui:172
msgctxt "fielddescpage|STR_BUTTON_FORMAT"
msgid "_Format Field"
-msgstr ""
+msgstr "نسّق الحقل"
#. Ff2B8
#: dbaccess/uiconfig/ui/fielddescpage.ui:194
#: dbaccess/uiconfig/ui/fielddescpage.ui:221
msgctxt "fielddescpage|STR_LENGTH"
msgid "_Length"
-msgstr ""
+msgstr "ال_طول"
#. 5DRu2
#: dbaccess/uiconfig/ui/fielddescpage.ui:248
msgctxt "fielddescpage|STR_LENGTH"
msgid "Decimal _places"
-msgstr ""
+msgstr "المنا_زل العُشرية"
#. oXywj
#: dbaccess/uiconfig/ui/fielddescpage.ui:275
msgctxt "fielddescpage|STR_FIELD_REQUIRED"
msgid "_Entry required"
-msgstr ""
+msgstr "المُد_خَل مطلوب"
#. SWgjj
#: dbaccess/uiconfig/ui/fielddescpage.ui:300
msgctxt "fielddescpage|STR_FIELD_AUTOINCREMENT"
msgid "_AutoValue"
-msgstr ""
+msgstr "قيمة_تلقائية"
#. xNbpF
#: dbaccess/uiconfig/ui/fielddescpage.ui:325
@@ -3263,13 +3263,13 @@ msgstr "ال_نوع"
#: dbaccess/uiconfig/ui/fielddescpage.ui:375
msgctxt "fielddescpage|STR_TAB_FIELD_DATATYPE"
msgid "Field _type"
-msgstr ""
+msgstr "ن_وع الحقل"
#. dUE3D
#: dbaccess/uiconfig/ui/fielddescpanel.ui:46
msgctxt "designhelpbox|textview-tooltip"
msgid "Field Properties Help"
-msgstr ""
+msgstr "مساعدة خصائص الحقل"
#. KUVUc
#: dbaccess/uiconfig/ui/fielddialog.ui:9
@@ -3392,73 +3392,73 @@ msgid "Create a n_ew database"
msgstr "أنشئ قاعدة بيانات _جديدة"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "قاعدة البيانات الم_ضمّنة:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "افتح _ملفّ قاعدة بيانات موجود"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "المستخدمة _حديثًا:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "افتح"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "الاتصال بقاعدة بيانا_ت موجودة"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3466,7 +3466,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
@@ -4767,13 +4767,13 @@ msgstr ""
#: dbaccess/uiconfig/ui/specialsettingspage.ui:195
msgctxt "specialsettingspage|createindex"
msgid "Create index with ASC or DESC statement"
-msgstr "أنشئ فهرسًا مع إفادة ASC أو DESC"
+msgstr "أنشئ فهرسًا مع إفادة تصاعدي ASC أو تنازلي DESC"
#. 2hRPG
#: dbaccess/uiconfig/ui/specialsettingspage.ui:203
msgctxt "specialsettingspage|extended_tip|createindex"
msgid "Creates an index with ASC or DESC statements."
-msgstr ""
+msgstr "ينشئ فهرسًا مع إفادات تصاعدي ASC أو تنازلي DESC."
#. Xabxp
#: dbaccess/uiconfig/ui/specialsettingspage.ui:214
diff --git a/source/ar/extensions/messages.po b/source/ar/extensions/messages.po
index 543fb95fd80..325bb24111f 100644
--- a/source/ar/extensions/messages.po
+++ b/source/ar/extensions/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: 2021-11-19 15:43+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022440.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "تحديث النموذج"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "إحضار"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "إرسال"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "رابط"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "متعدد الأجزاء"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "النص"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "قياسي (قصير)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "قياسي (قصير YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "قياسي (قصير YYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "قياسي (طويل)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 م"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 م"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "غير محدد"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "محدد"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "غير معرف"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "كل السجلات"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "السجل النشط"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "الصفحة الحالية"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "لا"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "نعم"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "النموذج الأم"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "فا_رغ"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "الأ_م"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "ال_حالي"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_فوق"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "بِلا"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "مفرد"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "متعدد"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "المجال"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "أفقي"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "رأسي"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "المبدئيّ"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "حسنًا"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "ألغِ"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "مساعدة"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "المُدخل المحدد"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "موضع المُدخل المحدد"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "أحادي السطر"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "متعدد الأسطر"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "متعدد الأسطر مع تنسيق"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "‏‪LF‬ (يونكس)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "‏‪CR+LF‬ (ويندوز)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "بِلا"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "أفقي"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "رأسي"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "كلاهما"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "ثلاثي الأبعاد"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "مسطح"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "أعلى اليسار"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "موسّط يساراً"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "أسفل اليسار"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "أعلى اليمين"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "موسّط يميناً"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "أسفل اليمين"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "فوق يسار"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "موسّط للأعلى"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "فوق يمين"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "تحت يسار"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "موسّط للأسفل"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "تحت يمين"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "موسَّط"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "أبقِ"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "استبدل"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "اطوِ"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "لا"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "أبقِ التناسب"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "لائِم الحجم"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "من اليسار إلى اليمين"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "من اليمين إلى اليسار"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "استخدم إعدادات الكائن الرئيسي"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "أبدًا"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "عند التركيز"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "دائمًا"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "إلى الفقرة"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "كحرف"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "إلى الصفحة"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "إلى الإطار"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "إلى حرف"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "إلى الصفحة"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "إلى خلية"
@@ -1141,7 +1129,7 @@ msgstr "دورة"
#: extensions/inc/strings.hrc:79
msgctxt "RID_STR_TABSTOP"
msgid "Tabstop"
-msgstr "إيقاف جدولة"
+msgstr "توقفات‌مفتاح‌التبويب"
#. 4kjXk
#: extensions/inc/strings.hrc:80
@@ -2089,7 +2077,7 @@ msgstr "اتجاه الكتابة"
#: extensions/inc/strings.hrc:237
msgctxt "RID_STR_ANCHOR_TYPE"
msgid "Anchor"
-msgstr "اربط"
+msgstr "المربط"
#. 6ZJaR
#. To translators: That's the 'Regular' as used for a font style (as opposed to 'italic' and 'bold'), so please use a consistent translation.
@@ -2219,7 +2207,7 @@ msgstr "البيانات"
#: extensions/inc/strings.hrc:262
msgctxt "RID_EMBED_IMAGE_PLACEHOLDER"
msgid "<Embedded-Image>"
-msgstr "<صورة مضمنة>"
+msgstr "<صورة-مضمَّنة>"
#. jTsR3
#: extensions/inc/strings.hrc:263
@@ -3256,10 +3244,9 @@ msgstr "يفتح حواراً يتيح لك تعيين إسناد الحقل."
#. j8AYS
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:17
-#, fuzzy
msgctxt "fieldlinkpage|desc"
msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
-msgstr "يمكنك هنا تحديد حقول ذات محتويات متطابقة لكي تظهر القيمة الموجودة في حقل العرض."
+msgstr "ها هنا تحدد حقولاً ذات محتويات متطابقة من أجل أن تظهر القيمة الموجودة في الحقل المعروض."
#. cWGwU
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:55
@@ -4447,13 +4434,13 @@ msgstr "يمكن استخدام النماذج الفرعية لعرض بيان
#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
-msgstr "العنوان"
+msgstr "اللصيقة"
#. PuKkA
#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
-msgstr "العنوان"
+msgstr "اللصيقة"
#. JFcBM
#: extensions/uiconfig/spropctrlr/ui/hyperlinkfield.ui:29
diff --git a/source/ar/extras/source/autocorr/emoji.po b/source/ar/extras/source/autocorr/emoji.po
index 2123e61c62c..6c7213964c2 100644
--- a/source/ar/extras/source/autocorr/emoji.po
+++ b/source/ar/extras/source/autocorr/emoji.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/extrassourceautocorremoji/ar/>\n"
"Language: ar\n"
@@ -894,7 +894,7 @@ msgctxt ""
"RIGHTWARDS_ARROW\n"
"LngText.text"
msgid "E"
-msgstr ""
+msgstr "مُ"
#. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji
#. 8Riz5
@@ -2919,7 +2919,7 @@ msgctxt ""
"ANCHOR\n"
"LngText.text"
msgid "anchor"
-msgstr "مرساة"
+msgstr "مربط"
#. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji
#. Wx5rd
@@ -5066,7 +5066,7 @@ msgctxt ""
"BENTO_BOX\n"
"LngText.text"
msgid "bento"
-msgstr ""
+msgstr "بنتو"
#. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji
#. wuJ4w
@@ -7976,7 +7976,7 @@ msgctxt ""
"ROUND_PUSHPIN\n"
"LngText.text"
msgid "round pushpin"
-msgstr ""
+msgstr "دبوس مدور"
#. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji
#. QnxVB
@@ -8036,7 +8036,7 @@ msgctxt ""
"NOTEBOOK\n"
"LngText.text"
msgid "notebook"
-msgstr ""
+msgstr "دفترملاحظات"
#. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji
#. ktHAV
@@ -8046,7 +8046,7 @@ msgctxt ""
"NOTEBOOK_WITH_DECORATIVE_COVER\n"
"LngText.text"
msgid "notebook2"
-msgstr ""
+msgstr "دفترملاحظات2"
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#. DYit7
@@ -8056,7 +8056,7 @@ msgctxt ""
"CLOSED_BOOK\n"
"LngText.text"
msgid "book2"
-msgstr ""
+msgstr "كتاب2"
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#. LjMCp
@@ -8066,7 +8066,7 @@ msgctxt ""
"OPEN_BOOK\n"
"LngText.text"
msgid "book3"
-msgstr ""
+msgstr "كتاب3"
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#. wGEYU
@@ -8122,13 +8122,12 @@ msgstr ""
#. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji
#. RFzY6
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"PAGER\n"
"LngText.text"
msgid "pager"
-msgstr "صفحة"
+msgstr "متصفِّح"
#. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji
#. G6o5r
@@ -8148,7 +8147,7 @@ msgctxt ""
"SATELLITE_ANTENNA\n"
"LngText.text"
msgid "antenna"
-msgstr ""
+msgstr "هوائي"
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
#. P5xbh
@@ -8158,40 +8157,37 @@ msgctxt ""
"PUBLIC_ADDRESS_LOUDSPEAKER\n"
"LngText.text"
msgid "loudspeaker"
-msgstr ""
+msgstr "مكبرصوت"
#. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji
#. eJHQG
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"CHEERING_MEGAPHONE\n"
"LngText.text"
msgid "mega"
-msgstr "أوميغا كبير"
+msgstr "سماعةميغا"
#. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji
#. YcCHy
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"OUTBOX_TRAY\n"
"LngText.text"
msgid "tray"
-msgstr "سجود"
+msgstr "صينية"
#. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji
#. f8tnA
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"INBOX_TRAY\n"
"LngText.text"
msgid "tray2"
-msgstr "ترام2"
+msgstr "صينية2"
#. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji
#. 8uDGB
@@ -8241,7 +8237,7 @@ msgctxt ""
"CLOSED_MAILBOX_WITH_LOWERED_FLAG\n"
"LngText.text"
msgid "mailbox"
-msgstr "صندوق بريد"
+msgstr "صندوق‌بريد"
#. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji
#. zyZUF
@@ -8251,7 +8247,7 @@ msgctxt ""
"CLOSED_MAILBOX_WITH_RAISED_FLAG\n"
"LngText.text"
msgid "mailbox2"
-msgstr "صندوق بريد2"
+msgstr "صندوق‌بريد2"
#. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji
#. Sf5YJ
@@ -8261,7 +8257,7 @@ msgctxt ""
"OPEN_MAILBOX_WITH_RAISED_FLAG\n"
"LngText.text"
msgid "mailbox3"
-msgstr "صندوق بريد3"
+msgstr "صندوق‌بريد3"
#. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji
#. fCEgu
@@ -8271,7 +8267,7 @@ msgctxt ""
"OPEN_MAILBOX_WITH_LOWERED_FLAG\n"
"LngText.text"
msgid "mailbox4"
-msgstr "صندوق بريد4"
+msgstr "صندوق‌بريد4"
#. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji
#. TManz
@@ -8286,13 +8282,12 @@ msgstr ""
#. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji
#. u2ynR
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"POSTAL_HORN\n"
"LngText.text"
msgid "horn"
-msgstr "ذرة"
+msgstr "بوق"
#. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji
#. gZmY9
@@ -11198,7 +11193,7 @@ msgctxt ""
"JOYSTICK\n"
"LngText.text"
msgid "joystick"
-msgstr ""
+msgstr "عصالعب"
#. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji
#. wY9cB
@@ -11208,7 +11203,7 @@ msgctxt ""
"FRAME_WITH_PICTURE\n"
"LngText.text"
msgid "picture"
-msgstr ""
+msgstr "صورة"
#. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji
#. RWFZz
@@ -11218,7 +11213,7 @@ msgctxt ""
"STUDIO_MICROPHONE\n"
"LngText.text"
msgid "microphone2"
-msgstr ""
+msgstr "لاقط‌صوت2"
#. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji
#. FNDDe
@@ -11228,7 +11223,7 @@ msgctxt ""
"LEVEL_SLIDER\n"
"LngText.text"
msgid "slider"
-msgstr ""
+msgstr "منزلق"
#. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji
#. HRvG2
@@ -11238,7 +11233,7 @@ msgctxt ""
"CONTROL_KNOBS\n"
"LngText.text"
msgid "control"
-msgstr ""
+msgstr "متحكم"
#. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji
#. DunGT
@@ -11248,7 +11243,7 @@ msgctxt ""
"DESKTOP_COMPUTER\n"
"LngText.text"
msgid "computer2"
-msgstr ""
+msgstr "حاسوب2"
#. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji
#. 5i9iG
@@ -11258,7 +11253,7 @@ msgctxt ""
"PRINTER\n"
"LngText.text"
msgid "printer"
-msgstr ""
+msgstr "طابعة"
#. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji
#. gCiTV
@@ -11268,7 +11263,7 @@ msgctxt ""
"THREE_BUTTON_MOUSE\n"
"LngText.text"
msgid "mouse3"
-msgstr ""
+msgstr "فأرة3"
#. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji
#. kr6mD
@@ -11278,7 +11273,7 @@ msgctxt ""
"TRACKBALL\n"
"LngText.text"
msgid "trackball"
-msgstr ""
+msgstr "كرةتتبّع"
#. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji
#. a7M8c
@@ -11288,7 +11283,7 @@ msgctxt ""
"FILM_FRAMES\n"
"LngText.text"
msgid "film"
-msgstr ""
+msgstr "فيلم"
#. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji
#. 5XEHv
@@ -11298,7 +11293,7 @@ msgctxt ""
"FILM_PROJECTOR\n"
"LngText.text"
msgid "projector"
-msgstr ""
+msgstr "عارضة"
#. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji
#. e6d8k
@@ -11308,7 +11303,7 @@ msgctxt ""
"CAMERA_WITH_FLASH\n"
"LngText.text"
msgid "flash"
-msgstr ""
+msgstr "وميض"
#. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji
#. 85ZZG
@@ -11318,7 +11313,7 @@ msgctxt ""
"CANDLE\n"
"LngText.text"
msgid "candle"
-msgstr ""
+msgstr "شمعة"
#. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji
#. Roj4S
@@ -11328,7 +11323,7 @@ msgctxt ""
"ROLLED-UP_NEWSPAPER\n"
"LngText.text"
msgid "newspaper2"
-msgstr ""
+msgstr "جريدة2"
#. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji
#. KGGrV
@@ -11338,7 +11333,7 @@ msgctxt ""
"LABEL\n"
"LngText.text"
msgid "label"
-msgstr ""
+msgstr "اللصيقة"
#. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji
#. MtcT9
@@ -11348,7 +11343,7 @@ msgctxt ""
"BALLOT_BOX_WITH_BALLOT\n"
"LngText.text"
msgid "ballot"
-msgstr ""
+msgstr "اقتراع"
#. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji
#. eVhur
@@ -11358,7 +11353,7 @@ msgctxt ""
"LOWER_LEFT_FOUNTAIN_PEN\n"
"LngText.text"
msgid "pen2"
-msgstr ""
+msgstr "قلم2"
#. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji
#. zPbDv
@@ -11368,7 +11363,7 @@ msgctxt ""
"LOWER_LEFT_BALLPOINT_PEN\n"
"LngText.text"
msgid "pen"
-msgstr ""
+msgstr "قلم"
#. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji
#. GMFPP
@@ -11378,7 +11373,7 @@ msgctxt ""
"LOWER_LEFT_PAINTBRUSH\n"
"LngText.text"
msgid "paintbrush"
-msgstr ""
+msgstr "فرشاةرسم"
#. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji
#. oj4qT
@@ -11388,7 +11383,7 @@ msgctxt ""
"LOWER_LEFT_CRAYON\n"
"LngText.text"
msgid "crayon"
-msgstr ""
+msgstr "قلم‌شمعي"
#. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji
#. 6mFoM
@@ -11398,7 +11393,7 @@ msgctxt ""
"CARD_INDEX_DIVIDERS\n"
"LngText.text"
msgid "index"
-msgstr ""
+msgstr "الفهرس"
#. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji
#. 4vrvA
@@ -11408,7 +11403,7 @@ msgctxt ""
"SPIRAL_NOTE_PAD\n"
"LngText.text"
msgid "notepad"
-msgstr ""
+msgstr "ورق‌ملاحظات"
#. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji
#. fjcB6
@@ -11418,7 +11413,7 @@ msgctxt ""
"SPIRAL_CALENDAR_PAD\n"
"LngText.text"
msgid "calendar3"
-msgstr ""
+msgstr "تقويم3"
#. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji
#. bwrwB
@@ -11428,7 +11423,7 @@ msgctxt ""
"LINKED_PAPERCLIPS\n"
"LngText.text"
msgid "paperclip2"
-msgstr ""
+msgstr "مشبك‌ورق2"
#. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji
#. zm6R6
@@ -11438,7 +11433,7 @@ msgctxt ""
"CARD_FILE_BOX\n"
"LngText.text"
msgid "box"
-msgstr ""
+msgstr "حافظ‌ملفات"
#. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji
#. D9Ev3
@@ -11448,7 +11443,7 @@ msgctxt ""
"FILE_CABINET\n"
"LngText.text"
msgid "cabinet"
-msgstr ""
+msgstr "خزانة"
#. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji
#. 7Rhsi
@@ -11458,7 +11453,7 @@ msgctxt ""
"WASTEBASKET\n"
"LngText.text"
msgid "wastebasket"
-msgstr ""
+msgstr "سلةمهملات"
#. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji
#. i498o
@@ -11468,7 +11463,7 @@ msgctxt ""
"OLD_KEY\n"
"LngText.text"
msgid "key2"
-msgstr ""
+msgstr "مفتاح2"
#. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji
#. EDHj7
@@ -11478,7 +11473,7 @@ msgctxt ""
"HAMMER_AND_WRENCH\n"
"LngText.text"
msgid "hammer and wrench"
-msgstr ""
+msgstr "مطرقة وملوى"
#. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji
#. qnaCC
@@ -11488,7 +11483,7 @@ msgctxt ""
"DAGGER_KNIFE\n"
"LngText.text"
msgid "knife2"
-msgstr ""
+msgstr "سكين2"
#. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji
#. QCXRd
@@ -11498,7 +11493,7 @@ msgctxt ""
"SHIELD\n"
"LngText.text"
msgid "shield"
-msgstr ""
+msgstr "درع"
#. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji
#. F9G5C
@@ -11508,7 +11503,7 @@ msgctxt ""
"COMPRESSION\n"
"LngText.text"
msgid "clamp"
-msgstr ""
+msgstr "كلّاب"
#. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji
#. g4DGu
@@ -11518,7 +11513,7 @@ msgctxt ""
"BED\n"
"LngText.text"
msgid "bed"
-msgstr ""
+msgstr "فراش"
#. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji
#. XnFom
@@ -11528,7 +11523,7 @@ msgctxt ""
"COUCH_AND_LAMP\n"
"LngText.text"
msgid "couch"
-msgstr ""
+msgstr "أريكة"
#. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji
#. R8EvG
@@ -11548,7 +11543,7 @@ msgctxt ""
"DOUBLE_VERTICAL_BAR\n"
"LngText.text"
msgid "pause"
-msgstr ""
+msgstr "لبث"
#. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji
#. 6Fkq7
@@ -11558,7 +11553,7 @@ msgctxt ""
"BLACK_SQUARE_FOR_STOP\n"
"LngText.text"
msgid "stop2"
-msgstr ""
+msgstr "توقف2"
#. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji
#. PApbW
@@ -11568,7 +11563,7 @@ msgctxt ""
"BLACK_CIRCLE_FOR_RECORD\n"
"LngText.text"
msgid "record"
-msgstr ""
+msgstr "تسجيل"
#. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji
#. hytrL
@@ -11578,7 +11573,7 @@ msgctxt ""
"WAVING_BLACK_FLAG\n"
"LngText.text"
msgid "flag"
-msgstr ""
+msgstr "عَلَم"
#. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji
#. mBjRj
@@ -11588,7 +11583,7 @@ msgctxt ""
"WAVING_WHITE_FLAG\n"
"LngText.text"
msgid "flag2"
-msgstr ""
+msgstr "عَلَم2"
#. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji
#. GBXU7
diff --git a/source/ar/filter/messages.po b/source/ar/filter/messages.po
index c5c1253cb84..04731e71b38 100644
--- a/source/ar/filter/messages.po
+++ b/source/ar/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: 2021-11-19 15:43+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/filtermessages/ar/>\n"
"Language: ar\n"
@@ -376,7 +376,7 @@ msgstr "ال_صفحات:"
#: filter/uiconfig/ui/pdfgeneralpage.ui:78
msgctxt "pdfgeneralpage|extended_tip|range"
msgid "Exports the pages you type in the box."
-msgstr ""
+msgstr "يصدّر الصفحات التي تطبعها في الصندوق."
#. WTSeS
#: filter/uiconfig/ui/pdfgeneralpage.ui:89
@@ -394,7 +394,7 @@ msgstr ""
#: filter/uiconfig/ui/pdfgeneralpage.ui:121
msgctxt "pdfgeneralpage|extended_tip|pages"
msgid "Exports the pages you type in the box."
-msgstr ""
+msgstr "يصدّر الصفحات التي تطبعها في الصندوق."
#. tFeCH
#: filter/uiconfig/ui/pdfgeneralpage.ui:135
@@ -719,13 +719,13 @@ msgstr ""
#: filter/uiconfig/ui/pdfgeneralpage.ui:822
msgctxt "pdfgeneralpage|exportplaceholders"
msgid "Expo_rt placeholders"
-msgstr "ص_دّر ماسكات المكان"
+msgstr "ص_دّر العناصر النائبة"
#. T6RjA
#: filter/uiconfig/ui/pdfgeneralpage.ui:831
msgctxt "pdfgeneralpage|extended_tip|exportplaceholders"
msgid "Export the placeholders fields visual markings only. The exported placeholder is ineffective."
-msgstr ""
+msgstr "صدّر العلامات البصرية لحقول العناصر النائبة. العناصر النائبة المصدَّرة غير متأثرة."
#. P4kGd
#: filter/uiconfig/ui/pdfgeneralpage.ui:842
@@ -936,7 +936,7 @@ msgstr "واجهة المستخدم"
#: filter/uiconfig/ui/pdfoptionsdialog.ui:281
msgctxt "pdfoptionsdialog|links"
msgid "Links"
-msgstr "الوصلات"
+msgstr "الروابط"
#. x4GVL
#: filter/uiconfig/ui/pdfoptionsdialog.ui:329
@@ -1851,7 +1851,7 @@ msgstr "ا_حذف..."
#: filter/uiconfig/ui/xmlfiltersettings.ui:220
msgctxt "xmlfiltersettings|extended_tip|delete"
msgid "Deletes the selected file after you confirm the dialog that follows."
-msgstr ""
+msgstr "يحذف الملف المحدد بعد أن تؤكد الحوار الذي يلي."
#. DmuTA
#: filter/uiconfig/ui/xmlfiltersettings.ui:232
@@ -1941,7 +1941,7 @@ msgstr ""
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:186
msgctxt "xmlfiltertabpagegeneral|extended_tip|description"
msgid "Enter a comment (optional)."
-msgstr ""
+msgstr "أدخِل تعليقًا (اختياري)."
#. G632R
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:206
diff --git a/source/ar/filter/source/config/fragments/filters.po b/source/ar/filter/source/config/fragments/filters.po
index c4bb807db36..c88456bf53c 100644
--- a/source/ar/filter/source/config/fragments/filters.po
+++ b/source/ar/filter/source/config/fragments/filters.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-03-12 20:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/filtersourceconfigfragmentsfilters/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1530484897.000000\n"
#. FR4Ff
@@ -1587,25 +1587,23 @@ msgstr "PDC - أسطوانة CD كُداك صور (768×512)"
#. bTGGv
#: draw_PCD_Photo_CD_Base16.xcu
-#, fuzzy
msgctxt ""
"draw_PCD_Photo_CD_Base16.xcu\n"
"draw_PCD_Photo_CD_Base16\n"
"UIName\n"
"value.text"
msgid "PCD - Kodak Photo CD (192x128)"
-msgstr "PCD - أسطوانة CD لصورة كوداك (192×128)"
+msgstr "PCD - أسطوانة صور كوداك (192×128)"
#. WkqKk
#: draw_PCD_Photo_CD_Base4.xcu
-#, fuzzy
msgctxt ""
"draw_PCD_Photo_CD_Base4.xcu\n"
"draw_PCD_Photo_CD_Base4\n"
"UIName\n"
"value.text"
msgid "PCD - Kodak Photo CD (384x256)"
-msgstr "أسطوانة CD لصورة كوداك (384×256)"
+msgstr "PCD - أسطوانة صور كوداك (384×256)"
#. XqdTg
#: draw_StarOffice_XML_Draw_Template.xcu
diff --git a/source/ar/filter/source/config/fragments/internalgraphicfilters.po b/source/ar/filter/source/config/fragments/internalgraphicfilters.po
index ca72e18e08a..4f43d103877 100644
--- a/source/ar/filter/source/config/fragments/internalgraphicfilters.po
+++ b/source/ar/filter/source/config/fragments/internalgraphicfilters.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-03-12 20:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/filtersourceconfigfragmentsinternalgraphicfilters/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1516029056.000000\n"
#. s5fY3
@@ -174,7 +174,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PCD - Kodak Photo CD (192x128)"
-msgstr "PCD - سي دي صورة كوداك (192x128)"
+msgstr "PCD - أسطوانة صور كوداك (192×128)"
#. NLTnG
#: pcd_Import_Base4.xcu
@@ -184,7 +184,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PCD - Kodak Photo CD (384x256)"
-msgstr "PCD - سي دي صورة كوداك (384x256)"
+msgstr "PCD - أسطوانة صور كوداك (384×256)"
#. fA8cL
#: pct_Import.xcu
diff --git a/source/ar/fpicker/messages.po b/source/ar/fpicker/messages.po
index 153ff5faf13..03b86931eac 100644
--- a/source/ar/fpicker/messages.po
+++ b/source/ar/fpicker/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-03-12 20:39+0000\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/fpickermessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496475.000000\n"
#. SJGCw
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "تاريخ التعديل"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "ا_سم الملفّ:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_نوع الملفّ:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "لل_قراءة فقط"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "احفظ بكلمة مرور"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "ألحق ا_متداد اسم الملفّ آليًّا"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "حرّر إعدادات المر_شّح"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "عمِّ بمفتاح GPG"
@@ -442,7 +442,7 @@ msgstr "الإ~صدارة:"
#: include/fpicker/strings.hrc:24
msgctxt "STR_SVT_FILEPICKER_TEMPLATES"
msgid "S~tyles:"
-msgstr "الأ~نماط:"
+msgstr "الطُرُ~ز:"
#. emrjD
#: include/fpicker/strings.hrc:25
diff --git a/source/ar/framework/messages.po b/source/ar/framework/messages.po
index ed70e702c29..97339e55522 100644
--- a/source/ar/framework/messages.po
+++ b/source/ar/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: 2021-06-11 17:08+0200\n"
-"PO-Revision-Date: 2022-02-26 21:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/frameworkmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1513250878.000000\n"
#. 5dTDC
@@ -239,7 +239,7 @@ msgstr "لغة النص. انقر باليمين لضبط لغة المحرف أ
#: framework/inc/strings.hrc:57
msgctxt "RID_STR_PROPTITLE_EDIT"
msgid "Text Box"
-msgstr ""
+msgstr "مربع نص"
#. CBmAL
#: framework/inc/strings.hrc:58
diff --git a/source/ar/librelogo/source/pythonpath.po b/source/ar/librelogo/source/pythonpath.po
index ab7ee74c6d4..50ba236ae61 100644
--- a/source/ar/librelogo/source/pythonpath.po
+++ b/source/ar/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2020-06-29 13:09+0200\n"
-"PO-Revision-Date: 2022-03-23 11:35+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/librelogosourcepythonpath/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1533033583.000000\n"
#. tFoAo
@@ -131,7 +131,7 @@ msgctxt ""
"LABEL\n"
"property.text"
msgid "label"
-msgstr "تسمية"
+msgstr "اللصيقة"
#. 2fBcU
#: LibreLogo_en_US.properties
@@ -779,7 +779,7 @@ msgctxt ""
"SET\n"
"property.text"
msgid "set"
-msgstr "مصفوفة"
+msgstr "مجموعة"
#. 2HJLi
#: LibreLogo_en_US.properties
diff --git a/source/ar/nlpsolver/src/locale.po b/source/ar/nlpsolver/src/locale.po
index db3ab1e8976..584c35011c7 100644
--- a/source/ar/nlpsolver/src/locale.po
+++ b/source/ar/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: 2022-02-04 19:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/nlpsolversrclocale/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1487168697.000000\n"
#. sv3GB
@@ -248,7 +248,7 @@ msgctxt ""
"NLPSolverStatusDialog.Controls.btnStop\n"
"property.text"
msgid "Stop"
-msgstr "إيقاف"
+msgstr "توقف"
#. QAJcS
#: NLPSolverStatusDialog_en_US.properties
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office.po b/source/ar/officecfg/registry/data/org/openoffice/Office.po
index 01c4fa6eed2..11feb16f379 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office.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-02-05 18:59+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeoffice/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022440.000000\n"
#. HhMVS
@@ -1594,7 +1594,7 @@ msgctxt ""
"STR_FILENAME_SUFFIX\n"
"value.text"
msgid "(minimized)"
-msgstr ""
+msgstr "(مصغَّر)"
#. ZSqeK
#: PresentationMinimizer.xcu
@@ -1604,7 +1604,7 @@ msgctxt ""
"STR_WARN_UNSAVED_PRESENTATION\n"
"value.text"
msgid "Do you want to minimize presentation without saving?"
-msgstr ""
+msgstr "أتريد تصغير العَرض التقديمي دون حفظ؟"
#. pYxGc
#: PresentationMinimizer.xcu
@@ -1624,7 +1624,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Email (96 DPI): minimize document size for sharing"
-msgstr ""
+msgstr "أرسل بالبريد (96 نقطة في البوصة): صغّر حجم المستند للمشاركة"
#. mzFCD
#: PresentationMinimizer.xcu
@@ -1634,7 +1634,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Web (150 DPI): good for web pages and projectors"
-msgstr ""
+msgstr "انترنت (150 نقطة في البوصة): جيد لصفحات الانترنت والعارضات"
#. wageX
#: PresentationMinimizer.xcu
@@ -1644,7 +1644,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Print (300 DPI): excellent quality on most printers and screens"
-msgstr ""
+msgstr "طباعة (300 نقطة في البوصة): جودة ممتازة في معظم الطابعات والشاشات"
#. 5BgC2
#: PresentationMinimizer.xcu
@@ -1654,7 +1654,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "High fidelity: preserves quality of the original picture"
-msgstr ""
+msgstr "ملازمة عالية: تحافظ على جودة الصورة الأصلية"
#. Le7Xu
#: PresenterScreen.xcu
@@ -8344,7 +8344,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "NextScheduledMaintenance"
-msgstr "NextScheduledMaintenance"
+msgstr "الصيانةالمجدولةالتالية"
#. YbgNB
#: TableWizard.xcu
@@ -8354,7 +8354,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "NtSchMaint"
-msgstr "NtSchMaint"
+msgstr "صيانةمجدولةتالية"
#. JiCGL
#: TableWizard.xcu
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index c8046c1366b..8bf29b2f69c 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/ar/>\n"
"Language: ar\n"
@@ -2124,7 +2124,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. jgGQR
#: CalcCommands.xcu
@@ -4074,7 +4074,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Anchor: To Cell (~resize with cell)"
-msgstr ""
+msgstr "المربط: إلى الخلية (~غيّر الحجم مع الخلية)"
#. JUsNn
#: CalcCommands.xcu
@@ -4584,7 +4584,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste As Link"
-msgstr ""
+msgstr "الصق كرابط"
#. f7yoE
#: CalcCommands.xcu
@@ -4594,7 +4594,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "As ~Link"
-msgstr ""
+msgstr "ك~رابط"
#. 4DJpG
#: CalcCommands.xcu
@@ -8119,7 +8119,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt Attributes..."
-msgstr ""
+msgstr "صفات الن~ص..."
#. GR6Sf
#: DrawImpressCommands.xcu
@@ -8433,14 +8433,13 @@ msgstr "ا~عرض أدلة الجذب"
#. RC4j5
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:HelplinesFront\n"
"Label\n"
"value.text"
msgid "Snap Guides to ~Front"
-msgstr "خطوط الالت~قاط للأمام"
+msgstr "مرشدات الجذب للأ~مام"
#. Fk9u2
#: DrawImpressCommands.xcu
@@ -10182,7 +10181,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~dit Style..."
-msgstr "~حرّر النّمط..."
+msgstr "~حرّر الطراز..."
#. tRG4u
#: DrawImpressCommands.xcu
@@ -10402,7 +10401,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styl~es"
-msgstr "الأ~نماط"
+msgstr "ال~طُرُز"
#. cv8x3
#: DrawImpressCommands.xcu
@@ -11387,14 +11386,13 @@ msgstr "عنوان و نص رأسي"
#. rHEMC
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Popups..uno:AssignLayout?WhatLayout:long=30\n"
"Label\n"
"value.text"
msgid "Title, 2 Vertical Text, Clipart"
-msgstr "عنوان، نص رأسي، صورة"
+msgstr "عنوان، 2 نص رأسي، قصاصة فنية"
#. 3EaGa
#: DrawImpressCommands.xcu
@@ -11651,7 +11649,6 @@ msgstr ""
#. VYgEG
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -12050,7 +12047,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. LtC4D
#: DrawWindowState.xcu
@@ -12270,7 +12267,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "وزّع التحديد"
#. qQQAi
#: Effects.xcu
@@ -12790,7 +12787,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr "انعكاس"
+msgstr "اقلب"
#. oUViV
#: Effects.xcu
@@ -13510,7 +13507,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip"
-msgstr "انعكاس"
+msgstr "اقلب"
#. XDeox
#: Effects.xcu
@@ -15986,7 +15983,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. vAhkn
#: GenericCategories.xcu
@@ -16030,7 +16027,6 @@ msgstr "إطار"
#. kEMD4
#: GenericCategories.xcu
-#, fuzzy
msgctxt ""
"GenericCategories.xcu\n"
"..GenericCategories.Commands.Categories.14\n"
@@ -17677,7 +17673,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop"
-msgstr "إيقاف"
+msgstr "توقف"
#. w4mSG
#: GenericCommands.xcu
@@ -18447,7 +18443,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "[placeholder for message]"
-msgstr "[حالّ محلّ للرسالة]"
+msgstr "[عنصر نائب للرسالة]"
#. GByEF
#: GenericCommands.xcu
@@ -18807,7 +18803,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Options..."
-msgstr "ال~خيارات..."
+msgstr "~خيارات..."
#. DAyDw
#: GenericCommands.xcu
@@ -20239,7 +20235,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Manage St~yles"
-msgstr "أدر الأنما~ط"
+msgstr "أدر ال~طُرُز"
#. GGfAj
#: GenericCommands.xcu
@@ -20489,7 +20485,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Edit Style..."
-msgstr "حرّر النم~ط..."
+msgstr "حرّر ال~طراز..."
#. YYoPr
#: GenericCommands.xcu
@@ -24031,7 +24027,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Stop"
-msgstr "إيقاف"
+msgstr "توقف"
#. hxGYL
#: GenericCommands.xcu
@@ -26671,7 +26667,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Additions..."
-msgstr ""
+msgstr "إ~ضافات..."
#. bFKmR
#: GenericCommands.xcu
@@ -26681,7 +26677,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Additional Extensions..."
-msgstr ""
+msgstr "تمديدا~ت إضافية..."
#. UqjzD
#: GenericCommands.xcu
@@ -26691,7 +26687,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Additional Extensions"
-msgstr ""
+msgstr "تمديدات إضافية"
#. YpeR4
#: GenericCommands.xcu
@@ -26781,7 +26777,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "وزّع التحديد"
#. vDkBA
#: GenericCommands.xcu
@@ -26811,7 +26807,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Center"
-msgstr ""
+msgstr "وزّع أفقيًا وسطًا"
#. SqFTB
#: GenericCommands.xcu
@@ -26821,7 +26817,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Center"
-msgstr ""
+msgstr "أفقيًا ~وسطًا"
#. QXntz
#: GenericCommands.xcu
@@ -26831,7 +26827,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Horizontally Spacing"
-msgstr ""
+msgstr "وزّع التباعد أفقيًا"
#. GQEXJ
#: GenericCommands.xcu
@@ -26841,7 +26837,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Horizontally ~Spacing"
-msgstr ""
+msgstr "~تباعد أفقي"
#. Smk23
#: GenericCommands.xcu
@@ -26891,7 +26887,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Vertically Center"
-msgstr ""
+msgstr "وزّع رأسيًا وسطًا"
#. PaLDT
#: GenericCommands.xcu
@@ -26901,7 +26897,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Vertically C~enter"
-msgstr ""
+msgstr "رأسيًا وس~طًا"
#. jwLqM
#: GenericCommands.xcu
@@ -26911,7 +26907,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Vertically Spacing"
-msgstr ""
+msgstr "وزّع التباعد رأسيا"
#. 2RAqA
#: GenericCommands.xcu
@@ -27098,7 +27094,6 @@ msgstr ""
#. Tbiup
#: ImpressWindowState.xcu
-#, fuzzy
msgctxt ""
"ImpressWindowState.xcu\n"
"..ImpressWindowState.UIElements.States.private:resource/popupmenu/graphic\n"
@@ -27468,7 +27463,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. mUECT
#: ImpressWindowState.xcu
@@ -27778,7 +27773,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Distribute Selection"
-msgstr ""
+msgstr "وزّع التحديد"
#. tpAhh
#: MathCommands.xcu
@@ -27858,7 +27853,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Import MathML from Clipboard"
-msgstr ""
+msgstr "استورد MathML من الحافظة"
#. km9DF
#: MathCommands.xcu
@@ -28038,11 +28033,10 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Small Gap"
-msgstr "تباعد صغير"
+msgstr "فجوة صغيرة"
#. KdTHS
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:InsertCommandText?Text:string=~\n"
@@ -28053,62 +28047,56 @@ msgstr "فجوة"
#. AxAAC
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:UnaryBinaryMenu\n"
"Label\n"
"value.text"
msgid "~Unary/Binary Operators"
-msgstr "~معاملات أحادية/ثنائية"
+msgstr "~عاملات أحادية/ثنائية"
#. fU3Ww
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:RelationsMenu\n"
"Label\n"
"value.text"
msgid "~Relations"
-msgstr "~علاقات"
+msgstr "عل~اقات"
#. xE5UF
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:SetOperationsMenu\n"
"Label\n"
"value.text"
msgid "~Set Operations"
-msgstr "~تعيين العوامل"
+msgstr "~أعِدّ العمليات"
#. NGa2A
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:FunctionsMenu\n"
"Label\n"
"value.text"
msgid "~Functions"
-msgstr "الدوال"
+msgstr "~الدوال"
#. w7Af9
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:OperatorsMenu\n"
"Label\n"
"value.text"
msgid "O~perators"
-msgstr "م~عاملات"
+msgstr "~عاملات"
#. hu8z6
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:AttributesMenu\n"
@@ -28119,36 +28107,33 @@ msgstr "~صفات"
#. rZPUN
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:BracketsMenu\n"
"Label\n"
"value.text"
msgid "~Brackets"
-msgstr "أ~قواس"
+msgstr "أقواس ~هلالية"
#. DYtrW
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:FormatsMenu\n"
"Label\n"
"value.text"
msgid "For~mats"
-msgstr "التنسيق"
+msgstr "الأ~نساق"
#. QBa62
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Popups..uno:OthersMenu\n"
"Label\n"
"value.text"
msgid "~Others"
-msgstr "~غيرها"
+msgstr "أ~خرى"
#. uXvss
#: MathWindowState.xcu
@@ -28158,7 +28143,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Edit Panel"
-msgstr ""
+msgstr "عدّل اللوحة"
#. M9ihe
#: MathWindowState.xcu
@@ -28168,7 +28153,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "View Panel"
-msgstr ""
+msgstr "عاين اللوحة"
#. ntzBZ
#: MathWindowState.xcu
@@ -28208,7 +28193,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report Header/Footer"
-msgstr "رأس\\تذييل التقرير"
+msgstr "ترويس\\تذييل التقرير"
#. EACbA
#: ReportCommands.xcu
@@ -28382,14 +28367,13 @@ msgstr "تنفيذ التقرير..."
#. Yts2i
#: ReportCommands.xcu
-#, fuzzy
msgctxt ""
"ReportCommands.xcu\n"
".ReportCommands.UserInterface.Commands..uno:ImageControl\n"
"Label\n"
"value.text"
msgid "Image..."
-msgstr "_صورة..."
+msgstr "صورة..."
#. E872w
#: ReportCommands.xcu
@@ -28929,7 +28913,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Footer"
-msgstr "التذييل"
+msgstr "تذييل"
#. 4FE4o
#: Sidebar.xcu
@@ -29009,7 +28993,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Image"
-msgstr "الصور"
+msgstr "صورة"
#. Khag4
#: Sidebar.xcu
@@ -30079,7 +30063,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Reject Track Change and select the next one"
-msgstr ""
+msgstr "ارفض التغيير المتتبَّع وحدد التغيير التالي"
#. 4EvCQ
#: WriterCommands.xcu
@@ -30159,7 +30143,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accept Track Change and select the next one"
-msgstr ""
+msgstr "اقبل التغيير المتتبَّع وحدد التغيير التالي"
#. TFCgf
#: WriterCommands.xcu
@@ -30389,7 +30373,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "أظهِر حالات الحذف المتتبَّعة في الهامش"
#. 3GVrG
#: WriterCommands.xcu
@@ -30399,7 +30383,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show tracked deletions in margin"
-msgstr ""
+msgstr "أظهِر حالات الحذف المتتبَّعة في الهامش"
#. QFi68
#: WriterCommands.xcu
@@ -30889,7 +30873,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "All ~Changes Inline"
-msgstr ""
+msgstr "كل الت~غييرات ضمنًا"
#. JQmVz
#: WriterCommands.xcu
@@ -30899,7 +30883,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Deletions In Margin"
-msgstr ""
+msgstr "أظهِر حالات الحذف في الهوامش"
#. Mo6US
#: WriterCommands.xcu
@@ -30909,7 +30893,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Deletions In Margin"
-msgstr ""
+msgstr "حالات الح~ذف في الهوامش"
#. AcF7X
#: WriterCommands.xcu
@@ -31879,7 +31863,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr "ال~حواشي و الحواشي الختامية..."
+msgstr "الملاح~ظات الذيلية والختامية..."
#. eE5gP
#: WriterCommands.xcu
@@ -31889,7 +31873,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr "ال~حواشي و الحواشي الختامية..."
+msgstr "الملاح~ظات الذيلية والختامية..."
#. ZPvDo
#: WriterCommands.xcu
@@ -34009,7 +33993,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Placeholder"
-msgstr "إلى حافظ المكان التالي"
+msgstr "إلى العنصر النائب التالي"
#. 4nDXh
#: WriterCommands.xcu
@@ -34019,7 +34003,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Placeholder"
-msgstr "إلى حافظ المكان السابق"
+msgstr "إلى العنصر النائب السابق"
#. wjF7p
#: WriterCommands.xcu
@@ -34669,7 +34653,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Styl~es"
-msgstr "أ~نماط"
+msgstr "ال~طُرُز"
#. YTNwv
#: WriterCommands.xcu
@@ -34739,7 +34723,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "“Add to List” adds selected paragraphs to an immediately preceding list."
-msgstr ""
+msgstr "\"أضِف إلى قائمة التعداد\" يضيف الفقرات إلى فقرة تعداد سابقة مباشرة."
#. oCEjg
#: WriterCommands.xcu
@@ -36611,7 +36595,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Insert"
-msgstr "أدرِج"
+msgstr "أدرج"
#. sy3Vp
#: WriterGlobalWindowState.xcu
diff --git a/source/ar/readlicense_oo/docs.po b/source/ar/readlicense_oo/docs.po
index a4a2a01c5d7..ab01d960ed3 100644
--- a/source/ar/readlicense_oo/docs.po
+++ b/source/ar/readlicense_oo/docs.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:12+0200\n"
-"PO-Revision-Date: 2022-03-12 20:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/readlicense_oodocs/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022443.000000\n"
#. q6Gg3
@@ -203,7 +203,7 @@ msgctxt ""
"s2we35\n"
"readmeitem.text"
msgid "Linux Kernel version 3.10 or higher;"
-msgstr ""
+msgstr "نظام أساس لينكس الإصدار 3.10 أو أعلى؛"
#. pNgKX
#: readme.xrm
diff --git a/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po b/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po
index 5c89b313881..64f7f07068d 100644
--- a/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po
+++ b/source/ar/reportbuilder/java/org/libreoffice/report/function/metadata.po
@@ -4,16 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2014-09-19 08:45+0000\n"
-"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
+"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/reportbuilderjavaorglibreofficereportfunctionmetadata/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1411116304.000000\n"
#. Ej27A
@@ -59,7 +59,7 @@ msgctxt ""
"display-name\n"
"property.text"
msgid "MetaData"
-msgstr "البيانات الوصفيّة"
+msgstr "بيانات‌وصفيّة"
#. XECPG
#: category_en_US.properties
diff --git a/source/ar/reportdesign/messages.po b/source/ar/reportdesign/messages.po
index 529324a7a3e..dd9fdbc3ee5 100644
--- a/source/ar/reportdesign/messages.po
+++ b/source/ar/reportdesign/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: 2021-11-16 12:09+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/reportdesignmessages/ar/>\n"
"Language: ar\n"
@@ -126,10 +126,9 @@ msgstr "المجموعة كاملة"
#. Hc5De
#: reportdesign/inc/stringarray.hrc:60
-#, fuzzy
msgctxt "RID_STR_KEEPTOGETHER_CONST"
msgid "With First Detail"
-msgstr "مع التفاصيل اﻷولى"
+msgstr "مع التفصيل اﻷول"
#. k2yjS
#: reportdesign/inc/stringarray.hrc:66
@@ -268,7 +267,7 @@ msgstr "صف أو عمود جديد"
#: reportdesign/inc/strings.hrc:29
msgctxt "RID_STR_KEEPTOGETHER"
msgid "Keep Together"
-msgstr "البقاء معًا"
+msgstr "الإبقاء معًا"
#. pjADt
#: reportdesign/inc/strings.hrc:30
@@ -1265,13 +1264,13 @@ msgstr "مسطّر"
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:260
msgctxt "conditionwin|ToolBoxItem4"
msgid "Background Color"
-msgstr "لون الخلفيّة"
+msgstr "لون الخلفية"
#. bF2Nt
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:272
msgctxt "conditionwin|ToolBoxItem5"
msgid "Font Color"
-msgstr "لون الخطّ"
+msgstr "لون الخط"
#. Cr7CD
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:284
@@ -1353,16 +1352,15 @@ msgstr "أدرج"
#. AjmhK
#: reportdesign/uiconfig/dbreport/ui/floatingfield.ui:168
-#, fuzzy
msgctxt "floatingfield|helptext"
msgid "Highlight the fields to insert into the selected section of the template, then click Insert or press Enter."
-msgstr "قم بتمييز الحقول لإدراجها في المقطع المحدد للقالب، ثم انقر فوق إدراج أو اضغط على Enter."
+msgstr "ميّز الحقول التي ستدرجها في المقطع المحدد من القالب، ثم انقر فوق إدراج أو اضغط على مفتاح الإدخال."
#. DCm75
#: reportdesign/uiconfig/dbreport/ui/floatingnavigator.ui:19
msgctxt "floatingnavigator|FloatingNavigator"
msgid "Report navigator"
-msgstr "ملاح التقرير"
+msgstr "ملاح التقارير"
#. J7Adn
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:13
@@ -1372,10 +1370,9 @@ msgstr "الفرز والتجميع"
#. LRhtG
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:76
-#, fuzzy
msgctxt "floatingsort|label5"
msgid "Group actions"
-msgstr "إجراءات المجموعة"
+msgstr "إجراءات المجموعات"
#. p6yrj
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:96
@@ -1421,23 +1418,21 @@ msgstr "تذييل المجموعة"
#. GWWsG
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:238
-#, fuzzy
msgctxt "floatingsort|label9"
msgid "Group On"
-msgstr "تجميع في"
+msgstr "تجميع عند"
#. uqrrE
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:252
-#, fuzzy
msgctxt "floatingsort|label10"
msgid "Group Interval"
-msgstr "فاصل المجموعة"
+msgstr "مسافة المجموعة"
#. iFmvA
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:266
msgctxt "floatingsort|label11"
msgid "Keep Together"
-msgstr "البقاء معًا"
+msgstr "الإبقاء معًا"
#. tQbGB
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:283
@@ -1453,17 +1448,15 @@ msgstr "تنازلي"
#. LsRSa
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:299
-#, fuzzy
msgctxt "floatingsort|header"
msgid "Present"
-msgstr "حاضر"
+msgstr "متواجد"
#. vnGGe
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:300
-#, fuzzy
msgctxt "floatingsort|header"
msgid "Not present"
-msgstr "غير حاضر"
+msgstr "غير متواجد"
#. xUAEz
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:315
@@ -1480,24 +1473,21 @@ msgstr "كل المجموعة"
#. uCpDA
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:317
-#, fuzzy
msgctxt "floatingsort|keep"
msgid "With First Detail"
-msgstr "مع التفاصيل اﻷولى"
+msgstr "مع التفصيل اﻷول"
#. A9ESx
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:332
-#, fuzzy
msgctxt "floatingsort|footer"
msgid "Present"
-msgstr "حاضر"
+msgstr "متواجد"
#. a5oHV
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:333
-#, fuzzy
msgctxt "floatingsort|footer"
msgid "Not present"
-msgstr "غير حاضر"
+msgstr "غير متواجد"
#. MYqZY
#: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:348
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index a02bb073536..c1c75c43d14 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022445.000000\n"
#. kBovX
@@ -1203,7 +1203,7 @@ msgstr "تذييل"
#: sc/inc/globstr.hrc:206
msgctxt "STR_TEXTATTRS"
msgid "Text Attributes"
-msgstr "سمات النص"
+msgstr "صفات النص"
#. CD5iM
#: sc/inc/globstr.hrc:207
@@ -5281,7 +5281,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:528
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "E"
-msgstr "ن"
+msgstr "مُ"
#. 3AMAi
#: sc/inc/scfuncs.hrc:529
@@ -5359,7 +5359,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:546
msgctxt "SC_OPCODE_CUM_IPMT"
msgid "E"
-msgstr "ن"
+msgstr "مُ"
#. 33EVk
#: sc/inc/scfuncs.hrc:547
@@ -16883,7 +16883,7 @@ msgstr ""
#: sc/inc/strings.hrc:39
msgctxt "SCSTR_FILTER_BACKGROUND_COLOR"
msgid "Background Color"
-msgstr ""
+msgstr "لون الخلفية"
#. td5Gr
#. This must match the translation of the same strings of standardfilterdialog|cond
@@ -16920,7 +16920,7 @@ msgstr "غير مسمى"
#: sc/inc/strings.hrc:46
msgctxt "SCSTR_INSERT_RTL"
msgid "Shift cells left"
-msgstr ""
+msgstr "أزِح الخلايا يساراً"
#. cZNeR
#. "%1 is replaced to column letter, such as 'Column A'"
@@ -16952,7 +16952,7 @@ msgstr "الاسم"
#: sc/inc/strings.hrc:53
msgctxt "SCSTR_APDTABLE"
msgid "Append Sheet"
-msgstr "إلحاق ورقة"
+msgstr "ألحِق ورقة"
#. sba4F
#: sc/inc/strings.hrc:54
@@ -16980,7 +16980,6 @@ msgstr "اسم الكائن"
#. 3FHKw
#: sc/inc/strings.hrc:58
-#, fuzzy
msgctxt "STR_INSERTGRAPHIC"
msgid "Insert Image"
msgstr "أدرج صورة"
@@ -17001,26 +17000,26 @@ msgstr[5] "عُثر على %1 نتيجةٍ"
#: sc/inc/strings.hrc:60
msgctxt "SCSTR_SKIPPED"
msgid "(only %1 are listed)"
-msgstr ""
+msgstr "(فقط %1 مُدرَجة)"
#. YxFpr
#. Attribute
#: sc/inc/strings.hrc:62
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
-msgstr ""
+msgstr "احمِ بِنية الورقة الممتدة"
#. SQCpD
#: sc/inc/strings.hrc:63
msgctxt "SCSTR_UNPROTECTDOC"
msgid "Unprotect Spreadsheet Structure"
-msgstr ""
+msgstr "أزِل حماية بِنية الورقة الممتدة"
#. rAV3G
#: sc/inc/strings.hrc:64
msgctxt "SCSTR_UNPROTECTTAB"
msgid "Unprotect Sheet"
-msgstr ""
+msgstr "أزِل حماية الورقة"
#. K7w3B
#: sc/inc/strings.hrc:65
@@ -17086,7 +17085,7 @@ msgstr "ال~قيمة"
#: sc/inc/strings.hrc:75
msgctxt "SCSTR_VALID_FORMULA"
msgid "~Formula"
-msgstr ""
+msgstr "الصي~غة"
#. 6YEEk
#: sc/inc/strings.hrc:76
@@ -21457,7 +21456,7 @@ msgstr "يدوي"
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:173
msgctxt "datafieldoptionsdialog|extended_tip|manual"
msgid "Sorts values alphabetically."
-msgstr ""
+msgstr "يرتّب القيم ألفبائيًا."
#. cdBMn
#: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:190
@@ -22576,7 +22575,7 @@ msgstr "أدرج كرابط"
#: sc/uiconfig/scalc/ui/dropmenu.ui:43
msgctxt "dropmenu|extended_tip|link"
msgid "Creates a link when you drag-and-drop an object from the Navigator into a document."
-msgstr " تُنشأ رابك عندما تقوم بسحب و إفلات شيء من المتصفح للمستند"
+msgstr "تُنشأ رابطًا عند سحب و إفلات كائن من الملّاح إلى مستندٍ ما."
#. HHS5F
#: sc/uiconfig/scalc/ui/dropmenu.ui:52
@@ -22630,7 +22629,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:134
msgctxt "erroralerttabpage-mobile|actionCB"
msgid "Stop"
-msgstr ""
+msgstr "توقف"
#. fcLJh
#: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135
@@ -22694,10 +22693,9 @@ msgstr ""
#. BKReu
#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:160
-#, fuzzy
msgctxt "erroralerttabpage|actionCB"
msgid "Stop"
-msgstr "إيقاف"
+msgstr "توقف"
#. oBEAz
#: sc/uiconfig/scalc/ui/erroralerttabpage.ui:161
@@ -23208,7 +23206,7 @@ msgstr "حدود علوية ومزدوجة سفلية"
#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
msgctxt "floatingborderstyle|left|tooltip_text"
msgid "Left Border"
-msgstr "حد أيسر"
+msgstr "الحد الأيسر"
#. FWwqR
#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
@@ -23585,10 +23583,9 @@ msgstr ""
#. rmQie
#: sc/uiconfig/scalc/ui/functionpanel.ui:175
-#, fuzzy
msgctxt "functionpanel|funcdesc"
msgid "label"
-msgstr "التسمية"
+msgstr "اللصيقة"
#. dmA3u
#: sc/uiconfig/scalc/ui/goalseekdlg.ui:8
@@ -23914,7 +23911,7 @@ msgstr "تذييل مخصص"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:318
msgctxt "headerfootercontent|buttonBTN_TEXT|tooltip_text"
msgid "Text Attributes"
-msgstr "سمات النص"
+msgstr "صفات النص"
#. VHkhc
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:323
@@ -23932,7 +23929,7 @@ msgstr "العنوان"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:346
msgctxt "headerfootercontent|extended_tip|buttonBTN_FILE"
msgid "Inserts a file name placeholder in the selected area."
-msgstr " أدخل اسم الملف في المكان المحدد"
+msgstr "يُدرِج عنصراً نائبًا لاسم الملف في المنطقة المحددة."
#. 9qxRg
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:361
@@ -23944,7 +23941,7 @@ msgstr "اسم ورفة"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:366
msgctxt "headerfootercontent|extended_tip|buttonBTN_TABLE"
msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document."
-msgstr "إدخال تعبئة في أعلى / أسفل الصفحة المحدد، و الذي يُستبدل باسم الورقة في أعلى و أسفل الصفحة للمستند الحالي"
+msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل باسم الورقة في ترويس\\تذييل المستند الفعلي."
#. QnDzF
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:381
@@ -23956,7 +23953,7 @@ msgstr "الصفحة"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:386
msgctxt "headerfootercontent|extended_tip|buttonBTN_PAGE"
msgid "Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document."
-msgstr "إدخال تعبئة في أعلى / أسفل الصفحة المحدد، و الذي يُستبدل رقم الصفحة، مما يسمح للتعداد المستمر للصفحات في المستند"
+msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بترقيم الصفحة. هذا يتيح استمرار ترقيم الصفحات في المستند."
#. y5CWn
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:401
@@ -23968,7 +23965,7 @@ msgstr "صفحات"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:406
msgctxt "headerfootercontent|extended_tip|buttonBTN_PAGES"
msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document."
-msgstr "دخال تعبئة في أعلى / أسفل الصفحة المحدد، و الذي يُستبدل بالعدد الإجمالي للصفحات في المستند"
+msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بالعدد الكلي للصفحات في المستند."
#. BhqdB
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:421
@@ -23980,7 +23977,7 @@ msgstr "التاريخ"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:426
msgctxt "headerfootercontent|extended_tip|buttonBTN_DATE"
msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document."
-msgstr ""
+msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بالتأريخ الحالي والذي سيُكرَّر في الترويس\\التذييل على كل صفحة قي المستند."
#. m5EGS
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:441
@@ -23992,7 +23989,7 @@ msgstr "وقت"
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:446
msgctxt "headerfootercontent|extended_tip|buttonBTN_TIME"
msgid "Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document."
-msgstr ""
+msgstr "يُدرِج عنصراً نائبًا في منطقة الترويس\\التذييل المحددة، و الذي يُستبدل بالتأريخ الحالي في الترويس\\التذييل على كل صفحة قي المستند."
#. 6FVPq
#: sc/uiconfig/scalc/ui/headerfootercontent.ui:468
@@ -25097,13 +25094,13 @@ msgstr "يُدخل ارتباطا تشعبيا عندما تقوم بسحب و
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:37
msgctxt "navigatorpanel|link"
msgid "Insert as Link"
-msgstr ""
+msgstr "أدرج كرابط"
#. mX7ED
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:43
msgctxt "navigatorpanel|extended_tip|link"
msgid "Creates a link when you drag-and-drop an object from the Navigator into a document."
-msgstr " تُنشأ رابك عندما تقوم بسحب و إفلات شيء من المتصفح للمستند"
+msgstr "تُنشأ رابطًا عند سحب و إفلات كائن من الملّاح إلى مستندٍ ما."
#. 97BBT
#: sc/uiconfig/scalc/ui/navigatorpanel.ui:52
@@ -25610,97 +25607,97 @@ msgid "~View"
msgstr "معاي~نة"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "_صورة"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "صور~ة"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "در_و"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~درو"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "كائن"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~كائن"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "و_سائط"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "و~سائط"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "طباعة"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "اس_تمارة"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ام_تداد"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "ام~تداد"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "أدوا_ت"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "أدوا~ت"
@@ -26059,139 +26056,139 @@ msgid "Im_age"
msgstr "_صورة"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_رتّب"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ل_ون"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_شبكة"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "الل_غة"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "مر_اجعة"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "ت_عليقات"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_قارن"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "معاي_نة"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "در_و"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "ح_رّر"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_رتّب"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "معاي_نة"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_جمّع"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_الأبعاد"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ال_خط"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "محا_ذاة"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "معاي_نة"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "أ_درج"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "و_سائط"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "إط_ار"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_رتّب"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_شبكة"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "معاي_نة"
@@ -26446,7 +26443,7 @@ msgstr "أشكال"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1728
msgctxt "notebookbar_groups|linksb"
msgid "Links"
-msgstr "الوصلات"
+msgstr "الروابط"
#. txpNZ
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1842
@@ -27694,7 +27691,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pastespecial.ui:412
msgctxt "pastespecial|extended_tip|objects"
msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects."
-msgstr ""
+msgstr "يُدرِج كائنات محتواة في نطاق الخلايا المحددة. هذه الكائنات يمكن أن تكون كائنات OLE أو كائنات مخططات بيانية أو كائنات رسم."
#. jrjYA
#: sc/uiconfig/scalc/ui/pastespecial.ui:423
@@ -29355,13 +29352,13 @@ msgstr "و_حدة القياس:"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:51
msgctxt "scgeneralpage|label5"
msgid "_Tab stops:"
-msgstr "_علامات الجدولة:"
+msgstr "_توقفات مفتاح التبويب:"
#. akEMb
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:70
msgctxt "extended_tip|tabmf"
msgid "Defines the tab stops distance."
-msgstr ""
+msgstr "يعرف مسافة توقفات مفتاح التبويب."
#. iwwhu
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:85
@@ -32038,16 +32035,15 @@ msgstr ""
#. maa6m
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:148
-#, fuzzy
msgctxt "subtotaloptionspage|descending"
msgid "D_escending"
-msgstr "ت_صاعدي"
+msgstr "ت_نازلي"
#. 8iUpi
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:158
msgctxt "subtotaloptionspage|extended_tip|descending"
msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options."
-msgstr ""
+msgstr "يرتّب ابتداءاً من أعلى القيم. يمكنك إعداد قواعد الترتيب من بيانات - ترتيب - خيارات."
#. EGqiq
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:169
diff --git a/source/ar/scp2/source/draw.po b/source/ar/scp2/source/draw.po
index db492b59b27..4ae7902311b 100644
--- a/source/ar/scp2/source/draw.po
+++ b/source/ar/scp2/source/draw.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-03-12 20:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/scp2sourcedraw/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1518446707.000000\n"
#. txsAG
@@ -32,7 +32,7 @@ msgctxt ""
"STR_FI_TOOLTIP_DRAW\n"
"LngText.text"
msgid "Create and edit drawings, flow charts, and logos by using Draw."
-msgstr "إنشاء الرسوم وتحريرها، ورسوم الدفق البيانية، والشعارات باستخدام درو."
+msgstr "أنشئ وحرر الرسوم، والمخططات الانسيابية والشعارات باستخدام درو."
#. w5oJE
#: module_draw.ulf
@@ -50,7 +50,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_DRAW\n"
"LngText.text"
msgid "Create and edit drawings, flow charts, and logos by using %PRODUCTNAME Draw."
-msgstr "إنشاء الرسومات وتحريرها، والمخططات الانسيابية، والشعارات باستخدام %PRODUCTNAME درو."
+msgstr "أنشئ وحرر الرسومات والمخططات الانسيابية، والشعارات باستخدام %PRODUCTNAME درو."
#. 6iuU9
#: module_draw.ulf
diff --git a/source/ar/scp2/source/writer.po b/source/ar/scp2/source/writer.po
index 508eefc6656..d59d522cbfb 100644
--- a/source/ar/scp2/source/writer.po
+++ b/source/ar/scp2/source/writer.po
@@ -4,16 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-01-28 07:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
-"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourcewriter/ar/>\n"
+"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/scp2sourcewriter/ar/>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1484665673.000000\n"
#. V3iDr
@@ -41,7 +41,7 @@ msgctxt ""
"STR_FI_TOOLTIP_WRITER\n"
"LngText.text"
msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer."
-msgstr "أنشئ وحرّر النصوص والصور في الرسائل، والتقارير، والمستندات وصفحات الوِب باستخدام رايتر."
+msgstr "أنشئ وحرّر النصوص والصور في الرسائل والتقارير والمستندات وصفحات الوِب باستخدام رايتر."
#. 3iX4u
#: module_writer.ulf
@@ -59,7 +59,7 @@ msgctxt ""
"STR_DESC_MODULE_PRG_WRT\n"
"LngText.text"
msgid "Create and edit text and images in letters, reports, documents and Web pages by using %PRODUCTNAME Writer."
-msgstr "أنشئ وحرّر النصوص والصور في الرسائل، والتقارير، والمستندات وصفحات الوِب باستخدام %PRODUCTNAME رايتر."
+msgstr "أنشئ وحرّر النصوص والصور في الرسائل والتقارير والمستندات وصفحات الوِب باستخدام %PRODUCTNAME رايتر."
#. GCUDe
#: module_writer.ulf
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 578349b3cdb..02310b87d08 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022446.000000\n"
#. WDjkB
@@ -1347,7 +1347,7 @@ msgstr "ثابت"
#: sd/inc/strings.hrc:182
msgctxt "STR_VAR"
msgid "Variable"
-msgstr "المتغير"
+msgstr "متغير"
#. eDfmL
#: sd/inc/strings.hrc:183
@@ -1663,7 +1663,7 @@ msgstr "أعدْ تسمية الصفحة"
#: sd/inc/strings.hrc:235
msgctxt "STR_TOOLTIP_RENAME"
msgid "Duplicate or empty names are not possible"
-msgstr ""
+msgstr "الأسماء المكررة أو الفارغة غير مقبولة"
#. FUm5F
#: sd/inc/strings.hrc:236
@@ -1747,7 +1747,7 @@ msgstr "<الرقم>"
#: sd/inc/strings.hrc:249
msgctxt "STR_FIELD_PLACEHOLDER_COUNT"
msgid "<count>"
-msgstr "<count>"
+msgstr "<المرات>"
#. TDgFU
#: sd/inc/strings.hrc:250
@@ -1831,7 +1831,7 @@ msgstr "شكل %1"
#: sd/inc/strings.hrc:263
msgctxt "STR_SET_BACKGROUND_PICTURE"
msgid "Set Background Image"
-msgstr ""
+msgstr "عيّن صورة الخلفية"
#. ibpDR
#: sd/inc/strings.hrc:264
@@ -2609,7 +2609,7 @@ msgstr ""
#: sd/inc/strings.hrc:400
msgctxt "SID_SD_A11Y_P_FOOTER_N_STYLE"
msgid "Footer"
-msgstr "التذييل"
+msgstr "تذييل"
#. SrrR4
#: sd/inc/strings.hrc:401
@@ -4195,109 +4195,109 @@ msgid "~Table"
msgstr "ج~دول"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "صورة"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "صور~ة"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "در_و"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~درو"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "كائن"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~كائن"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "و_سائط"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "و~سائط"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "اس_تمارة"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "ر_ئيسيّ"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "ر~ئيسيّ"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3أبع_اد"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3أبع~اد"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ام_تداد"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "ام~تداد"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "أدوا_ت"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "أدوا~ت"
@@ -5694,16 +5694,15 @@ msgstr ""
#. TcVGb
#: sd/uiconfig/simpress/ui/dockinganimation.ui:218
-#, fuzzy
msgctxt "dockinganimation|stop|tooltip_text"
msgid "Stop"
-msgstr "إي~قاف"
+msgstr "توقف"
#. cwD9G
#: sd/uiconfig/simpress/ui/dockinganimation.ui:223
msgctxt "dockinganimation|extended_tip|stop"
msgid "Stops playing the animation."
-msgstr ""
+msgstr "أوقف تشغيل الحركة."
#. BSGMb
#: sd/uiconfig/simpress/ui/dockinganimation.ui:237
@@ -6021,7 +6020,7 @@ msgstr "إبلاغات ونشرات"
#: sd/uiconfig/simpress/ui/headerfooterdialog.ui:219
msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog"
msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides."
-msgstr "يضيف أو يغيّر النص في الحالّات في أعلى وأسفل الشرائح والشرائح الرئيسة."
+msgstr "يضيف أو يغيّر النص في العناصر النائبة في أعلى وأسفل الشرائح والشرائح الرئيسة."
#. BgFsS
#: sd/uiconfig/simpress/ui/headerfootertab.ui:35
@@ -6534,7 +6533,7 @@ msgstr "الرأ_س"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:100
msgctxt "masterlayoutdlg|extended_tip|header"
msgid "Adds a header placeholder to the master slide for notes."
-msgstr ""
+msgstr "يضيف عناصر نائبة للترويس إلى الشريحة الرئيسة للملاحظات."
#. iccus
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:112
@@ -6547,7 +6546,7 @@ msgstr "ال_تاريخ والوقت"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:120
msgctxt "masterlayoutdlg|extended_tip|datetime"
msgid "Adds a date/time placeholder to the master slide."
-msgstr ""
+msgstr "يضيف عنصر تأريخ\\وقت نائبًا إلى الشريحة الرئيسة."
#. SFrZg
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:132
@@ -6559,7 +6558,7 @@ msgstr "الت_ذييل"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:140
msgctxt "masterlayoutdlg|extended_tip|footer"
msgid "Adds a footer placeholder to the master slide."
-msgstr ""
+msgstr "يضيف عنصر تذييل نائبًا إلى الشريحة الرئيسة."
#. AyWZh
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:152
@@ -6571,7 +6570,7 @@ msgstr "رقم ال_صفحة"
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:160
msgctxt "masterlayoutdlg|extended_tip|pagenumber"
msgid "Adds a slide number placeholder to the master slide."
-msgstr ""
+msgstr "يضيف عنصراً نائبًا بشكل رقم صفحة إلى الشريحة الرئيسة."
#. DEikC
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:172
@@ -6581,16 +6580,15 @@ msgstr "رقم ال_شريحة"
#. StLxB
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:191
-#, fuzzy
msgctxt "masterlayoutdlg|Placeholders"
msgid "Placeholders"
-msgstr "حافظ مكان"
+msgstr "عناصر نائبة"
#. 2iPYT
#: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:216
msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog"
msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide."
-msgstr ""
+msgstr "يضيف أو يُزيل العناصر النائبة للترويس والتذييل والتأريخ ورقم الشريحة إلى مخطط الشريحة الرئيسة."
#. 69Akr
#: sd/uiconfig/simpress/ui/mastermenu.ui:12
@@ -6626,7 +6624,7 @@ msgstr "أدرج كارتباط تشعبي"
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:20
msgctxt "navigatorpanel|STR_DRAGTYPE_LINK"
msgid "Insert as Link"
-msgstr ""
+msgstr "أدرج كرابط"
#. z7JSR
#: sd/uiconfig/simpress/ui/navigatorpanel.ui:29
@@ -7093,109 +7091,109 @@ msgid "~Table"
msgstr "ج~دول"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "صورة"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "صور~ة"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "در_و"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~درو"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "كائن"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~كائن"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "و_سائط"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "و~سائط"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "اس_تمارة"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "ر_ئيسيّ"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "ر~ئيسيّ"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3أبع_اد"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3أبع~اد"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "ام_تداد"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "ام~تداد"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "أدوا_ت"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "أدوا~ت"
@@ -7632,7 +7630,7 @@ msgstr "معاي_نة"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:49
msgctxt "notebookbar_groups|layout01"
msgid "Blank"
-msgstr "فارغة"
+msgstr "فارغ"
#. 8fsnY
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:57
@@ -7815,7 +7813,7 @@ msgstr "أشكال"
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1471
msgctxt "notebookbar_groups|linksb"
msgid "Links"
-msgstr "الوصلات"
+msgstr "الروابط"
#. txpNZ
#: sd/uiconfig/simpress/ui/notebookbar_groups.ui:1585
@@ -8003,7 +8001,7 @@ msgstr "وحدة ال_قياس:"
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:302
msgctxt "extended_tip|units"
msgid "Determines the Unit of measurement for presentations."
-msgstr ""
+msgstr "يحدد وحدة القياس للعروض التقديمية."
#. S8VMD
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:327
@@ -8015,7 +8013,7 @@ msgstr "توقفات مفتاح الت_بويب:"
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:350
msgctxt "extended_tip|metricFields"
msgid "Defines the spacing between tab stops."
-msgstr ""
+msgstr "يعرّف التباعد بين توقفات مفتاح التبويب."
#. oSmuC
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:367
@@ -8075,13 +8073,13 @@ msgstr "فقط مساحة النص قابلة للتحديد"
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:486
msgctxt "extended_tip|textselected"
msgid "Specifies whether to select a text box by clicking the text."
-msgstr ""
+msgstr "يحدد فيما لو يُحدَّد صندوق النص بالنقر على النص."
#. 9SB2g
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:501
msgctxt "optimpressgeneralpage|label2"
msgid "Text Objects"
-msgstr "كائنات النصوص"
+msgstr "كائنات نصّ"
#. CrRmE
#: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:533
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index a92a6582832..73af5862fdf 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/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: 2022-03-31 23:45+0200\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/sfx2messages/ar/>\n"
"Language: ar\n"
@@ -2529,145 +2529,145 @@ msgstr "كائن"
#: sfx2/source/devtools/DevToolsStrings.hrc:44
msgctxt "STR_METHOD_TYPE_STRUCT"
msgid "struct"
-msgstr ""
+msgstr "تركيب"
#. 7DCri
#: sfx2/source/devtools/DevToolsStrings.hrc:45
msgctxt "STR_METHOD_TYPE_ENUM"
msgid "enum"
-msgstr ""
+msgstr "عناصر مجموعة"
#. aEuJR
#: sfx2/source/devtools/DevToolsStrings.hrc:46
msgctxt "STR_METHOD_TYPE_SEQUENCE"
msgid "sequence"
-msgstr ""
+msgstr "تتابُع"
#. xXMdD
#: sfx2/source/devtools/DevToolsStrings.hrc:48
msgctxt "STR_PROPERTY_TYPE_IS_NAMED_CONTAINER"
msgid "name container"
-msgstr ""
+msgstr "حاوية اسم"
#. QLZbz
#: sfx2/source/devtools/DevToolsStrings.hrc:49
msgctxt "STR_PROPERTY_TYPE_IS_INDEX_CONTAINER"
msgid "index container"
-msgstr ""
+msgstr "حاوية فهرس"
#. LLsJf
#: sfx2/source/devtools/DevToolsStrings.hrc:50
msgctxt "STR_PROPERTY_TYPE_IS_ENUMERATION"
msgid "enumeration"
-msgstr ""
+msgstr "عناصر مجموعة"
#. aNuA9
#: sfx2/source/devtools/DevToolsStrings.hrc:52
msgctxt "STR_PARMETER_MODE_IN"
msgid "[in]"
-msgstr ""
+msgstr "[داخل]"
#. W3AEx
#: sfx2/source/devtools/DevToolsStrings.hrc:53
msgctxt "STR_PARMETER_MODE_OUT"
msgid "[out]"
-msgstr ""
+msgstr "[خارج]"
#. ENF6w
#: sfx2/source/devtools/DevToolsStrings.hrc:54
msgctxt "STR_PARMETER_MODE_IN_AND_OUT"
msgid "[in&out]"
-msgstr ""
+msgstr "[داخل&خارج]"
#. rw6AB
#: sfx2/source/devtools/DevToolsStrings.hrc:56
msgctxt "STR_PROPERTY_ATTRIBUTE_IS_ATTRIBUTE"
msgid "attribute"
-msgstr ""
+msgstr "صفة"
#. BwCGg
#: sfx2/source/devtools/DevToolsStrings.hrc:57
msgctxt "STR_PROPERTY_ATTRIBUTE_GET"
msgid "get"
-msgstr ""
+msgstr "جِد"
#. MissY
#: sfx2/source/devtools/DevToolsStrings.hrc:58
msgctxt "STR_PROPERTY_ATTRIBUTE_SET"
msgid "set"
-msgstr ""
+msgstr "مجموعة"
#. Nhmiv
#: sfx2/source/devtools/DevToolsStrings.hrc:59
msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEVOID"
msgid "may be void"
-msgstr ""
+msgstr "يمكن أن يكون فارغًا"
#. zECkD
#: sfx2/source/devtools/DevToolsStrings.hrc:60
msgctxt "STR_PROPERTY_ATTRIBUTE_READONLY"
msgid "read-only"
-msgstr ""
+msgstr "للقراءة-فقط"
#. BtQDx
#: sfx2/source/devtools/DevToolsStrings.hrc:61
msgctxt "STR_PROPERTY_ATTRIBUTE_WRITEONLY"
msgid "write-only"
-msgstr ""
+msgstr "للكتابة-فقط"
#. dBQEu
#: sfx2/source/devtools/DevToolsStrings.hrc:62
msgctxt "STR_PROPERTY_ATTRIBUTE_REMOVABLE"
msgid "removeable"
-msgstr ""
+msgstr "قابل_للإزالة"
#. jRo8t
#: sfx2/source/devtools/DevToolsStrings.hrc:63
msgctxt "STR_PROPERTY_ATTRIBUTE_BOUND"
msgid "bound"
-msgstr ""
+msgstr "محدود"
#. rBqTG
#: sfx2/source/devtools/DevToolsStrings.hrc:64
msgctxt "STR_PROPERTY_ATTRIBUTE_CONSTRAINED"
msgid "constrained"
-msgstr ""
+msgstr "مقيَّد"
#. XLnBt
#: sfx2/source/devtools/DevToolsStrings.hrc:65
msgctxt "STR_PROPERTY_ATTRIBUTE_TRANSIENT"
msgid "transient"
-msgstr ""
+msgstr "مؤقت"
#. BK7Zk
#: sfx2/source/devtools/DevToolsStrings.hrc:66
msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEAMBIGUOUS"
msgid "may be ambiguous"
-msgstr ""
+msgstr "يمكن أن يكون غامضًا"
#. BDEqD
#: sfx2/source/devtools/DevToolsStrings.hrc:67
msgctxt "STR_PROPERTY_ATTRIBUTE_MAYBEDEFAULT"
msgid "may be default"
-msgstr ""
+msgstr "يمكن أن يكون مبدئيًا"
#. TGQhd
#: sfx2/source/devtools/DevToolsStrings.hrc:69
msgctxt "STR_PROPERTY_VALUE_SEQUENCE"
msgid "<Sequence [%1]>"
-msgstr ""
+msgstr "<تتابُع [%1]>"
#. KZ5M4
#: sfx2/source/devtools/DevToolsStrings.hrc:70
msgctxt "STR_PROPERTY_VALUE_OBJECT"
msgid "<Object@%1>"
-msgstr ""
+msgstr "<كائن@%1>"
#. xKaJy
#: sfx2/source/devtools/DevToolsStrings.hrc:71
msgctxt "STR_PROPERTY_VALUE_STRUCT"
msgid "<Struct>"
-msgstr ""
+msgstr "<تركيب>"
#. AxfFu
#: sfx2/uiconfig/ui/addtargetdialog.ui:8
@@ -2703,13 +2703,13 @@ msgstr "النص"
#: sfx2/uiconfig/ui/addtargetdialog.ui:170
msgctxt "addtargetdialog|type"
msgid "Regular expression"
-msgstr ""
+msgstr "تعبير نظامي"
#. wgzA4
#: sfx2/uiconfig/ui/addtargetdialog.ui:171
msgctxt "addtargetdialog|type"
msgid "Predefined"
-msgstr ""
+msgstr "معرّف مسبقا"
#. nGjTR
#: sfx2/uiconfig/ui/addtargetdialog.ui:186
@@ -2980,7 +2980,7 @@ msgstr "لا"
#: sfx2/uiconfig/ui/commandpopup.ui:36
msgctxt "commandpopup|entry"
msgid "Search command"
-msgstr ""
+msgstr "أمر البحث"
#. w2G7M
#: sfx2/uiconfig/ui/custominfopage.ui:15
@@ -3058,19 +3058,19 @@ msgstr "الت_عليقات:"
#: sfx2/uiconfig/ui/descriptioninfopage.ui:79
msgctxt "descriptioninfopage|extended_tip|title"
msgid "Enter a title for the document."
-msgstr ""
+msgstr "أدخِل عنوانًا للمستند."
#. rvZHi
#: sfx2/uiconfig/ui/descriptioninfopage.ui:96
msgctxt "descriptioninfopage|extended_tip|subject"
msgid "Enter a subject for the document. You can use a subject to group documents with similar contents."
-msgstr ""
+msgstr "أدخِل موضوعًا للمستند. يمكنك استخدام موضوع لتجميع المستندات ذات الموضوع المتشابه."
#. FoxGh
#: sfx2/uiconfig/ui/descriptioninfopage.ui:113
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 ""
+msgstr "أدخِل الكلمات التي تريد استخدامها لأرشفة محتوى المستند. يجب أن تفصل الكلمات المفتاحية بفوارز. يمكن أن تحتوي الكلمة المفتاحية على محارف فراغ أبيض أو فوارز منقوطة."
#. bo2q7
#: sfx2/uiconfig/ui/descriptioninfopage.ui:137
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index a791b7ebba3..7a5b383cb88 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/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: 2021-09-10 23:12+0200\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/starmathmessages/ar/>\n"
"Language: ar\n"
@@ -1827,13 +1827,13 @@ msgstr "مرتفع أعلى"
#: starmath/inc/strings.hrc:252
msgctxt "RID_SBLANK_HELP"
msgid "Small Gap"
-msgstr "تباعد صغير"
+msgstr "فجوة صغيرة"
#. 3GBzt
#: starmath/inc/strings.hrc:253
msgctxt "RID_BLANK_HELP"
msgid "Blank"
-msgstr "فراغ"
+msgstr "فارغ"
#. Tv29B
#: starmath/inc/strings.hrc:254
@@ -2866,7 +2866,7 @@ msgstr "_ثخين"
#: starmath/uiconfig/smath/ui/fontdialog.ui:211
msgctxt "fontdialog|extended_tip|bold"
msgid "Check this box to assign the bold attribute to the font."
-msgstr "أشّر هذا المربع لتُسند خاصية الثخين إلى الخط."
+msgstr "أشّر هذا المربع لتُسند خاصية ⟪ثخين⟫ إلى الخط."
#. mBw2w
#: starmath/uiconfig/smath/ui/fontdialog.ui:222
@@ -2878,7 +2878,7 @@ msgstr "_مائل"
#: starmath/uiconfig/smath/ui/fontdialog.ui:230
msgctxt "fontdialog|extended_tip|italic"
msgid "Check this box to assign the italic attribute to the font."
-msgstr ""
+msgstr "أشّر هذا المربع لتُسند خاصية ⟪مائل⟫ إلى الخط."
#. uvvT5
#: starmath/uiconfig/smath/ui/fontdialog.ui:245
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index f5c070adf70..67def798181 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/svtools/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: 2021-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/svtoolsmessages/ar/>\n"
"Language: ar\n"
@@ -5328,7 +5328,7 @@ msgstr "احفظ الشفافية"
#: svtools/uiconfig/ui/graphicexport.ui:598
msgctxt "graphicexport|extended_tip|savetransparencycb"
msgid "Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture."
-msgstr ""
+msgstr "يحدد فيما لو تُحفَظ خلفية الصورة شفافة. الكائنات فقط ستكون مرئية في صور GIF. استخدم مستبدل الألوان لتضبط اللون الشفاف في الصورة."
#. ZPmXf
#: svtools/uiconfig/ui/graphicexport.ui:607
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index c1df0194d11..16149c6c2df 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/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: 2021-11-25 19:34+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/svxmessages/ar/>\n"
"Language: ar\n"
@@ -501,10 +501,9 @@ msgstr "صور مع شفافية"
#. 3FkK6
#: include/svx/strings.hrc:105
-#, fuzzy
msgctxt "STR_ObjNameSingulGRAFBMPLNK"
msgid "Linked Image"
-msgstr "رابط صورة"
+msgstr "صورة مربوطة"
#. ydd77
#: include/svx/strings.hrc:106
@@ -1538,7 +1537,7 @@ msgstr "ملائمة الحجم (جميع الصفوف على حدة) "
#: include/svx/strings.hrc:277
msgctxt "STR_ItemValFITTOSIZERESIZEAT"
msgid "Use hard attributes"
-msgstr "استخدام صفات يدوية"
+msgstr "استخدام صفات قوية"
#. 73uL2
#: include/svx/strings.hrc:278
@@ -2216,7 +2215,6 @@ msgstr "ملاءمة العرض تلقائيًا"
#. BGR8n
#: include/svx/strings.hrc:392
-#, fuzzy
msgctxt "SIP_SA_TEXT_HORZADJUST"
msgid "Horizontal text anchor"
msgstr "مربط النص الأفقي"
@@ -4492,13 +4490,13 @@ msgstr ""
#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "منتصف الليل"
#. 3DFV9
#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
-msgstr ""
+msgstr "محيط عميق"
#. beAAG
#: include/svx/strings.hrc:791
@@ -4510,25 +4508,25 @@ msgstr ""
#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "عشب أخضر"
#. wiGu5
#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "ضوء النيون"
#. EGqXT
#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
-msgstr ""
+msgstr "شروق الشمس"
#. WCs3M
#: include/svx/strings.hrc:795
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "متواجد"
#. 99B5Z
#: include/svx/strings.hrc:796
@@ -4631,7 +4629,7 @@ msgstr ""
#: include/svx/strings.hrc:813
msgctxt "RID_SVXSTR_HATCH15"
msgid "Hatching"
-msgstr ""
+msgstr "نقش"
#. FJati
#: include/svx/strings.hrc:814
@@ -10216,7 +10214,7 @@ msgstr "فرشاة"
#: include/svx/svxitems.hrc:35
msgctxt "RID_ATTR_NAMES"
msgid "Tab stops"
-msgstr "علامات الجدولة"
+msgstr "توقفات مفتاح التبويب"
#. hdbAu
#: include/svx/svxitems.hrc:36
@@ -10390,7 +10388,7 @@ msgstr "إزاحة"
#: include/svx/svxitems.hrc:64
msgctxt "RID_ATTR_NAMES"
msgid "Spacing"
-msgstr "تباعد"
+msgstr "التباعد"
#. 2Zwau
#: include/svx/svxitems.hrc:65
@@ -11333,43 +11331,43 @@ msgstr "بِلا"
#: svx/inc/spacing.hrc:25
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Small (1/16″)"
-msgstr ""
+msgstr "بالغ الصغر (1\\16بوصة)"
#. DB9aM
#: svx/inc/spacing.hrc:26
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small (1/8″)"
-msgstr ""
+msgstr "صغير (1\\8بوصة)"
#. 5PhsT
#: svx/inc/spacing.hrc:27
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Small Medium (1/4″)"
-msgstr ""
+msgstr "صغير متوسط (1\\4بوصة)"
#. 3LSyH
#: svx/inc/spacing.hrc:28
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium (3/8″)"
-msgstr ""
+msgstr "متوسط (3\\8بوصة)"
#. NzRZJ
#: svx/inc/spacing.hrc:29
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Medium Large (1/2″)"
-msgstr ""
+msgstr "متوسط كبير (1\\2بوصة)"
#. JBwJZ
#: svx/inc/spacing.hrc:30
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Large (3/4″)"
-msgstr ""
+msgstr "كبير (3\\4بوصة)"
#. AwWUq
#: svx/inc/spacing.hrc:31
msgctxt "RID_SVXSTRARY_SPACING_INCH"
msgid "Extra Large (1″)"
-msgstr ""
+msgstr "بالغ الكبر (1بوصة)"
#. SGERK
#: svx/inc/spacing.hrc:38
@@ -11396,7 +11394,7 @@ msgstr "صغير (%1)"
#: svx/inc/spacing.hrc:44
msgctxt "RID_SVXSTRARY_SPACING_CM"
msgid "Small Medium (%1)"
-msgstr ""
+msgstr "متوسط صغير (%1)"
#. zN8GJ
#. Medium (0.95 cm)
@@ -11436,7 +11434,7 @@ msgstr "بِلا"
#: svx/inc/spacing.hrc:60
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16″)"
-msgstr ""
+msgstr "بالغ الصغر (1\\16بوصة)"
#. BUnaC
#: svx/inc/spacing.hrc:61
@@ -11448,31 +11446,31 @@ msgstr ""
#: svx/inc/spacing.hrc:62
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4″)"
-msgstr ""
+msgstr "صغير متوسط (1\\4بوصة)"
#. tDBA3
#: svx/inc/spacing.hrc:63
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8″)"
-msgstr ""
+msgstr "متوسط (3\\8بوصة)"
#. fDRCW
#: svx/inc/spacing.hrc:64
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2″)"
-msgstr ""
+msgstr "متوسط كبير (1\\2بوصة)"
#. Ls2Jq
#: svx/inc/spacing.hrc:65
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4″)"
-msgstr ""
+msgstr "كبير (3\\4بوصة)"
#. DLXcU
#: svx/inc/spacing.hrc:66
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1″)"
-msgstr ""
+msgstr "بالغ الكبر (1بوصة)"
#. phGfi
#: svx/inc/spacing.hrc:73
@@ -11499,7 +11497,7 @@ msgstr "صغير (%1)"
#: svx/inc/spacing.hrc:79
msgctxt "RID_SVXSTRARY_MARGINS_CM"
msgid "Small Medium (%1)"
-msgstr "متوسط صعير (%1)"
+msgstr "متوسط صغير (%1)"
#. Z7Wot
#. Medium (0.95 cm)
@@ -13922,7 +13920,7 @@ msgstr "وقّع الفقرة"
#: svx/uiconfig/ui/classificationdialog.ui:345
msgctxt "classificationdialog|extended_tip|signButton"
msgid "Opens the Select Certificate dialog to select a digital certificate for paragraph signature."
-msgstr ""
+msgstr "يفتح حوار تحديد الشهادة لتحديد شهادة رقمية لتوقيع الفقرة."
#. xjChP
#: svx/uiconfig/ui/classificationdialog.ui:382
@@ -16033,7 +16031,7 @@ msgstr "استعادة مستند %PRODUCTNAME %PRODUCTVERSION"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:78
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "بسبب خطأ، انهار %PRODUCTNAME. ستُحفَظ الآن كل الحقول التي كنت تعمل عليها. في المرة القادمة التي سيُشغَّل بها %PRODUCTNAME، ستُستعاد ملفاتك تلقائيًا."
#. JEJdG
#: svx/uiconfig/ui/docrecoverysavedialog.ui:101
@@ -16522,7 +16520,7 @@ msgstr ""
#: svx/uiconfig/ui/findreplacedialog.ui:723
msgctxt "findreplacedialog|regexp"
msgid "Re_gular expressions"
-msgstr "ت_عابير نمطية"
+msgstr "تعابير ن_ظامية"
#. cX5ta
#: svx/uiconfig/ui/findreplacedialog.ui:744
@@ -16788,17 +16786,15 @@ msgstr "حدّد تغيّر شفافية التدرّج."
#. hrDvA
#: svx/uiconfig/ui/floatingareastyle.ui:278
-#, fuzzy
msgctxt "floatingareastyle|label2"
msgid "Center _X:"
-msgstr "وسط _س"
+msgstr "مركز _س:"
#. 2edDC
#: svx/uiconfig/ui/floatingareastyle.ui:292
-#, fuzzy
msgctxt "floatingareastyle|label3"
msgid "Center _Y:"
-msgstr "وسط _Yص"
+msgstr "مركز _ص:"
#. C7FRC
#: svx/uiconfig/ui/floatingareastyle.ui:305
@@ -17063,7 +17059,7 @@ msgstr ""
#: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:20
msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_VERY_TIGHT"
msgid "_Very Tight"
-msgstr ""
+msgstr "مت_قارب جداً"
#. DQsFf
#: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:35
@@ -17099,7 +17095,7 @@ msgstr "م_خصص..."
#: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:110
msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_KERN_PAIRS"
msgid "_Kern Character Pairs"
-msgstr ""
+msgstr "_قنّن أزواج المحارف"
#. 8SKCU
#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
@@ -17604,7 +17600,7 @@ msgstr "احذف النقاط"
#: svx/uiconfig/ui/imapdialog.ui:346
msgctxt "imapdialog|extended_tip|TBI_POLYDELETE"
msgid "Deletes the selected anchor point."
-msgstr ""
+msgstr "يحذف نقطة المربط المحددة."
#. TcAdh
#: svx/uiconfig/ui/imapdialog.ui:359
@@ -18232,7 +18228,7 @@ msgstr "١٫١٥ سطر"
#: svx/uiconfig/ui/paralinespacingcontrol.ui:125
msgctxt "paralinespacingcontrol|line_dist"
msgid "1.5 Lines"
-msgstr "سطر ونصف"
+msgstr "1.5 سطر"
#. 5jgLT
#: svx/uiconfig/ui/paralinespacingcontrol.ui:126
@@ -18504,10 +18500,9 @@ msgstr "هذا الكائن الرسومي مربوط إلى المستند."
#. R9bBj
#: svx/uiconfig/ui/queryunlinkgraphicsdialog.ui:15
-#, fuzzy
msgctxt "queryunlinkgraphicsdialog|QueryUnlinkGraphicsDialog"
msgid "Do you want to unlink the graphics in order to edit it?"
-msgstr "أتريد فصل ربط الصورة لتتمكن من تحريرها؟"
+msgstr "أتريد فصل ربط الرسوميات من أجل تحريرها؟"
#. GtoFq
#: svx/uiconfig/ui/redlinecontrol.ui:26
@@ -19187,7 +19182,7 @@ msgstr ""
#: svx/uiconfig/ui/sidebararea.ui:224
msgctxt "sidebararea|fillattrhb-atkobject"
msgid "Hatching/Bitmap"
-msgstr ""
+msgstr "نقش\\صورة نقطية"
#. 6ziwq
#: svx/uiconfig/ui/sidebararea.ui:239
@@ -19197,22 +19192,21 @@ msgstr ""
#. UE2EH
#: svx/uiconfig/ui/sidebararea.ui:264
-#, fuzzy
msgctxt "sidebararea|gradangle|tooltip_text"
msgid "Select the gradient angle."
-msgstr "اختر نمط التدرج."
+msgstr "حدد زاوية التدرج."
#. fuzvt
#: svx/uiconfig/ui/sidebararea.ui:270
msgctxt "sidebararea|gradangle-atkobject"
msgid "Gradient angle"
-msgstr ""
+msgstr "زاوية التدرج"
#. FjG3M
#: svx/uiconfig/ui/sidebararea.ui:284
msgctxt "sidebararea|fillgrad2|tooltip_text"
msgid "Fill gradient to."
-msgstr ""
+msgstr "املأ التدرج إلى."
#. VnsM7
#: svx/uiconfig/ui/sidebararea.ui:302
@@ -19282,10 +19276,9 @@ msgstr "مربع"
#. J46j4
#: svx/uiconfig/ui/sidebararea.ui:329
-#, fuzzy
msgctxt "sidebararea|transtype-atkobject"
msgid "Transparency Type"
-msgstr "وضع الشفافية"
+msgstr "نوع الشفافية"
#. 8hBpk
#: svx/uiconfig/ui/sidebararea.ui:348
@@ -19297,7 +19290,7 @@ msgstr "حدّد تغيّر شفافية التدرّج."
#: svx/uiconfig/ui/sidebareffect.ui:57
msgctxt "sidebarglow|radius"
msgid "Radius:"
-msgstr ""
+msgstr "نصف القطر:"
#. bEFFC
#: svx/uiconfig/ui/sidebareffect.ui:84
@@ -19315,37 +19308,37 @@ msgstr "الشفافية:"
#: svx/uiconfig/ui/sidebareffect.ui:145
msgctxt "sidebarglow|glow"
msgid "Glow"
-msgstr ""
+msgstr "التوهج"
#. SABEF
#: svx/uiconfig/ui/sidebareffect.ui:177
msgctxt "sidebarsoftedge|radius"
msgid "Radius:"
-msgstr ""
+msgstr "نصف القطر:"
#. KRr2U
#: svx/uiconfig/ui/sidebareffect.ui:206
msgctxt "sidebarsoftedge|softedge"
msgid "Soft Edge"
-msgstr ""
+msgstr "حافة لينة"
#. BEqw7
#: svx/uiconfig/ui/sidebarempty.ui:26
msgctxt "sidebarempty|RID_SIDEBAR_EMPTY_PANEL_TEXT"
msgid "Properties for the task that you are performing are not available for the current selection."
-msgstr ""
+msgstr "الخصائص للمهمة التي تؤديها غير متوفرة للتحديد الحالي."
#. ED99f
#: svx/uiconfig/ui/sidebargallery.ui:108
msgctxt "sidebargallery|RID_SVXSTR_GALLERYPROPS_GALTHEME"
msgid "Gallery Theme"
-msgstr ""
+msgstr "سمة المعرض"
#. wqE5z
#: svx/uiconfig/ui/sidebargallery.ui:304
msgctxt "sidebargallery|RID_SVXSTR_GALLERY_ICONVIEW"
msgid "Icon View"
-msgstr ""
+msgstr "معاينة أيقونات"
#. TZSrQ
#: svx/uiconfig/ui/sidebargallery.ui:309 svx/uiconfig/ui/sidebargallery.ui:328
@@ -19429,7 +19422,7 @@ msgstr "ال_شفافية:"
#: svx/uiconfig/ui/sidebargraphic.ui:162
msgctxt "sidebargraphic|setgraphtransparency|tooltip_text"
msgid "Specify the percentage of transparency; 0% is fully opaque and 100% is fully transparent."
-msgstr ""
+msgstr "حدد النسبة المئوية للشفافية؛ 0% هي للعتمة التامة و 100% للشفافية التامة."
#. GAw6e
#: svx/uiconfig/ui/sidebargraphic.ui:168
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 4db6c6f1eb8..68fc6c1a526 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1544511256.000000\n"
#. v3oJv
@@ -650,7 +650,7 @@ msgstr "العلامات"
#: sw/inc/fldref.hrc:28
msgctxt "fldrefpage|liststore1"
msgid "Footnotes"
-msgstr "الحواشي"
+msgstr "الملاحظات الذيلية"
#. DyZeU
#: sw/inc/fldref.hrc:29
@@ -746,7 +746,7 @@ msgstr "مسافة الحد السفلي"
#: sw/inc/inspectorproperties.hrc:44
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Break Type"
-msgstr ""
+msgstr "نوع الفاصل"
#. kFMbA
#: sw/inc/inspectorproperties.hrc:45
@@ -764,7 +764,7 @@ msgstr "خلية"
#: sw/inc/inspectorproperties.hrc:47
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Auto Escapement"
-msgstr ""
+msgstr "المجاوزة التلقائية للمحرف"
#. sGjrW
#: sw/inc/inspectorproperties.hrc:48
@@ -782,73 +782,73 @@ msgstr "اسم الطراز التلقائي للمحارف"
#: sw/inc/inspectorproperties.hrc:50
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Back Color"
-msgstr ""
+msgstr "لون خلفية المحرف"
#. op3aQ
#: sw/inc/inspectorproperties.hrc:51
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Back Transparent"
-msgstr ""
+msgstr "خلفية المحرف شفافة"
#. a6CtM
#: sw/inc/inspectorproperties.hrc:52
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Border Distance"
-msgstr ""
+msgstr "مسافة حدود المحرف"
#. CGu8x
#: sw/inc/inspectorproperties.hrc:53
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Bottom Border"
-msgstr ""
+msgstr "الحد الأسفل للمحرف"
#. s75ej
#: sw/inc/inspectorproperties.hrc:54
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Bottom Border Distance"
-msgstr ""
+msgstr "مسافة الحد الأسفل للمحرف"
#. pZwAM
#: sw/inc/inspectorproperties.hrc:55
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Case Map"
-msgstr ""
+msgstr "خارطة حالة المحرف"
#. AxVck
#: sw/inc/inspectorproperties.hrc:56
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Color"
-msgstr ""
+msgstr "لون المحرف"
#. FBN8b
#: sw/inc/inspectorproperties.hrc:57
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Combine is On"
-msgstr ""
+msgstr "تركيب المحرف نشط"
#. 5kpZt
#: sw/inc/inspectorproperties.hrc:58
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Combine Prefix"
-msgstr ""
+msgstr "بادئة تركيب المحرف"
#. nq7ZN
#: sw/inc/inspectorproperties.hrc:59
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Combine Suffix"
-msgstr ""
+msgstr "لاحقة تركيب المحرف"
#. EYEqN
#: sw/inc/inspectorproperties.hrc:60
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Contoured"
-msgstr ""
+msgstr "المحرف ذو مناسيب"
#. ZBAH9
#: sw/inc/inspectorproperties.hrc:61
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Crossed Out"
-msgstr ""
+msgstr "المحرف مشطوب"
#. gABwu
#: sw/inc/inspectorproperties.hrc:62
@@ -872,13 +872,13 @@ msgstr "ارتفاع اختلاف المحرف مركّب"
#: sw/inc/inspectorproperties.hrc:65
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Emphasis"
-msgstr "تشديد المحارف"
+msgstr "تشديد المحرف"
#. bXxkA
#: sw/inc/inspectorproperties.hrc:66
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Escapement"
-msgstr "مجاوزة المحارف"
+msgstr "مجاوزة المحرف"
#. QikGB
#: sw/inc/inspectorproperties.hrc:67
@@ -1016,7 +1016,7 @@ msgstr "تمييز المحارف"
#: sw/inc/inspectorproperties.hrc:89
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Interoperability Grab Bag"
-msgstr ""
+msgstr "حقيبة توافق المحارف"
#. EzwnG
#: sw/inc/inspectorproperties.hrc:90
@@ -1082,37 +1082,37 @@ msgstr "محرف الخط العلوي له اللون"
#: sw/inc/inspectorproperties.hrc:100
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture"
-msgstr ""
+msgstr "جِلسة المحرف"
#. yTFRk
#: sw/inc/inspectorproperties.hrc:101
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture Asian"
-msgstr ""
+msgstr "جِلسة المحرف آسيوي"
#. 8WG25
#: sw/inc/inspectorproperties.hrc:102
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Posture Complex"
-msgstr ""
+msgstr "جِلسة المحرف مركّب"
#. yuK3c
#: sw/inc/inspectorproperties.hrc:103
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height"
-msgstr ""
+msgstr "ارتفاع خاصية المحرف"
#. j4w85
#: sw/inc/inspectorproperties.hrc:104
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height Asian"
-msgstr ""
+msgstr "ارتفاع خاصية المحرف آسيوي"
#. C5Ds3
#: sw/inc/inspectorproperties.hrc:105
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Property Height Complex"
-msgstr ""
+msgstr "ارتفاع خاصية المحرف مركّب"
#. ABhRa
#: sw/inc/inspectorproperties.hrc:106
@@ -1124,169 +1124,169 @@ msgstr "أخدود المحرف"
#: sw/inc/inspectorproperties.hrc:107
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Right Border"
-msgstr ""
+msgstr "الحد الأيمن للمحرف"
#. jrnRf
#: sw/inc/inspectorproperties.hrc:108
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Right Border Distance"
-msgstr ""
+msgstr "مسافة الحد الأيمن للمحرف"
#. UEpDe
#: sw/inc/inspectorproperties.hrc:109
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Rotation"
-msgstr ""
+msgstr "تدوير المحرف"
#. jwSQF
#: sw/inc/inspectorproperties.hrc:110
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Rotation is Fit To Line"
-msgstr ""
+msgstr "تدوير المحرف متسق مع السطر"
#. cYG7T
#: sw/inc/inspectorproperties.hrc:111
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Scale Width"
-msgstr ""
+msgstr "عُرض قياس المحرف"
#. WFuSd
#: sw/inc/inspectorproperties.hrc:112
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shading Value"
-msgstr ""
+msgstr "قيمة تظليل المحرف"
#. 9sRCG
#: sw/inc/inspectorproperties.hrc:113
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shadow Format"
-msgstr ""
+msgstr "نَسَق ظلّ المحرف"
#. tKjaF
#: sw/inc/inspectorproperties.hrc:114
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Shadowed"
-msgstr ""
+msgstr "المحرف ذو ظلّ"
#. H9st9
#: sw/inc/inspectorproperties.hrc:115
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Strikeout"
-msgstr ""
+msgstr "المحرف يتوسطه خط"
#. zrLCN
#: sw/inc/inspectorproperties.hrc:116
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Style Name"
-msgstr ""
+msgstr "اسم طراز المحرف"
#. PN2pE
#: sw/inc/inspectorproperties.hrc:117
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Style Names"
-msgstr ""
+msgstr "أسماء طُرُز المحارف"
#. rq2fu
#: sw/inc/inspectorproperties.hrc:118
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Top Border"
-msgstr ""
+msgstr "الحد الأعلى للمحرف"
#. SNLiC
#: sw/inc/inspectorproperties.hrc:119
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Top Border Distance"
-msgstr ""
+msgstr "مسافة الحد الأعلى للمحرف"
#. ZoAde
#: sw/inc/inspectorproperties.hrc:120
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Transparence"
-msgstr ""
+msgstr "شفافية المحرف"
#. CAJEC
#: sw/inc/inspectorproperties.hrc:121
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline"
-msgstr ""
+msgstr "الخط السفلي للمحرف"
#. yGPLz
#: sw/inc/inspectorproperties.hrc:122
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline Color"
-msgstr ""
+msgstr "لون الخط السفلي للمحرف"
#. HmfPF
#: sw/inc/inspectorproperties.hrc:123
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Underline Has Color"
-msgstr ""
+msgstr "لون للخط السفلي للمحرف"
#. QRCs4
#: sw/inc/inspectorproperties.hrc:124
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight"
-msgstr ""
+msgstr "وزن المحرف"
#. EwWk2
#: sw/inc/inspectorproperties.hrc:125
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Asian"
-msgstr ""
+msgstr "وزن المحرف آسيوي"
#. nxNQB
#: sw/inc/inspectorproperties.hrc:126
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Weight Complex"
-msgstr ""
+msgstr "وزن المحرف مركّب"
#. D4T2M
#: sw/inc/inspectorproperties.hrc:127
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Char Word Mode"
-msgstr ""
+msgstr "طور كلمة المحرف"
#. z8NA6
#: sw/inc/inspectorproperties.hrc:128
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Continuing Previous Tree"
-msgstr ""
+msgstr "يواصل الشجرة السابقة"
#. 4BCE7
#: sw/inc/inspectorproperties.hrc:129
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Display Name"
-msgstr ""
+msgstr "اسم العرض"
#. JXrsY
#: sw/inc/inspectorproperties.hrc:130
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index"
-msgstr ""
+msgstr "فهرس المستند"
#. A3nea
#: sw/inc/inspectorproperties.hrc:131
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Document Index Mark"
-msgstr ""
+msgstr "علامة فهرس المستند"
#. XgFaZ
#: sw/inc/inspectorproperties.hrc:132
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Char Style Name"
-msgstr ""
+msgstr "اسم طراز محارف البدء الكبيرة"
#. BtV5G
#: sw/inc/inspectorproperties.hrc:133
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Format"
-msgstr ""
+msgstr "نَسَق محارف البدء الكبيرة"
#. SnMZX
#: sw/inc/inspectorproperties.hrc:134
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Drop Cap Whole Word"
-msgstr ""
+msgstr "كلمة كاملة تبدأ كبيرة"
#. LXhoV
#: sw/inc/inspectorproperties.hrc:135
@@ -1298,163 +1298,163 @@ msgstr "حاشية ختامية"
#: sw/inc/inspectorproperties.hrc:136
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Background"
-msgstr ""
+msgstr "خلفية ملء"
#. TvMCc
#: sw/inc/inspectorproperties.hrc:137
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap"
-msgstr ""
+msgstr "صورة ملء نقطية"
#. GWWrC
#: sw/inc/inspectorproperties.hrc:138
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Logical Size"
-msgstr ""
+msgstr "الحجم المنطقي لصورة الملء النقطية"
#. r2Aif
#: sw/inc/inspectorproperties.hrc:139
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Mode"
-msgstr ""
+msgstr "طور صورة الملء النقطية"
#. FZtcW
#: sw/inc/inspectorproperties.hrc:140
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Name"
-msgstr ""
+msgstr "اسم صورة الملء النقطية"
#. C4jU5
#: sw/inc/inspectorproperties.hrc:141
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Offset X"
-msgstr ""
+msgstr "إزاحة س لصورة الملء النقطية"
#. w2UVD
#: sw/inc/inspectorproperties.hrc:142
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Offset Y"
-msgstr ""
+msgstr "إزاحة ص لصورة الملء النقطية"
#. ZTKw7
#: sw/inc/inspectorproperties.hrc:143
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Position Offset X"
-msgstr ""
+msgstr "موضع إزاحة س لصورة الملء النقطية"
#. BVBvB
#: sw/inc/inspectorproperties.hrc:144
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Position Offset Y"
-msgstr ""
+msgstr "موضع إزاحة ص لصورة الملء النقطية"
#. CzVxv
#: sw/inc/inspectorproperties.hrc:145
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Rectangle Point"
-msgstr ""
+msgstr "نقطة مستطيل صورة الملء النقطية"
#. GrmLm
#: sw/inc/inspectorproperties.hrc:146
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size X"
-msgstr ""
+msgstr "حجم س لصورة الملء النقطية"
#. stSMW
#: sw/inc/inspectorproperties.hrc:147
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Size Y"
-msgstr ""
+msgstr "حجم ص لصورة الملء النقطية"
#. zJV5G
#: sw/inc/inspectorproperties.hrc:148
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Stretch"
-msgstr ""
+msgstr "توسيع صورة الملء النقطية"
#. HMq2D
#: sw/inc/inspectorproperties.hrc:149
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap Tile"
-msgstr ""
+msgstr "ترصيف صورة الملء النقطية"
#. 6iSjs
#: sw/inc/inspectorproperties.hrc:150
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Bitmap URL"
-msgstr ""
+msgstr "رابط صورة الملء النقطية"
#. Fd28G
#: sw/inc/inspectorproperties.hrc:151
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color"
-msgstr ""
+msgstr "لون التعبئة"
#. neFA2
#: sw/inc/inspectorproperties.hrc:152
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color2"
-msgstr ""
+msgstr "لون التعبئة2"
#. 72i4Q
#: sw/inc/inspectorproperties.hrc:153
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient"
-msgstr ""
+msgstr "تدرج التعبئة"
#. uWcQT
#: sw/inc/inspectorproperties.hrc:154
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient Name"
-msgstr ""
+msgstr "اسم تدرج التعبئة"
#. uazQm
#: sw/inc/inspectorproperties.hrc:155
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Gradient Step Count"
-msgstr ""
+msgstr "عدد خطوات تدرج التعبئة"
#. bTjNu
#: sw/inc/inspectorproperties.hrc:156
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Hatch"
-msgstr ""
+msgstr "نسيج التعبئة"
#. YCBtr
#: sw/inc/inspectorproperties.hrc:157
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Hatch Name"
-msgstr ""
+msgstr "اسم نسيج التعبئة"
#. GbQPt
#: sw/inc/inspectorproperties.hrc:158
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Style"
-msgstr ""
+msgstr "طراز التعبئة"
#. tFYmZ
#: sw/inc/inspectorproperties.hrc:159
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence"
-msgstr ""
+msgstr "شفافية التعبئة"
#. H9v5s
#: sw/inc/inspectorproperties.hrc:160
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence Gradient"
-msgstr ""
+msgstr "تدرج شفافية التعبئة"
#. pZH4P
#: sw/inc/inspectorproperties.hrc:161
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Transparence Gradient Name"
-msgstr ""
+msgstr "اسم تدرج شفافية التعبئة"
#. WqmBo
#: sw/inc/inspectorproperties.hrc:162
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Follow Style"
-msgstr ""
+msgstr "اتبع الطراز"
#. 32Vgt
#: sw/inc/inspectorproperties.hrc:163
@@ -1472,109 +1472,109 @@ msgstr "مخفي"
#: sw/inc/inspectorproperties.hrc:165
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Events"
-msgstr ""
+msgstr "أحداث رابط تشعبي"
#. XU6P3
#: sw/inc/inspectorproperties.hrc:166
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Name"
-msgstr ""
+msgstr "اسم الرابط التشعبي"
#. qRBxH
#: sw/inc/inspectorproperties.hrc:167
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink Target"
-msgstr ""
+msgstr "هدف الرابط التشعبي"
#. BoFLZ
#: sw/inc/inspectorproperties.hrc:168
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Hyperlink URL"
-msgstr ""
+msgstr "وصلة الرابط التشعبي"
#. CbvLt
#: sw/inc/inspectorproperties.hrc:169
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Auto Update"
-msgstr ""
+msgstr "تلقائي التحديث"
#. DYXxe
#: sw/inc/inspectorproperties.hrc:170
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Is Physical"
-msgstr ""
+msgstr "ملموس"
#. AdAo8
#: sw/inc/inspectorproperties.hrc:171
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border"
-msgstr ""
+msgstr "الحد الأيسر"
#. tAqBG
#: sw/inc/inspectorproperties.hrc:172
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Left Border Distance"
-msgstr ""
+msgstr "مسافة الحد الأيسر"
#. 9cGvH
#: sw/inc/inspectorproperties.hrc:173
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Auto Format"
-msgstr ""
+msgstr "النَسَق التلقائي للقائمة"
#. fBeTS
#: sw/inc/inspectorproperties.hrc:174
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Id"
-msgstr ""
+msgstr "معرِّف القائمة"
#. b73Zq
#: sw/inc/inspectorproperties.hrc:175
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Label String"
-msgstr ""
+msgstr "عبارة لصيقة القائمة"
#. A2KEW
#: sw/inc/inspectorproperties.hrc:176
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Metadata Reference"
-msgstr ""
+msgstr "مرجع البيانات الوصفية"
#. n9DQD
#: sw/inc/inspectorproperties.hrc:177
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Nested Text Content"
-msgstr ""
+msgstr "محتوى النص المتداخل"
#. AzBDm
#: sw/inc/inspectorproperties.hrc:178
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering is Number"
-msgstr ""
+msgstr "التعداد هو بالأعداد"
#. WsqfF
#: sw/inc/inspectorproperties.hrc:179
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Level"
-msgstr ""
+msgstr "مستوى التعداد"
#. CEkBY
#: sw/inc/inspectorproperties.hrc:180
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Rules"
-msgstr ""
+msgstr "قواعد التعداد"
#. nTMoh
#: sw/inc/inspectorproperties.hrc:181
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Numbering Start Value"
-msgstr ""
+msgstr "قيمة بدء التعداد"
#. tBVDF
#: sw/inc/inspectorproperties.hrc:182
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "List Style Name"
-msgstr ""
+msgstr "اسم طراز القائمة"
#. zrVDM
#: sw/inc/inspectorproperties.hrc:183
@@ -1592,13 +1592,13 @@ msgstr "مستوى المخطط"
#: sw/inc/inspectorproperties.hrc:185
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Page Desc Name"
-msgstr ""
+msgstr "الاسم التنازلي للصفحة"
#. wLGct
#: sw/inc/inspectorproperties.hrc:186
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Page Number Offset"
-msgstr ""
+msgstr "إزاحة رقم الصفحة"
#. ryHzy
#: sw/inc/inspectorproperties.hrc:187
@@ -1610,103 +1610,103 @@ msgstr "اسم طراز الصفحة"
#: sw/inc/inspectorproperties.hrc:188
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Rsid"
-msgstr ""
+msgstr "معرّف مراجعة الفقرة"
#. xqcEV
#: sw/inc/inspectorproperties.hrc:189
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Adjust"
-msgstr ""
+msgstr "مساواة الفقرة"
#. SyTxG
#: sw/inc/inspectorproperties.hrc:190
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Auto Style Name"
-msgstr ""
+msgstr "اسم الطراز التلقائي للفقرة"
#. WHaym
#: sw/inc/inspectorproperties.hrc:191
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Color"
-msgstr ""
+msgstr "لون خلفية الفقرة"
#. uKmB5
#: sw/inc/inspectorproperties.hrc:192
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic"
-msgstr ""
+msgstr "رسوميات خلفية الفقرة"
#. f6RGz
#: sw/inc/inspectorproperties.hrc:193
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Filter"
-msgstr ""
+msgstr "مصفى رسوميات خلفية الفقرة"
#. Yy5RY
#: sw/inc/inspectorproperties.hrc:194
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic Location"
-msgstr ""
+msgstr "موضع رسوميات خلفية الفقرة"
#. MLDdK
#: sw/inc/inspectorproperties.hrc:195
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Graphic URL"
-msgstr ""
+msgstr "رابط رسوميات خلفية الفقرة"
#. HkGF3
#: sw/inc/inspectorproperties.hrc:196
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Back Transparent"
-msgstr ""
+msgstr "خلفية الفقرة شفافة"
#. TuYLo
#: sw/inc/inspectorproperties.hrc:197
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Bottom Margin"
-msgstr ""
+msgstr "حاشية أسفل الفقرة"
#. r5BAb
#: sw/inc/inspectorproperties.hrc:198
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Bottom Margin Relative"
-msgstr ""
+msgstr "حاشية اسفل الفقرة نسبية"
#. rCWLX
#: sw/inc/inspectorproperties.hrc:199
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Chapter Numbering Level"
-msgstr ""
+msgstr "مستوى تعداد فقرة الفصل"
#. GLxXC
#: sw/inc/inspectorproperties.hrc:200
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Conditional Style Name"
-msgstr ""
+msgstr "الاسم الشرطي لطراز الفقرة"
#. AFGoP
#: sw/inc/inspectorproperties.hrc:201
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Context Margin"
-msgstr ""
+msgstr "الحاشية السياقية للفقرة"
#. dpsFJ
#: sw/inc/inspectorproperties.hrc:202
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Expand Single Word"
-msgstr ""
+msgstr "توسيع الكلمة المفردة للفقرة"
#. iD2DL
#: sw/inc/inspectorproperties.hrc:203
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent"
-msgstr ""
+msgstr "إزاحة السطر الأول للفقرة"
#. wCMnF
#: sw/inc/inspectorproperties.hrc:204
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para First Line Indent Relative"
-msgstr "إزاحة السطر الأول للفقرة نسبي"
+msgstr "إزاحة السطر الأول للفقرة نسبية"
#. z47wS
#: sw/inc/inspectorproperties.hrc:205
@@ -1736,7 +1736,7 @@ msgstr "لا حروف كبيرة للتوصيلات في الفقرة"
#: sw/inc/inspectorproperties.hrc:209
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Interop Grab Bag"
-msgstr ""
+msgstr "حقيبة توافق الفقرة"
#. fCGA4
#: sw/inc/inspectorproperties.hrc:210
@@ -1754,37 +1754,37 @@ msgstr "الفقرة ذات تباعد محارف"
#: sw/inc/inspectorproperties.hrc:212
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Connect Border"
-msgstr ""
+msgstr "الفقرة ذات حدود متصلة"
#. tBy9h
#: sw/inc/inspectorproperties.hrc:213
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Forbidden Rules"
-msgstr ""
+msgstr "الفقرة ذات فواعد محظورة"
#. yZZSA
#: sw/inc/inspectorproperties.hrc:214
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hanging Punctuation"
-msgstr ""
+msgstr "الفقرة ذات علامات ترقيم معلّقة"
#. dDgrE
#: sw/inc/inspectorproperties.hrc:215
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Hyphenation"
-msgstr ""
+msgstr "الفقرة ذات واصلات"
#. mHDWE
#: sw/inc/inspectorproperties.hrc:216
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para is Numbering Restart"
-msgstr ""
+msgstr "الفقرة ذات إعادة تعداد"
#. Mnm2C
#: sw/inc/inspectorproperties.hrc:217
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Keep Together"
-msgstr ""
+msgstr "الفقرة ذات إبقاء سوية"
#. 8Z5AP
#: sw/inc/inspectorproperties.hrc:218
@@ -1808,13 +1808,13 @@ msgstr "الحاشية اليسرى للفقرة نسبية"
#: sw/inc/inspectorproperties.hrc:221
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Number Count"
-msgstr ""
+msgstr "عدّ عدد سطور الفقرة"
#. EjnTM
#: sw/inc/inspectorproperties.hrc:222
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Line Number Start Value"
-msgstr ""
+msgstr "قيمة بدء رقم سطر الفقرة"
#. eo9RR
#: sw/inc/inspectorproperties.hrc:223
@@ -1826,13 +1826,13 @@ msgstr "تباعد أسطر الفقرة"
#: sw/inc/inspectorproperties.hrc:224
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Orphans"
-msgstr ""
+msgstr "يتيمات الفقرة"
#. FmuG6
#: sw/inc/inspectorproperties.hrc:225
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Register Mode Active"
-msgstr ""
+msgstr "طور تسجيل الفقرة نشط"
#. Kwp9H
#: sw/inc/inspectorproperties.hrc:226
@@ -1868,7 +1868,7 @@ msgstr "اسم طراز الفقرة"
#: sw/inc/inspectorproperties.hrc:231
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Tab Stops"
-msgstr ""
+msgstr "توقفات مفتاح تبويب الفقرة"
#. reW9Y
#: sw/inc/inspectorproperties.hrc:232
@@ -1880,25 +1880,25 @@ msgstr "الحاشية العُليا للفقرة"
#: sw/inc/inspectorproperties.hrc:233
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Top Margin Relative"
-msgstr ""
+msgstr "الحاشية العليا للفقرة نسبية"
#. pUjFj
#: sw/inc/inspectorproperties.hrc:234
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para User Defined Attributes"
-msgstr ""
+msgstr "صفات الفقرة التي عرّفها المستخدم"
#. WvA9C
#: sw/inc/inspectorproperties.hrc:235
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Vertical Alignment"
-msgstr ""
+msgstr "المحاذاة الرأسية للفقرة"
#. u8Jc6
#: sw/inc/inspectorproperties.hrc:236
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Para Widows"
-msgstr ""
+msgstr "مرمَّلات الفقرة"
#. cdw2Q
#: sw/inc/inspectorproperties.hrc:237
@@ -1922,7 +1922,7 @@ msgstr "مسافة الحد الأيمن"
#: sw/inc/inspectorproperties.hrc:240
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Rsid"
-msgstr ""
+msgstr "معرّف المراجعة"
#. Uoosp
#: sw/inc/inspectorproperties.hrc:241
@@ -1958,13 +1958,13 @@ msgstr "نص روبي"
#: sw/inc/inspectorproperties.hrc:246
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Snap to Grid"
-msgstr ""
+msgstr "اجذب إلى الشبكة"
#. oDk6s
#: sw/inc/inspectorproperties.hrc:247
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Style Interop Grab Bag"
-msgstr ""
+msgstr "حقيبة توافق الطُرُز"
#. PV65u
#: sw/inc/inspectorproperties.hrc:248
@@ -2388,7 +2388,7 @@ msgstr "رابط شابكة مُزار"
#: sw/inc/strings.hrc:47
msgctxt "STR_POOLCHR_JUMPEDIT"
msgid "Placeholder"
-msgstr "حافظ مكان"
+msgstr "عنصر نائب"
#. 3iSvv
#: sw/inc/strings.hrc:48
@@ -2418,13 +2418,13 @@ msgstr "مُدخل فهرس رئيسي"
#: sw/inc/strings.hrc:52
msgctxt "STR_POOLCHR_FOOTNOTE_ANCHOR"
msgid "Footnote Anchor"
-msgstr "مربط الحاشية"
+msgstr "مربط الملاحظات الختامية"
#. m7FsY
#: sw/inc/strings.hrc:53
msgctxt "STR_POOLCHR_ENDNOTE_ANCHOR"
msgid "Endnote Anchor"
-msgstr "مربط الحاشية الختامية"
+msgstr "مربط الملاحظات الختامية"
#. CorJC
#: sw/inc/strings.hrc:54
@@ -3612,7 +3612,7 @@ msgstr "تحت"
#: sw/inc/strings.hrc:263
msgctxt "SW_STR_READONLY"
msgid "read-only"
-msgstr "للقراءة فقط"
+msgstr "للقراءة-فقط"
#. QRU4j
#: sw/inc/strings.hrc:264
@@ -3630,7 +3630,7 @@ msgstr "إحصائيات"
#: sw/inc/strings.hrc:266
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
-msgstr ""
+msgstr "هذا الخيار يكون متاحًا عندما يكون ترقيم الفصول مسنداً إلى طراز الفقرة"
#. cW3cP
#. Statusbar-titles
@@ -4446,7 +4446,7 @@ msgstr "الحواشي الذيليلة مسرَدة أعلى هذا الخط و
#: sw/inc/strings.hrc:408
msgctxt "STR_DEFINE_NUMBERFORMAT"
msgid "Additional formats..."
-msgstr "تنسيقات إضافية..."
+msgstr "أنساق إضافية..."
#. Cfiyt
#: sw/inc/strings.hrc:409
@@ -4486,25 +4486,25 @@ msgstr "لطفًا ثبّت حزمة الوصل للمحلية “%1”."
#: sw/inc/strings.hrc:414
msgctxt "STR_HIDDEN_CHANGES"
msgid "Track Changes"
-msgstr ""
+msgstr "تتبع التغييرات"
#. DcXvE
#: sw/inc/strings.hrc:415
msgctxt "STR_HIDDEN_CHANGES_DETAIL"
msgid "Document contains tracked changes and recording is enabled."
-msgstr ""
+msgstr "المستند يحوي تغييرات متتبَّعة والتسجيل مفعَّل."
#. zxuEu
#: sw/inc/strings.hrc:416
msgctxt "STR_HIDDEN_CHANGES_DETAIL2"
msgid "Recording of changes is enabled."
-msgstr ""
+msgstr "تسجيل التغييرات مفعَّل."
#. BH7Ud
#: sw/inc/strings.hrc:417
msgctxt "STR_HIDDEN_CHANGES_DETAIL3"
msgid "Document contains tracked changes."
-msgstr ""
+msgstr "المستند يحوي تغييرات متتبَّعة."
#. MEN2d
#. Undo
@@ -5171,7 +5171,7 @@ msgstr "الصفات التي غُيّرت"
#: sw/inc/strings.hrc:528
msgctxt "STR_UNDO_REDLINE_TABLE"
msgid "Table changed"
-msgstr "تغيير الجدول"
+msgstr "الجدول غُيّر"
#. DCGPF
#: sw/inc/strings.hrc:529
@@ -5183,7 +5183,7 @@ msgstr "تغيير النمط"
#: sw/inc/strings.hrc:530
msgctxt "STR_UNDO_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
-msgstr "تغيير تنسيق الفقرة"
+msgstr "تنسيق الفقرة غُيّر"
#. nehrq
#: sw/inc/strings.hrc:531
@@ -5766,7 +5766,7 @@ msgstr "نص م~خفي"
#: sw/inc/strings.hrc:632
msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS"
msgid "~Text placeholders"
-msgstr "حافظات مكان ال~نص"
+msgstr "عناصر نائبة لل~نص"
#. JBWVd
#: sw/inc/strings.hrc:633
@@ -6090,7 +6090,7 @@ msgstr "حرر"
#: sw/inc/strings.hrc:689
msgctxt "STR_EDIT_LINK"
msgid "Edit link"
-msgstr "حرّر الرابط"
+msgstr "حرر الرابط"
#. xyPWE
#: sw/inc/strings.hrc:690
@@ -6150,7 +6150,7 @@ msgstr "الفهارس"
#: sw/inc/strings.hrc:699
msgctxt "STR_UPDATE_LINK"
msgid "Links"
-msgstr "الوصلات"
+msgstr "الروابط"
#. TaaJK
#: sw/inc/strings.hrc:700
@@ -6410,13 +6410,13 @@ msgstr "تحويل $(ARG1)"
#: sw/inc/strings.hrc:748
msgctxt "STR_PAGEDESC_FIRSTNAME"
msgid "First convert $(ARG1)"
-msgstr ""
+msgstr "أول تحويل $(ARG1)"
#. eQtGV
#: sw/inc/strings.hrc:749
msgctxt "STR_PAGEDESC_FOLLOWNAME"
msgid "Next convert $(ARG1)"
-msgstr ""
+msgstr "التحويل التالي $(ARG1)"
#. aBwxC
#: sw/inc/strings.hrc:750
@@ -7343,7 +7343,7 @@ msgstr "حمّل المسار"
#: sw/inc/strings.hrc:918
msgctxt "STR_JUMPEDITFLD"
msgid "Placeholder"
-msgstr "حافظ مكان"
+msgstr "عنصر نائب"
#. zZCg6
#: sw/inc/strings.hrc:919
@@ -8290,25 +8290,25 @@ msgstr "أدنى ارتفاع:"
#: sw/inc/strings.hrc:1116
msgctxt "STR_FLY_AT_PARA"
msgid "to paragraph"
-msgstr "مرتبط بالفقرة"
+msgstr "إلى الفقرة"
#. A8nAb
#: sw/inc/strings.hrc:1117
msgctxt "STR_FLY_AS_CHAR"
msgid "as character"
-msgstr ""
+msgstr "كمحرف"
#. Uszmm
#: sw/inc/strings.hrc:1118
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
-msgstr ""
+msgstr "إلى المحرف"
#. hDUSa
#: sw/inc/strings.hrc:1119
msgctxt "STR_FLY_AT_PAGE"
msgid "to page"
-msgstr "مرتبط بالصفحة"
+msgstr "إلى الصفحة"
#. JMHRz
#: sw/inc/strings.hrc:1120
@@ -8348,10 +8348,9 @@ msgstr "أعلى السطر"
#. MU7hC
#: sw/inc/strings.hrc:1126
-#, fuzzy
msgctxt "STR_LINE_CENTER"
msgid "Line centered"
-msgstr "وسط اليسار"
+msgstr "موسّط إلى السطر"
#. ZvEq7
#: sw/inc/strings.hrc:1127
@@ -8991,34 +8990,31 @@ msgstr ""
#: sw/inc/strings.hrc:1234
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
-msgstr ""
+msgstr "حقل '%FIELDTYPE' التالي"
#. hSYa3
#: sw/inc/strings.hrc:1236
-#, fuzzy
msgctxt "STR_REDLINE_INSERT"
msgid "Inserted"
-msgstr "أدرج"
+msgstr "أُدرِج"
#. LnFkq
#: sw/inc/strings.hrc:1237
-#, fuzzy
msgctxt "STR_REDLINE_DELETE"
msgid "Deleted"
-msgstr "احذف"
+msgstr "حُذِف"
#. cTNEn
#: sw/inc/strings.hrc:1238
msgctxt "STR_REDLINE_FORMAT"
msgid "Formatted"
-msgstr ""
+msgstr "نُسِّق"
#. YWr7C
#: sw/inc/strings.hrc:1239
-#, fuzzy
msgctxt "STR_REDLINE_TABLE"
msgid "Table changed"
-msgstr "تغيير الجدول"
+msgstr "الجدول غُيّر"
#. 6xVDN
#: sw/inc/strings.hrc:1240
@@ -9028,10 +9024,9 @@ msgstr "أنماط الفقرات المطبقّة"
#. 32AND
#: sw/inc/strings.hrc:1241
-#, fuzzy
msgctxt "STR_REDLINE_PARAGRAPH_FORMAT"
msgid "Paragraph formatting changed"
-msgstr "تغيير تنسيق الفقرة"
+msgstr "تنسيق الفقرة غُيّر"
#. wLDkj
#: sw/inc/strings.hrc:1242
@@ -9041,34 +9036,33 @@ msgstr "أُدرج السطر"
#. Eb5Gb
#: sw/inc/strings.hrc:1243
-#, fuzzy
msgctxt "STR_REDLINE_TABLE_ROW_DELETE"
msgid "Row Deleted"
-msgstr "تم حذف السطر"
+msgstr "حُذف السطر"
#. i5ZJt
#: sw/inc/strings.hrc:1244
msgctxt "STR_REDLINE_TABLE_CELL_INSERT"
msgid "Cell Inserted"
-msgstr ""
+msgstr "أُدرجَت الخلية"
#. 4gE3z
#: sw/inc/strings.hrc:1245
msgctxt "STR_REDLINE_TABLE_CELL_DELETE"
msgid "Cell Deleted"
-msgstr ""
+msgstr "حُذِفت الخلية"
#. BLEBh
#: sw/inc/strings.hrc:1246
msgctxt "STR_REDLINE_INSERT_MOVED"
msgid "Moved (insertion)"
-msgstr ""
+msgstr "نُقلَت (إدراج)"
#. o39AA
#: sw/inc/strings.hrc:1247
msgctxt "STR_REDLINE_DELETE_MOVED"
msgid "Moved (deletion)"
-msgstr ""
+msgstr "نُقِلَت (حذف)"
#. DRCyp
#: sw/inc/strings.hrc:1248
@@ -9400,19 +9394,19 @@ msgstr ""
#: sw/inc/strings.hrc:1309
msgctxt "STR_TOKEN_ENTRY_NO"
msgid "E#"
-msgstr ""
+msgstr "#مُ"
#. 8EgTx
#: sw/inc/strings.hrc:1310
msgctxt "STR_TOKEN_ENTRY"
msgid "E"
-msgstr ""
+msgstr "مُ"
#. gxt8B
#: sw/inc/strings.hrc:1311
msgctxt "STR_TOKEN_TAB_STOP"
msgid "T"
-msgstr ""
+msgstr "ت"
#. pGAb4
#: sw/inc/strings.hrc:1312
@@ -9424,25 +9418,25 @@ msgstr "#"
#: sw/inc/strings.hrc:1313
msgctxt "STR_TOKEN_CHAPTER_INFO"
msgid "CI"
-msgstr ""
+msgstr "م‌م"
#. XWaFn
#: sw/inc/strings.hrc:1314
msgctxt "STR_TOKEN_LINK_START"
msgid "LS"
-msgstr ""
+msgstr "ب‌ر"
#. xp6D6
#: sw/inc/strings.hrc:1315
msgctxt "STR_TOKEN_LINK_END"
msgid "LE"
-msgstr ""
+msgstr "ن‌ر"
#. AogDK
#: sw/inc/strings.hrc:1316
msgctxt "STR_TOKEN_AUTHORITY"
msgid "A"
-msgstr ""
+msgstr "س"
#. 5A4jw
#: sw/inc/strings.hrc:1317
@@ -9508,7 +9502,7 @@ msgstr "نمط الأحرف: "
#: sw/inc/strings.hrc:1327
msgctxt "STR_STRUCTURE"
msgid "Structure text"
-msgstr ""
+msgstr "نص البِنية"
#. kwoGP
#: sw/inc/strings.hrc:1328
@@ -9520,7 +9514,7 @@ msgstr "اضغط Ctrl+Alt+A لنقل التّركيز لعمليّات أكثر"
#: sw/inc/strings.hrc:1329
msgctxt "STR_ADDITIONAL_ACCNAME_STRING2"
msgid "Press left or right arrow to choose the structure controls"
-msgstr ""
+msgstr "اضغط السهم اليمين أو اليسار لتختار متحكمات البِنية"
#. 59eRi
#: sw/inc/strings.hrc:1330
@@ -9541,19 +9535,19 @@ msgstr ""
#: sw/inc/strings.hrc:1336
msgctxt "STR_FRMUI_TOP_BASE"
msgid "Base line at ~top"
-msgstr "أ~على الخط الأساسي"
+msgstr "الخط الأساسي أ~على"
#. 5GiEA
#: sw/inc/strings.hrc:1337
msgctxt "STR_FRMUI_BOTTOM_BASE"
msgid "~Base line at bottom"
-msgstr "أ~سفل الخط الأساسي"
+msgstr "الخط الأساسي أ~سفل"
#. sdyVF
#: sw/inc/strings.hrc:1338
msgctxt "STR_FRMUI_CENTER_BASE"
msgid "Base line ~centered"
-msgstr "و~سط الخط الأساسي"
+msgstr "الخط الأساسي مو~سّط"
#. NAXyZ
#: sw/inc/strings.hrc:1339
@@ -9589,7 +9583,7 @@ msgstr "الخلفية"
#: sw/inc/strings.hrc:1345
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
-msgstr "(نمط الفقرة: "
+msgstr "(طراز الفقرة: "
#. Fsanh
#: sw/inc/strings.hrc:1346
@@ -10535,19 +10529,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "الطراز"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "الطُرُز"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -10676,7 +10670,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:309
msgctxt "authenticationsettingsdialog|port_label"
msgid "P_ort:"
-msgstr "الم_نفذ:"
+msgstr "المن_فذ:"
#. RjbdV
#: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:324
@@ -11654,7 +11648,7 @@ msgstr "العنوان"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:68
msgctxt "cardmediumpage|extended_tip|address"
msgid "Creates a label with your return address. Text that is currently in the Label text box is overwritten."
-msgstr ""
+msgstr "يُنشئ لصيقة مع عنوان الإرجاع إليك. يُكتَب على النص الموجود حاليًا في مربع اللصيقة."
#. HH2Su
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:82
@@ -11678,7 +11672,7 @@ msgstr "قاعدة البيانات:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:166
msgctxt "cardmediumpage|extended_tip|database"
msgid "Select the database that you want to use as the data source for your label."
-msgstr ""
+msgstr "حدد قاعدة البيانات التي تريد استخدامها كمصدر بيانات لجدولك."
#. G2Vhh
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:193
@@ -11690,7 +11684,7 @@ msgstr "الجدول:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:210
msgctxt "cardmediumpage|extended_tip|table"
msgid "Select the database table containing the field(s) that you want to use in your label."
-msgstr ""
+msgstr "حدد جدول قاعدة البيانات الذي يحوي الحقل (الحقول) الذي تريد استخدامه في لصيقتك."
#. LB3gM
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:237
@@ -11702,7 +11696,7 @@ msgstr "حقل قاعدة البيانات:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:254
msgctxt "cardmediumpage|extended_tip|field"
msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box."
-msgstr ""
+msgstr "حدد حقل قاعدة البيانات الذي تريده، ثم انقر السهم إلى يسار هذا المربع لتُدرِج الحقل في مربع نص اللصيقة."
#. VfLpb
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:280
@@ -11714,7 +11708,7 @@ msgstr "أدرج"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:286
msgctxt "cardmediumpage|extended_tip|insert"
msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box."
-msgstr ""
+msgstr "حدد حقل قاعدة البيانات الذي تريده، ثم انقر السهم إلى يسار هذا المربع لتُدرِج الحقل في مربع نص اللصيقة."
#. Y9YPN
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:301
@@ -11732,7 +11726,7 @@ msgstr "م_ستمر"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:356
msgctxt "cardmediumpage|extended_tip|continuous"
msgid "Prints labels on continuous paper."
-msgstr ""
+msgstr "يطبع اللصائق في ورق مستمر."
#. iqG7v
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:367
@@ -11756,19 +11750,19 @@ msgstr "ال_نوع:"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:431
msgctxt "cardmediumpage|extended_tip|brand"
msgid "Select the brand of paper that you want to use."
-msgstr ""
+msgstr "حدد العلامة التجارية للورق التي تريد استخدامها."
#. T3wp9
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:448
msgctxt "cardmediumpage|extended_tip|type"
msgid "Select the size format that you want to use. The available formats depend on the brand on what you selected in the Brand list. If you want to use a custom label format, select [User], and then click the Format tab to define the format."
-msgstr ""
+msgstr "حدد نَسَق الحجم الذي تريد استخدامه. الأنساق المتاحة تعتمد على العلامة التجارية التي حددتها في قائمة العلامات التجارية. إذا أردت استخدام نسَق لصيقة، حدد [مستخدِم] ثم انقر على تبويب التنسيق لتعرّف النسَق."
#. DCFRk
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:476
msgctxt "cardmediumpage|extended_tip|formatinfo"
msgid "The paper type and the dimensions of the business card are displayed at the bottom of the Format area."
-msgstr ""
+msgstr "نوع الورق وأبعاد بطاقة العمل تُعرَض أسفل منطقة التنسيق."
#. 3zCCN
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:501
@@ -11780,7 +11774,7 @@ msgstr "التنسيق"
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:516
msgctxt "cardmediumpage|extended_tip|CardMediumPage"
msgid "Specify the label text and choose the paper size for the label."
-msgstr ""
+msgstr "حدد نص اللصيقة واختر حجم الورق للصيقة."
#. J96RD
#: sw/uiconfig/swriter/ui/ccdialog.ui:8
@@ -11804,19 +11798,19 @@ msgstr "ن.ك._ع:"
#: sw/uiconfig/swriter/ui/ccdialog.ui:126
msgctxt "ccdialog|label4"
msgid "Note: Separate email addresses with a semicolon (;)."
-msgstr ""
+msgstr "ملاحظة: افصل عناوين البريد بفارزة منقوطة (;)."
#. GFwkE
#: sw/uiconfig/swriter/ui/ccdialog.ui:145
msgctxt "ccdialog|extended_tip|cc"
msgid "Enter the recipients of email copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "أدخِل مستلمي نُسخ البريد، مفصولة بفارزة منقوطة (;)."
#. BCsoU
#: sw/uiconfig/swriter/ui/ccdialog.ui:163
msgctxt "ccdialog|extended_tip|bcc"
msgid "Enter the recipients of email blind copies, separated by a semicolon (;)."
-msgstr ""
+msgstr "أدخِل مستلمي نُسخ البريد المخفية، مفصولة بفارزة منقوطة (;)."
#. P3CcW
#: sw/uiconfig/swriter/ui/ccdialog.ui:178
@@ -11840,7 +11834,7 @@ msgstr "يُتراجَع عن التعديلات غير المحفوظة في ه
#: sw/uiconfig/swriter/ui/characterproperties.ui:35
msgctxt "characterproperties|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
-msgstr ""
+msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار."
#. GJNuu
#: sw/uiconfig/swriter/ui/characterproperties.ui:159
@@ -11918,13 +11912,13 @@ msgstr "الأحداث..."
#: sw/uiconfig/swriter/ui/charurlpage.ui:91
msgctxt "charurlpage|extended_tip|eventpb"
msgid "Specify an event that triggers when you click the hyperlink."
-msgstr ""
+msgstr "حدد الحدث الذي ينطلق عندما تنقر الارتباط التشعبي."
#. MhJbE
#: sw/uiconfig/swriter/ui/charurlpage.ui:109
msgctxt "charurlpage|extended_tip|urled"
msgid "Enter a URL for the file that you want to open when you click the hyperlink."
-msgstr ""
+msgstr "أدخِل رابطًا للملف الذي تريد أن يفتح عندما تنقر الارتباط التشعبي."
#. YGnoF
#: sw/uiconfig/swriter/ui/charurlpage.ui:127
@@ -11936,7 +11930,7 @@ msgstr "أدخِل اسمًا للارتباط التشعبي."
#: sw/uiconfig/swriter/ui/charurlpage.ui:145
msgctxt "charurlpage|extended_tip|texted"
msgid "Enter the text that you want to display for the hyperlink."
-msgstr ""
+msgstr "أدخِل النص الذي تريد عَرضه للارتباط التشعبي."
#. BmLb8
#: sw/uiconfig/swriter/ui/charurlpage.ui:156
@@ -11948,31 +11942,31 @@ msgstr "تصفّح…"
#: sw/uiconfig/swriter/ui/charurlpage.ui:163
msgctxt "charurlpage|extended_tip|urlpb"
msgid "Locate the file that you want to link to, and then click Open."
-msgstr ""
+msgstr "حدد موضع الملف الذي تربط إليه، ثم انقر فتح."
#. ha6rk
#: sw/uiconfig/swriter/ui/charurlpage.ui:186
msgctxt "charurlpage|extended_tip|targetfrmlb"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list."
-msgstr ""
+msgstr "أدخِل اسم الإطار الذي تريد أن يُفتح فيه الملف المربوط، أو حدد إطاراً مسبق التعريف من القائمة."
#. CQvaG
#: sw/uiconfig/swriter/ui/charurlpage.ui:216
msgctxt "charurlpage|label32"
msgid "Hyperlink"
-msgstr "رابط تشعبي"
+msgstr "ارتباط تشعبي"
#. FCyhD
#: sw/uiconfig/swriter/ui/charurlpage.ui:248
msgctxt "charurlpage|label34"
msgid "Visited links:"
-msgstr "الوصلات المزارة:"
+msgstr "الروابط المزارة:"
#. EvDaT
#: sw/uiconfig/swriter/ui/charurlpage.ui:262
msgctxt "charurlpage|label10"
msgid "Unvisited links:"
-msgstr "الوصلات غير المزارة:"
+msgstr "الروابط غير المزارة:"
#. CqHA6
#: sw/uiconfig/swriter/ui/charurlpage.ui:278
@@ -12056,13 +12050,13 @@ msgstr "التباعد:"
#: sw/uiconfig/swriter/ui/columnpage.ui:302
msgctxt "columnpage|extended_tip|spacing1mf"
msgid "Enter the amount of space that you want to leave between the columns."
-msgstr ""
+msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين الأعمدة."
#. CwCXd
#: sw/uiconfig/swriter/ui/columnpage.ui:325
msgctxt "columnpage|extended_tip|spacing2mf"
msgid "Enter the amount of space that you want to leave between the columns."
-msgstr ""
+msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين الأعمدة."
#. j8J9w
#: sw/uiconfig/swriter/ui/columnpage.ui:353
@@ -12986,7 +12980,7 @@ msgstr "إعدادات"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:233
msgctxt "dropcapspage|labelTXT_TEXT"
msgid "_Text:"
-msgstr "ال_نّصّ:"
+msgstr "ال_نص:"
#. MdKAS
#: sw/uiconfig/swriter/ui/dropcapspage.ui:247
@@ -13028,19 +13022,19 @@ msgstr "اختيار العنصر: "
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:40
msgctxt "dropdownfielddialog|prev"
msgid "_Previous"
-msgstr ""
+msgstr "ال_سابق"
#. 2Wx2B
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:53
msgctxt "dropdownfielddialog|next"
msgid "_Next"
-msgstr ""
+msgstr "ال_تالي"
#. USGaG
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59
msgctxt "dropdownfielddialog|extended_tip|next"
msgid "Closes the current Input list and displays the next, if available."
-msgstr ""
+msgstr "يغلق قائمة الإدخال الحالية ويعرض التالية، إن توفرت"
#. Ct7px
#: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:84
@@ -13166,7 +13160,7 @@ msgstr "الحقل السابق من نفس النوع"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:105
msgctxt "editfielddialog|extended_tip|prev"
msgid "Edit field contents."
-msgstr ""
+msgstr "حرر محتويات الحقل"
#. T4GAj
#: sw/uiconfig/swriter/ui/editfielddialog.ui:119
@@ -13178,7 +13172,7 @@ msgstr "الحقل التالي من نفس النوع"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:125
msgctxt "editfielddialog|extended_tip|next"
msgid "Edit field contents."
-msgstr ""
+msgstr "حرر محتويات الحقل"
#. Gg5FB
#: sw/uiconfig/swriter/ui/editfielddialog.ui:136
@@ -13196,13 +13190,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/editfielddialog.ui:146
msgctxt "editfielddialog|extended_tip|edit"
msgid "Edit field contents."
-msgstr ""
+msgstr "حرر محتويات الحقل"
#. Lds2R
#: sw/uiconfig/swriter/ui/editfielddialog.ui:178
msgctxt "editfielddialog|extended_tip|EditFieldDialog"
msgid "Edit field contents."
-msgstr ""
+msgstr "حرر محتويات الحقل"
#. cL2RH
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:18
@@ -13430,7 +13424,7 @@ msgstr "بعد"
#: sw/uiconfig/swriter/ui/endnotepage.ui:90
msgctxt "endnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first endnote in the document."
-msgstr ""
+msgstr "أدخِل رقم أول ملحوظة ختامية في المستند."
#. kEbXn
#: sw/uiconfig/swriter/ui/endnotepage.ui:107
@@ -13448,7 +13442,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/endnotepage.ui:139
msgctxt "endnotepage|extended_tip|numberinglb"
msgid "Enter the number for the first endnote in the document."
-msgstr ""
+msgstr "أدخِل رقم أول ملحوظة ختامية في المستند."
#. C5Z3B
#: sw/uiconfig/swriter/ui/endnotepage.ui:154
@@ -13496,7 +13490,7 @@ msgstr "نطاق التعليق الختامي"
#: sw/uiconfig/swriter/ui/endnotepage.ui:268
msgctxt "endnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for endnote anchors in the text area of your document."
-msgstr ""
+msgstr "حدد طراز المحرف الذي تريد استخدامه لمرابط الملاحظات الختامية في مساحة نص المستند."
#. p8rDB
#: sw/uiconfig/swriter/ui/endnotepage.ui:284
@@ -13991,37 +13985,37 @@ msgid "Exchange Databases"
msgstr "تبادل قواعد البيانات"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "تعريف"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "قواعد البيانات قيد الاستخدام"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "قواعد البيانات ال_متوفّرة"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "تصفّح…"
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14031,31 +14025,31 @@ msgstr ""
"استخدم زر الاستعراض لاختيار ملف قاعدة بيانات."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "تبادل قواعد البيانات"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "قاعدة البيانات المرتبطة بالمستند:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "غيّر مصادر البيانات للمستند الحالي."
@@ -14178,7 +14172,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/flddbpage.ui:89
msgctxt "flddbpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
+msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. A5HF3
#: sw/uiconfig/swriter/ui/flddbpage.ui:100
@@ -14286,7 +14280,7 @@ msgstr "التنسيق"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:77
msgctxt "flddocinfopage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
+msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. 5B97z
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:88
@@ -14298,7 +14292,7 @@ msgstr "ال_نوع"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:144
msgctxt "flddocinfopage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr ""
+msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلاً، انقر الحقل ثم انقر إدراج."
#. xAe8o
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:155
@@ -14310,7 +14304,7 @@ msgstr "_حدّد"
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:218
msgctxt "flddocinfopage|extended_tip|format"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا."
#. yAc6z
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:232
@@ -14328,13 +14322,13 @@ msgstr "يُدرج الحقل كمحتوى جامد، بمعنى أنّ الحق
#: sw/uiconfig/swriter/ui/flddocinfopage.ui:256
msgctxt "flddocinfopage|label3"
msgid "_Format"
-msgstr "النسَق"
+msgstr "ال_نسَق"
#. BmH6G
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:98
msgctxt "flddocumentpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
+msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. pmEvX
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:109
@@ -14346,7 +14340,7 @@ msgstr "ال_نوع"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:165
msgctxt "flddocumentpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr ""
+msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلاً، انقر الحقل ثم انقر إدراج."
#. hnWF4
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:176
@@ -14358,13 +14352,13 @@ msgstr "_حدّد"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:247
msgctxt "flddocumentpage|extended_tip|format"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا."
#. DXvK2
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:305
msgctxt "flddocumentpage|label3"
msgid "_Format"
-msgstr "النسَق"
+msgstr "ال_نسَق"
#. k7KnK
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:321
@@ -14388,13 +14382,13 @@ msgstr "ال_مستوى"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:366
msgctxt "flddocumentpage|extended_tip|level"
msgid "Select the chapter heading level that you want to include in the selected field."
-msgstr ""
+msgstr "حدد مستوى خط عنوان الفصل الذي تريد تضمينه في الحقل المحدد."
#. PjBqv
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:384
msgctxt "flddocumentpage|extended_tip|offset"
msgid "Enter the offset that you want to apply to a date or time field."
-msgstr ""
+msgstr "أدخِل التعويض الذي تريد تطبيقه على حقل التأريخ أو الوقت."
#. j7fjs
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:397
@@ -14406,7 +14400,7 @@ msgstr "التعويض في _الأيام"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:411
msgctxt "flddocumentpage|minutesft"
msgid "Offs_et in minutes"
-msgstr "التعويض في الد_قاق"
+msgstr "الإزاحة بالد_قاق"
#. mENqn
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:437
@@ -14418,13 +14412,13 @@ msgstr "ال_قيمة"
#: sw/uiconfig/swriter/ui/flddocumentpage.ui:455
msgctxt "flddocumentpage|extended_tip|value"
msgid "Enter the offset value that you want to apply to a page number field, for example \"+1\"."
-msgstr ""
+msgstr "أدخِل قيمة الإزاحة التي تريد تطبيقها على حقل رقم صفحة، مثلاً \"+1\"."
#. DMTgW
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:79
msgctxt "fldfuncpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
+msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. GvXix
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:90
@@ -14442,13 +14436,13 @@ msgstr "_حدّد"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:210
msgctxt "fldfuncpage|extended_tip|format"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا."
#. AYXG3
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:221
msgctxt "fldfuncpage|label2"
msgid "_Format"
-msgstr "النسَق"
+msgstr "ال_نسَق"
#. CGoTS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:246
@@ -14460,7 +14454,7 @@ msgstr "_ماكرو..."
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:254
msgctxt "fldfuncpage|extended_tip|macro"
msgid "Opens the Macro Selector, where you can choose the macro that will run when you click the selected field in the document."
-msgstr ""
+msgstr "يفتح منتقي الماكروهات، حيث يمكنك منه اختيار الماكرو الذي سيشتغل عندما تنقر الحقل المحدد في المستند."
#. cyE7z
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:274
@@ -14472,7 +14466,7 @@ msgstr "ال_قيمة"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:293
msgctxt "fldfuncpage|extended_tip|value"
msgid "Sets additional function parameters for fields. The type of parameter depends on the field type that you select."
-msgstr ""
+msgstr "يُعِدّ متغيرات معادلة وسيطة إضافية للحقول. نوع المتغير الوسيط يعتمد على نوع الحقل الذي تحدده."
#. Wm4pw
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:319
@@ -14484,13 +14478,13 @@ msgstr "الاس_م"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:359
msgctxt "fldfuncpage|cond1ft"
msgid "Then"
-msgstr "إذن"
+msgstr "إذَن"
#. bByDc
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:378
msgctxt "fldfuncpage|extended_tip|cond1"
msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box."
-msgstr ""
+msgstr "أدخِل النص الذي سيُعرَض عندما يتحقق الشرط في مربع ⟪إذَن⟫، والنص الذي سيُعرَض عندما لا يتحقق الشرط في مربع ⟪وإلّا⟫."
#. VjhuY
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:403
@@ -14502,37 +14496,37 @@ msgstr "وإلّا"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:422
msgctxt "fldfuncpage|extended_tip|cond2"
msgid "Enter the text to display when the condition is met in the Then box, and the text to display when the condition is not met in the Else box."
-msgstr ""
+msgstr "أدخِل النص الذي سيُعرَض عندما يتحقق الشرط في مربع ⟪إذَن⟫، والنص الذي سيُعرَض عندما لا يتحقق الشرط في مربع ⟪وإلّا⟫."
#. ALCUE
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:454
msgctxt "fldfuncpage|itemft"
msgid "It_em"
-msgstr "ب_ند"
+msgstr "ع_نصر"
#. zERBz
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:473
msgctxt "fldfuncpage|extended_tip|item"
msgid "Enter a new item."
-msgstr "أدخِل اسمًا جديداً."
+msgstr "أدخِل عنصراً جديداً."
#. F6LmM
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:498
msgctxt "fldfuncpage|extended_tip|add"
msgid "Adds the Item to the list."
-msgstr ""
+msgstr "يضيف العنصر إلى القائمة."
#. 4KX6H
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:517
msgctxt "fldfuncpage|listitemft"
msgid "Items on _list"
-msgstr "البنود التي في ال_قائمة"
+msgstr "العناصر التي في ال_قائمة"
#. KegJr
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:560
msgctxt "fldfuncpage|extended_tip|listitems"
msgid "Lists the items. The topmost item is shown in the document."
-msgstr ""
+msgstr "يسرد العناصر. العنصر الأعلى يُعرَض في المستند."
#. 2GZLS
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:588
@@ -14550,7 +14544,7 @@ msgstr "انقل _للأعلى"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:607
msgctxt "fldfuncpage|extended_tip|up"
msgid "Moves the selected item up in the list."
-msgstr ""
+msgstr "يحرّك العنصر المحدد إلى الأعلى في القائمة."
#. 5EA2P
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:619
@@ -14562,25 +14556,25 @@ msgstr "انقل للأ_سفل"
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:626
msgctxt "fldfuncpage|extended_tip|down"
msgid "Moves the selected item down in the list."
-msgstr ""
+msgstr "يحرّك العنصر المحدد إلى الأسفل في القائمة."
#. 52SQ6
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:652
msgctxt "fldfuncpage|listnameft"
msgid "Na_me"
-msgstr "الإس_م"
+msgstr "الاس_م"
#. QGMno
#: sw/uiconfig/swriter/ui/fldfuncpage.ui:671
msgctxt "fldfuncpage|extended_tip|listname"
msgid "Enter a unique name for the Input list."
-msgstr ""
+msgstr "أدخِل اسمًا فريداً لقائمة الإدخال."
#. knXRc
#: sw/uiconfig/swriter/ui/fldrefpage.ui:102
msgctxt "fldrefpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert."
-msgstr ""
+msgstr "يسرد أنواع الحقول المتاحة. لتضيف حقلاً إلى مستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. xiiPJ
#: sw/uiconfig/swriter/ui/fldrefpage.ui:113
@@ -14664,7 +14658,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldvarpage.ui:107
msgctxt "fldvarpage|extended_tip|type"
msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert."
-msgstr "يَعرض أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
+msgstr "يَسرد أنواع الحقول المتاحة. لتضيف حقلاً جديداً إلى المستند، انقر نوع حقل وانقر حقلاً في قائمة التحديد ثم انقر إدراج."
#. MYGxL
#: sw/uiconfig/swriter/ui/fldvarpage.ui:118
@@ -14676,7 +14670,7 @@ msgstr "ال_نوع"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:189
msgctxt "fldvarpage|extended_tip|select"
msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert."
-msgstr ""
+msgstr "يَسرد الحقول المتاحة لنوع الحقل المحدد في قائمة النوع. لتُدرِج حقلاً، انقر الحقل ثم انقر إدراج."
#. JFbpp
#: sw/uiconfig/swriter/ui/fldvarpage.ui:200
@@ -14688,7 +14682,7 @@ msgstr "_حدّد"
#: sw/uiconfig/swriter/ui/fldvarpage.ui:286
msgctxt "fldvarpage|extended_tip|numformat"
msgid "Click the format that you want to apply to the selected field, or click \"Additional formats\" to define a custom format."
-msgstr ""
+msgstr "انقر النسَق الذي تريد تطبيقه على الحقل المحدد، أو انقر \"أنساق إضافية\" لتعرّف نسَقًا مخصصًا."
#. xFAmF
#: sw/uiconfig/swriter/ui/fldvarpage.ui:331
@@ -14700,7 +14694,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/fldvarpage.ui:349
msgctxt "fldvarpage|label3"
msgid "_Format"
-msgstr "النسَق"
+msgstr "ال_نسَق"
#. qPpKb
#: sw/uiconfig/swriter/ui/fldvarpage.ui:366
@@ -14946,7 +14940,7 @@ msgstr "إعدادات الحواشي والحواشي الختامية"
#: sw/uiconfig/swriter/ui/footendnotedialog.ui:135
msgctxt "footendnotedialog|footnotes"
msgid "Footnotes"
-msgstr "الحواشي"
+msgstr "الملاحظات الذيلية"
#. CUa3E
#: sw/uiconfig/swriter/ui/footendnotedialog.ui:182
@@ -14964,7 +14958,7 @@ msgstr "_ليس أكبر من نطاق الصفحة"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:68
msgctxt "footnoteareapage|extended_tip|maxheightpage"
msgid "Automatically adjusts the height of the footnote area depending on the number of footnotes."
-msgstr ""
+msgstr "يعدّل تلقائيًا ارتفاع منطقة الملاحظات الذيلية استناداً إلى عدد الملاحظات الذيلية."
#. FA6CC
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:80
@@ -15036,7 +15030,7 @@ msgstr "ال_طول"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:266
msgctxt "footnoteareapage|label9"
msgid "_Spacing to footnote contents"
-msgstr "المسا_فة حتى محتويات الحاشية"
+msgstr "الت_باعد عن محتويات الملاحظات الذيلية"
#. uZuEN
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:282
@@ -15084,7 +15078,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:373
msgctxt "footnoteareapage|extended_tip|spacingtocontents"
msgid "Enter the amount of space to leave between the separator line and the first line of the footnote area."
-msgstr ""
+msgstr "أدخِل مقدار الفراغ الذي سيُترَك بين السطر الفاصل وأول سطر من مساحة الملاحظات الذيلية."
#. Fnt7q
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:393
@@ -15102,7 +15096,7 @@ msgstr "السطر الفاصل"
#: sw/uiconfig/swriter/ui/footnoteareapage.ui:423
msgctxt "footnoteareapage|extended_tip|FootnoteAreaPage"
msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document."
-msgstr ""
+msgstr "يحدد خيارات مخطط الملاحظات الذيلية، ومن ضمنها الخط الذي يفصل الملاحظة الذيلية عن المتن الرئيس للمستند."
#. PAqDe
#: sw/uiconfig/swriter/ui/footnotepage.ui:38
@@ -15150,7 +15144,7 @@ msgstr "نهاية الصفحة"
#: sw/uiconfig/swriter/ui/footnotepage.ui:120
msgctxt "footnotepage|extended_tip|pospagecb"
msgid "Displays footnotes at the bottom of the page."
-msgstr ""
+msgstr "يعرض الملاحظات الذيلية أسفل الصفحة."
#. 8zwoB
#: sw/uiconfig/swriter/ui/footnotepage.ui:131
@@ -15162,13 +15156,13 @@ msgstr "نهاية المستند"
#: sw/uiconfig/swriter/ui/footnotepage.ui:143
msgctxt "footnotepage|extended_tip|posdoccb"
msgid "Displays footnotes at the end of the document as endnotes."
-msgstr ""
+msgstr "يعرض الملاحظات الذيلية في نهاية المستند كملاحظات ختامية."
#. BGVTw
#: sw/uiconfig/swriter/ui/footnotepage.ui:161
msgctxt "footnotepage|extended_tip|offsetnf"
msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box."
-msgstr ""
+msgstr "أدخِل رقم أول ملاحظة ذيلية في المستند. هذا الخيار متاح فقط إذا حددت \"للمستند\" في صندوق التعداد."
#. RWgzD
#: sw/uiconfig/swriter/ui/footnotepage.ui:175
@@ -15192,7 +15186,7 @@ msgstr "للمستند"
#: sw/uiconfig/swriter/ui/footnotepage.ui:181
msgctxt "footnotepage|extended_tip|countinglb"
msgid "Select the numbering option for the footnotes."
-msgstr ""
+msgstr "حدد خيارات التعداد للملاحظات الذيلية."
#. 7GqFA
#: sw/uiconfig/swriter/ui/footnotepage.ui:198
@@ -15270,13 +15264,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/footnotepage.ui:419
msgctxt "footnotepage|extended_tip|pagestylelb"
msgid "Select the page style that you want to use for footnotes."
-msgstr ""
+msgstr "حدد طراز الصفحة الذي تريد استخدامه للملاحظات الذيلية."
#. ESqR9
#: sw/uiconfig/swriter/ui/footnotepage.ui:435
msgctxt "footnotepage|extended_tip|charanchorstylelb"
msgid "Select the character style that you want to use for footnote anchors in the text area of your document."
-msgstr ""
+msgstr "حدد طراز المحرف الذي تريد استخدامه لمرابط الملاحظات الذيلية في مساحة نص المستند."
#. EfWvJ
#: sw/uiconfig/swriter/ui/footnotepage.ui:451
@@ -15306,7 +15300,7 @@ msgstr "الطُرُز"
#: sw/uiconfig/swriter/ui/footnotepage.ui:504
msgctxt "footnotepage|extended_tip|FootnotePage"
msgid "Specifies the formatting for footnotes."
-msgstr ""
+msgstr "يحدد التنسيق للملاحظات الذيلية."
#. MV5EC
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:51
@@ -15324,7 +15318,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:86
msgctxt "footnotesendnotestabpage|extended_tip|ftnoffset"
msgid "Enter the number that you want to assign the footnote."
-msgstr ""
+msgstr "أدخِل الرقم الذي تريد تعيينه إلى الملاحظة الذيلية."
#. GVtFs
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:100
@@ -15354,7 +15348,7 @@ msgstr "ب_عد:"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:179
msgctxt "footnotesendnotestabpage|extended_tip|ftnnumviewbox"
msgid "Select the numbering scheme for the footnotes."
-msgstr ""
+msgstr "حدد مخطط التعداد للملاحظات الذيلية."
#. 7RJB2
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:198
@@ -15378,13 +15372,13 @@ msgstr "_جمّع في نهاية النص"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:245
msgctxt "footnotesendnotestabpage|extended_tip|ftnntattextend"
msgid "Adds footnotes at the end of the section. If the section spans more than one page, the footnotes are added to the bottom of the page on which the footnote anchors appear."
-msgstr ""
+msgstr "يضيف الملاحظات الذيلية في نهاية المقطع. إذا امتد المقطع على أكثر من صفحة فستُضاف الملاحظات الذيلية إلى أسفل الصفحة التي تظهر فيها مراسي الملاحظات الذيلية."
#. J8Vb4
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:260
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
-msgstr "الحواشي"
+msgstr "الملاحظات الذيلية"
#. AUkwM
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:292
@@ -15414,7 +15408,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:356
msgctxt "footnotesendnotestabpage|extended_tip|endoffset"
msgid "Enter the number that you want to assign the endnote."
-msgstr ""
+msgstr "أدخِل الرقم الذي تريد تعيينه إلى الملاحظة الختامية."
#. 3vUD5
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:370
@@ -15474,7 +15468,7 @@ msgstr "الحواشي الختامية"
#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:530
msgctxt "footnotesendnotestabpage|extended_tip|FootnotesEndnotesTabPage"
msgid "Specifies where footnotes and endnotes are displayed as well as their numbering formats."
-msgstr ""
+msgstr "يحدد أين تُعرَض الملاحظات الذيلية والختامية إضافة إلى أنساق الترقيم."
#. GzLJU
#: sw/uiconfig/swriter/ui/formatsectiondialog.ui:8
@@ -15504,7 +15498,7 @@ msgstr "الخلفية"
#: sw/uiconfig/swriter/ui/formatsectiondialog.ui:282
msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
-msgstr "الحواشي/الحواشي الختامية"
+msgstr "الملاحظات الذيلية/الختامية"
#. nq24V
#: sw/uiconfig/swriter/ui/formattablepage.ui:76
@@ -15660,7 +15654,7 @@ msgstr "_وسط"
#: sw/uiconfig/swriter/ui/formattablepage.ui:463
msgctxt "formattablepage|extended_tip|center"
msgid "Centers the table horizontally on the page."
-msgstr ""
+msgstr "يوسّط الجدول أفقيًا في الصفحة."
#. 52nix
#: sw/uiconfig/swriter/ui/formattablepage.ui:474
@@ -16092,7 +16086,7 @@ msgstr "بال_صفحة"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:383
msgctxt "frmtypepage|extended_tip|topage"
msgid "Anchors the selection to the current page."
-msgstr ""
+msgstr "يربط التحديد إلى الصفحة الحالية."
#. MMqAf
#: sw/uiconfig/swriter/ui/frmtypepage.ui:394
@@ -16104,19 +16098,19 @@ msgstr "بال_فقرة"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:403
msgctxt "frmtypepage|extended_tip|topara"
msgid "Anchors the selection to the current paragraph."
-msgstr ""
+msgstr "يربط التحديد إلى الفقرة الحالية."
#. yX6rK
#: sw/uiconfig/swriter/ui/frmtypepage.ui:414
msgctxt "frmtypepage|tochar"
msgid "To cha_racter"
-msgstr "بالم_حرف"
+msgstr "إلى الم_حرف"
#. CKgCn
#: sw/uiconfig/swriter/ui/frmtypepage.ui:423
msgctxt "frmtypepage|extended_tip|tochar"
msgid "Anchors the selection to a character."
-msgstr ""
+msgstr "يربط التحديد إلى المحرف الحالي."
#. C9xQY
#: sw/uiconfig/swriter/ui/frmtypepage.ui:434
@@ -16128,7 +16122,7 @@ msgstr "كم_حرف"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:443
msgctxt "frmtypepage|extended_tip|aschar"
msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection."
-msgstr ""
+msgstr "يربط التحديد كمحرف. يُغيَّر ارتفاع السطر الحالي ليوافق ارتفاع التحديد."
#. TGg8f
#: sw/uiconfig/swriter/ui/frmtypepage.ui:454
@@ -16296,13 +16290,13 @@ msgstr "ا_ستعراض..."
#: sw/uiconfig/swriter/ui/frmurlpage.ui:125
msgctxt "frmurlpage|extended_tip|search"
msgid "Locate the file that you want the hyperlink to open, and then click Open."
-msgstr ""
+msgstr "حدد موضع الملف الذي تريد أن يفتحه الارتباط التشعبي، ثم انقر فتح."
#. N7zSV
#: sw/uiconfig/swriter/ui/frmurlpage.ui:156
msgctxt "frmurlpage|extended_tip|frame"
msgid "Specify the name of the frame where you want to open the targeted file."
-msgstr ""
+msgstr "حدد اسم الإطار الذي تريد أن تفتح فيه الملف المستهدَف."
#. ADpZK
#: sw/uiconfig/swriter/ui/frmurlpage.ui:172
@@ -16344,13 +16338,13 @@ msgstr "خريطة صورية"
#: sw/uiconfig/swriter/ui/frmurlpage.ui:264
msgctxt "frmurlpage|extended_tip|FrameURLPage"
msgid "Specify the properties of the hyperlink for the selected graphic, frame or OLE object."
-msgstr ""
+msgstr "حدد خصائص الارتباط التشعبي للرسم أو الإطار أو كائن OLE."
#. kyPYk
#: sw/uiconfig/swriter/ui/gotopagedialog.ui:8
msgctxt "gotopagedialog|GotoPageDialog"
msgid "Go to Page"
-msgstr "انتقال إلى صفحة"
+msgstr "اذهب إلى الصفحة"
#. wjidN
#: sw/uiconfig/swriter/ui/gotopagedialog.ui:74
@@ -16398,13 +16392,13 @@ msgstr "ب_عد القسم"
#: sw/uiconfig/swriter/ui/indentpage.ui:89
msgctxt "indentpage|extended_tip|before"
msgid "Specifies the indents before the section, at the left margin."
-msgstr ""
+msgstr "يحدد الإزاحات قبل المقطع، في الحاشية اليسرى."
#. sBtvo
#: sw/uiconfig/swriter/ui/indentpage.ui:108
msgctxt "indentpage|extended_tip|after"
msgid "Specifies the indents after the section, at the right margin."
-msgstr ""
+msgstr "يحدد الإزاحات بعد المقطع، في الحاشية اليمنى."
#. rrGkM
#: sw/uiconfig/swriter/ui/indentpage.ui:123
@@ -16428,7 +16422,7 @@ msgstr "أدرج مُدخَل فهرس"
#: sw/uiconfig/swriter/ui/indexentry.ui:80
msgctxt "indexentry|extended_tip|delete"
msgid "Deletes the selected entry from the index. The entry text in the document is not deleted."
-msgstr ""
+msgstr "يحذف المُدخَل المحدد من الفهرس. لن يُحذَف نص المُدخَل في المستند."
#. UAN8C
#: sw/uiconfig/swriter/ui/indexentry.ui:92
@@ -16524,13 +16518,13 @@ msgstr "كلمات كاملة فقط"
#: sw/uiconfig/swriter/ui/indexentry.ui:541
msgctxt "indexentry|extended_tip|previous"
msgid "Jumps to the previous index entry of the same type in the document."
-msgstr ""
+msgstr "يقفز إلى مُدخَل الفهرس السابق من نفس النوع في المستند."
#. WsgJC
#: sw/uiconfig/swriter/ui/indexentry.ui:561
msgctxt "indexentry|extended_tip|next"
msgid "Jumps to the next index entry of the same type in the document."
-msgstr ""
+msgstr "يقفز إلى مُدخَل الفهرس التالي من نفس النوع في المستند."
#. GEB3A
#: sw/uiconfig/swriter/ui/indexentry.ui:581
@@ -16584,25 +16578,25 @@ msgstr "لن تُقبل أيّة تعديلات."
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:8
msgctxt "inputfielddialog|InputFieldDialog"
msgid "Review Fields"
-msgstr ""
+msgstr "راجع الحقول"
#. jLu5C
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:31
msgctxt "inputfielddialog|next"
msgid "_Previous"
-msgstr ""
+msgstr "ال_سابق"
#. iwh9e
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:45
msgctxt "inputfielddialog|next"
msgid "_Next"
-msgstr ""
+msgstr "ال_تالي"
#. YpSqb
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:52
msgctxt "inputfielddialog|extended_tip|next"
msgid "Jumps to the next input field in the document."
-msgstr ""
+msgstr "يقفز إلى حقل الإدخال التالي في المستند."
#. m9uWN
#: sw/uiconfig/swriter/ui/inputfielddialog.ui:135
@@ -17106,7 +17100,7 @@ msgstr "أعد التسمية"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:392
msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog"
msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time."
-msgstr ""
+msgstr "يُدرِج علامة عند موضع المؤشر الحالي. يمكنك بعدها استخدام الملّاح لتقفز بسرعة إلى الموضع المؤشَّر في وقت لاحق."
#. ydP4q
#: sw/uiconfig/swriter/ui/insertbreak.ui:14
@@ -17124,7 +17118,7 @@ msgstr "فاصل أسطر"
#: sw/uiconfig/swriter/ui/insertbreak.ui:107
msgctxt "insertbreak|linerb-atkobject"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
-msgstr ""
+msgstr "يُنهي السطر الحالي ويحرّك النص الموجود إلى يسار المؤشِّر إلى السطر التالي، دون إنشاء فقرة جديدة."
#. gqCuB
#: sw/uiconfig/swriter/ui/insertbreak.ui:119
@@ -17136,19 +17130,19 @@ msgstr "فاصل أعمدة"
#: sw/uiconfig/swriter/ui/insertbreak.ui:128
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
-msgstr ""
+msgstr "يُدرِج فاصل أعمدة يدوي (في مخطط الأعمدة المتعددة) ويحرّك النص الموجود إلى يسار المؤشر إلى بداية العمود التالي. يُشار إلى فاصل العمود المُدرَج بإطار غير قابل للطباعة في أعلى العمود الجديد."
#. 9GAAp
#: sw/uiconfig/swriter/ui/insertbreak.ui:140
msgctxt "insertbreak|pagerb"
msgid "Page break"
-msgstr "فاصل صفحات"
+msgstr "فاصل صفحة"
#. G7e9T
#: sw/uiconfig/swriter/ui/insertbreak.ui:149
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
-msgstr ""
+msgstr "يُدرِج فاصل صفحة يدوي ويحرّك النص الموجود إلى يسار المؤشر إلى بداية الصفحة التالية. يُشار إلى فاصل الصفحة المُدرَج بإطار غير قابل للطباعة في أعلى الصفحة الجديدة."
#. qAj3x
#: sw/uiconfig/swriter/ui/insertbreak.ui:164
@@ -17166,7 +17160,7 @@ msgstr "[بِلا]"
#: sw/uiconfig/swriter/ui/insertbreak.ui:185
msgctxt "insertbreak|stylelb-atkobject"
msgid "Select the page style for the page that follows the manual page break."
-msgstr ""
+msgstr "حدد طراز الصفحة للصفحة التي تلي فاصل الصفحة اليدوي."
#. LbNq3
#: sw/uiconfig/swriter/ui/insertbreak.ui:197
@@ -17178,13 +17172,13 @@ msgstr "تغيير رقم الصفحة"
#: sw/uiconfig/swriter/ui/insertbreak.ui:206
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
-msgstr ""
+msgstr "يُسنِد رقم الصفحة الذي تحدده إلى الصفحة التي تلي فاصل الصفحة اليدوي. هذا الخيار متاح فقط إذا كنت قد أسندت طراز صفحة مختلف إلى الصفحة التي تلي فاصل الصفحة اليدوي."
#. iWGZG
#: sw/uiconfig/swriter/ui/insertbreak.ui:229
msgctxt "insertbreak|pagenumsb-atkobject"
msgid "Enter the new page number for the page that follows the manual page break."
-msgstr ""
+msgstr "أدرِج رقم الصفحة الجديدة للصفحة التي تلي فاصل الصفحة اليدوي."
#. uAMAX
#: sw/uiconfig/swriter/ui/insertbreak.ui:245
@@ -17196,7 +17190,7 @@ msgstr "النوع"
#: sw/uiconfig/swriter/ui/insertbreak.ui:269
msgctxt "insertbreak|extended_tip|BreakDialog"
msgid "Inserts a manual line break, column break or a page break at the current cursor position."
-msgstr ""
+msgstr "يُدرِج فاصل أسطر يدوي أو فاصل أعمدة أو فاصل صفحة عند الموضع الحالي للمؤشِّر."
#. C4mDz
#: sw/uiconfig/swriter/ui/insertcaption.ui:8
@@ -17262,7 +17256,7 @@ msgstr ": "
#: sw/uiconfig/swriter/ui/insertcaption.ui:234
msgctxt "insertcaption|extended_tip|separator_edit"
msgid "Enter optional text characters to appear between the number and the caption text."
-msgstr ""
+msgstr "أدخِل محارف نص اختيارية لتظهر بين الرقم ونص الواصفة."
#. 3QKNx
#: sw/uiconfig/swriter/ui/insertcaption.ui:248
@@ -17581,7 +17575,7 @@ msgstr "تلقائي"
#: sw/uiconfig/swriter/ui/insertfootnote.ui:169
msgctxt "insertfootnote|extended_tip|automatic"
msgid "Automatically assigns consecutive numbers to the footnotes or endnotes that you insert."
-msgstr ""
+msgstr "يعيّن تلقائيًا أرقامًا متتابعة للملاحظات الذيلية والختامية التي تدرجها."
#. sCxPm
#: sw/uiconfig/swriter/ui/insertfootnote.ui:181
@@ -17791,7 +17785,7 @@ msgstr "منطقة"
#: sw/uiconfig/swriter/ui/insertsectiondialog.ui:205
msgctxt "insertsectiondialog|notes"
msgid "Footnotes/Endnotes"
-msgstr "الحواشي/الحواشي الختامية"
+msgstr "الملاحظات الذيلية/الختامية"
#. BBLE8
#: sw/uiconfig/swriter/ui/inserttable.ui:37
@@ -18326,13 +18320,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/linenumbering.ui:275
msgctxt "linenumbering|extended_tip|spacingspin"
msgid "Enter the amount of space that you want to leave between the line numbers and the text."
-msgstr ""
+msgstr "أدخِل مقدار الفراغ الذي تريد تركه بين أرقام السطور والنص."
#. mPYiA
#: sw/uiconfig/swriter/ui/linenumbering.ui:298
msgctxt "linenumbering|extended_tip|intervalspin"
msgid "Enter the counting interval for the line numbers."
-msgstr ""
+msgstr "أدخِل مسافة التعداد لأرقام السطور."
#. YatD8
#: sw/uiconfig/swriter/ui/linenumbering.ui:312
@@ -18923,7 +18917,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:38
msgctxt "mastercontextmenu|STR_UPDATE_SEL"
msgid "Links"
-msgstr "الوصلات"
+msgstr "الروابط"
#. RiguA
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:46
@@ -18953,13 +18947,13 @@ msgstr "أدرج"
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:84
msgctxt "mastercontextmenu|STR_INDEX"
msgid "_Index"
-msgstr ""
+msgstr "ف_هرس"
#. Eg3ib
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:92
msgctxt "mastercontextmenu|STR_FILE"
msgid "File"
-msgstr ""
+msgstr "ملف"
#. m6agV
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:100
@@ -20148,109 +20142,109 @@ msgid "Use the current _document"
msgstr "استخدم الم_ستند الحالي"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "أنشئ مستندا _جديدا"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "اب_دأ من مستند موجود"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "ابدأ من _قالب"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "اب_دأ من مستند بداية حُفظ حديثا"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "ت_صفح..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "ت_صفح..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "اختر مستند البداية لدمج المراسلات"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -20553,7 +20547,7 @@ msgstr "أدرج كارتباط تشعبي"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:28
msgctxt "navigatorpanel|link"
msgid "Insert as Link"
-msgstr ""
+msgstr "أدرج كرابط"
#. 97BBT
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:38
@@ -20565,13 +20559,13 @@ msgstr "أدرج كنسخة"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:155
msgctxt "navigatorpanel|STR_INDEX"
msgid "_Index"
-msgstr ""
+msgstr "ف_هرس"
#. NyHHE
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:163
msgctxt "navigatorpanel|STR_FILE"
msgid "File"
-msgstr ""
+msgstr "ملف"
#. NZZqB
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:171
@@ -20601,13 +20595,13 @@ msgstr "يبدّل ما بين العَرض الرئيس والعَرض الاع
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:377
msgctxt "navigatorpanel|spinbutton|tooltip_text"
msgid "Go to Page"
-msgstr ""
+msgstr "اذهب إلى الصفحة"
#. avLGA
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:384
msgctxt "navigatorpanel|extended_tip|spinbutton"
msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward."
-msgstr ""
+msgstr "أدخِل رقم الصفحة واضغط مفتاح الإدخال. استخدم الأسهم للانتقال إلى الصفحة التالية أمامًا أو خلفًا."
#. DgvFE
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:416
@@ -20619,7 +20613,7 @@ msgstr "منظور الملاحة في المحتوى"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:420
msgctxt "navigatorpanel|extended_tip|root"
msgid "Switches between the display of all categories in the Navigator and the selected category."
-msgstr ""
+msgstr "يناوب بين عَرض كل الأصناف في الملّاح والصنف المحدد."
#. Ngjxu
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:442
@@ -20631,7 +20625,7 @@ msgstr "الرأس"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:446
msgctxt "navigatorpanel|extended_tip|header"
msgid "Moves the cursor to the header, or from the header to the document text area."
-msgstr ""
+msgstr "ينقل المؤشر إلى الرأس أو من الرأس إلى مساحة نص المستند."
#. dfTJU
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:458
@@ -20643,7 +20637,7 @@ msgstr "تذييل"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:462
msgctxt "navigatorpanel|extended_tip|footer"
msgid "Moves the cursor to the footer, or from the footer to the document text area."
-msgstr ""
+msgstr "ينقل المؤشر إلى التذييل أو من التذييل إلى مساحة نص المستند."
#. EefnL
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:474
@@ -20655,7 +20649,7 @@ msgstr "المربط<->النص"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:478
msgctxt "navigatorpanel|extended_tip|anchor"
msgid "Jumps between the footnote text and the footnote anchor."
-msgstr ""
+msgstr "يقفز بين نص الملاحظة الذيلية ومربط الملاحظة الذيلية."
#. GbEFs
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:490
@@ -20667,31 +20661,31 @@ msgstr "عيّن التذكير"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:494
msgctxt "navigatorpanel|extended_tip|reminder"
msgid "Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the Navigation icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
-msgstr ""
+msgstr "انقر هنا لتعيّن تذكيراً عند الموضع الحالي للمؤشر. يمكنك إعداد ما لا يزيد عن خمسة تذكيرات. لتقفز إلى تذكير ما، انقر أيقونة الملّاح، في نافذة الملّاح انقر أيقونة التذكير، ثم انقر زر السابق أو التالي."
#. PjUEP
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:516
msgctxt "navigatorpanel|headings|tooltip_text"
msgid "Heading Levels Shown"
-msgstr ""
+msgstr "مستويات خطوط العناوين الظاهرة"
#. dJcmy
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:520
msgctxt "navigatorpanel|extended_tip|headings"
msgid "Click this icon, and then choose the number of heading outline levels that you want to view in the Navigator window."
-msgstr ""
+msgstr "انقر هذه الأيقونة ثم اختر عدد مستويات مخطط خطوط العناوين التي تريد مشاهدتها في نافذة الملّاح."
#. sxyvw
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:544
msgctxt "navigatorpanel|listbox|tooltip_text"
msgid "List Box On/Off"
-msgstr ""
+msgstr "فتح/غلق مربع القائمة"
#. y7YBB
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:548
msgctxt "navigatorpanel|extended_tip|listbox"
msgid "Shows or hides the Navigator list."
-msgstr ""
+msgstr "يُظهِر أو يخفي قائمة الملّاح."
#. ijAjg
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:570
@@ -20704,7 +20698,7 @@ msgstr "رفع المستوى"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:574
msgctxt "navigatorpanel|extended_tip|promote"
msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon."
-msgstr ""
+msgstr "يزيد مستوى المخطط لخط العنوان المحدد، وخطوط العناوين الواقعة أسفل خط العنوان، بواحد. لتزيد فقط مستوى مخطط خط العنوان المحدد، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة."
#. A7vWQ
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:586
@@ -20717,7 +20711,7 @@ msgstr "خفض مستوى"
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:590
msgctxt "navigatorpanel|extended_tip|demote"
msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon."
-msgstr ""
+msgstr "ينقص مستوى المخطط لخط العنوان المحدد، وخطوط العناوين الواقعة أسفل خط العنوان، بواحد. لتنقص فقط مستوى مخطط خط العنوان المحدد، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة."
#. SndsZ
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:602
@@ -20729,7 +20723,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:606
msgctxt "navigatorpanel|extended_tip|chapterup"
msgid "Moves the selected heading, and the text below the heading, up one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
-msgstr ""
+msgstr "ينقل خط العنوان المحدد والنص أسفله إلى الأعلى بمقدار موضع عنوان واحد في الملّاح وفي المستند. لتنقل العنوان المحدد وليس النص المرتبط بالعنوان، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة."
#. MRuAa
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:618
@@ -20741,7 +20735,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:622
msgctxt "navigatorpanel|extended_tip|chapterdown"
msgid "Moves the selected heading, and the text below the heading, down one heading position in the Navigator and in the document. To move only the selected heading and not the text associated with the heading, hold down Ctrl, and then click this icon."
-msgstr ""
+msgstr "ينقل خط العنوان المحدد والنص أسفله إلى الأسفل بمقدار موضع عنوان واحد في الملّاح وفي المستند. لتنقل العنوان المحدد وليس النص المرتبط بالعنوان، استمر بالضغط على مفتاح التحكم ثم انقر هذه الأيقونة."
#. mHVom
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:644
@@ -20867,7 +20861,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1005
msgctxt "navigatorpanel|STR_UPDATE_SEL"
msgid "Links"
-msgstr "الوصلات"
+msgstr "الروابط"
#. Njw6i
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:1013
@@ -22013,10 +22007,9 @@ msgstr "النص"
#. geGED
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1571
-#, fuzzy
msgctxt "notebookbar_groups|linksb"
msgid "Links"
-msgstr "ارتباط"
+msgstr "الروابط"
#. QdJQU
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1615
@@ -22026,7 +22019,6 @@ msgstr "أشكال"
#. txpNZ
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:1724
-#, fuzzy
msgctxt "notebookbar_groups|insertgrouplabel"
msgid "Insert"
msgstr "أدرج"
@@ -22187,7 +22179,7 @@ msgstr "مستوى المخطط"
#: sw/uiconfig/swriter/ui/numparapage.ui:57
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Assigned Outline Level"
-msgstr ""
+msgstr "مستوى المخطط المسنَد"
#. y9mKV
#: sw/uiconfig/swriter/ui/numparapage.ui:59
@@ -22406,49 +22398,49 @@ msgid "Object"
msgstr "كائن"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "النوع"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "خيارات"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "التفاف"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "رابط تشعبي"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "الحدود"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "منطقة"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "الشفافية"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ماكرو"
@@ -22990,7 +22982,7 @@ msgstr "تبويبات"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:118
msgctxt "extended_tip|tabs"
msgid "Specifies that tab stops are displayed as small arrows."
-msgstr ""
+msgstr "يحدد أنّ توقفات مفتاح التبويب معروضة كسهام صغيرة."
#. rBxLK
#: sw/uiconfig/swriter/ui/optformataidspage.ui:129
@@ -23245,13 +23237,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:248
msgctxt "optgeneralpage|tablabel"
msgid "_Tab stops:"
-msgstr "_علامات الجدولة:"
+msgstr "_توقفات مفتاح التبويب:"
#. ptDvH
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:271
msgctxt "extended_tip|tab"
msgid "Specifies the spacing between the individual tab stops."
-msgstr ""
+msgstr "يحدد التباعد بين التوقفات الفردية لمفتاح التبويب."
#. 4c98s
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:294
@@ -23866,7 +23858,7 @@ msgstr "يفتح حوارا يمكنك أن تحفظ فيه الإعدادات
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:106
msgctxt "outlinenumbering|extended_tip|form"
msgid "Click a numbering scheme in the list, and then enter a name for the scheme. The numbers correspond to the outline level that the styles are assigned to."
-msgstr ""
+msgstr "انقر على خطة تعداد في القائمة ثم أدخِل اسمًا للخطة. الأعداد تتوافق مع مستوى المخطط الذي تُسنَد إليه الطُرُز."
#. d2QaP
#: sw/uiconfig/swriter/ui/outlinenumbering.ui:113
@@ -24055,7 +24047,7 @@ msgstr "يمين"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:158
msgctxt "outlinepositionpage|extended_tip|numalignlb"
msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr ""
+msgstr "عيّن محاذاة رموز التعداد. حدد \"يسار\" لتحاذي رمز التعداد ليبدأ مباشرة عند موضع \"محاذى عند\". حدد \"يمين\" لتحاذي رمز التعداد لينتهي مباشرة قبل موضع \"محاذى عند\". حدد \"موسَّط\" لتوسّط الرمز حول موضع \"محاذى عند\"."
#. DCbYC
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:171
@@ -24083,7 +24075,7 @@ msgstr "عرض الترقيم:"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:227
msgctxt "outlinepositionpage|extended_tip|numberingwidthmf"
msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area."
-msgstr ""
+msgstr "أدخِل عُرض منطقة التعداد. رمز التعداد يمكن أن يكون يساراً أو وسطًا أو يمينًا في هذه المساحة."
#. aZwtj
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:238
@@ -24133,7 +24125,7 @@ msgstr "محاذاة الترقيم:"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:344
msgctxt "outlinepositionpage|extended_tip|num2alignlb"
msgid "Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position."
-msgstr ""
+msgstr "عيّن محاذاة رموز التعداد. حدد \"يسار\" لتحاذي رمز التعداد ليبدأ مباشرة عند موضع \"محاذى عند\". حدد \"يمين\" لتحاذي رمز التعداد لينتهي مباشرة قبل موضع \"محاذى عند\". حدد \"موسَّط\" لتوسّط الرمز حول موضع \"محاذى عند\"."
#. wnCMF
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:357
@@ -24157,7 +24149,7 @@ msgstr "يتوقّف مفتاح التبويب عند:"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:412
msgctxt "outlinepositionpage|extended_tip|atmf"
msgid "If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position."
-msgstr ""
+msgstr "إذا حددت توقف مفتاح التبويب ليتابع التعداد، فيمكنك إدخال قيمة غير سالبة كموضع لتوقف مفتاح التبويب."
#. AtJnm
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:427
@@ -24205,7 +24197,7 @@ msgstr "المبدئيّ"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:469
msgctxt "outlinepositionpage|extended_tip|standard"
msgid "Resets the indent and the spacing values to the default values."
-msgstr ""
+msgstr "يصفّر قيم الإزاحة والتباعد إلى القيم المبدئية."
#. bLuru
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:490
@@ -24643,7 +24635,7 @@ msgstr "يُتراجَع عن التعديلات غير المحفوظة في ه
#: sw/uiconfig/swriter/ui/paradialog.ui:35
msgctxt "paradialog|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
-msgstr ""
+msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار."
#. 6xRiy
#: sw/uiconfig/swriter/ui/paradialog.ui:159
@@ -24799,13 +24791,13 @@ msgstr "تصفّح..."
#: sw/uiconfig/swriter/ui/picturepage.ui:41
msgctxt "picturepage|extended_tip|browse"
msgid "Locate the new graphic file that you want to link to, and then click Open."
-msgstr ""
+msgstr "عيّن موضع ملف الرسومات الجديد الذي تريد أن تربط إليه، ثم انقر فتح."
#. dGTfN
#: sw/uiconfig/swriter/ui/picturepage.ui:59
msgctxt "picturepage|extended_tip|entry"
msgid "Displays the path to the linked graphic file. To change the link, click the Browse button and then locate the file that you want to link to."
-msgstr ""
+msgstr "يعرض المسار إلى ملف الرسومات المربوط. لتغيّر الرابط، انقر زر التصفح ثم عيّن موضع الملف الذي تريد أن تربط إليه،"
#. PqFMY
#: sw/uiconfig/swriter/ui/picturepage.ui:72
@@ -24829,7 +24821,7 @@ msgstr "رأ_سيا"
#: sw/uiconfig/swriter/ui/picturepage.ui:129
msgctxt "picturepage|extended_tip|vert"
msgid "Flips the selected image vertically."
-msgstr ""
+msgstr "يقلب الصورة المحددة رأسيًا"
#. jwAir
#: sw/uiconfig/swriter/ui/picturepage.ui:140
@@ -24841,7 +24833,7 @@ msgstr "أ_فقيا"
#: sw/uiconfig/swriter/ui/picturepage.ui:148
msgctxt "picturepage|extended_tip|hori"
msgid "Flips the selected image horizontally."
-msgstr ""
+msgstr "يقلب الصورة المحددة أفقيًا"
#. F3zpM
#: sw/uiconfig/swriter/ui/picturepage.ui:159
@@ -24853,7 +24845,7 @@ msgstr "على كل الصفحات"
#: sw/uiconfig/swriter/ui/picturepage.ui:169
msgctxt "picturepage|extended_tip|allpages"
msgid "Flips the selected image horizontally on all pages."
-msgstr ""
+msgstr "يقلب الصورة المحددة أفقيًا على كل الصفحات."
#. FX5Cn
#: sw/uiconfig/swriter/ui/picturepage.ui:180
@@ -24865,7 +24857,7 @@ msgstr "على الصفحات اليسرى"
#: sw/uiconfig/swriter/ui/picturepage.ui:190
msgctxt "picturepage|extended_tip|leftpages"
msgid "Flips the selected image horizontally only on even pages."
-msgstr ""
+msgstr "يقلب الصورة المحددة على الصفحات الزوجية فقط."
#. 6eLFK
#: sw/uiconfig/swriter/ui/picturepage.ui:201
@@ -24877,7 +24869,7 @@ msgstr "على الصفحات اليمنى"
#: sw/uiconfig/swriter/ui/picturepage.ui:211
msgctxt "picturepage|extended_tip|rightpages"
msgid "Flips the selected image horizontally only on odd pages."
-msgstr ""
+msgstr "يقلب الصورة المحددة على الصفحات الفردية فقط."
#. M9Lxh
#: sw/uiconfig/swriter/ui/picturepage.ui:258
@@ -24925,7 +24917,7 @@ msgstr "معلومات الصورة"
#: sw/uiconfig/swriter/ui/picturepage.ui:458
msgctxt "picturepage|extended_tip|PicturePage"
msgid "Specify the flip and the link options for the selected image."
-msgstr ""
+msgstr "حدد الإقلاب وخيارات الرابط للصورة المحددة."
#. fSmkv
#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:22
@@ -24949,19 +24941,19 @@ msgstr "أعمد_ة"
#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:138
msgctxt "previewzoomdialog|extended_tip|rows"
msgid "Defines the number of rows of pages."
-msgstr ""
+msgstr "يعرّف عدد الصفوف للصفحات."
#. 9PMpM
#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:157
msgctxt "previewzoomdialog|extended_tip|cols"
msgid "Defines the number of pages shown in columns."
-msgstr ""
+msgstr "يعرّف عدد الصفحات المعروضة في الأعمدة."
#. A5j6C
#: sw/uiconfig/swriter/ui/previewzoomdialog.ui:185
msgctxt "previewzoomdialog|extended_tip|PreviewZoomDialog"
msgid "Defines the number of pages displayed on screen. Click the arrow next to the icon to open a grid to select the number of pages to be displayed as rows and columns in the preview."
-msgstr ""
+msgstr "يعرّف عدد الصفحات المعروضة على الشاشة. انقر السهم بجانب الأيقونة لتفتح شبكة لتحدد عدد الصفحات التي تُعرَض كصفوف وأعمدة في المعاينة."
#. 2UCY8
#: sw/uiconfig/swriter/ui/printeroptions.ui:26
@@ -24985,7 +24977,7 @@ msgstr "صور وكائنات رسومية أخرى"
#: sw/uiconfig/swriter/ui/printeroptions.ui:54
msgctxt "printeroptions|extended_tip|pictures"
msgid "Specifies whether the graphics and drawings or OLE objects of your text document are printed."
-msgstr ""
+msgstr "يحدد فيما لو ستُطبَع الرسوميات والرسوم أو كائنات OLE في مستندك النصي."
#. VRCmc
#: sw/uiconfig/swriter/ui/printeroptions.ui:66
@@ -25009,7 +25001,7 @@ msgstr "العناصر النائبة للنص"
#: sw/uiconfig/swriter/ui/printeroptions.ui:94
msgctxt "printeroptions|extended_tip|placeholders"
msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout."
-msgstr ""
+msgstr "مكّن هذا الخيار لتطبع عناصر النص النائبة. عطّل هذا الخيار لتترك عناصر النص النائبة فارغة في مخرَجات الطباعة."
#. 3y2Gm
#: sw/uiconfig/swriter/ui/printeroptions.ui:106
@@ -25033,7 +25025,7 @@ msgstr "التعليقات:"
#: sw/uiconfig/swriter/ui/printeroptions.ui:150
msgctxt "printeroptions|extended_tip|writercomments"
msgid "Specify where to print comments (if any)."
-msgstr ""
+msgstr "حدد أين تُطبَع التعليقات (إن وجدت)"
#. M6JQf
#: sw/uiconfig/swriter/ui/printeroptions.ui:173
@@ -25166,13 +25158,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/printoptionspage.ui:129
msgctxt "printoptionspage|textplaceholder"
msgid "Text _placeholder"
-msgstr "معوض _النص"
+msgstr "عناصر النص النا_ئبة"
#. QfL9u
#: sw/uiconfig/swriter/ui/printoptionspage.ui:137
msgctxt "extended_tip|textplaceholder"
msgid "Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout."
-msgstr ""
+msgstr "مكّن هذا الخيار لتطبع عناصر النص النائبة. عطّل هذا الخيار لتترك عناصر النص النائبة فارغة في مخرَجات الطباعة."
#. nxmuA
#: sw/uiconfig/swriter/ui/printoptionspage.ui:152
@@ -25825,10 +25817,9 @@ msgstr "أضف صورة"
#. 2SJDt
#: sw/uiconfig/swriter/ui/readonlymenu.ui:114
-#, fuzzy
msgctxt "readonlymenu|graphicaslink"
msgid "As Link"
-msgstr "كوصلة"
+msgstr "كرابط"
#. YikY9
#: sw/uiconfig/swriter/ui/readonlymenu.ui:122
@@ -25847,7 +25838,7 @@ msgstr "احفظ الخلفية..."
#: sw/uiconfig/swriter/ui/readonlymenu.ui:156
msgctxt "readonlymenu|backaslink"
msgid "As Link"
-msgstr ""
+msgstr "كرابط"
#. CwLB2
#: sw/uiconfig/swriter/ui/readonlymenu.ui:164
@@ -26973,7 +26964,7 @@ msgstr "الإعداد"
#: sw/uiconfig/swriter/ui/sortdialog.ui:894
msgctxt "sortdialog|extended_tip|SortDialog"
msgid "Sorts the selected paragraphs or table rows alphabetically or numerically."
-msgstr "يرتّب الفقرات أو صفوف الجداول المحدد أبجدياً أو رقمياً."
+msgstr "يرتّب الفقرات أو صفوف الجداول المحددة ألفبائياً أو رقمياً."
#. vBG3R
#: sw/uiconfig/swriter/ui/spellmenu.ui:12
@@ -27168,7 +27159,7 @@ msgid "Update"
msgstr "تحديث"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
@@ -27640,7 +27631,7 @@ msgstr "نمط الأحرف"
#: sw/uiconfig/swriter/ui/templatedialog1.ui:34
msgctxt "templatedialog1|extended_tip|reset"
msgid "Revert any changes made on the tab shown here to the settings that were present when this dialog was opened."
-msgstr ""
+msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار."
#. UH8Vz
#: sw/uiconfig/swriter/ui/templatedialog1.ui:172
@@ -27760,7 +27751,7 @@ msgstr "الموضع"
#: sw/uiconfig/swriter/ui/templatedialog16.ui:412
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
-msgstr ""
+msgstr "عدّل الإزاحة والتباعد والمحاذاة لأرقام أو رموز القوائم."
#. g5NQF
#: sw/uiconfig/swriter/ui/templatedialog16.ui:460
@@ -28484,13 +28475,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocentriespage.ui:342
msgctxt "tocentriespage|tabstopposft"
msgid "Tab stop position:"
-msgstr "موضع علامة الجدولة:"
+msgstr "موضع توقف مفتاح التبويب:"
#. F77Kt
#: sw/uiconfig/swriter/ui/tocentriespage.ui:364
msgctxt "tocentriespage|extended_tip|tabstoppos"
msgid "Enter the distance to leave between the left page margin and the tab stop."
-msgstr ""
+msgstr "أدخِل المسافة المتروكة بين الحافة اليمنى للصفحة وتوقف مفتاح التبويب."
#. okgoX
#: sw/uiconfig/swriter/ui/tocentriespage.ui:375
@@ -28503,7 +28494,7 @@ msgstr "حاذِ إلى اليمين"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:383
msgctxt "tocentriespage|extended_tip|alignright"
msgid "Aligns the tab stop to the right page margin."
-msgstr ""
+msgstr "يحاذي توقف مفتاح التبويب إلى الحاشية اليسرى للصفحة."
#. btD2T
#: sw/uiconfig/swriter/ui/tocentriespage.ui:396
@@ -28521,13 +28512,13 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocentriespage.ui:414
msgctxt "tocentriespage|chapterentry"
msgid "Description only"
-msgstr ""
+msgstr "وصف فقط"
#. PMa3U
#: sw/uiconfig/swriter/ui/tocentriespage.ui:415
msgctxt "tocentriespage|chapterentry"
msgid "Number range and description"
-msgstr ""
+msgstr "مجال الأرقام والوصف"
#. bmtXn
#: sw/uiconfig/swriter/ui/tocentriespage.ui:419
@@ -28627,16 +28618,15 @@ msgstr "يُدرج النص لخط عنوان الفصل."
#. BQH4d
#: sw/uiconfig/swriter/ui/tocentriespage.ui:621
-#, fuzzy
msgctxt "tocentriespage|tabstop"
msgid "Tab Stop"
-msgstr "علامة الجدولة"
+msgstr "توقُّف مفتاح التبويب"
#. 28QwC
#: sw/uiconfig/swriter/ui/tocentriespage.ui:628
msgctxt "tocentriespage|extended_tip|tabstop"
msgid "Inserts a tab stop. To add leader dots to the tab stop, select a character in the Fill character box. To change the position of the tab stop, enter a value in the Tab stop position box, or select the Align right check box."
-msgstr ""
+msgstr "يُدرِج توقف مفتاح التبويب. لتضيف نقاطًا بادئة إلى توقف مفتاح التبويب، حدد محرفًا في مربع ⟪محرف الملء⟫. لتغير موضع توقف مفتاح التبويب، أدخِل قيمة في مربع موضع توقف مفتاح التبويب، أو حدد مربع تأشير المحاذاة إلى اليسار."
#. Dbwdu
#: sw/uiconfig/swriter/ui/tocentriespage.ui:640
@@ -28691,7 +28681,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocentriespage.ui:754
msgctxt "tocentriespage|extended_tip|reltostyle"
msgid "Positions the tab stop relative to the \"indent from left\" value defined in the paragraph style selected on the Styles tab. Otherwise the tab stop is positioned relative to the left text margin."
-msgstr ""
+msgstr "يضع توقف مفتاح التبويب نسبيًا إلى قيمة \"أزِح من اليسار\" المعرَّفة في طراز الفقرة المحدد في تبويب الطُرُز. خلاف ذلك سيوضَع توقف مفتاح التبويب نسبيًا إلى حاشية النص اليمنى."
#. pmiey
#: sw/uiconfig/swriter/ui/tocentriespage.ui:766
@@ -28824,7 +28814,7 @@ msgstr "تنازلي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1064
msgctxt "tocentriespage|extended_tip|down1cb"
msgid "Sorts the bibliography entries in a descending alphanumerical order."
-msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
+msgstr "يرتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
#. PJr9b
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1078
@@ -28860,7 +28850,7 @@ msgstr "تنازلي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1127
msgctxt "tocentriespage|extended_tip|down2cb"
msgid "Sorts the bibliography entries in a descending alphanumerical order."
-msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
+msgstr "يرتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
#. VRkA3
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1141
@@ -28872,7 +28862,7 @@ msgstr "تنازلي"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1148
msgctxt "tocentriespage|extended_tip|down3cb"
msgid "Sorts the bibliography entries in a descending alphanumerical order."
-msgstr "رتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
+msgstr "يرتّب مُدخَلات ثبت المراجع بترتيب ألفبائي متنازل."
#. heqgT
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1163
@@ -29106,7 +29096,7 @@ msgstr "كائنات OLE"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:454
msgctxt "tocindexpage|extended_tip|fromoles"
msgid "Includes OLE objects in the index."
-msgstr ""
+msgstr "يضمّن كائنات OLE في الفهرس."
#. JnBBj
#: sw/uiconfig/swriter/ui/tocindexpage.ui:465
@@ -29422,7 +29412,7 @@ msgstr "نوع المفتاح:"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1198
msgctxt "tocindexpage|extended_tip|keytype"
msgid "Select numeric when you want to sort numbers by value, such as in 1, 2, 12. Select alphanumeric, when you want to sort the numbers by character code, such as in 1, 12, 2."
-msgstr ""
+msgstr "حدد الرقمي عندما تريد ترتيب الأعداد بحسب القيمة، كما في 1، 2، 12. حدد ألفبائي رقمي عندما تريد ترتيب الأعداد بحسب رمز المحرف، كما في 1، 12، 2."
#. Ec4gF
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1219
@@ -29602,7 +29592,7 @@ msgstr "اعرض الحقول"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:290
msgctxt "viewoptionspage|changesinmargin"
msgid "Tracked _deletions in margin"
-msgstr ""
+msgstr "حالات ال_حذف المتتبَّعة في الهامش"
#. vvvb7
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:298
@@ -29614,13 +29604,13 @@ msgstr "يعرض النص الذي أخفاه نص شرطي أو حقول نص
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:309
msgctxt "viewoptionspage|changestooltip"
msgid "_Tooltips on tracked changes"
-msgstr ""
+msgstr "_تلميحات عن التغييرات المتتبَّعة"
#. 8no6x
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:327
msgctxt "viewoptionspage|changeslabel"
msgid "Display tracked changes"
-msgstr ""
+msgstr "اعرِض التغييرات المتتبَّعة"
#. YD6TK
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:369
diff --git a/source/ar/swext/mediawiki/help.po b/source/ar/swext/mediawiki/help.po
index ddb4fd27f92..5a1300147d1 100644
--- a/source/ar/swext/mediawiki/help.po
+++ b/source/ar/swext/mediawiki/help.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/swextmediawikihelp/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022451.000000\n"
#. 7EFBE
@@ -586,13 +586,12 @@ msgstr "صور"
#. G3qA6
#: wikiformats.xhp
-#, fuzzy
msgctxt ""
"wikiformats.xhp\n"
"par_id3541673\n"
"help.text"
msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported."
-msgstr "يتعذر تصدير الصور بواسطة عملية تحويل تؤدي للحصول على ملف مفرد من نص الويكي. ومع ذلك، في حالة تحميل الصورة بالفعل إلى مجال موقع الويكي المقصود (على سبيل المثالWikiMedia Commons) فسينتج عن عملية التحويل علامة صورة صالحة تشتمل على الصورة. يتم دعم واصفات الصور أيضًا."
+msgstr "يتعذر تصدير الصور بعملية تحويل تُنتج ملفًا واحداً من نص الويكي. ومع ذلك، في حالة تحميل الصورة بالفعل إلى نطاق موقع الويكي المقصود (على سبيل المثال WikiMedia Commons) فسينتج عن عملية التحويل وسم صورة صالحًا يشتمل على الصورة. واصفات الصور مدعومة أيضًا."
#. nGuGG
#: wikiformats.xhp
diff --git a/source/ar/sysui/desktop/share.po b/source/ar/sysui/desktop/share.po
index b5c5261e473..b095f0dcf4e 100644
--- a/source/ar/sysui/desktop/share.po
+++ b/source/ar/sysui/desktop/share.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-03-02 22:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/sysuidesktopshare/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1511612289.000000\n"
#. a9uCy
@@ -428,7 +428,7 @@ msgctxt ""
"writer\n"
"LngText.text"
msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer."
-msgstr "أنشئ النصوص والصور وحررها في الرسائل، والتقارير، والمستندات وصفحات الوِب باستخدام رايتر."
+msgstr "أنشئ وحرّر النصوص والصور في الرسائل والتقارير والمستندات وصفحات الوِب باستخدام رايتر."
#. hnW8F
#: launcher_comment.ulf
@@ -446,7 +446,7 @@ msgctxt ""
"draw\n"
"LngText.text"
msgid "Create and edit drawings, flow charts, and logos by using Draw."
-msgstr "إنشاء الرسوم وتحريرها، ورسوم الدفق البيانية، والشعارات باستخدام درو."
+msgstr "أنشئ وحرر الرسوم، والمخططات الانسيابية والشعارات باستخدام درو."
#. US56A
#: launcher_comment.ulf
diff --git a/source/ar/vcl/messages.po b/source/ar/vcl/messages.po
index b01ad48a996..7ef1048d42c 100644
--- a/source/ar/vcl/messages.po
+++ b/source/ar/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: 2021-11-16 12:10+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022451.000000\n"
#. k5jTM
@@ -154,7 +154,7 @@ msgstr "D"
#: vcl/inc/print.hrc:55
msgctxt "RID_STR_PAPERNAMES"
msgid "E"
-msgstr "E"
+msgstr "مُ"
#. 9quGe
#: vcl/inc/print.hrc:56
@@ -1967,7 +1967,7 @@ msgstr "ط_باعة"
#: vcl/uiconfig/ui/printdialog.ui:160
msgctxt "printdialog|printpreview"
msgid "Print preview"
-msgstr ""
+msgstr "معاينة الطباعة"
#. 67YPm
#: vcl/uiconfig/ui/printdialog.ui:166
@@ -1985,7 +1985,7 @@ msgstr "_عاين"
#: vcl/uiconfig/ui/printdialog.ui:205
msgctxt "printdialog|extended_tip|previewbox"
msgid "Turn on or off display of the print preview."
-msgstr ""
+msgstr "شغّل أو عطّل عَرض معاينة الطباعة."
#. SbgFv
#: vcl/uiconfig/ui/printdialog.ui:235
@@ -2243,7 +2243,7 @@ msgstr "ن_ظِّم"
#: vcl/uiconfig/ui/printdialog.ui:815
msgctxt "printdialog|extended_tip|collate"
msgid "Preserves the page order of the original document."
-msgstr ""
+msgstr "يحافظ على ترتيب الصفحات للمستند الأصلي."
#. GZrpG
#: vcl/uiconfig/ui/printdialog.ui:845
@@ -2303,7 +2303,7 @@ msgstr "عرضي"
#: vcl/uiconfig/ui/printdialog.ui:967
msgctxt "printdialog|extended_tip|pageorientationbox"
msgid "Select the orientation of the paper."
-msgstr ""
+msgstr "حدد اتجاه الورق."
#. DSFv2
#: vcl/uiconfig/ui/printdialog.ui:983
@@ -2315,178 +2315,178 @@ msgstr ""
#: vcl/uiconfig/ui/printdialog.ui:1018
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
-msgstr ""
+msgstr "الصفحات في الورقة:"
#. ok8Lw
#: vcl/uiconfig/ui/printdialog.ui:1032
msgctxt "printdialog|extended_tip|pagespersheetbtn"
msgid "Print multiple pages per sheet of paper."
-msgstr ""
+msgstr "اطبع صفحات متعددة لكل قطعة ورق."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "مخصص"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
-msgstr ""
+msgstr "حدد كم صفحة تُطبَع لكل قطعة ورق."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "الصفحات:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "حدد عدد الصفوف."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "حسب"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "حدد عدد الأعمدة."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "الحافة:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
-msgstr ""
+msgstr "حدد الحافة بين الصفحات المنفردة في كل قطعة ورق."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "بين الصفحات"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "المسافة:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "إلى حد الورقة"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "الترتيب:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
-msgstr ""
+msgstr "من اليسار إلى اليمين ثم لأسفل"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
-msgstr ""
+msgstr "من أعلى لأسفل ثم إلى اليمين"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "أعلى إلى أسفل، ثم يساراً"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
-msgstr ""
+msgstr "من اليمين إلى اليسار ثم لأسفل"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
-msgstr ""
+msgstr "حدد الترتيب الذي ستُطبَع به الصفحات."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "ارسم حدًا حول كل صفحة"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
-msgstr ""
+msgstr "أشّر لترسم حدًا حول كل صفحة."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "منشور"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "عامّ"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ar/wizards/messages.po b/source/ar/wizards/messages.po
index 14b72a4b9e7..ed7001fd86d 100644
--- a/source/ar/wizards/messages.po
+++ b/source/ar/wizards/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: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/wizardsmessages/ar/>\n"
"Language: ar\n"
@@ -614,7 +614,7 @@ msgstr "تذييل"
#: wizards/com/sun/star/wizards/common/strings.hrc:138
msgctxt "RID_LETTERWIZARDROADMAP_START_6"
msgid "Name and Location"
-msgstr "الإسم و المكان"
+msgstr "الاسم و الموضع"
#. AZSy8
#: wizards/com/sun/star/wizards/common/strings.hrc:141
@@ -1046,7 +1046,7 @@ msgstr "تذييل"
#: wizards/com/sun/star/wizards/common/strings.hrc:220
msgctxt "RID_FAXWIZARDROADMAP_START_5"
msgid "Name and Location"
-msgstr "الاسم و المكان"
+msgstr "الاسم و الموضع"
#. N6985
#: wizards/com/sun/star/wizards/common/strings.hrc:223
@@ -1160,13 +1160,13 @@ msgstr "..."
#: wizards/com/sun/star/wizards/common/strings.hrc:241
msgctxt "RID_AGENDAWIZARDDIALOG_START_19"
msgid "Create an ~agenda from this template"
-msgstr "إنشاء ~مفكرة من هذا القالب"
+msgstr "إنشاء ~جدول أعمال من هذا القالب"
#. TUJyC
#: wizards/com/sun/star/wizards/common/strings.hrc:242
msgctxt "RID_AGENDAWIZARDDIALOG_START_20"
msgid "To create a new agenda out of the template, go to the location where you saved the template and double-click the file."
-msgstr "لإنشاء مفكرة جديدة من القالب، اذهب إلى المكان الذي حفظت فيه القالب و اضغط الملف ضغطًا مزدوجًا."
+msgstr "لإنشاء جدول أعمال جديد من القالب، اذهب إلى الموضع الذي حفظت فيه القالب و انقر الملف نقراً مزدوجًا."
#. GbdcR
#: wizards/com/sun/star/wizards/common/strings.hrc:243
@@ -1274,7 +1274,7 @@ msgstr "التاريخ:"
#: wizards/com/sun/star/wizards/common/strings.hrc:260
msgctxt "RID_AGENDAWIZARDDIALOG_START_39"
msgid "This wizard creates an agenda template which enables you to create multiple agendas with the same layout and settings."
-msgstr "يُنشئ هذا المرشد قالب جدوال أعمال يتيح لك إنشاء جداول أعمال بنفس التخطيط و الإعدادات."
+msgstr "يُنشئ هذا المرشد قالب جدول أعمال يمكّنك من إنشاء جداول أعمال متعددة بنفس التخطيط والإعدادات."
#. CS6WP
#: wizards/com/sun/star/wizards/common/strings.hrc:261
@@ -1286,19 +1286,19 @@ msgstr "تصميم الصفحة:"
#: wizards/com/sun/star/wizards/common/strings.hrc:262
msgctxt "RID_AGENDAWIZARDDIALOG_START_41"
msgid "myAgendaTemplate.stw"
-msgstr "myAgendaTemplate.stw"
+msgstr "قالب‌جدول‌أعمالي.stw"
#. YpeTB
#: wizards/com/sun/star/wizards/common/strings.hrc:263
msgctxt "RID_AGENDAWIZARDDIALOG_START_42"
msgid "My Agenda Template"
-msgstr "قالب مفكرتي"
+msgstr "قالب جدول أعمالي"
#. ZK3nA
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr "حصل خطأ أثناء حفظ قالب جدول المواعيد."
+msgstr "حصل خطأ أثناء حفظ قالب جدول الأعمال."
#. kFgjn
#: wizards/com/sun/star/wizards/common/strings.hrc:265
@@ -1364,7 +1364,7 @@ msgstr "عناصر جدول المواعيد"
#: wizards/com/sun/star/wizards/common/strings.hrc:275
msgctxt "RID_AGENDAWIZARDDIALOG_START_55"
msgid "Name and Location"
-msgstr "الاسم و المكان"
+msgstr "الاسم و الموضع"
#. VNixB
#: wizards/com/sun/star/wizards/common/strings.hrc:276
@@ -1454,13 +1454,13 @@ msgstr "أزِل"
#: wizards/com/sun/star/wizards/common/strings.hrc:290
msgctxt "RID_AGENDAWIZARDDIALOG_START_70"
msgid "Move up"
-msgstr "تحريك للأعلى"
+msgstr "انقل لأعلى"
#. 8uZEg
#: wizards/com/sun/star/wizards/common/strings.hrc:291
msgctxt "RID_AGENDAWIZARDDIALOG_START_71"
msgid "Move down"
-msgstr "تحريك للأسفل"
+msgstr "انقل لأسفل"
#. wEi4D
#: wizards/com/sun/star/wizards/common/strings.hrc:292
diff --git a/source/ar/wizards/source/resources.po b/source/ar/wizards/source/resources.po
index 245df3148ca..732081c1622 100644
--- a/source/ar/wizards/source/resources.po
+++ b/source/ar/wizards/source/resources.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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/wizardssourceresources/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1516047284.000000\n"
#. 8UKfi
@@ -4159,7 +4159,7 @@ msgctxt ""
"CorrespondenceFields_0\n"
"property.text"
msgid "Click placeholder and overwrite"
-msgstr "ضغط العنصر النائب والكتابة عليه"
+msgstr "انقر العنصر النائب واكتب عليه"
#. hRJRf
#: resources_en_US.properties
@@ -4465,7 +4465,7 @@ msgctxt ""
"AgendaDlgName\n"
"property.text"
msgid "Minutes Template"
-msgstr "قالب مسودّة"
+msgstr "قالب محضر"
#. 3Yeqe
#: resources_en_US.properties
@@ -4483,7 +4483,7 @@ msgctxt ""
"AgendaDlgFrame\n"
"property.text"
msgid "Minutes Type"
-msgstr "نوع المسودّة"
+msgstr "نوع المحضر"
#. hyGRE
#: resources_en_US.properties
@@ -4492,7 +4492,7 @@ msgctxt ""
"AgendaDlgButton1\n"
"property.text"
msgid "Results Minutes"
-msgstr "مسودّة نتائج"
+msgstr "محضر نتائج"
#. DMfQn
#: resources_en_US.properties
@@ -4501,7 +4501,7 @@ msgctxt ""
"AgendaDlgButton2\n"
"property.text"
msgid "Evaluation Minutes"
-msgstr "مسودّة تقييم"
+msgstr "محضر تقييم"
#. 9zy6P
#: resources_en_US.properties
diff --git a/source/ar/writerperfect/messages.po b/source/ar/writerperfect/messages.po
index 054f6577c64..92c71809441 100644
--- a/source/ar/writerperfect/messages.po
+++ b/source/ar/writerperfect/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: 2021-03-23 11:46+0100\n"
-"PO-Revision-Date: 2022-03-23 11:35+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/writerperfectmessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1525785878.000000\n"
#. DXXuk
@@ -157,7 +157,7 @@ msgstr "كتاب الكتروني EPUB 2.0"
#: writerperfect/uiconfig/ui/exportepub.ui:146
msgctxt "exportepub|splitpage"
msgid "Page break"
-msgstr "فاصل صفحات"
+msgstr "فاصل صفحة"
#. u8EWu
#: writerperfect/uiconfig/ui/exportepub.ui:147
diff --git a/source/ar/xmlsecurity/messages.po b/source/ar/xmlsecurity/messages.po
index f181cb85597..2db8843281d 100644
--- a/source/ar/xmlsecurity/messages.po
+++ b/source/ar/xmlsecurity/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: 2021-03-29 16:04+0200\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-7-3/xmlsecuritymessages/ar/>\n"
"Language: ar\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1527110925.000000\n"
#. EyJrF
@@ -462,7 +462,7 @@ msgstr "نوع الشّهادة"
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:196
msgctxt "digitalsignaturesdialog|extended_tip|signatures"
msgid "Lists the digital signatures for the current document."
-msgstr ""
+msgstr "يسرد التواقيع الرقمية للمستند الحالي."
#. GAMdr
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:216
@@ -474,7 +474,7 @@ msgstr "اعرض الشّهادة..."
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:222
msgctxt "digitalsignaturesdialog|extended_tip|view"
msgid "Opens the View Certificate dialog."
-msgstr ""
+msgstr "يفتح حوار عَرض الشهادة."
#. uM8mn
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:234
@@ -486,7 +486,7 @@ msgstr "وقّع المستند..."
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:241
msgctxt "digitalsignaturesdialog|extended_tip|sign"
msgid "Opens the Select Certificate dialog."
-msgstr ""
+msgstr "يفتح حوار تحديد الشهادة."
#. hFd4m
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:253
@@ -534,7 +534,7 @@ msgstr "التّواقيع في هذا المستند غير صالحة"
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426
msgctxt "digitalsignaturesdialog|oldsignatureft"
msgid "At least one signature has problems: the document is only partially signed."
-msgstr ""
+msgstr "توجد مشاكل في توقيع واحد على الأقل: وُقّع المستند جزئيا فقط."
#. wn85z
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439
@@ -784,7 +784,7 @@ msgstr "استخدام الشّهادة"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:208
msgctxt "selectcertificatedialog|extended_tip|signatures"
msgid "Select the certificate that you want to digitally sign the current document with."
-msgstr ""
+msgstr "حدد الشهادة التي تريد توقيع المستند الحالي رقميًا بها."
#. uwjMQ
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:221
@@ -814,7 +814,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:297
msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog"
msgid "Select the certificate that you want to digitally sign the current document with."
-msgstr ""
+msgstr "حدد الشهادة التي تريد توقيع المستند الحالي رقميًا بها."
#. nBkSy
#: xmlsecurity/uiconfig/ui/viewcertdialog.ui:8
diff --git a/source/as/chart2/messages.po b/source/as/chart2/messages.po
index 78c35fa9242..a84a1ec8cbd 100644
--- a/source/as/chart2/messages.po
+++ b/source/as/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-05-12 07:38+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/as/>\n"
@@ -3692,7 +3692,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 901dda7fffa..a1620ffc351 100644
--- a/source/as/cui/messages.po
+++ b/source/as/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/as/>\n"
@@ -17539,181 +17539,155 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "স্বচালিত"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "উচ্চ কনট্ৰাস্ট"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "অক্সিজেন"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "কালজয়ী"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "হাৰ্ডৱেৰ ত্বৰণ ব্যৱহাৰ কৰক (_w)"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "এন্টি-এলিায়াচিং ব্যৱহাৰ কৰক (_l)"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
#, fuzzy
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "গ্ৰাফিক্স আউটপুট"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "ফন্টসমূহৰ পূৰ্বদৰ্শন দেখুৱাওক (_r)"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "পৰ্দা ফন্ট এন্টিএলিয়াচিং (_g)"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
#, fuzzy
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "পৰা (_m)"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "ফন্ট তালিকাসমূহ"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/as/dbaccess/messages.po b/source/as/dbaccess/messages.po
index 0d03bc3d33d..34cd24aa2e8 100644
--- a/source/as/dbaccess/messages.po
+++ b/source/as/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/as/>\n"
@@ -3466,74 +3466,74 @@ msgid "Create a n_ew database"
msgstr "এটা নতুন ডাটাবেছ সৃষ্টি কৰক (_e)"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "অন্তৰ্ভুক্ত ডাটাবেইচ (_E):"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "এটা বৰ্তি থকা ডাটাবেছ ফাইল খোলক (_f)"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "অলপতে ব্যৱহাৰ কৰা (_R):"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "খোলক"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "এটা বৰ্তি থকা ডাটাবেছৰ সৈতে সংযোগ কৰক (_x)"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3541,7 +3541,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/as/extensions/messages.po b/source/as/extensions/messages.po
index d41eabb5d77..80c3e2788f9 100644
--- a/source/as/extensions/messages.po
+++ b/source/as/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/as/>\n"
@@ -310,600 +310,586 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "পুনৰ সজীৱ কৰক"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "পোৱা"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "পোষ্ট"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multipart"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "টেক্সট"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "মানবিশিষ্ট (চুটি)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "মানবিশিষ্ট (চুটি YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "মানবিশিষ্ট (চুটি YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "মানবিশিষ্ট (দীঘল)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "নিৰ্বাচন কৰা হোৱা নাই"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "নিৰ্বাৰ্চিত"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "সংজ্ঞা নিৰূপিত"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "ৰেকৰ্ডবোৰ"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "সক্ৰিয় ৰেকৰ্ড"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "সদায় বৰ্তমান পৃষ্ঠাৰ সৈতে"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "নহয়"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "হয়"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "ফৰ্ম"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "বন্ধ কৰক"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "কোনো নহয়"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "একক"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "বহু-অংশবিশিষ্ট ৰেখা"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "পৰিসৰ"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "উলম্ব"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "ডিফল্ট"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
#, fuzzy
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "ঠিক আছে"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "বাতিল কৰক"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "সহায়"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "নিৰ্বাচিত নিবেশ"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "নিৰ্বাচিত নিবেশৰ স্থান"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "একমাত্ৰ ৰেখা"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "বহু-অংশবিশিষ্ট ৰেখা"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "ফৰমেটিংৰ সৈতে বহু-অংশবিশিষ্ট ৰেখা"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (ইউনিক্স)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (উইণ্ড'জ)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "কোনো নহয়"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "উলম্ব"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "দুয়োটা"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "ফ্লেট"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "বাওফালে ওপৰৰ"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "বাওঁফালে কেন্দ্রীকৃত"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "বাওঁফালে তলত"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "সোঁফালৰ ওপৰত"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "সোঁফালে কেন্দ্রিত"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "সোঁফালে তলত"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "ওপৰত বাওঁফালে"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "ওপৰত কেন্দ্ৰীকৃত"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "ওপৰত সোঁফালে"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "তলত বাওঁফালে"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "তলত কেন্দ্রিত"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "তলত সোঁফালে"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "কেন্দ্ৰীকৃত"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "সংৰক্ষণ"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "প্ৰতিস্থাপন কৰক"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "স্খলন কৰক"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "নহয়"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "অনুপাত ৰাখক"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "আকাৰৰ বাবে যোগ্য"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "বাওঁফালৰ পৰা-সোঁফাললৈ"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "সোঁফালৰ পৰা-বাওঁফাললৈ"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "চুপাৰঅৰ্ডিনেইট অবজেক্টৰ সংহতি ব্যৱহাৰ কৰক"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "কেতিয়াও নহয়"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "যেতিয়া মনোযোগ নিবদ্ধ কৰা হয়"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "সদায়"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "পেৰেগ্ৰাফলৈ"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "আখৰ"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "পৃষ্ঠালৈ"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "ফ্ৰেমলৈ"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "আখৰ"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "পৃষ্ঠালৈ"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/as/fpicker/messages.po b/source/as/fpicker/messages.po
index bf2ed3c47ac..9aff3eb42af 100644
--- a/source/as/fpicker/messages.po
+++ b/source/as/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/as/>\n"
@@ -221,61 +221,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "নথিপত্ৰৰ নাম:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "ফাইলৰ ধৰণ (‌~t):"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "কেৱল-পঢ়িবৰ বাবে (~R)"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "পাছৱৰ্ডৰ সৈতে সংৰক্ষণ কৰক (~w)"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "স্বচালিত ফাইল নামৰ সম্প্ৰসাৰন (~A)"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ফিল্টাৰ সংহতিসমূহ সম্পাদনা কৰক (~E)"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index c515c291764..4cb806ef959 100644
--- a/source/as/sc/messages.po
+++ b/source/as/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/as/>\n"
@@ -25831,97 +25831,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26307,152 +26307,152 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "সঁজাওক"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ৰঙ (_o)"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "জাল (_G)"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "ভাষা (_L)"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "পুনৰীক্ষণ"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "বিষয়সূচী (_C)"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "দৃশ্য"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "সম্পাদন কৰক (_E)"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "সঁজাওক"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "দৃশ্য"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "গোট"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ফণ্ট (_o)"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "শাৰীকৰণ"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "দৃশ্য"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "সুমুৱাওক"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "মাধ্যম"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "ফ্ৰেইম (_r)"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "সঁজাওক"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "জাল (_G)"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index ade590eb1b6..2f86e625420 100644
--- a/source/as/sd/messages.po
+++ b/source/as/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/as/>\n"
@@ -4225,109 +4225,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7192,109 +7192,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 588055aa28c..ecba9bb54e2 100644
--- a/source/as/sw/messages.po
+++ b/source/as/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/as/>\n"
@@ -10736,19 +10736,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "শৈলীসমূহ"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14289,37 +14289,37 @@ msgid "Exchange Databases"
msgstr "ডাটাবেছবোৰ সালসলনি কৰক"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "ব্যাখ্যা কৰক"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "ব্যৱহাৰ হৈ থকা ডাটাবেছবোৰ"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "উপলব্ধ ডাটাবেইচসমূহ (_A)"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "চৰণ কৰক..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14329,31 +14329,31 @@ msgstr ""
"ডাটাবেছ ফাইল বাছনী কৰিবলৈ ব্ৰাউজ ব্যৱহাৰ কৰক।"
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "ডাটাবেছবোৰ সালসলনি কৰক"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "ডাটাবেছ দস্তাবেজত প্ৰয়োগ কৰা হৈছে:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20619,111 +20619,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "চৰণ কৰক..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "চৰণ কৰক..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22892,52 +22892,52 @@ msgid "Object"
msgstr "বস্তু"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "ধৰণ"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "আবৃত কৰক (~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপাৰলিংক"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ক্ষেত্ৰ"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
#, fuzzy
msgctxt "objectdialog|macro"
msgid "Macro"
@@ -27802,7 +27802,7 @@ msgid "Update"
msgstr "আপডেট কৰক"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/as/vcl/messages.po b/source/as/vcl/messages.po
index a6a83fd68b7..eff541a2fd7 100644
--- a/source/as/vcl/messages.po
+++ b/source/as/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/as/>\n"
@@ -2332,169 +2332,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "স্বনিৰ্বাচিত"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "দ্বাৰা"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "পৃষ্ঠাসমূহৰ মাজত"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "চাদৰৰ সীমালৈ"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "প্ৰতিটো পৃষ্ঠাৰ চাৰিওফালে এটা প্ৰান্ত আকক"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "বিষয়সূচী"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ast/chart2/messages.po b/source/ast/chart2/messages.po
index 538d3153d2b..3e71c14d87c 100644
--- a/source/ast/chart2/messages.po
+++ b/source/ast/chart2/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149368.000000\n"
#. NCRDD
@@ -3005,19 +3005,19 @@ msgstr "Marque'l caxellu de Perspectiva pa ver el gráficu al traviés d'una len
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION"
msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings."
-msgstr "Afita la rotación del gráficu sobre la exa Z. La vista previa respuende a les nueves configuraciones."
+msgstr "Afita'l xiru de la gráfica sobre la exa Z. La vista previa respuende a los axustes nuevos."
#. AyMWn
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION"
msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings."
-msgstr "Afita la rotación del gráficu sobre la exa Y. La vista previa respuende a les nueves configuraciones."
+msgstr "Afita'l xiru de la gráfica sobre la exa Y. La vista previa respuende a los axustes nuevos."
#. EGS4B
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION"
msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings."
-msgstr "Afita la rotación del gráficu sobre la exa X. La vista previa respuende a les nueves configuraciones."
+msgstr "Afita'l xiru de la gráfica sobre la exa X. La vista previa respuende a los axustes nuevos."
#. RGQDC
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Axuste'l númberu de llinies pa los gráficos de tipu Columna y Llinia."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Escueye un gráficu de tipu básicu."
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 74aecc94b9a..469378dd6ca 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/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: 2022-01-10 12:20+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/ast/>\n"
"Language: ast\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: 1542195213.000000\n"
#. GyY9M
@@ -5175,7 +5175,7 @@ msgstr ""
#: cui/uiconfig/ui/areatabpage.ui:106
msgctxt "areatabpage|btnbitmap"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#. ELAno
#: cui/uiconfig/ui/areatabpage.ui:112
@@ -5793,7 +5793,7 @@ msgstr ""
#: cui/uiconfig/ui/bulletandposition.ui:340
msgctxt "bulletandposition|bullet"
msgid "Select..."
-msgstr ""
+msgstr "Esbillar..."
#. sNFJM
#: cui/uiconfig/ui/bulletandposition.ui:346
@@ -5817,7 +5817,7 @@ msgstr ""
#: cui/uiconfig/ui/bulletandposition.ui:382
msgctxt "bulletandposition|colorft"
msgid "Color:"
-msgstr ""
+msgstr "Color:"
#. XqDTh
#: cui/uiconfig/ui/bulletandposition.ui:405
@@ -7143,7 +7143,7 @@ msgstr ""
#: cui/uiconfig/ui/colorpage.ui:136
msgctxt "colorpage|label20"
msgid "Recent Colors"
-msgstr ""
+msgstr "Colores recién"
#. MwnMh
#: cui/uiconfig/ui/colorpage.ui:190
@@ -11308,13 +11308,13 @@ msgstr ""
#: cui/uiconfig/ui/imagetabpage.ui:84
msgctxt "imagetabpage|label1"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#. 4HvEn
#: cui/uiconfig/ui/imagetabpage.ui:127
msgctxt "imagetabpage|label3"
msgid "Style:"
-msgstr ""
+msgstr "Estilu:"
#. cAwPK
#: cui/uiconfig/ui/imagetabpage.ui:143
@@ -11338,19 +11338,19 @@ msgstr ""
#: cui/uiconfig/ui/imagetabpage.ui:171
msgctxt "imagetabpage|label4"
msgid "Size:"
-msgstr ""
+msgstr "Tamañu:"
#. YtPnn
#: cui/uiconfig/ui/imagetabpage.ui:189
msgctxt "imagetabpage|label5"
msgid "Width:"
-msgstr ""
+msgstr "Anchor:"
#. GAfGG
#: cui/uiconfig/ui/imagetabpage.ui:228
msgctxt "imagetabpage|label6"
msgid "Height:"
-msgstr ""
+msgstr "Altor:"
#. HBRGU
#: cui/uiconfig/ui/imagetabpage.ui:260
@@ -12231,7 +12231,7 @@ msgstr "Estilos d'esquina y final"
#: cui/uiconfig/ui/linetabpage.ui:755
msgctxt "linetabpage|MB_SYMBOL_BITMAP"
msgid "Select..."
-msgstr "Seleición..."
+msgstr "Esbillar..."
#. LaBcU
#: cui/uiconfig/ui/linetabpage.ui:784
@@ -13285,7 +13285,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingoptionspage.ui:401
msgctxt "numberingoptionspage|bitmap"
msgid "Select..."
-msgstr "Seleición..."
+msgstr "Esbillar..."
#. Eqa4C
#: cui/uiconfig/ui/numberingoptionspage.ui:413
@@ -13309,7 +13309,7 @@ msgstr ""
#: cui/uiconfig/ui/numberingoptionspage.ui:464
msgctxt "numberingoptionspage|bullet"
msgid "Select..."
-msgstr "Seleición..."
+msgstr "Esbillar..."
#. vfKmd
#: cui/uiconfig/ui/numberingoptionspage.ui:470
@@ -13368,10 +13368,9 @@ msgstr "_Tamañu rellativu"
#. 6r484
#: cui/uiconfig/ui/numberingoptionspage.ui:602
-#, fuzzy
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
-msgstr "Colo_r:"
+msgstr "Color:"
#. ksG2M
#: cui/uiconfig/ui/numberingoptionspage.ui:616
@@ -17306,181 +17305,155 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automáticu"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxa"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Altu contraste"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxíxenu"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Clásicu"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Usar l'aceleración por hard_ware"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Apuerta direutamente a les funciones de hardware del adaptador de gráficos en pantalla p'ameyorar la visualización en pantalla."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Usar el suavi_záu de fontes"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Cuando ye soportáu, pue habilitase o evacuar l'anti-aliasing de gráficos. Con anti-aliasing habilitáu, la visualización de la mayoría de los oxetos gráficos llucen nidios y con menos artefactos."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
#, fuzzy
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Salida gráfica"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Amosar vista p_revia de les fontes"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Suavizar les _fontes na pantalla"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
#, fuzzy
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_dende"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Especifica'l tamañu de fonte más pequeñu p'aplicar l'anidiáu."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Llistes de fontes"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
@@ -20188,10 +20161,9 @@ msgstr "_Inxertar"
#. CLtzq
#: cui/uiconfig/ui/specialcharacters.ui:109
-#, fuzzy
msgctxt "specialcharacters|subsetft"
msgid "Subset:"
-msgstr "Conxuntu parcial"
+msgstr "Bloque de caráuteres:"
#. mPCRR
#: cui/uiconfig/ui/specialcharacters.ui:123
@@ -21326,7 +21298,7 @@ msgstr ""
#: cui/uiconfig/ui/textflowpage.ui:211
msgctxt "textflowpage|LabelHyphenation"
msgid "Hyphenation"
-msgstr "Dixebráu silábicu"
+msgstr "Guionáu"
#. ZLB8K
#: cui/uiconfig/ui/textflowpage.ui:240
diff --git a/source/ast/dbaccess/messages.po b/source/ast/dbaccess/messages.po
index 48e4d510163..8675dd93bb7 100644
--- a/source/ast/dbaccess/messages.po
+++ b/source/ast/dbaccess/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524566374.000000\n"
#. BiN6g
@@ -3169,10 +3169,9 @@ msgstr "Executar instrucción SQL"
#. QCHBC
#: dbaccess/uiconfig/ui/directsqldialog.ui:114
-#, fuzzy
msgctxt "directsqldialog|sql_label"
msgid "_Command to execute:"
-msgstr "_Orde a executar"
+msgstr "_Comandu a executar:"
#. KDRkq
#: dbaccess/uiconfig/ui/directsqldialog.ui:132
@@ -3419,74 +3418,74 @@ msgid "Create a n_ew database"
msgstr "Crear una base de datos nu_eva"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Base de datos _incrustada:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Abrir un _ficheru de base de datos esistente"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Usáu a_pocayá:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Abrir"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Coneutar a una base de datos e_sistente"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3496,7 +3495,7 @@ msgstr ""
"tan disponibles nin HSQLDB nin Firebird."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index 000e8bd3c83..037953c6892 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-05-18 09:18+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/ast/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. cBx8W
@@ -291,559 +291,547 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Anovar formulariu"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Llograr"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Publicar"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multiparte"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Testu"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Estándar (cortu)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Estándar (curtiu AA)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Estándar (curtiu AAAA)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Estándar (llargu)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/AA"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/AA"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "AA/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/AAAA"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/AAAA"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "AAAA/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "AA-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "AAAA-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Ensin seleicionar"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Seleicionáu"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Ensin definir"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Tolos rexistros"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Rexistru activu"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Páxina actual"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Non"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Sí"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Formulariu padre"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Nengún"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Simple"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Multi"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Estaya"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horizontal"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Vertical"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Predetermináu"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "Aceutar"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Encaboxar"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Ayuda"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "La entrada seleicionada"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Posición de la entrada seleicionada"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Llinia única"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Multillinia"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Multillinia con formatu"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Denguna"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horizontal"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Vertical"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Dambes"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Planu"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Cimero izquierda"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Centru izquierda"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Baxero izquierda"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Cimero drecha"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Centru drecha"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Baxero drecha"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Enriba izquierda"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Enriba centru"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Enriba drecha"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Debaxo izquierda"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Debaxo centru"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Debaxo drecha"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centráu"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Caltener"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Trocar"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Contrayer"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Non"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Caltener razón"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Axustar al tamañu"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Manzorga a mandrecha"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Mandrecha a manzorga"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Usar los axustes del oxetu superior"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Enxamás"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Cuando tea enfocada"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Siempres"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "A párrafu"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Como Caráuter"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "A páxina"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "A marcu"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "A Caráuter"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "A páxina"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/ast/filter/messages.po b/source/ast/filter/messages.po
index 3aaafb693ae..f8c9ab63e02 100644
--- a/source/ast/filter/messages.po
+++ b/source/ast/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: 2021-11-19 15:43+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/filtermessages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1516029128.000000\n"
#. 5AQgJ
@@ -1194,7 +1194,7 @@ msgstr ""
#: filter/uiconfig/ui/pdfsignpage.ui:69
msgctxt "pdfsignpage|select"
msgid "Select..."
-msgstr "Seleicionar..."
+msgstr "Esbillar..."
#. UCtFh
#: filter/uiconfig/ui/pdfsignpage.ui:76
diff --git a/source/ast/forms/messages.po b/source/ast/forms/messages.po
index 93951871e2d..ac2a95476b9 100644
--- a/source/ast/forms/messages.po
+++ b/source/ast/forms/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: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2022-05-18 09:17+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/formsmessages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1507237308.000000\n"
#. naBgZ
@@ -38,7 +38,7 @@ msgstr "sustituyíu"
#: forms/inc/strings.hrc:29
msgctxt "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN"
msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder."
-msgstr "Hebo un fallu al cargar esti control. Camudóse por un comodín."
+msgstr "Hebo un fallu al cargar esti control. Camudóse por un llugar de colocación."
#. CLzFr
#: forms/inc/strings.hrc:30
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index 16b7e6d2285..5bbba63abfd 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-05-18 09:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/fpickermessages/ast/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496517.000000\n"
#. SJGCw
@@ -218,57 +218,57 @@ msgid "Date modified"
msgstr "Data de modificación"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Nome del ficheru:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Triba de ficheru:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Namái llectu_ra"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Grabar con c~ontraseña"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Estensión del nome de ficheru ~automática"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Editar axustes de _peñeres"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 456503bc8d6..a51bcc45eed 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared/ast/>\n"
"Language: ast\n"
@@ -32990,7 +32990,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-msgstr "Fai sonar un tonu al traviés del altavoz del ordenador. El tonu depende del sistema y nun pue modificar el volume nin la modulación."
+msgstr "Fai sonar un tonu al traviés del altavoz del ordenador. El tonu depende del sistema y nun se pue modificar el volume nin la modulación."
#. JMATz
#: 03130100.xhp
@@ -34646,7 +34646,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ThisComponent Object"
-msgstr ""
+msgstr "Oxetu ThisComponent"
#. AKrki
#: 03132200.xhp
@@ -34664,7 +34664,7 @@ msgctxt ""
"hd_id3155342\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">ThisComponent Object</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">Oxetu ThisComponent</link>"
#. ECFFs
#: 03132200.xhp
@@ -34718,7 +34718,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "' use the default name for Table of Contents and a 1"
-msgstr "' usa'l nome predetermináu pa un Índiz ya'l númberu 1"
+msgstr "' usa'l nome predetermináu pa un Sumariu ya'l númberu 1"
#. XF28a
#: 03132200.xhp
@@ -34763,7 +34763,7 @@ msgctxt ""
"par_id105622646874083\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\" name=\"FormulaProperties API service\">com.sun.star.formula.FormulaProperties</link> API service"
-msgstr ""
+msgstr "Serviciu de l'API <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\" name=\"FormulaProperties API service\">com.sun.star.formula.FormulaProperties</link>"
#. FLbnX
#: 03132200.xhp
@@ -34772,7 +34772,7 @@ msgctxt ""
"par_id106622646874083\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
-msgstr ""
+msgstr "Serviciu de l'API <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link>"
#. vZW9w
#: 03132200.xhp
@@ -34781,7 +34781,7 @@ msgctxt ""
"par_id581622646875379\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
-msgstr ""
+msgstr "Serviciu de l'API <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link>"
#. QgZSF
#: 03132300.xhp
@@ -34790,7 +34790,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CreateUnoValue Function"
-msgstr ""
+msgstr "Función CreateUnoValue"
#. VGQcy
#: 03132300.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 7f2b6b7344d..d8e0c65b470 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/03.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-05-18 09:27+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared03/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1531405556.000000\n"
#. ViEWM
@@ -3335,7 +3335,7 @@ msgctxt ""
"hd_id681618825574599\n"
"help.text"
msgid "Predefined Formats"
-msgstr ""
+msgstr "Formatos predefiníos"
#. osJdR
#: sf_basic.xhp
@@ -10400,7 +10400,7 @@ msgctxt ""
"par_id591612629836830\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. P6NX8
#: sf_dialogcontrol.xhp
@@ -10418,7 +10418,7 @@ msgctxt ""
"par_id891612629836630\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. oCDXm
#: sf_dialogcontrol.xhp
@@ -10454,7 +10454,7 @@ msgctxt ""
"par_id211612629836725\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. mzbBD
#: sf_dialogcontrol.xhp
@@ -10490,7 +10490,7 @@ msgctxt ""
"par_id981612629836116\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 8B9ct
#: sf_dialogcontrol.xhp
@@ -11858,7 +11858,7 @@ msgctxt ""
"par_id201589194571955\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. Aw2Tv
#: sf_document.xhp
@@ -11876,7 +11876,7 @@ msgctxt ""
"par_id761589194633950\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. pSbRu
#: sf_document.xhp
@@ -16412,7 +16412,7 @@ msgctxt ""
"par_id761584027709516\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. Enqxp
#: sf_formcontrol.xhp
@@ -22307,7 +22307,7 @@ msgctxt ""
"par_id181612441703306\n"
"help.text"
msgid "\"?\" represents any single character;"
-msgstr ""
+msgstr "«?» representa cualisquier caráuter únicu;"
#. CFPcW
#: sf_string.xhp
@@ -22442,7 +22442,7 @@ msgctxt ""
"par_id471580293142283\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: la cadena que va comprobase. Si ta balera, el métodu devuelve <literal>False</literal>."
#. 7Ryzp
#: sf_string.xhp
@@ -24602,7 +24602,7 @@ msgctxt ""
"par_id951587913266220\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. c5EiC
#: sf_ui.xhp
@@ -24611,7 +24611,7 @@ msgctxt ""
"par_id651587913266754\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. vQ8TT
#: sf_ui.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 022e101e0fc..d0fcb853d89 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalc01/ast/>\n"
"Language: ast\n"
@@ -57174,7 +57174,7 @@ msgctxt ""
"par_id251620415562967\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. tpUMy
#: func_convert.xhp
@@ -57345,7 +57345,7 @@ msgctxt ""
"par_id215779983443756\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. wERLT
#: func_convert.xhp
@@ -57426,7 +57426,7 @@ msgctxt ""
"par_id498448587944728\n"
"help.text"
msgid "Joule"
-msgstr ""
+msgstr "Xuliu"
#. PUrZh
#: func_convert.xhp
@@ -57462,7 +57462,7 @@ msgctxt ""
"par_id747764511138273\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. dvVVc
#: func_convert.xhp
@@ -57516,7 +57516,7 @@ msgctxt ""
"par_id613697367784781\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. 3ZxxK
#: func_convert.xhp
@@ -57561,7 +57561,7 @@ msgctxt ""
"par_id472715992174398\n"
"help.text"
msgid "Pond"
-msgstr ""
+msgstr "Pondiu"
#. Z8snf
#: func_convert.xhp
@@ -57588,7 +57588,7 @@ msgctxt ""
"par_id612374956817974\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. kNxR2
#: func_convert.xhp
@@ -57642,7 +57642,7 @@ msgctxt ""
"par_id385965635167839\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. qBet6
#: func_convert.xhp
@@ -57795,7 +57795,7 @@ msgctxt ""
"par_id314237495552874\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. YXvAc
#: func_convert.xhp
@@ -57939,7 +57939,7 @@ msgctxt ""
"par_id222988613874967\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. 6DsPs
#: func_convert.xhp
@@ -58002,7 +58002,7 @@ msgctxt ""
"par_id385992865555923\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. geMDd
#: func_convert.xhp
@@ -58029,7 +58029,7 @@ msgctxt ""
"par_id849582553771429\n"
"help.text"
msgid "Millimeter of mercury"
-msgstr ""
+msgstr "Milímetru de mercuriu"
#. AsDNh
#: func_convert.xhp
@@ -58038,7 +58038,7 @@ msgctxt ""
"par_id477235647442515\n"
"help.text"
msgid "Pascal"
-msgstr ""
+msgstr "Pascal"
#. yyvEQ
#: func_convert.xhp
@@ -58065,7 +58065,7 @@ msgctxt ""
"hd_id61620426438099\n"
"help.text"
msgid "Speed"
-msgstr ""
+msgstr "Velocidá"
#. AXQxd
#: func_convert.xhp
@@ -58083,7 +58083,7 @@ msgctxt ""
"par_id886677898259849\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. PWNGi
#: func_convert.xhp
@@ -58146,7 +58146,7 @@ msgctxt ""
"hd_id351620426496272\n"
"help.text"
msgid "Temperature"
-msgstr ""
+msgstr "Temperatura"
#. C5MHQ
#: func_convert.xhp
@@ -58164,7 +58164,7 @@ msgctxt ""
"par_id828222863857386\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. sGE7h
#: func_convert.xhp
@@ -58245,7 +58245,7 @@ msgctxt ""
"par_id664526138752768\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. 8X7qR
#: func_convert.xhp
@@ -58326,7 +58326,7 @@ msgctxt ""
"par_id954441838321316\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripción"
#. QnLHF
#: func_convert.xhp
@@ -58335,7 +58335,7 @@ msgctxt ""
"par_id487448753979859\n"
"help.text"
msgid "Prefix"
-msgstr ""
+msgstr "Prefixu"
#. oFBFc
#: func_convert.xhp
@@ -58452,7 +58452,7 @@ msgctxt ""
"par_id538319527687728\n"
"help.text"
msgid "Cubic meter"
-msgstr ""
+msgstr "Metru cúbicu"
#. GG8ep
#: func_convert.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index ad5f73ecec9..b5c21311f6c 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-25 12:48+0200\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalcguide/ast/>\n"
"Language: ast\n"
@@ -5361,7 +5361,7 @@ msgctxt ""
"par_idN107B6\n"
"help.text"
msgid "Locate the directory that contains the dBASE file, and click <emph>OK</emph>."
-msgstr "Allugue'l direutoriu que contién el ficheru dBASE, y prima clic en <emph>Aceutar</emph>."
+msgstr "Alluga'l direutoriu que contién el ficheru dBASE y calca <emph>Aceutar</emph>."
#. 5kG55
#: dbase_files.xhp
@@ -5451,7 +5451,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
-msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Escoyer Temes pa Fueyes</link></variable>"
+msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Escoyer temes pa fueyes</link></variable>"
#. axrVR
#: design.xhp
@@ -7440,7 +7440,7 @@ msgctxt ""
"bm_id3145120\n"
"help.text"
msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
-msgstr "<bookmark_value>accesibilidá; tecles d'accesu direutu de %PRODUCTNAME Calc</bookmark_value><bookmark_value>tecles d'accesu direutu;accesibilidá de %PRODUCTNAME Calc</bookmark_value>"
+msgstr "<bookmark_value>accesibilidá; atayos de tecláu de %PRODUCTNAME Calc</bookmark_value><bookmark_value>atayos de tecláu;accesibilidá de %PRODUCTNAME Calc</bookmark_value>"
#. 5D3u4
#: keyboard.xhp
diff --git a/source/ast/helpcontent2/source/text/schart.po b/source/ast/helpcontent2/source/text/schart.po
index c003f13fee6..96dfa652982 100644
--- a/source/ast/helpcontent2/source/text/schart.po
+++ b/source/ast/helpcontent2/source/text/schart.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-02-05 00:39+0000\n"
+"PO-Revision-Date: 2022-06-06 18:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textschart/ast/>\n"
"Language: ast\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1525794593.000000\n"
#. wtFDe
@@ -131,7 +131,7 @@ msgctxt ""
"par_id7911008\n"
"help.text"
msgid "Click a chart to edit the object properties:"
-msgstr "Faiga clic nun gráficu pa modificar les propiedaes del oxetu del gráficu:"
+msgstr "Calca nuna gráfica pa modificar les propiedaes del oxetu:"
#. MMYWv
#: main0000.xhp
diff --git a/source/ast/helpcontent2/source/text/schart/01.po b/source/ast/helpcontent2/source/text/schart/01.po
index c1d5df959c1..79dbaef7987 100644
--- a/source/ast/helpcontent2/source/text/schart/01.po
+++ b/source/ast/helpcontent2/source/text/schart/01.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: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textschart01/ast/>\n"
"Language: ast\n"
@@ -5243,7 +5243,7 @@ msgctxt ""
"par_id4721823\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita la rotación del gráficu sobre la exa X. La vista previa respuende a les nueves configuraciones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita'l xiru de la gráfica sobre la exa X. La vista previa respuende a los axustes nuevos.</ahelp>"
#. r68Bu
#: three_d_view.xhp
@@ -5252,7 +5252,7 @@ msgctxt ""
"par_id5806756\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita la rotación del gráficu sobre la exa Y. La vista previa respuende a les nueves configuraciones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita'l xiru de la gráfica sobre la exa Y. La vista previa respuende a los axustes nuevos.</ahelp>"
#. HG7NF
#: three_d_view.xhp
@@ -5261,7 +5261,7 @@ msgctxt ""
"par_id8915372\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita la rotación del gráficu sobre la exa Z. La vista previa respuende a les nueves configuraciones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita'l xiru de la gráfica sobre la exa Z. La vista previa respuende a los axustes nuevos.</ahelp>"
#. P3E59
#: three_d_view.xhp
diff --git a/source/ast/helpcontent2/source/text/sdraw/guide.po b/source/ast/helpcontent2/source/text/sdraw/guide.po
index f808909f606..28b1157b1ab 100644
--- a/source/ast/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ast/helpcontent2/source/text/sdraw/guide.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: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsdrawguide/ast/>\n"
"Language: ast\n"
@@ -1859,7 +1859,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys for Drawing Objects"
-msgstr "Tecles d'accesu direutu pa oxetos de dibuxu"
+msgstr "Tecles d'atayu pa oxetos de dibuxu"
#. WaKgD
#: keyboard.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 8a2c6a6d5b3..aa54c5fa21b 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared00/ast/>\n"
"Language: ast\n"
@@ -2012,7 +2012,7 @@ msgctxt ""
"par_id3152946\n"
"help.text"
msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_exportdireuttopdf.png\" id=\"img_id3155904\"><alt id=\"alt_id3155904\">Iconu</alt></image>"
+msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Iconu</alt></image>"
#. QDsEn
#: 00000004.xhp
@@ -3326,7 +3326,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
-msgstr "Esta orde pue activase si hai un oxetu escoyíu. va crease un enllaz col nome \"Enllaz a xxx\" (<emph>xxx</emph> representa'l nome del oxetu) nel mesmu direutoriu que l'oxetu escoyíu."
+msgstr "Esta orde pue activase si hai un oxetu esbilláu. Va crease un enllaz col nome «Enllaz a xxx» (<emph>xxx</emph> representa'l nome del oxetu) nel mesmu direutoriu que l'oxetu esbilláu."
#. HKFbQ
#: 00000011.xhp
@@ -3578,7 +3578,7 @@ msgctxt ""
"par_id3150129\n"
"help.text"
msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
-msgstr "\"Fonte: 10pt\" pasa a una fonte con 10pt y coles mesmes negrina, cursiva y versalita."
+msgstr "«Font: 10pt» pasa a una fonte con 10 pt y ensin negrina, cursiva o versalita."
#. sx5EP
#: 00000020.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 1bb0c6c7c21..24897c39228 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.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: 2022-01-10 12:21+0100\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared01/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542196269.000000\n"
#. 3u8hR
@@ -6674,7 +6674,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Recent Documents"
-msgstr ""
+msgstr "Documentos recién"
#. AMcQP
#: 01990000.xhp
@@ -6683,7 +6683,7 @@ msgctxt ""
"hd_id3150279\n"
"help.text"
msgid "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Recent Documents\">Recent Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Recent Documents\">Documentos recién</link></variable>"
#. doka7
#: 01990000.xhp
@@ -15431,7 +15431,7 @@ msgctxt ""
"hd_id3154894\n"
"help.text"
msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">Oxetu OLE</link>"
#. Prhay
#: 04150100.xhp
@@ -24944,7 +24944,7 @@ msgctxt ""
"hd_id3150449\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Estilos"
#. NyRLW
#: 05060000.xhp
@@ -26888,7 +26888,7 @@ msgctxt ""
"hd_id3148983\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Estilos"
#. LBH3d
#: 05200100.xhp
@@ -26906,7 +26906,7 @@ msgctxt ""
"hd_id3150789\n"
"help.text"
msgid "Colors"
-msgstr ""
+msgstr "Colores"
#. kJdyQ
#: 05200100.xhp
@@ -26924,7 +26924,7 @@ msgctxt ""
"hd_id3159234\n"
"help.text"
msgid "Widths"
-msgstr ""
+msgstr "Anchores"
#. ZdQdF
#: 05200100.xhp
@@ -27707,7 +27707,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Colors"
-msgstr ""
+msgstr "Colores"
#. RSPZA
#: 05210200.xhp
@@ -27725,7 +27725,7 @@ msgctxt ""
"hd_id681578759272545\n"
"help.text"
msgid "<variable id=\"colorpageh1\"><link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link></variable>"
-msgstr ""
+msgstr "<variable id=\"colorpageh1\"><link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colores</link></variable>"
#. QfPqQ
#: 05210200.xhp
@@ -27752,7 +27752,7 @@ msgctxt ""
"hd_id931578758906569\n"
"help.text"
msgid "Colors"
-msgstr ""
+msgstr "Colores"
#. 2iXVW
#: 05210200.xhp
@@ -27779,7 +27779,7 @@ msgctxt ""
"hd_id981578758969146\n"
"help.text"
msgid "Recent colors"
-msgstr ""
+msgstr "Colores recién"
#. 6LC8v
#: 05210200.xhp
@@ -36959,7 +36959,7 @@ msgctxt ""
"hd_id3147275\n"
"help.text"
msgid "Colors"
-msgstr ""
+msgstr "Colores"
#. bX6cX
#: 06030000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index dafe5ee8fa3..f7e62a4bfe7 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared02/ast/>\n"
"Language: ast\n"
@@ -10689,7 +10689,7 @@ msgctxt ""
"par_id3154750\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Estilos"
#. eQswn
#: 02010000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/04.po b/source/ast/helpcontent2/source/text/shared/04.po
index 37a6724ea10..1d4b317140a 100644
--- a/source/ast/helpcontent2/source/text/shared/04.po
+++ b/source/ast/helpcontent2/source/text/shared/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-03-19 17:31+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared04/ast/>\n"
"Language: ast\n"
@@ -24,7 +24,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "General Shortcut Keys in $[officename]"
-msgstr "Tecles d'accesu direutu xenerales en $[officename]"
+msgstr "Tecles d'atayu xenerales en $[officename]"
#. xFAX2
#: 01010000.xhp
@@ -2337,7 +2337,7 @@ msgctxt ""
"bm_id3149809\n"
"help.text"
msgid "<bookmark_value>shortcut keys; in databases</bookmark_value><bookmark_value>databases; shortcut keys</bookmark_value>"
-msgstr "<bookmark_value>tecles d'accesu direutu;bases de datos</bookmark_value><bookmark_value>bases de datos;tecles d'accesu direutu</bookmark_value>"
+msgstr "<bookmark_value>tecles d'atayu;bases de datos</bookmark_value><bookmark_value>bases de datos;tecles d'atayu</bookmark_value>"
#. b99D3
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/05.po b/source/ast/helpcontent2/source/text/shared/05.po
index f4bf991e7c0..eead04dad0f 100644
--- a/source/ast/helpcontent2/source/text/shared/05.po
+++ b/source/ast/helpcontent2/source/text/shared/05.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-11-16 12:09+0100\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared05/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1540152128.000000\n"
#. WPTtk
@@ -1283,7 +1283,7 @@ msgctxt ""
"par_id131592238966436\n"
"help.text"
msgid "The page does not exist and must be created."
-msgstr ""
+msgstr "La páxina nun esiste y ha crease."
#. wBHiJ
#: err_html.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 7ffeb7f6946..4ff3ed04630 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsharedguide/ast/>\n"
"Language: ast\n"
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3150443\n"
"help.text"
msgid "You can change the shortcut keys."
-msgstr "Les tecles d'accesu direutu puen modificar."
+msgstr "Pues modificar les tecles d'atayu."
#. 7GQeh
#: configure_overview.xhp
@@ -10589,7 +10589,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "Click the <emph>Save</emph> icon or press the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S."
-msgstr "Faiga clic nel iconu <emph>Guardar</emph> o calque les tecles d'accesu direutu <switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + G."
+msgstr "Calca l'iconu <emph>Guardar</emph> o calca les tecles d'atayu <switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + S."
#. JubEi
#: doc_save.xhp
@@ -14855,7 +14855,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcuts (%PRODUCTNAME Accessibility)"
-msgstr "Tecles d'accesu direutu (Accesibilidá de %PRODUCTNAME)"
+msgstr "Tecles d'atayu (Accesibilidá de %PRODUCTNAME)"
#. DCFvC
#: keyboard.xhp
@@ -14864,7 +14864,7 @@ msgctxt ""
"bm_id3158421\n"
"help.text"
msgid "<bookmark_value>accessibility;general shortcuts</bookmark_value> <bookmark_value>shortcut keys; %PRODUCTNAME accessibility</bookmark_value>"
-msgstr "<bookmark_value>accesibilidá;accesos direutos xenerales</bookmark_value> <bookmark_value>tecles d'accesu direutu; accesibilidá de %PRODUCTNAME</bookmark_value>"
+msgstr "<bookmark_value>accesibilidá;atayos xenerales</bookmark_value><bookmark_value>tecles d'atayu; accesibilidá de %PRODUCTNAME</bookmark_value>"
#. ArwDt
#: keyboard.xhp
@@ -14873,7 +14873,7 @@ msgctxt ""
"hd_id3158421\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Shortcuts (%PRODUCTNAME Accessibility)\">Shortcuts (<item type=\"productname\">%PRODUCTNAME</item> Accessibility)</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Tecles de acceso direuto (Accesibilidad de %PRODUCTNAME)\">Tecles d'accesu direutu (Accesibilidá de <item type=\"productname\">%PRODUCTNAME</item>)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Shortcuts (%PRODUCTNAME Accessibility)\">Tecles d'atayu (Accesibilidá de <item type=\"productname\">%PRODUCTNAME</item>)</link></variable>"
#. 2drEq
#: keyboard.xhp
@@ -19391,7 +19391,7 @@ msgctxt ""
"par_id1029200801240965\n"
"help.text"
msgid "<link href=\"text/swriter/guide/text_direct_cursor.xhp\">Direct Cursor</link>"
-msgstr "<link href=\"text/swriter/guide/text_direut_cursor.xhp\">Cursor direutu</link>"
+msgstr "<link href=\"text/swriter/guide/text_direct_cursor.xhp\">Cursor direutu</link>"
#. 4jGFy
#: microsoft_terms.xhp
@@ -22793,7 +22793,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes \"clarify\" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document."
-msgstr "Por exemplu: usté ye un editor y va apurrir l'últimu informe. Pero enantes de publicar l'informe tien de lleelo un editor xefe y un corrector de pruebes, y dambos van amestar los sos cambeos. L'editor xefe escribe \"esclariar\" dempués d'un párrafu y tacha otru dafechu. El corrector de pruebes revisa la ortografía del documentu y anota dos exemplos onde les referencies concretes al sexu d'una persona imaxinaria podríen camudase pa evitales dafechu."
+msgstr "Por casu: usté ye un editor y va apurrir l'últimu informe. Pero enantes de publicar l'informe tien de lleelu un editor xefe y una correutora de pruebes, y dambos van amestar los sos cambeos. L'editor xefe escribe «esclariar» dempués d'un párrafu y tacha otru dafechu. La correutora de pruebes revisa la ortografía del documentu."
#. sZdoa
#: redlining.xhp
@@ -23135,7 +23135,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Recording Changes"
-msgstr "Rexistrar cambeos"
+msgstr "Enrexistrar cambeos"
#. V8ATh
#: redlining_enter.xhp
@@ -23153,7 +23153,7 @@ msgctxt ""
"hd_id3155364\n"
"help.text"
msgid "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Recording Changes</link></variable>"
-msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Rexistrar cambeos\">Rexistrar cambeos</link></variable>"
+msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Enrexistrar cambeos</link></variable>"
#. VBpWf
#: redlining_enter.xhp
@@ -23171,7 +23171,7 @@ msgctxt ""
"par_id3145669\n"
"help.text"
msgid "Not all changes are recorded. For example, the changing of a tab stop from align left to align right is not recorded. However, all usual changes made by a proofreader are recorded, such as additions, deletions, text alterations, and usual formatting."
-msgstr "Nun se rexistren tolos cambeos. Por exemplu, si camuda l'alliniación d'un tabulador d'esquierda a derecha, el cambéu nun se rexistra. Anque tolos cambeos comunes que se realicen al revisar un testu sí se rexistren, como amiestes, eliminaciones, cambeos del testu y cambeos de formatu comunes."
+msgstr "Nun tolos cambeos se rexistren. Por exemplu, si camudes l'alliniación d'un tabulador d'izquierda a derecha, el cambéu nun s'enrexistra. Poro, tolos cambeos que los correutores de pruebes realicen al revisar un testu sí que se rexistren, como amiestos, desanicios, cambeos nel testu y cambeos de formatu comunes."
#. FHNi5
#: redlining_enter.xhp
@@ -23756,7 +23756,7 @@ msgctxt ""
"par_idN10A78\n"
"help.text"
msgid "Select a key combination from the <emph>Shortcut keys</emph> list box and click <emph>Modify</emph>."
-msgstr "Escueya una combinación de tecles del cuadru de llista <emph>Tecles d'accesu direutu</emph> y faiga clic en <emph>Modificar</emph>."
+msgstr "Escueya una combinación de tecles del cuadru de llista <emph>Tecles d'atayu</emph> y faiga clic en <emph>Modificar</emph>."
#. qzjKN
#: scripting.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/04.po b/source/ast/helpcontent2/source/text/simpress/04.po
index f7f1023e5a3..57878dacdba 100644
--- a/source/ast/helpcontent2/source/text/simpress/04.po
+++ b/source/ast/helpcontent2/source/text/simpress/04.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-01-14 18:09+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsimpress04/ast/>\n"
"Language: ast\n"
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys for $[officename] Impress"
-msgstr "Tecles d'accesu direutu de $[officename] Impress"
+msgstr "Tecles d'atayu de $[officename] Impress"
#. sHrEU
#: 01020000.xhp
@@ -1355,7 +1355,7 @@ msgctxt ""
"hd_id3156192\n"
"help.text"
msgid "Shortcut Keys in $[officename] Impress"
-msgstr "Tecles d'accesu direutu de $[officename] Impress"
+msgstr "Tecles d'atayu de $[officename] Impress"
#. MaLzD
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/guide.po b/source/ast/helpcontent2/source/text/simpress/guide.po
index 862401c2789..d0f47238db4 100644
--- a/source/ast/helpcontent2/source/text/simpress/guide.po
+++ b/source/ast/helpcontent2/source/text/simpress/guide.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-10-25 12:49+0200\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsimpressguide/ast/>\n"
"Language: ast\n"
@@ -2696,7 +2696,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Shortcut Keys in $[officename] Impress"
-msgstr "Utilizar tecles d'accesu direutu de $[officename] Impress"
+msgstr "Utilizar tecles d'atayu de $[officename] Impress"
#. wGBuB
#: keyboard.xhp
@@ -2714,7 +2714,7 @@ msgctxt ""
"hd_id3154702\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Using Shortcut Keys in $[officename] Impress</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Usar tecles d'accesu direutu de $[officename] Impress</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Usar tecles d'atayu de $[officename] Impress</link></variable>"
#. 8sLBi
#: keyboard.xhp
diff --git a/source/ast/helpcontent2/source/text/smath/00.po b/source/ast/helpcontent2/source/text/smath/00.po
index 81070b29685..e1baf26f754 100644
--- a/source/ast/helpcontent2/source/text/smath/00.po
+++ b/source/ast/helpcontent2/source/text/smath/00.po
@@ -4,16 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2020-02-21 14:35+0000\n"
-"Last-Translator: Xandru Martino Ruz <xandrumartino@softastur.org>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_help-master/textsmath00/ast/>\n"
+"PO-Revision-Date: 2022-06-06 18:38+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsmath00/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.10.3\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1494346285.000000\n"
#. E9tti
@@ -113,7 +113,7 @@ msgctxt ""
"par_id3149127\n"
"help.text"
msgid "On the Tools bar, click"
-msgstr "En barra de Ferramientes, faiga clic en"
+msgstr "Na barra Ferramientes, calca"
#. FqS3z
#: 00000004.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"par_id3156398\n"
"help.text"
msgid "On the Tools bar, click"
-msgstr "En barra de Ferramientes, faiga clic en"
+msgstr "Na barra Ferramientes, calca"
#. cFNys
#: 00000004.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"par_id3149878\n"
"help.text"
msgid "On the Tools bar, click"
-msgstr "En barra de Ferramientes, faiga clic en"
+msgstr "Na barra Ferramientes, calca"
#. eEHDh
#: 00000004.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"par_id3147169\n"
"help.text"
msgid "On the Tools bar, click"
-msgstr "En barra de Ferramientes, faiga clic en"
+msgstr "Na barra Ferramientes, calca"
#. dhew7
#: 00000004.xhp
@@ -266,7 +266,7 @@ msgctxt ""
"par_id3149289\n"
"help.text"
msgid "On the Tools bar, click"
-msgstr "En barra de Ferramientes, faiga clic en"
+msgstr "Na barra Ferramientes, calca"
#. xD6qA
#: 00000004.xhp
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3145268\n"
"help.text"
msgid "On the Tools bar, click"
-msgstr "En barra de Ferramientes, faiga clic en"
+msgstr "Na barra Ferramientes, calca"
#. 63bpb
#: 00000004.xhp
diff --git a/source/ast/helpcontent2/source/text/smath/04.po b/source/ast/helpcontent2/source/text/smath/04.po
index 2019ad093ef..03e791bac4a 100644
--- a/source/ast/helpcontent2/source/text/smath/04.po
+++ b/source/ast/helpcontent2/source/text/smath/04.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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsmath04/ast/>\n"
"Language: ast\n"
@@ -131,7 +131,7 @@ msgctxt ""
"par_id3149871\n"
"help.text"
msgid "Next Marker (Placeholder)"
-msgstr "Marcador siguiente (Comodín)"
+msgstr "Marcador siguiente (llugar de colocación)"
#. CjJwC
#: 01020000.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"par_id3151390\n"
"help.text"
msgid "Previous Marker (Placeholder)"
-msgstr "Marcador anterior (Comodín)"
+msgstr "Marcador anterior (llugar de colocación)"
#. TEBFE
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/00.po b/source/ast/helpcontent2/source/text/swriter/00.po
index 7e043b0da3a..27600524f03 100644
--- a/source/ast/helpcontent2/source/text/swriter/00.po
+++ b/source/ast/helpcontent2/source/text/swriter/00.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-10-20 13:08+0200\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-06-06 18:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter00/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542196274.000000\n"
#. E9tti
@@ -266,7 +266,7 @@ msgctxt ""
"par_id3143228\n"
"help.text"
msgid "On the Insert toolbar, click"
-msgstr "Na barra de ferramientes Inxertar, faiga clic"
+msgstr "Na barra de ferramientes Inxertar, calca"
#. na7eb
#: 00000402.xhp
@@ -473,7 +473,7 @@ msgctxt ""
"par_id3154508\n"
"help.text"
msgid "On Standard bar, click"
-msgstr "En barra Estándar, faiga clic en"
+msgstr "Na barra Estándar, calca"
#. 9xqfr
#: 00000403.xhp
@@ -716,7 +716,7 @@ msgctxt ""
"par_id3147174\n"
"help.text"
msgid "On Insert toolbar, click"
-msgstr "Na barra de ferramientes Inxertar, faiga clic en"
+msgstr "Na barra de ferramientes Inxertar, calca"
#. CBN2Y
#: 00000404.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 25496f986c9..bb0166f1f9a 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-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-11-24 12:03+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter01/ast/>\n"
"Language: ast\n"
@@ -5891,7 +5891,7 @@ msgctxt ""
"par_id5187536\n"
"help.text"
msgid "Choose the \"Default\" page style from the submenu."
-msgstr "Escueya l'estilu de páxina predetermináu usando'l submenú."
+msgstr "Escueyi l'estilu de páxina «Predetermináu» usando'l somenú."
#. JyxEQ
#: 04070000.xhp
@@ -5900,7 +5900,7 @@ msgctxt ""
"par_id6952726\n"
"help.text"
msgid "This removes the special \"Envelope\" page formatting."
-msgstr "Esto desanicia'l formatu especial del \"Sobre\"."
+msgstr "Esto desanicia'l formatu especial del «Sobre»."
#. 3iAPy
#: 04070000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/04.po b/source/ast/helpcontent2/source/text/swriter/04.po
index 69ae583b29e..2cf14f3a4d7 100644
--- a/source/ast/helpcontent2/source/text/swriter/04.po
+++ b/source/ast/helpcontent2/source/text/swriter/04.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-20 13:03+0200\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter04/ast/>\n"
"Language: ast\n"
@@ -41,7 +41,7 @@ msgctxt ""
"hd_id3145763\n"
"help.text"
msgid "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Shortcut Keys for %PRODUCTNAME Writer\">Shortcut Keys for <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
-msgstr "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Tecles de acceso direuto de %PRODUCTNAME Writer\">Tecles d'accesu direutu de <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
+msgstr "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Shortcut Keys for %PRODUCTNAME Writer\">Tecles d'atayu de <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
#. qbPEo
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 31083286817..d6090dc08d7 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriterguide/ast/>\n"
"Language: ast\n"
@@ -8213,7 +8213,7 @@ msgctxt ""
"par_id3147132\n"
"help.text"
msgid "The best way to generate a table of contents is to apply the predefined heading paragraph styles, such as \"Heading 1\", to the paragraphs that you want to include in your table of contents."
-msgstr "La meyor mou de xenerar una tabla de conteníos ye aplicar los estilos de párrafos predefiníos, tales como el \"Testera 1\", a los párrafos que deseya incluyir na tabla de conteníos."
+msgstr "El meyor mou de xenerar un sumariu ye aplicar los estilos de párrafu predefiníos, tales como'l «Títulu 1», a los párrafos que quies incluyir nel sumariu."
#. SuiqC
#: indices_enter.xhp
@@ -15044,7 +15044,7 @@ msgctxt ""
"bm_id3149689\n"
"help.text"
msgid "<bookmark_value>text; formatting bold while typing</bookmark_value> <bookmark_value>formatting; bold, while typing</bookmark_value> <bookmark_value>keyboard;bold formatting</bookmark_value> <bookmark_value>bold;formatting while typing</bookmark_value> <bookmark_value>shortcut keys;bold formatting</bookmark_value>"
-msgstr "<bookmark_value>testu;aplicar negrina al escribir</bookmark_value> <bookmark_value>dar formatu;negrina, al escribir</bookmark_value> <bookmark_value>tecláu;aplicación de negrina</bookmark_value> <bookmark_value>negrina;aplicar al </bookmark_value> <bookmark_value>tecles d'accesu direutu;aplicación de negrina</bookmark_value>"
+msgstr "<bookmark_value>testu;aplicar negrina n'escribiendo</bookmark_value><bookmark_value>dar formatu;negrina, n'escribiendo</bookmark_value><bookmark_value>tecláu;aplicación de negrina</bookmark_value><bookmark_value>negrina;aplicar n'escribiendo</bookmark_value><bookmark_value>atayos de tecláu;aplicación de negrina</bookmark_value>"
#. sBSH2
#: shortcut_writing.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/menu.po b/source/ast/helpcontent2/source/text/swriter/menu.po
index ca28c78cc4d..6e955bab9a7 100644
--- a/source/ast/helpcontent2/source/text/swriter/menu.po
+++ b/source/ast/helpcontent2/source/text/swriter/menu.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: 2020-11-16 13:43+0100\n"
-"PO-Revision-Date: 2022-04-27 10:03+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textswritermenu/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1462662262.000000\n"
#. tP5yN
@@ -113,7 +113,7 @@ msgctxt ""
"par_id030720160603138925\n"
"help.text"
msgid "<ahelp hid=\".\">This submenu contains both interactive and non-interactive means of inserting a frame.</ahelp>"
-msgstr "<ahelp hid=\".\">Esti submenú contien medios interactivos y non interactivos pa inxertar un marcu.</ahelp>"
+msgstr "<ahelp hid=\".\">Esti somenú contién medios interactivos y non interactivos pa inxertar un marcu.</ahelp>"
#. Hq4D6
#: insert_frame.xhp
diff --git a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 23c1be38475..d1ac5347393 100644
--- a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2020-03-31 10:35+0200\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/instsetoo_nativeinc_openofficewindowsmsi_languages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. tBfTE
@@ -158,7 +158,7 @@ msgctxt ""
"OOO_ACTIONTEXT_16\n"
"LngText.text"
msgid "Shortcut: [1]"
-msgstr "Accesu direutu: [1]"
+msgstr "Atayu: [1]"
#. GeKVY
#: ActionTe.ulf
@@ -761,7 +761,7 @@ msgctxt ""
"OOO_ACTIONTEXT_83\n"
"LngText.text"
msgid "Shortcut: [1]"
-msgstr "Accesu direutu: [1]"
+msgstr "Atayu: [1]"
#. A8hxh
#: ActionTe.ulf
@@ -4127,7 +4127,7 @@ msgctxt ""
"OOO_ERROR_105\n"
"LngText.text"
msgid "Could not create shortcut [2]. Verify that the destination folder exists and that you can access it."
-msgstr "Nun se puede crear l'accesu direutu [2]. Mira a ver si la carpeta de destín existe y que puedes acceder a ella."
+msgstr "Nun se puede crear l'atayu [2]. Mira a ver si la carpeta de destín existe y que puedes acceder a ella."
#. QXqrx
#: Error.ulf
@@ -4136,7 +4136,7 @@ msgctxt ""
"OOO_ERROR_106\n"
"LngText.text"
msgid "Could not remove shortcut [2]. Verify that the shortcut file exists and that you can access it."
-msgstr "Nun se puede desaniciar l'accesu direutu [2]. Mira a ver que'l ficheru d'accesu direutu existe y que puedes acceder a elli."
+msgstr "Nun se puede desaniciar l'atayu [2]. Mira a ver que'l ficheru d'atayu existe y que puedes acceder a elli."
#. 3MqnE
#: Error.ulf
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index b5686d7dca9..03eb3110c98 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/ast/>\n"
"Language: ast\n"
@@ -25699,7 +25699,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Recent Doc~uments"
-msgstr "Doc~umentos recientes"
+msgstr "Doc~umentos recién"
#. KSiFH
#: GenericCommands.xcu
diff --git a/source/ast/readlicense_oo/docs.po b/source/ast/readlicense_oo/docs.po
index 29cc6f5e7f1..69e0904b4f8 100644
--- a/source/ast/readlicense_oo/docs.po
+++ b/source/ast/readlicense_oo/docs.po
@@ -4,16 +4,16 @@ 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:12+0200\n"
-"PO-Revision-Date: 2020-02-25 19:15+0000\n"
-"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/ast/>\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/readlicense_oodocs/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022493.000000\n"
#. q6Gg3
@@ -644,7 +644,7 @@ msgctxt ""
"w32e1\n"
"readmeitem.text"
msgid "Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documentation of your operating system."
-msgstr "En ${PRODUCTNAME} sólo pueden usase les tecles d'accesu direutu (combinaciones de tecles) que nun use'l sistema operativu. Si una combinación de tecles de ${PRODUCTNAME} nun funciona como se describe na ayuda de ${PRODUCTNAME}, comprueba si esi accesu direutu yá lu usa'l sistema operativu. Pa iguar estos problemes, pues camudar les tecles asignaes pol sistema operativu. Tamién, pues camudar casi cualesquier asignación de tecles en ${PRODUCTNAME}. Si quies más información, consulta la ayuda de ${PRODUCTNAME} o la documentación d'ayuda del sistema operativu."
+msgstr "En ${PRODUCTNAME} sólo pueden usase les tecles d'atayu (combinaciones de tecles) que nun use'l sistema operativu. Si una combinación de tecles de ${PRODUCTNAME} nun funciona como se describe na ayuda de ${PRODUCTNAME}, comprueba si esi atayu yá lu usa'l sistema operativu. Pa iguar estos problemes, pues camudar les tecles asignaes pol sistema operativu. Tamién, pues camudar casi cualesquier asignación de tecles en ${PRODUCTNAME}. Si quies más información, consulta la ayuda de ${PRODUCTNAME} o la documentación d'ayuda del sistema operativu."
#. DBXZ8
#: readme.xrm
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 3fc99052cc2..93f36d231f3 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/ast/>\n"
"Language: ast\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: 1542022495.000000\n"
#. kBovX
@@ -21346,7 +21346,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/datafielddialog.ui:184
msgctxt "datafielddialog|extended_tip|checkbutton1"
msgid "Includes empty columns and rows in the results table."
-msgstr ""
+msgstr "Inclúi les columnes y fileres baleres na tabla de resultaos."
#. CNVLs
#: sc/uiconfig/scalc/ui/datafielddialog.ui:203
@@ -21770,7 +21770,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:203
msgctxt "dataproviderdlg/lbSource"
msgid "Source"
-msgstr ""
+msgstr "Orixe"
#. fHfGq
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:237
@@ -25661,97 +25661,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Oxetu"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Oxetu"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprentar"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~Imprentar"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26128,153 +26128,153 @@ msgid "Im_age"
msgstr "Im_axe"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "Posición"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olor"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Rexella"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Llingua"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Revisar"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Comentarios"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
#, fuzzy
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Comparar"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Ver"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "E_ditar"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Posición"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Ver"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Agrupar"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Fonte"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Alliniación"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Ver"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Inxertar"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Medios"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Ma_rcu"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "Posición"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Rexella"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
@@ -28044,7 +28044,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:250
msgctxt "pivotfielddialog|extended_tip|showall"
msgid "Includes empty columns and rows in the results table."
-msgstr ""
+msgstr "Inclúi les columnes y fileres baleres na tabla de resultaos."
#. aUWEK
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:269
@@ -28476,10 +28476,9 @@ msgstr "Rangu con _nome"
#. QTYpg
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1001
-#, fuzzy
msgctxt "pivottablelayoutdialog|label9"
msgid "Source"
-msgstr "Fonte:"
+msgstr "Orixe"
#. daE6g
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1019
@@ -31140,14 +31139,13 @@ msgstr ""
#: sc/uiconfig/scalc/ui/solversuccessdialog.ui:88
msgctxt "solversuccessdialog|label2"
msgid "Solving successfully finished."
-msgstr ""
+msgstr "Finó'l cálculu de la solución."
#. hA9oa
#: sc/uiconfig/scalc/ui/solversuccessdialog.ui:100
-#, fuzzy
msgctxt "solversuccessdialog|result"
msgid "Result:"
-msgstr "Resultáu"
+msgstr "Resultáu:"
#. xDbWL
#: sc/uiconfig/scalc/ui/sortcriteriapage.ui:33
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index ab320b52cf6..745e2fbe05b 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/ast/>\n"
"Language: ast\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: 1542022496.000000\n"
#. WDjkB
@@ -2684,10 +2684,9 @@ msgstr "Radios"
#. eJ4qZ
#: sd/inc/strings.hrc:412
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
-msgstr "Primer columna"
+msgstr "Primer color:"
#. CSbCE
#: sd/inc/strings.hrc:413
@@ -2752,10 +2751,9 @@ msgstr "Tamañu de fonte"
#. R3GgU
#: sd/inc/strings.hrc:422
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
-msgstr "Tamañu"
+msgstr "Tamañu:"
#. YEwoz
#: sd/inc/strings.hrc:423
@@ -2766,10 +2764,9 @@ msgstr "Importe"
#. wiQPZ
#: sd/inc/strings.hrc:424
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
-msgstr "Color"
+msgstr "Color:"
#. f5u6C
#: sd/inc/strings.hrc:425
@@ -4230,109 +4227,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Imaxe"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Oxetu"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Oxetu"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "_3D"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "~3D"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7186,109 +7183,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Imaxe"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Oxetu"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Oxetu"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "_3D"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "~3D"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 7de33ebd80f..9f5158c33ec 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/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: 2022-03-31 23:45+0200\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/sfx2messages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -757,7 +757,7 @@ msgstr "Central d'aniciu"
#: include/sfx2/strings.hrc:145
msgctxt "STR_QUICKSTART_RECENTDOC"
msgid "Recent Documents"
-msgstr "Documentos recientes"
+msgstr "Documentos recién"
#. DirQf
#: include/sfx2/strings.hrc:146
@@ -2915,7 +2915,7 @@ msgstr "~Favoritos"
#: sfx2/uiconfig/ui/charmapcontrol.ui:261
msgctxt "charmapcontrol|label2"
msgid "Recent"
-msgstr ""
+msgstr "Recién"
#. BQwCQ
#: sfx2/uiconfig/ui/charmapcontrol.ui:500
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 14ebcab44fd..6d7cd63ba6e 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/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: 2021-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/svtoolsmessages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. fLdeV
@@ -5122,7 +5122,7 @@ msgstr "_Renomar"
#: svtools/uiconfig/ui/graphicexport.ui:51
msgctxt "graphicexport|GraphicExportDialog"
msgid "%1 Options"
-msgstr " Opciones de %1"
+msgstr "Opciones de %1"
#. C3C7t
#: svtools/uiconfig/ui/graphicexport.ui:141
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 4b12a4fd624..4d8cf191b50 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/ast/>\n"
"Language: ast\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: 1542195213.000000\n"
#. v3oJv
@@ -7584,7 +7584,7 @@ msgstr "DDE Manual"
#: sw/inc/strings.hrc:958
msgctxt "FLD_INPUT_TEXT"
msgid "[Text]"
-msgstr ""
+msgstr "[Testu]"
#. TyYok
#. --------------------------------------------------------------------
@@ -9615,7 +9615,7 @@ msgstr ""
#: sw/inc/strings.hrc:1331
msgctxt "STR_AUTOMARK_TYPE"
msgid "Selection file for the alphabetical index (*.sdi)"
-msgstr "Seleición de ficheru pal indiz alfabéticu (*.sdi)"
+msgstr "Ficheru d'esbilla pal indiz alfabéticu (*.sdi)"
#. Rvcdk
#. -----------------------------------------------------------------------
@@ -9654,7 +9654,7 @@ msgstr "Editar oxetu"
#: sw/inc/strings.hrc:1341
msgctxt "STR_FRMUI_COLL_HEADER"
msgid " (Template: "
-msgstr " (Plantilla: "
+msgstr " (Plantía: "
#. oUhnK
#: sw/inc/strings.hrc:1342
@@ -9672,7 +9672,7 @@ msgstr "Fondu"
#: sw/inc/strings.hrc:1345
msgctxt "STR_TEXTCOLL_HEADER"
msgid "(Paragraph Style: "
-msgstr "(Estilu Párrafu: "
+msgstr "(Estilu de párrafu: "
#. Fsanh
#: sw/inc/strings.hrc:1346
@@ -9715,7 +9715,7 @@ msgstr ""
#: sw/inc/strings.hrc:1355
msgctxt "STR_LANGSTATUS_NONE"
msgid "None (Do not check spelling)"
-msgstr "Dengún (Nun igua la ortografía)"
+msgstr "Dengún (nun igua la ortografía)"
#. Z8EjG
#: sw/inc/strings.hrc:1356
@@ -10644,19 +10644,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Mueve l'estilu de párrafu escoyíu un nivel embaxo na xerarquía d'índices."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Estilos"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Crea entraes del índiz a partir d'estilos concretos de párrafos."
@@ -14147,37 +14147,37 @@ msgid "Exchange Databases"
msgstr "Bases de Datos Exchange"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Definir"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Bases de Datos n'Usu"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "B_ases de datos disponibles"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Restolar..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Abre un diálogu d'apertura de ficheros pa escoyer un ficheru de base de datos (*.odb). El ficheru escoyíu incorporar a la llista Bases de datos disponibles."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14187,31 +14187,31 @@ msgstr ""
"Usar el botón restolar pa seleicionar un ficheru de base de datos."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Amuesa les bases de datos n'usu."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Presenta la llista de les bases de datos que tan rexistraes en %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Bases de Datos Exchange"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Base de datos aplicaes al documentu:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Camuda l'orixe de datos del documentu abiertu."
@@ -20380,110 +20380,110 @@ msgid "Use the current _document"
msgstr "Usar el _documentu actual"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Utilice'l documentu de Writer actual como base del documentu de combinar correspondencia."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Crear un documentu _nuevu"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Cree un documentu de Writer pa utilizase cola combinación de correspondencia."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Partir d'un documentu _esistente"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Escueya un documentu de Writer pa utilizalo como base del documentu de combinar correspondencia."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Partir d'una plan_tía"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Escueya la plantía cola que deseya crear el documentu de combinar correspondencia."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Partir d'un docu_mentu de partida recién guardáu"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Utilice un documentu de combinar correspondencia como base pa unu nuevu."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Escueya'l documentu."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Navega_r..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Llocalizar el documentu de Writer que quier usar, y dempués facer clic en Abrir."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Navega_r..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleicionar documentu de partida pa la combinación de corréu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22643,49 +22643,49 @@ msgid "Object"
msgstr "Oxetu"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Triba"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opciones"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Axuste"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Berbesos"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Área"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Tresparencia"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27202,10 +27202,9 @@ msgstr "Escribi'l caráuter que quies usar como separador nel área escoyida."
#. XC5zv
#: sw/uiconfig/swriter/ui/sortdialog.ui:729
-#, fuzzy
msgctxt "sortdialog|delimpb"
msgid "Select..."
-msgstr "Seleición..."
+msgstr "Esbillar..."
#. VhhBB
#: sw/uiconfig/swriter/ui/sortdialog.ui:739
@@ -27454,7 +27453,7 @@ msgid "Update"
msgstr "Anovar"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/ast/vcl/messages.po b/source/ast/vcl/messages.po
index acc2931e12d..25c3941d630 100644
--- a/source/ast/vcl/messages.po
+++ b/source/ast/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2022-05-18 09:18+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/ast/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022501.000000\n"
#. k5jTM
@@ -2326,169 +2326,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personalizáu"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Páxines:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "por"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Marxe:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "ente les páxines"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "al berbesu la fueya"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Dibuxar un berbesu alredor de cada páxina"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Folletu"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ast/wizards/messages.po b/source/ast/wizards/messages.po
index 0c7aec854bd..b6d8df29183 100644
--- a/source/ast/wizards/messages.po
+++ b/source/ast/wizards/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: 2021-01-19 13:14+0100\n"
-"PO-Revision-Date: 2022-05-18 09:17+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/wizardsmessages/ast/>\n"
"Language: ast\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1516047326.000000\n"
#. gbiMx
@@ -278,7 +278,7 @@ msgstr "~Nueva dirección del remitente:"
#: wizards/com/sun/star/wizards/common/strings.hrc:76
msgctxt "RID_LETTERWIZARDDIALOG_START_21"
msgid "Use placeholders for ~recipient's address"
-msgstr "Usar los marcadores de posición pa les señes del ~destinatariu"
+msgstr "Usar llugares de colocación pa les señes del ~destinatariu"
#. AkZCA
#: wizards/com/sun/star/wizards/common/strings.hrc:77
@@ -843,7 +843,7 @@ msgstr "Númberu de fax:"
#: wizards/com/sun/star/wizards/common/strings.hrc:178
msgctxt "RID_FAXWIZARDDIALOG_START_38"
msgid "Use placeholders for ~recipient's address"
-msgstr "Usar los marcadores de posición pa les señes del ~destinatariu"
+msgstr "Usar llugares de colocación pa les señes del ~destinatariu"
#. gqzFF
#: wizards/com/sun/star/wizards/common/strings.hrc:179
@@ -1048,7 +1048,7 @@ msgstr "Pie de páxina"
#: wizards/com/sun/star/wizards/common/strings.hrc:220
msgctxt "RID_FAXWIZARDROADMAP_START_5"
msgid "Name and Location"
-msgstr ""
+msgstr "Nome y allugamientu"
#. N6985
#: wizards/com/sun/star/wizards/common/strings.hrc:223
@@ -1150,7 +1150,7 @@ msgstr "Allugamientu:"
#: wizards/com/sun/star/wizards/common/strings.hrc:239
msgctxt "RID_AGENDAWIZARDDIALOG_START_17"
msgid "Placeholders will be used in empty fields. You can replace placeholders with text later."
-msgstr "Nos campos vacios úsense marcadores de posición. Dempués puedes camudalos por testu."
+msgstr "Nos campos vacios úsense llugares de colocación. Dempués puedes camudalos por testu."
#. raUGn
#: wizards/com/sun/star/wizards/common/strings.hrc:240
@@ -1360,13 +1360,13 @@ msgstr "Nomes"
#: wizards/com/sun/star/wizards/common/strings.hrc:274
msgctxt "RID_AGENDAWIZARDDIALOG_START_54"
msgid "Agenda Items"
-msgstr ""
+msgstr "Puntos del orde del día"
#. rSC3E
#: wizards/com/sun/star/wizards/common/strings.hrc:275
msgctxt "RID_AGENDAWIZARDDIALOG_START_55"
msgid "Name and Location"
-msgstr ""
+msgstr "Nome y allugamientu"
#. VNixB
#: wizards/com/sun/star/wizards/common/strings.hrc:276
@@ -1420,13 +1420,13 @@ msgstr "Participantes"
#: wizards/com/sun/star/wizards/common/strings.hrc:284
msgctxt "RID_AGENDAWIZARDDIALOG_START_64"
msgid "Minute keeper"
-msgstr "Controlador de minutos"
+msgstr "Secretariu/a"
#. m4CU7
#: wizards/com/sun/star/wizards/common/strings.hrc:285
msgctxt "RID_AGENDAWIZARDDIALOG_START_65"
msgid "Moderator"
-msgstr "Moderador"
+msgstr "Moderador/a"
#. gDUai
#: wizards/com/sun/star/wizards/common/strings.hrc:286
diff --git a/source/az/chart2/messages.po b/source/az/chart2/messages.po
index 716f5d1e347..ab1190bfee4 100644
--- a/source/az/chart2/messages.po
+++ b/source/az/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3619,7 +3619,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index fd2dffc0fe3..6de6fad58f6 100644
--- a/source/az/cui/messages.po
+++ b/source/az/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17227,176 +17227,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr ""
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr ""
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/az/dbaccess/messages.po b/source/az/dbaccess/messages.po
index 25d9bb27f50..3d0c6ad56fb 100644
--- a/source/az/dbaccess/messages.po
+++ b/source/az/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-01 21:46+0000\n"
"Last-Translator: Emin Mastizada <emin@mastizada.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3332,73 +3332,73 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr ""
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr ""
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Aç"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3406,7 +3406,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/az/extensions/messages.po b/source/az/extensions/messages.po
index 0444be36a5b..f2b18076310 100644
--- a/source/az/extensions/messages.po
+++ b/source/az/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,539 +296,527 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr ""
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr ""
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr ""
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr ""
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr ""
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr ""
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr ""
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr ""
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr ""
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr ""
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr ""
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr ""
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr ""
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr ""
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr ""
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr ""
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr ""
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr ""
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr ""
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr ""
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr ""
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr ""
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr ""
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "(Seçilmiş)"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr ""
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr ""
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr ""
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr ""
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Yox"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Hə"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr ""
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "Dayan"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr ""
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr ""
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr ""
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr ""
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr ""
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr ""
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Varsayılan"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr ""
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
#, fuzzy
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Xərçəng"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Yardım"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr ""
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr ""
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr ""
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr ""
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr ""
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr ""
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr ""
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr ""
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr ""
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr ""
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr ""
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr ""
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr ""
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr ""
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr ""
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr ""
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr ""
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr ""
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr ""
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr ""
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr ""
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr ""
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr ""
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr ""
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr ""
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr ""
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr ""
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Əvəzlə"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Yığ"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Yox"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr ""
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr ""
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr ""
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr ""
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr ""
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr ""
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr ""
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr ""
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr ""
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr ""
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr ""
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr ""
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr ""
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr ""
diff --git a/source/az/fpicker/messages.po b/source/az/fpicker/messages.po
index 9eb20d064f1..e6b96e7152d 100644
--- a/source/az/fpicker/messages.po
+++ b/source/az/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -214,57 +214,57 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Fayl adı:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr ""
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr ""
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr ""
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "~Avtomatik fayl adı uzantısı"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr ""
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 16e6030342d..48186393ecf 100644
--- a/source/az/sc/messages.po
+++ b/source/az/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25249,97 +25249,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -25710,145 +25710,145 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr ""
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr ""
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr ""
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr ""
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr ""
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Şərhlər"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Göstәr"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "Düzəlt"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr ""
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Göstәr"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr ""
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr ""
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr ""
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Göstәr"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Daxil et"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr ""
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr ""
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr ""
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index ababcf92f0d..680342509b5 100644
--- a/source/az/sd/messages.po
+++ b/source/az/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4190,109 +4190,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7093,109 +7093,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 49ee338a69d..d0a176ed4c4 100644
--- a/source/az/sw/messages.po
+++ b/source/az/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10569,19 +10569,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr ""
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14068,37 +14068,37 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr ""
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr ""
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14106,31 +14106,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20238,109 +20238,109 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr ""
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr ""
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22494,49 +22494,49 @@ msgid "Object"
msgstr "Obyektlər"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Növ"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Seçimlər"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr ""
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr ""
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr ""
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr ""
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr ""
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr ""
@@ -27277,7 +27277,7 @@ msgid "Update"
msgstr "~Yenilə"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/az/vcl/messages.po b/source/az/vcl/messages.po
index eb748eda120..70e3449e2fa 100644
--- a/source/az/vcl/messages.po
+++ b/source/az/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2339,169 +2339,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr ""
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr ""
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr ""
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr ""
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/be/chart2/messages.po b/source/be/chart2/messages.po
index b99d825317b..4b408c38a74 100644
--- a/source/be/chart2/messages.po
+++ b/source/be/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 999be5ff0be..5033847c2f7 100644
--- a/source/be/cui/messages.po
+++ b/source/be/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17131,176 +17131,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Аўтаматычна"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Галактыка"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Моцны кантраст"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Оксіген"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Класіка"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Брыз"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Стыль піктаграм:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Патрабуе перазапуск"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Карыстацца апаратнымі паскаральнікамі"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Згладжванне краёў (Anti-A_liasing)"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Вывад графікі"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "З перадпаказам шрыфтаў"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Згладжванне шрыфтаў на экране"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "ад:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Спісы шрыфтаў"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/be/dbaccess/messages.po b/source/be/dbaccess/messages.po
index 7d169bcfe00..1e842de94e2 100644
--- a/source/be/dbaccess/messages.po
+++ b/source/be/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-04-24 10:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Стварыць новую базу даных"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Убудаваная база даных:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Адкрыць наяўны ф_айл базы даных"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_Нядаўна выкарыстаныя:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Адкрыць"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Далучыцца да наяўнай базы даных"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3469,7 +3469,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/be/extensions/messages.po b/source/be/extensions/messages.po
index e5de273a40d..e1f48f5d7ac 100644
--- a/source/be/extensions/messages.po
+++ b/source/be/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Перачытаць форму"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Get"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multipart"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Тэкст"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Стандартна (каротка)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Стандартна (каротка ГГ)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Стандартна (каротка ГГГГ)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Стандартна (доўга)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "ДД/ММ/ГГ"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "ММ/ДД/ГГ"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "ГГ/ММ/ДД"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "ДД/ММ/ГГГГ"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "ММ/ДД/ГГГГ"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "ГГГГ/ММ/ДД"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "ГГ-ММ-ДД"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "ГГГГ-ММ-ДД"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Не выбрана"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Выбрана"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Нявызначана"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Усе запісы"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Актыўны запіс"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Цяперашняя старонка"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Не"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Так"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Бацькоўская форма"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Няма"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Адзінкавы"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Множны"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Дыяпазон"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Гарызантальны"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Вертыкальны"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Прадвызначана"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "ОК"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Нічога"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Даведка"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Азначаны складнік"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Пазіцыя азначанага складніка"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Адна-радковы"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Многарадковы"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Многарадковы з фарматаваннем"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Няма"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Гарызантальна"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Вертыкальна"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Абодва"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Плоска"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Левы верх"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Левы цэнтр"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Левы ніз"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Правы верх"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Правы цэнтр"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Правы ніз"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Над і злева"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Над і ў цэнтры"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Над і справа"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Пад і злева"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Пад і ў цэнтры"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Пад і справа"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "У цэнтры"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Захоўваць"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Замяніць"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Згарнуць"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Не"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Захоўваць прапорцыі"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Дапасаваць да памеру"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Злева направа"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Справа налева"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Як у вышэйпастаўленага аб'екта"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Ніколі"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Калі ў фокусе"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Заўсёды"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Да абзацу"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Як знак"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Да старонкі"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Да рамкі"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Да знаку"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Да старонкі"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "Да клеткі"
diff --git a/source/be/fpicker/messages.po b/source/be/fpicker/messages.po
index 9e0cd807da6..26995bf54ad 100644
--- a/source/be/fpicker/messages.po
+++ b/source/be/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Назва файла:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Тып файла:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Толь_кі-чытанае"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Запісаць з паролем"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Аўтаматычна дапісваць канчатак назвы файла"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Пр_авіць настаўленні фільтра"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Зашыфраваць ключом GPG"
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 705f5be60ce..0d747443a1c 100644
--- a/source/be/sc/messages.po
+++ b/source/be/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25811,97 +25811,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26271,142 +26271,142 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "Упарадкаваць"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Колер"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "Рашотка"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "Мова"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Праверыць"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Заўвагі"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "Параўнаць"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Від"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "Рысаваць"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "Змяніць"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Упарадкаваць"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Від"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Група"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Шрыфт"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Раўнаванне"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Від"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Уставіць"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Медыя"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Рам_ка"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "Упарадкаваць"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "Рашотка"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "Від"
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 870075b9e53..ad461c4097c 100644
--- a/source/be/sd/messages.po
+++ b/source/be/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4179,109 +4179,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7068,109 +7068,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 392667f2582..d7a8c8d8d4b 100644
--- a/source/be/sw/messages.po
+++ b/source/be/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10501,19 +10501,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Стылі"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -13957,37 +13957,37 @@ msgid "Exchange Databases"
msgstr "Абмяніць базы даных"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Акрэсліць"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Ужываныя базы даных"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Базы даных у наяўнасці"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Выбраць..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13997,31 +13997,31 @@ msgstr ""
"Выбраць файл базы даных можна праз кнопку \"Выбраць\"."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Абмяніць базы даных"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "База даных ужытая ў дакуменце:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20075,109 +20075,109 @@ msgid "Use the current _document"
msgstr "Ужыць адкрыты дакумент"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Ствары_ць новы дакумент"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Пачаць з прыс_утнага дакумента"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Пачаць з шаблона"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Пачац_ь з нядаўна запісанага пачатковага дакументу"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Выбраць..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Выбраць..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Выбраць дакумент як аснову для памножанай пошты"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22320,49 +22320,49 @@ msgid "Object"
msgstr "Аб'ект"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Тып"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Настаўленні"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Загарнуць"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Спасылка"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Межы"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Абсяг"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Празрыстасць"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Макрас"
@@ -27054,7 +27054,7 @@ msgid "Update"
msgstr "Абнавіць"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/be/vcl/messages.po b/source/be/vcl/messages.po
index 0e3456cc397..567003ebc7d 100644
--- a/source/be/vcl/messages.po
+++ b/source/be/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2319,169 +2319,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Па-свойму"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "на"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "паміж старонкамі"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "да краю аркуша"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Мяжа навокал кожнай старонкі"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Брашура"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/bg/chart2/messages.po b/source/bg/chart2/messages.po
index 6fca7f47649..52c6d5bbd15 100644
--- a/source/bg/chart2/messages.po
+++ b/source/bg/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-09-20 14:53+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/bg/>\n"
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Определя броя на линиите в диаграма от тип „Колона и линия“."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Изберете основния тип на диаграмата."
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index cbb3e344d8d..86eb3fd91af 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-19 10:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/bg/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564897785.000000\n"
#. GyY9M
@@ -17133,176 +17133,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Автоматично"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Висок контраст"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Класически"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Указва стила на иконите в лентите с инструменти и диалоговите прозорци."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Стил на иконите:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Добавяне на още теми с икони чрез разширение"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Стил на иконите"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Изисква рестартиране"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Използване на хард_уерно ускоряване"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Разрешава пряк достъп до хардуерните възможности на графичния адаптер, за да се подобри изображението върху екрана."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Изглаждане на назъбванията"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Когато се поддържа, можете да включвате и изключвате изглаждането на назъбените краища в графики. С включено изглаждане повечето графични обекти изглеждат на екрана по-гладки и с по-малко дефекти."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Рендиране на всичко със Skia"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Налагане на софтуерно рендиране със Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Изисква рестартиране. Забранява използването на графичните драйвери."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia е включен."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia е изключен."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Графичен изход"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Показване на _мостра от шрифтовете"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Показва имената на достъпните за избиране шрифтове със самите шрифтове, например за шрифтовете от списъка на лентата Форматиране."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Из_глаждане на екранните шрифтове"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Отметнете, ако желаете текстът да се изглажда при показване на екрана."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "от:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Въведете най-малкия размер на шрифта, при който да се изглаждат назъбванията."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Списъци с шрифтове"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Изпълняване на тестове за графика"
diff --git a/source/bg/dbaccess/messages.po b/source/bg/dbaccess/messages.po
index 14ab10925f1..96dc8394339 100644
--- a/source/bg/dbaccess/messages.po
+++ b/source/bg/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-03-31 21:50+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/bg/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562324222.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Създаване на _нова база от данни"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Изберете това, за да създадете нова база от данни."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Вградена база от данни:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Отваряне на съществуващ _файл на база от данни"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Изберете това, за да отворите файл на база от данни от списък с последните използвани файлове или чрез диалогов прозорец за избор на файл."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Наскоро _използвани:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Изберете файл от списъка с последните използвани файлове. Натиснете „Готово“, за да отворите файла незабавно, затваряйки помощника."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Отваряне"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Отваря диалогов прозорец за избор на файлове, в който можете да изберете файл на база от данни. Натиснете „Отваряне“ или „OK“ в диалоговия прозорец, за да отворите файла незабавно, затваряйки помощника."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Създаване на _връзка към съществуваща база от данни"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Изберете това, за да създадете нов документ на база от данни за съществуваща връзка към база от данни."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Изберете вида на базата от данни за съществуващата връзка."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3471,7 +3471,7 @@ msgstr ""
"не е налице нито HSQLDB, нито Firebird."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Помощникът за бази от данни създава файл на база от данни, който съдържа информация за базата."
diff --git a/source/bg/extensions/messages.po b/source/bg/extensions/messages.po
index bfd5ddb80ae..f76c53a084b 100644
--- a/source/bg/extensions/messages.po
+++ b/source/bg/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-05-18 09:18+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/bg/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562351698.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Опресняване на формуляра"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Get"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multipart"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Текст"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Стандартен (кратък)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Стандартен (кратък ГГ)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Стандартен (кратък ГГГГ)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Стандартен (дълъг)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "ДД/ММ/ГГ"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "ММ/ДД/ГГ"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "ГГ/ММ/ДД"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "ДД/ММ/ГГГГ"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "ММ/ДД/ГГГГ"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "ГГГГ/ММ/ДД"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "ГГ-ММ-ДД"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "ГГГГ-ММ-ДД"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Не е избрано"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Избрано"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Неопределено"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Всички записи"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Активен запис"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Текуща страница"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Не"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Да"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Родителски формуляр"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Няма"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Единичен"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Множествен"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Диапазон"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Хоризонтална"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Вертикална"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "По подразбиране"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "OK"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Отказ"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Помощ"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Избраният запис"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Позицията на избрания запис"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "На един ред"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "На няколко реда"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "На няколко реда с форматиране"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Няма"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Хоризонтален"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Вертикален"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "И двата"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "Релефен"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Плосък"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Отляво горе"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Отляво в средата"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Отляво долу"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Отдясно горе"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Отдясно в средата"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Отдясно долу"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Отгоре вляво"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Отгоре в средата"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Отгоре вдясно"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Отдолу вляво"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Отдолу в средата"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Отдолу вдясно"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "В средата"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Запазване"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Заместване"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Свиване"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Не"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Запазване на пропорциите"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Напасване по размер"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "От ляво надясно"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "От дясно наляво"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Настройки от родителския обект"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Никога"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "При фокус"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Винаги"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Към абзац"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Като знак"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Към страница"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Към рамка"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Към знак"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Към страница"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "Към клетка"
diff --git a/source/bg/fpicker/messages.po b/source/bg/fpicker/messages.po
index e1fea66d36a..1645b77db21 100644
--- a/source/bg/fpicker/messages.po
+++ b/source/bg/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-02-26 09:36+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/bg/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Дата на промяна"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "Отваряне"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "Пускане"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Име на файл:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Тип файл:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Само за четене"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Записване с парола"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Автоматично разширение"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Настройки на филтъра"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Шифроване с ключ на GPG"
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 50accd18f62..192051a65ba 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-06 18:38+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalc01/bg/>\n"
"Language: bg\n"
@@ -12921,7 +12921,7 @@ msgctxt ""
"par_id441635243969504\n"
"help.text"
msgid "<input>=TRUNC(-45.67)</input> returns -45. The default value for <emph>Count</emph> is 0."
-msgstr ""
+msgstr "<input>=TRUNC(-45,67)</input> връща -45. Подразбираната стойност за <emph>Брой</emph> is 0."
#. gMj5a
#: 04060106.xhp
@@ -67371,7 +67371,7 @@ msgctxt ""
"par_id240920171007389295\n"
"help.text"
msgid "Menu <menuitem>Data – Streams...</menuitem>"
-msgstr ""
+msgstr "Меню <menuitem>Данни - Потоци...</menuitem>"
#. k7H5Y
#: solver.xhp
@@ -69963,7 +69963,7 @@ msgctxt ""
"bm_id2764278\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;regression analysis</bookmark_value><bookmark_value>regression analysis;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;regression analysis</bookmark_value><bookmark_value>Confidence level;regression analysis</bookmark_value><bookmark_value>regression analysis;linear</bookmark_value><bookmark_value>regression analysis;power</bookmark_value><bookmark_value>regression analysis;logarithmic</bookmark_value>"
-msgstr ""
+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>"
#. UPKr7
#: statistics_regression.xhp
@@ -69981,7 +69981,7 @@ msgctxt ""
"par_id1001240\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/regressiondialog/RegressionDialog\">Performs linear, logarithmic, or power regression analysis of a data set comprising one dependent variable and multiple independent variables.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/regressiondialog/RegressionDialog\">Извършва линеен, логаритмичен или степенен регресионен анализ на съвкупност от данни, включваща една зависима променлива и множество независими променливи.</ahelp>"
#. PDDGb
#: statistics_regression.xhp
@@ -69990,7 +69990,7 @@ msgctxt ""
"par_id431629832333206\n"
"help.text"
msgid "For example, a crop yield (dependent variable) may be related to rainfall, temperature conditions, sunshine, humidity, soil quality and more, all of them independent variables."
-msgstr ""
+msgstr "Например добивът на дадена култура (зависима променлива) може да е свързан с валежите, температурните условия, слънчевата светлина, влажността, качеството на почвата и други, всички от които са независими променливи."
#. ENJtD
#: statistics_regression.xhp
@@ -70017,7 +70017,7 @@ msgctxt ""
"hd_id891629830986496\n"
"help.text"
msgid "Data"
-msgstr ""
+msgstr "Данни"
#. 9uRGh
#: statistics_regression.xhp
@@ -70026,7 +70026,7 @@ msgctxt ""
"hd_id101629830993962\n"
"help.text"
msgid "Independent variable(s) (X) range:"
-msgstr ""
+msgstr "Диапазон с независими променливи (X):"
#. XGD77
#: statistics_regression.xhp
@@ -70035,7 +70035,7 @@ msgctxt ""
"par_id961629834099308\n"
"help.text"
msgid "Enter a single range that contains multiple independent variable observations (along columns or rows). All X variable observations need to be entered adjacent to each other in the same table."
-msgstr ""
+msgstr "Въведете един диапазон, който съдържа множество наблюдения на независимите променливи (по колоните или редовете. Всички наблюдения на променливата X трябва да бъдат въведени едно до друго в една и съща таблица."
#. yCogF
#: statistics_regression.xhp
@@ -70044,7 +70044,7 @@ msgctxt ""
"hd_id871629830998653\n"
"help.text"
msgid "Dependent variable (Y) range:"
-msgstr ""
+msgstr "Диапазон със зависими променливи (Y):"
#. NiB9B
#: statistics_regression.xhp
@@ -70053,7 +70053,7 @@ msgctxt ""
"par_id391629834089370\n"
"help.text"
msgid "Enter the range that contains the dependent variable whose regression is to be calculated."
-msgstr ""
+msgstr "Въведете диапазона, съдържащ зависимата променлива, чиято регресия трябва да се изчисли."
#. A8dZ8
#: statistics_regression.xhp
@@ -70062,7 +70062,7 @@ msgctxt ""
"hd_id931629831003368\n"
"help.text"
msgid "Both X and Y ranges have labels"
-msgstr ""
+msgstr "Диапазоните X и Y имат надписи"
#. mSnba
#: statistics_regression.xhp
@@ -70071,7 +70071,7 @@ msgctxt ""
"par_id261629834071776\n"
"help.text"
msgid "Check to use the first line (or column) of the data sets as variable names in the output range."
-msgstr ""
+msgstr "Отметнете, за да се използва първият ред (или колона) на наборите от данни като имена на променливите в диапазона с резултата."
#. 7TDwz
#: statistics_regression.xhp
@@ -70080,7 +70080,7 @@ msgctxt ""
"hd_id11629831014811\n"
"help.text"
msgid "Results to:"
-msgstr ""
+msgstr "Резултати в:"
#. CAKdU
#: statistics_regression.xhp
@@ -70089,7 +70089,7 @@ msgctxt ""
"par_id441629834000533\n"
"help.text"
msgid "The reference of the top left cell of the range where the results will be displayed."
-msgstr ""
+msgstr "Обръщение към горната лява клетка на диапазона, в който да се покажат резултатите."
#. ZMxv6
#: statistics_regression.xhp
@@ -70098,7 +70098,7 @@ msgctxt ""
"hd_id1000070\n"
"help.text"
msgid "Output Regression Types"
-msgstr ""
+msgstr "Варианти за извеждане на регресия"
#. QMDBG
#: statistics_regression.xhp
@@ -70116,7 +70116,7 @@ msgctxt ""
"par_id1701201620334364\n"
"help.text"
msgid "<emph>Linear Regression</emph>: finds a linear function in the form of y = b + a<sub>1</sub>.[x<sub>1</sub>] + a<sub>2</sub>.[x<sub>2</sub>] + a<sub>3</sub>.[x<sub>3</sub>] ..., where a<sub>i</sub> is the i-th slope, [x<sub>i</sub>] is the i-th independent variable, and b is the intercept that best fits the data."
-msgstr ""
+msgstr "<emph>Линейна регресия</emph>: намира линейна функция във вида y = b + a<sub>1</sub>.[x<sub>1</sub>] + a<sub>2</sub>.[x<sub>2</sub>] + a<sub>3</sub>.[x<sub>3</sub>] ..., където a<sub>i</sub> е i-тият наклон, [x<sub>i</sub>] е i-тата независима променлива, а b е свободният член, който най-добре пасва на данните."
#. cR7FM
#: statistics_regression.xhp
@@ -70125,7 +70125,7 @@ msgctxt ""
"par_id1701201620340168\n"
"help.text"
msgid "<emph>Logarithmic regression</emph>: finds a logarithmic curve in the form of y = b + a<sub>1</sub>.ln[x<sub>1</sub>] + a<sub>2</sub>.ln[x<sub>2</sub>] + a<sub>3</sub>.ln[x<sub>3</sub>] ..., where a<sub>i</sub> is the i-th coefficient, b is the intercept and ln[x<sub>i</sub>] is the natural logarithm of the i-th independent variable, that best fits the data."
-msgstr ""
+msgstr "<emph>Логаритмична регресия</emph>: намира логаритмична крива във вида y = b + a<sub>1</sub>.ln[x<sub>1</sub>] + a<sub>2</sub>.ln[x<sub>2</sub>] + a<sub>3</sub>.ln[x<sub>3</sub>] ..., където a<sub>i</sub> е i-тият коефициент, b е свободният член и ln[x<sub>i</sub>] е натуралният логаритъм на i-тата независима променлива, който най-добре пасва на данните."
#. YfNEL
#: statistics_regression.xhp
@@ -70134,7 +70134,7 @@ msgctxt ""
"par_id1701201620340139\n"
"help.text"
msgid "<emph>Power regression</emph>: finds a power curve in the form of y = exp( b + a<sub>1</sub>.ln[x<sub>1</sub>] + a<sub>2</sub>.ln[x<sub>2</sub>] + a<sub>3</sub>.ln[x<sub>3</sub>] ...), where a<sub>i</sub> is the i-th power, [x<sub>i</sub>] is the i-th independent variable, and b is intercept that best fits the data."
-msgstr ""
+msgstr "<emph>Степенна регресия</emph>: намира експоненциална крива във вида y = exp( b + a<sub>1</sub>.ln[x<sub>1</sub>] + a<sub>2</sub>.ln[x<sub>2</sub>] + a<sub>3</sub>.ln[x<sub>3</sub>] ...), където a<sub>i</sub> е i-тият степенен показател, [x<sub>i</sub>] е i-тата независима променлива, а b е свободният член, който най-добре пасва на данните."
#. 3KkxA
#: statistics_regression.xhp
@@ -70143,7 +70143,7 @@ msgctxt ""
"hd_id331629834218606\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Настройки"
#. uBCr7
#: statistics_regression.xhp
@@ -70152,7 +70152,7 @@ msgctxt ""
"hd_id481629834269509\n"
"help.text"
msgid "Confidence level"
-msgstr ""
+msgstr "Ниво на доверие"
#. YjBMV
#: statistics_regression.xhp
@@ -70161,7 +70161,7 @@ msgctxt ""
"par_id971629835636129\n"
"help.text"
msgid "A numeric value between 0 and 1 (exclusive), default is 0.95. Calc uses this percentage to compute the corresponding confidence intervals for each of the estimates (namely the slopes and intercept)."
-msgstr ""
+msgstr "Числова стойност между 0 и 1 (отворен интервал), подразбира се 0,95. Calc използва този процент, за да изчисли съответните доверителни интервали за всяка от оценките (а именно наклоните и свободния член)."
#. f2CEs
#: statistics_regression.xhp
@@ -70170,7 +70170,7 @@ msgctxt ""
"hd_id751629834274709\n"
"help.text"
msgid "Calculate residuals"
-msgstr ""
+msgstr "Изчисляване на остатъци"
#. b4unQ
#: statistics_regression.xhp
@@ -70179,7 +70179,7 @@ msgctxt ""
"par_id401629835408653\n"
"help.text"
msgid "Select whether to opt in or out of computing the residuals, which may be beneficial in cases where you are interested only in the slopes and intercept estimates and their statistics. The residuals give information on how far the actual data points deviate from the predicted data points, based on the regression model."
-msgstr ""
+msgstr "Изберете дали да се изчисляват остатъци, което може да е от полза, когато се интересувате само от оценките за наклоните и свободния член и техните статистики. Остатъците дават информация за това доколко действителните данни се отклоняват от прогнозираните според регресионния модел."
#. F99az
#: statistics_regression.xhp
@@ -70188,7 +70188,7 @@ msgctxt ""
"hd_id861629834279039\n"
"help.text"
msgid "Force intercept to be zero"
-msgstr ""
+msgstr "Фиксиране свободния член на нула"
#. UYdQb
#: statistics_regression.xhp
@@ -70197,7 +70197,7 @@ msgctxt ""
"par_id121629837424848\n"
"help.text"
msgid "Calculates the regression model using zero as the intercept, thus forcing the model to pass through the origin."
-msgstr ""
+msgstr "Изчислява регресионния модел с нулев свободен член, при което кривата ще минава през началото на координатната система."
#. u47eB
#: statistics_sampling.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index a26107b1793..0b5ed8c6384 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsharedguide/bg/>\n"
"Language: bg\n"
@@ -663,7 +663,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Automatic Redaction"
-msgstr ""
+msgstr "Автоматично заличаване"
#. K7arh
#: auto_redact.xhp
@@ -672,7 +672,7 @@ msgctxt ""
"bm_id821562797360035\n"
"help.text"
msgid "<bookmark_value>spreadsheet; auto-redact</bookmark_value> <bookmark_value>presentations; auto-redact</bookmark_value> <bookmark_value>text documents; auto-redact contents</bookmark_value> <bookmark_value>automatic redaction</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>електронни таблици; автозаличаване на информация</bookmark_value><bookmark_value>презентации; автозаличаване</bookmark_value><bookmark_value>текстови документи; автозаличаване на съдържание</bookmark_value><bookmark_value>автоматично заличаване на информация</bookmark_value>"
#. dujqZ
#: auto_redact.xhp
@@ -690,7 +690,7 @@ msgctxt ""
"par_id4715627952214572\n"
"help.text"
msgid "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Use automatic redaction to define words and patterns that are automatically marked for redaction.</ahelp></variable> This makes it easier to redact %PRODUCTNAME documents that have multiple portions of text that need to be hidden due to sensitivity or privacy issues."
-msgstr ""
+msgstr "<variable id=\"auto_redact_var\"><ahelp hid=\"sfx/ui/autoredactdialog/\">Използвайте автоматичното заличаване на информация, за да дефинирате думи и изрази, които автоматично се маркират за заличаване.</ahelp></variable> Автоматичното заличаване улеснява премахването на информация от документи на %PRODUCTNAME, в които много текстови откъси трябва да бъдат скрити по съображения за поверителност или защита на личните данни."
#. erJBg
#: auto_redact.xhp
@@ -699,7 +699,7 @@ msgctxt ""
"par_id961562795750725\n"
"help.text"
msgid "Choose <menuitem>Tools - Auto-Redact</menuitem>"
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Автозаличаване</menuitem>."
#. XFRFz
#: auto_redact.xhp
@@ -708,7 +708,7 @@ msgctxt ""
"par_id551626027709362\n"
"help.text"
msgid "This feature comes in handy in documents that have multiple occurrences of names and other personal information (e.g. credit cards, phone numbers, etc). Redacting all these portions of the document manually would required significant effort, but with Automatic Redaction this task can be automated in a more efficient manner."
-msgstr ""
+msgstr "Тази функция е удобна в документи, които съдържат множество срещания на имена и друга лична информация (кредитни карти, телефонни номера и т.н.). Заличаването на всички тези откъси от документа ръчно би изисквало значително усилие, но с „Автоматично заличаване“ задачата може да се автоматизира за по-ефективно изпълнение."
#. HsEH7
#: auto_redact.xhp
@@ -717,7 +717,7 @@ msgctxt ""
"hd_id11626028179231\n"
"help.text"
msgid "Creating Targets"
-msgstr ""
+msgstr "Създаване на цели"
#. U4tPq
#: auto_redact.xhp
@@ -726,7 +726,7 @@ msgctxt ""
"par_id211626097811059\n"
"help.text"
msgid "Targets are rules and patterns used by Automatic Redaction to find portions of the document to be automatically marked for redaction."
-msgstr ""
+msgstr "Целите представляват правила и шаблони за сравнение, използвани от функцията „Автоматично заличаване“ за намиране на части от документа, които да бъдат автоматично маркирани за заличаване."
#. A6CCF
#: auto_redact.xhp
@@ -735,7 +735,7 @@ msgctxt ""
"par_id851626028193218\n"
"help.text"
msgid "To create a new target, click the <menuitem>Add Target</menuitem> button."
-msgstr ""
+msgstr "За да създадете нова цел, щракнете върху бутона <menuitem>Добавяне на цел</menuitem>."
#. RGwFa
#: auto_redact.xhp
@@ -744,7 +744,7 @@ msgctxt ""
"par_id101626028852152\n"
"help.text"
msgid "The <emph>Add Target</emph> dialog appears, to let you define a <emph>Name</emph> for the new target, as well as to choose its <emph>Type</emph> and <emph>Content</emph>. There are three types of targets to choose from in the <emph>Type</emph> dropdown list:"
-msgstr ""
+msgstr "Ще се появи диалогът <emph>Добавяне на цел</emph>, в който можете да зададете <emph>Име</emph> за новата цел, както и да изберете <emph>Тип</emph> и <emph>Съдържание</emph>. Падащият списък <emph>Тип</emph> предлага три вида цели:"
#. 5AKPv
#: auto_redact.xhp
@@ -753,7 +753,7 @@ msgctxt ""
"par_id241626028988544\n"
"help.text"
msgid "<emph>Text</emph>: Automatic Redaction will look for all occurrences of the specified text and mark them for redaction."
-msgstr ""
+msgstr "<emph>Текст</emph>: „Автоматично заличаване“ ще търси всички срещания на указания текст и ще ги маркира за заличаване."
#. iCDRP
#: auto_redact.xhp
@@ -762,7 +762,7 @@ msgctxt ""
"par_id31626028992866\n"
"help.text"
msgid "<emph>Regular expression</emph>: Define a regular expression to use to search the document. All matches will be marked for redaction."
-msgstr ""
+msgstr "<emph>Регулярен израз</emph>: задайте регулярен израз, който да се използва за търсене в документа. Всички съвпадения ще бъдат маркирани за заличаване."
#. puprE
#: auto_redact.xhp
@@ -771,7 +771,7 @@ msgctxt ""
"par_id391626028994653\n"
"help.text"
msgid "<emph>Predefined</emph>: Choose predefined regular expressions to automatically redact contents, such as credit card numbers, email addresses and so on."
-msgstr ""
+msgstr "<emph>Предварително зададени</emph>: изберете предварително дефинирани регулярни изрази за автоматично заличаване на съдържание като на номера на кредитни карти, адреси за е-поща и подобни."
#. bMHnY
#: auto_redact.xhp
@@ -780,7 +780,7 @@ msgctxt ""
"par_id181626029575406\n"
"help.text"
msgid "Add all targets that you want to apply to your document and click <emph>OK</emph>. This opens the document as a drawing in %PRODUCTNAME Draw with all targets automatically redacted with the <emph>Rectangle Redaction</emph> tool."
-msgstr ""
+msgstr "Добавете всички цели, които искате да приложите за документа, и щракнете върху <emph>OK</emph>. Това ще предизвика отваряне на документа като рисунка в %PRODUCTNAME Draw с всички цели, автоматично заличени с инструмента <emph>Заличаване с правоъгълник</emph>."
#. kiFS3
#: auto_redact.xhp
@@ -789,7 +789,7 @@ msgctxt ""
"par_id611626029791762\n"
"help.text"
msgid "Continue redacting other portions of the generated document and then print or export it to PDF."
-msgstr ""
+msgstr "Можете да продължите да заличавате други части от генерирания документ, а след това да го отпечатате или експортирате към PDF."
#. AGQiE
#: auto_redact.xhp
@@ -798,7 +798,7 @@ msgctxt ""
"par_id581626101004089\n"
"help.text"
msgid "Refer to the help page <link href=\"text/shared/01/02100001.xhp\" name=\"regex_link\">List of Regular Expressions</link> to learn more about how to use regular expressions in %PRODUCTNAME."
-msgstr ""
+msgstr "Вижте страницата от помощта <link href=\"text/shared/01/02100001.xhp\" name=\"regex_link\">Списък на регулярните изрази</link>, за да научите повече за това как да използвате регулярни изрази в %PRODUCTNAME."
#. AE55E
#: auto_redact.xhp
@@ -807,7 +807,7 @@ msgctxt ""
"hd_id951626029985729\n"
"help.text"
msgid "Exporting and Importing Targets"
-msgstr ""
+msgstr "Експортиране и импортиране на цели"
#. CsYeH
#: auto_redact.xhp
@@ -816,7 +816,7 @@ msgctxt ""
"par_id701626030005749\n"
"help.text"
msgid "Click the <emph>Save Targets</emph> button to save all defined targets in the document as a JSON (JavaScript Object Notation) file."
-msgstr ""
+msgstr "Щракнете върху бутона <emph>Записване на цели</emph>, за да запишете всички дефинирани цели в документа като файл във формат JSON (JavaScript Object Notation)."
#. M2XoB
#: auto_redact.xhp
@@ -825,7 +825,7 @@ msgctxt ""
"par_id971626030103135\n"
"help.text"
msgid "Click the <emph>Load Targets</emph> button to import and apply the targets defined in a JSON file to another %PRODUCTNAME document."
-msgstr ""
+msgstr "Щракнете върху бутона <emph>Зареждане на цели</emph>, за да импортирате и приложите целите, зададени в JSON файл, върху друг документ на %PRODUCTNAME."
#. 2haDR
#: auto_redact.xhp
@@ -834,7 +834,7 @@ msgctxt ""
"par_id311626030327293\n"
"help.text"
msgid "The document automatic redaction targets are saved alongside the document. Hence, they are available in the document after you save and close it."
-msgstr ""
+msgstr "Целите за автоматично заличаване в даден документ се записват заедно с него. Така те са налице в документа, след като го запишете и затворите."
#. K7YtD
#: autocorr_url.xhp
@@ -1869,7 +1869,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "You can add texture to the bars in a graph or chart (instead of the default colors) via graphics:"
-msgstr ""
+msgstr "Можете да добавите текстура в лентите на диаграма (вместо подразбираните цветове) чрез изображение:"
#. 4UEfD
#: chart_barformat.xhp
@@ -1914,7 +1914,7 @@ msgctxt ""
"par_id3146797\n"
"help.text"
msgid "Click on <emph>Image</emph>. In the list box select an image as a texture for the currently selected bars. Click <emph>OK</emph> to accept the setting."
-msgstr ""
+msgstr "Щракнете върху <emph>Изображение</emph>. В списъчното поле изберете изображение като текстура за текущо избраните ленти. Щракнете върху <emph>OK</emph>, за да потвърдите настройката."
#. rgZEg
#: chart_insert.xhp
@@ -4047,7 +4047,7 @@ msgctxt ""
"hd_id771554399002497\n"
"help.text"
msgid "<variable id=\"convertfilters_h1\"><link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link></variable>"
-msgstr ""
+msgstr "<variable id=\"convertfilters_h1\"><link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">Имена на филтри за преобразуване на файлове</link></variable>"
#. EoDwz
#: convertfilters.xhp
@@ -4056,7 +4056,7 @@ msgctxt ""
"par_id581554399002498\n"
"help.text"
msgid "<variable id=\"commandline_intro\"> <ahelp hid=\".\">Tables with filter names for <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link> document conversion.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"commandline_intro\"><ahelp hid=\".\">Таблици с имена на филтри за преобразуване на документи през <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">командния ред</link>.</ahelp></variable>"
#. Whybs
#: convertfilters.xhp
@@ -4065,7 +4065,7 @@ msgctxt ""
"hd_id531633524464103\n"
"help.text"
msgid "Usage"
-msgstr ""
+msgstr "Употреба"
#. vcWaC
#: convertfilters.xhp
@@ -4074,7 +4074,7 @@ msgctxt ""
"par_id801633524474460\n"
"help.text"
msgid "Filter names are used when importing and exporting files in alien formats and converting files formats through the <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">command line</link>."
-msgstr ""
+msgstr "Имената на филтри се използват при импортиране и експортиране на файлове в чужди формати и преобразуване форматите на файлове чрез <link href=\"text/shared/guide/start_parameters.xhp\" name=\"commandline\">командния ред</link>."
#. QAzjK
#: convertfilters.xhp
@@ -4434,7 +4434,7 @@ msgctxt ""
"FilterName_writer_indexing_export\n"
"help.text"
msgid "Writer Indexing Export XML"
-msgstr ""
+msgstr "Writer Indexing Export XML"
#. Va5zD
#: convertfilters.xhp
@@ -5451,7 +5451,7 @@ msgctxt ""
"FilterName_writer_png_Export\n"
"help.text"
msgid "PNG - Portable Network Graphics"
-msgstr ""
+msgstr "PNG – преносима мрежова графика"
#. FeKia
#: convertfilters.xhp
@@ -5469,7 +5469,7 @@ msgctxt ""
"bm_000pdfimport\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for PDFIMPORT</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>команден ред, преобразуване на документи с; филтри за PDFIMPORT</bookmark_value>"
#. K7dq5
#: convertfilters.xhp
@@ -5478,7 +5478,7 @@ msgctxt ""
"hd_000pdfimport\n"
"help.text"
msgid "Filters for PDFIMPORT"
-msgstr ""
+msgstr "Филтри за PDFIMPORT"
#. xJhTH
#: convertfilters.xhp
@@ -5487,7 +5487,7 @@ msgctxt ""
"FilterName_draw_pdf_import\n"
"help.text"
msgid "PDF - Portable Document Format (Draw)"
-msgstr ""
+msgstr "PDF – преносим документен формат (Draw)"
#. JDFdH
#: convertfilters.xhp
@@ -5496,7 +5496,7 @@ msgctxt ""
"FilterName_impress_pdf_import\n"
"help.text"
msgid "PDF - Portable Document Format (Impress)"
-msgstr ""
+msgstr "PDF – преносим документен формат (Impress)"
#. WsMeW
#: convertfilters.xhp
@@ -5505,7 +5505,7 @@ msgctxt ""
"FilterName_writer_pdf_import\n"
"help.text"
msgid "PDF - Portable Document Format (Writer)"
-msgstr ""
+msgstr "PDF – преносим документен формат (Writer)"
#. 9WyPm
#: convertfilters.xhp
@@ -5514,7 +5514,7 @@ msgctxt ""
"FilterName_writer_pdf_addstream_import\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#. kF4WL
#: convertfilters.xhp
@@ -5523,7 +5523,7 @@ msgctxt ""
"FilterName_impress_pdf_addstream_import\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#. aFqyu
#: convertfilters.xhp
@@ -5532,7 +5532,7 @@ msgctxt ""
"FilterName_draw_pdf_addstream_import\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#. 5AFFP
#: convertfilters.xhp
@@ -5541,7 +5541,7 @@ msgctxt ""
"FilterName_calc_pdf_addstream_import\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#. ziEHZ
#: convertfilters.xhp
@@ -5550,7 +5550,7 @@ msgctxt ""
"bm_000xsltfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for XSLTFILTER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>команден ред, преобразуване на документи с; филтри за XSLTFILTER</bookmark_value>"
#. AzDaX
#: convertfilters.xhp
@@ -5559,7 +5559,7 @@ msgctxt ""
"hd_000xsltfilter\n"
"help.text"
msgid "Filters for XSLTFILTER"
-msgstr ""
+msgstr "Филтри за XSLTFILTER"
#. ebRhP
#: convertfilters.xhp
@@ -5568,7 +5568,7 @@ msgctxt ""
"FilterName_ADO_Rowset_XML\n"
"help.text"
msgid "ADO Rowset XML"
-msgstr ""
+msgstr "Набор редове на ADO в XML"
#. tTViV
#: convertfilters.xhp
@@ -5577,7 +5577,7 @@ msgctxt ""
"FilterName_DocBook_File\n"
"help.text"
msgid "DocBook"
-msgstr ""
+msgstr "DocBook"
#. GHC43
#: convertfilters.xhp
@@ -5586,7 +5586,7 @@ msgctxt ""
"FilterName_MS_Excel_2003_XML\n"
"help.text"
msgid "Microsoft Excel 2003 XML"
-msgstr ""
+msgstr "Microsoft Excel 2003 XML"
#. 5wBfH
#: convertfilters.xhp
@@ -5595,7 +5595,7 @@ msgctxt ""
"FilterName_MS_Word_2003_XML\n"
"help.text"
msgid "Word 2003 XML"
-msgstr ""
+msgstr "Word 2003 XML"
#. CTAEj
#: convertfilters.xhp
@@ -5604,7 +5604,7 @@ msgctxt ""
"FilterName_XHTML_Calc_File\n"
"help.text"
msgid "XHTML"
-msgstr ""
+msgstr "XHTML"
#. VUZrD
#: convertfilters.xhp
@@ -5613,7 +5613,7 @@ msgctxt ""
"FilterName_XHTML_Draw_File\n"
"help.text"
msgid "XHTML"
-msgstr ""
+msgstr "XHTML"
#. AhcRA
#: convertfilters.xhp
@@ -5622,7 +5622,7 @@ msgctxt ""
"FilterName_XHTML_Impress_File\n"
"help.text"
msgid "XHTML"
-msgstr ""
+msgstr "XHTML"
#. iCCFv
#: convertfilters.xhp
@@ -5631,7 +5631,7 @@ msgctxt ""
"FilterName_XHTML_Writer_File\n"
"help.text"
msgid "XHTML"
-msgstr ""
+msgstr "XHTML"
#. MCrWq
#: convertfilters.xhp
@@ -5640,7 +5640,7 @@ msgctxt ""
"FilterName_UOF_text\n"
"help.text"
msgid "Unified Office Format text"
-msgstr ""
+msgstr "Unified Office Format – текст"
#. TXKeC
#: convertfilters.xhp
@@ -5649,7 +5649,7 @@ msgctxt ""
"FilterName_UOF_spreadsheet\n"
"help.text"
msgid "Unified Office Format spreadsheet"
-msgstr ""
+msgstr "Unified Office Format – електронна таблица"
#. VW3Gt
#: convertfilters.xhp
@@ -5658,7 +5658,7 @@ msgctxt ""
"FilterName_UOF_presentation\n"
"help.text"
msgid "Unified Office Format presentation"
-msgstr ""
+msgstr "Unified Office Format – презентация"
#. Bkz5M
#: copy_drawfunctions.xhp
@@ -5964,7 +5964,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CSV Filter parameters"
-msgstr ""
+msgstr "Параметри на филтъра за CSV"
#. KyLbg
#: csv_params.xhp
@@ -5973,7 +5973,7 @@ msgctxt ""
"bm_id181634740978601\n"
"help.text"
msgid "<bookmark_value>CSV;filter options</bookmark_value> <bookmark_value>CSV;separator specification line</bookmark_value> <bookmark_value>CSV;import options</bookmark_value> <bookmark_value>CSV;export options</bookmark_value> <bookmark_value>CSV;command line filter options</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CSV;настройки на филтъра</bookmark_value><bookmark_value>CSV;ред за задаване на разделител</bookmark_value><bookmark_value>CSV;импортиране, настройки за</bookmark_value><bookmark_value>CSV;експортиране, настройки за</bookmark_value><bookmark_value>CSV;команден ред, настройки на филтъра</bookmark_value>"
#. szBoK
#: csv_params.xhp
@@ -5982,7 +5982,7 @@ msgctxt ""
"hd_id551634734576194\n"
"help.text"
msgid "<variable id=\"csv_params_h1\"><link href=\"text/shared/guide/csv_params.xhp\" name=\"filter options\">CSV Filter Options</link></variable>"
-msgstr ""
+msgstr "<variable id=\"csv_params_h1\"><link href=\"text/shared/guide/csv_params.xhp\" name=\"filter options\">Настройки на филтъра за CSV</link></variable>"
#. qRkBK
#: csv_params.xhp
@@ -5991,7 +5991,7 @@ msgctxt ""
"par_id401634734576197\n"
"help.text"
msgid "The CSV filter accepts an option string containing five to thirteen tokens, separated by commas. Tokens 6 to 13 are optional."
-msgstr ""
+msgstr "Филтърът за CSV приема низ с настройки, съдържащ между пет и тринадесет кода, разделени със запетаи. Кодовете от 6 до 13 са незадължителни."
#. BQKWB
#: csv_params.xhp
@@ -6000,7 +6000,7 @@ msgctxt ""
"par_id431634743318433\n"
"help.text"
msgid "Import from UTF-8, Language German, Comma separated, Text delimiter \", Quoted field as text. CSV file has columns formatted as date, number, number, number:"
-msgstr ""
+msgstr "Импортиране от UTF-8, немски език, разделител запетая, текстовете оградени с \", полета в кавички като текст. CSV файлът има колони, форматирани като дата, число, число, число:"
#. rdZgZ
#: csv_params.xhp
@@ -6009,7 +6009,7 @@ msgctxt ""
"par_id281634743298078\n"
"help.text"
msgid "Export to Windows-1252, Field delimiter : comma, Text delimiter : quote, Save cell contents as shown:"
-msgstr ""
+msgstr "Експортиране към Windows-1252, разделител на полетата: запетая, разделител на текста: кавичка, записване съдържанието на клетките както се вижда:"
#. J8rtr
#: csv_params.xhp
@@ -6018,7 +6018,7 @@ msgctxt ""
"par_id511634735255956\n"
"help.text"
msgid "Token Position"
-msgstr ""
+msgstr "Позиция на кода"
#. 5rrFy
#: csv_params.xhp
@@ -6027,7 +6027,7 @@ msgctxt ""
"par_id71634735255956\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Дефиниция"
#. tBx7H
#: csv_params.xhp
@@ -6036,7 +6036,7 @@ msgctxt ""
"par_id581634735255956\n"
"help.text"
msgid "Meaning and Example of Token"
-msgstr ""
+msgstr "Значение и пример за кода"
#. FBZ5h
#: csv_params.xhp
@@ -6045,7 +6045,7 @@ msgctxt ""
"par_id691634735255956\n"
"help.text"
msgid "Field Separator"
-msgstr ""
+msgstr "Разделител на полетата"
#. Zgou6
#: csv_params.xhp
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_id501634735255956\n"
"help.text"
msgid "Field separator(s) as ASCII values. Multiple values are separated by the slash sign (\"/\"), that is, if the values are separated by semicolons and horizontal tabulators, the token would be 59/9. To treat several consecutive separators as one, then append '/MRG' to the token. If the file contains fixed width fields, then use 'FIX'. Example: 44 (,)"
-msgstr ""
+msgstr "Разделител(и) на полетата като стойности от ASCII. Ако стойностите са няколко, се разделят с наклонена черта („/“), т.е. ако стойностите са разделени с точки и запетаи и хоризонтални знаци за табулация, кодът ще бъде 59/9. За да се обработват няколко последователни разделителя като един, към кода трябва да се добави „/MRG“. Ако файлът съдържа полета с фиксирана ширина, използвайте „FIX“. Пример: 44 (,)"
#. HqX6Y
#: csv_params.xhp
@@ -6063,7 +6063,7 @@ msgctxt ""
"par_id661634735416764\n"
"help.text"
msgid "Text Delimiter"
-msgstr ""
+msgstr "Разделител за текст"
#. AtZEw
#: csv_params.xhp
@@ -6072,7 +6072,7 @@ msgctxt ""
"par_id131634735421911\n"
"help.text"
msgid "The text delimiter as ASCII value, that is, 34 for double quotes and 39 for single quotes. Example: 34 (\")."
-msgstr ""
+msgstr "Разделителят за текст като стойност от ASCII, например 34 за двойни кавички и 39 за единични. Пример: 34 (\")."
#. 5EFCS
#: csv_params.xhp
@@ -6081,7 +6081,7 @@ msgctxt ""
"par_id901634735627024\n"
"help.text"
msgid "Character Set"
-msgstr ""
+msgstr "Знаков набор"
#. v4Gzf
#: csv_params.xhp
@@ -6090,7 +6090,7 @@ msgctxt ""
"par_id871634735631362\n"
"help.text"
msgid "The character set code used in the file as described in the table below. Example: 0 (System)."
-msgstr ""
+msgstr "Код за знаковия набор, използван във файла, както е описано в таблицата по-долу. Пример: 0 (системен)."
#. rrrw3
#: csv_params.xhp
@@ -6117,7 +6117,7 @@ msgctxt ""
"par_id741634735821982\n"
"help.text"
msgid "Cell Format Codes for Each Column"
-msgstr ""
+msgstr "Кодове за формат на клетките за всяка колона"
#. fjBqE
#: csv_params.xhp
@@ -6126,7 +6126,7 @@ msgctxt ""
"par_id481634735825359\n"
"help.text"
msgid "A sequence of column/formatting code, where the formatting code is given in the table below. Example: \"1/5/2/1/3/1/4/1\"."
-msgstr ""
+msgstr "Последователност от кодове колона/формат, където стойностите за формат са от долната таблица. Пример: \"1/5/2/1/3/1/4/1\"."
#. mFfyA
#: csv_params.xhp
@@ -6135,7 +6135,7 @@ msgctxt ""
"par_id831634735631362\n"
"help.text"
msgid "If value separators are used, the form of this token is column/format[/column/format/…] where column is the number of the column, with 1 being the leftmost column. The format code is detailed below."
-msgstr ""
+msgstr "Ако се използват разделители за стойности, формата на този код е колона/формат[/колона/формат/…], където колона е номерът на колоната и 1 означава най-лявата колона. Кодовете на формати са описани по-долу."
#. bMC9A
#: csv_params.xhp
@@ -6144,7 +6144,7 @@ msgctxt ""
"par_id831635735631362\n"
"help.text"
msgid "If the first token is FIX it has the form start/format[/start/format/…], where start is the number of the first character for this field, with 0 being the leftmost character in a line. The format is explained below."
-msgstr ""
+msgstr "Ако първият код е FIX, има формата начало/формат[/начало/формат/…], където начало е номерът на първия знак за това поле и 0 означава най-левият знак в реда. Форматът е обяснен по-долу."
#. ZwqfD
#: csv_params.xhp
@@ -6153,7 +6153,7 @@ msgctxt ""
"par_id971634736857464\n"
"help.text"
msgid "Language identifier"
-msgstr ""
+msgstr "Идентификатор на език"
#. DrnsR
#: csv_params.xhp
@@ -6162,7 +6162,7 @@ msgctxt ""
"par_id951634736861475\n"
"help.text"
msgid "String expressed in decimal notation. This token is the equivalent of the \"Language\" listbox in the user interface for CSV import. If the value is 0 or omitted, the language identifier of the user interface is used. The language identifier is based on the Microsoft language identifiers."
-msgstr ""
+msgstr "Низ в десетичен запис. Този код е еквивалентът на списъчното поле „Език“ в потребителския интерфейс за импортиране от CSV. Ако стойността е 0 или е пропусната, се използва идентификаторът на езика на потребителския интерфейс. Този параметър е базиран на идентификаторите на език на Microsoft."
#. B8dVu
#: csv_params.xhp
@@ -6171,7 +6171,7 @@ msgctxt ""
"par_id181634736918511\n"
"help.text"
msgid "CSV Import, CSV Export"
-msgstr ""
+msgstr "Импортиране от CSV, Експортиране към CSV"
#. 4EDix
#: csv_params.xhp
@@ -6180,7 +6180,7 @@ msgctxt ""
"par_id481634736922278\n"
"help.text"
msgid "String, either <literal>false</literal> or <literal>true</literal>. Default value: <literal>false</literal>. This token is the equivalent of the check box \"Quoted field as text\"."
-msgstr ""
+msgstr "Низ, или <literal>false</literal>, или <literal>true</literal>. Подразбирана стойност: <literal>false</literal>. Този код е еквивалентът на полето за отметка „Полета в кавички като текст“."
#. bDTPa
#: csv_params.xhp
@@ -6189,7 +6189,7 @@ msgctxt ""
"par_id761634737057161\n"
"help.text"
msgid "CSV Import, CSV Export"
-msgstr ""
+msgstr "Импортиране от CSV, Експортиране към CSV"
#. SDFCG
#: csv_params.xhp
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id41634737061097\n"
"help.text"
msgid "<emph>Import:</emph> String, either <literal>false</literal> or <literal>true</literal>. Default value: <literal>false</literal>. This token is the equivalent of the check box \"Detect special numbers\"."
-msgstr ""
+msgstr "<emph>Импортиране:</emph> низ, или <literal>false</literal>, или <literal>true</literal>. Подразбирана стойност: <literal>false</literal>. Този код е еквивалентът на полето за отметка „Откриване на специални числа“."
#. kvUjv
#: csv_params.xhp
@@ -6207,7 +6207,7 @@ msgctxt ""
"par_id161634737264744\n"
"help.text"
msgid "<emph>Export:</emph> String, either false or true. Default value: <literal>true</literal>. This token has no UI equivalent. If <literal>true</literal>, the number cells are stored as numbers. If <literal>false</literal>, the numbers are stored as text, with text delimiters."
-msgstr ""
+msgstr "<emph>Експортиране:</emph> низ, или false, или true. Подразбирана стойност: <literal>true</literal>. Този код няма еквивалент в ПИ. Ако е <literal>true</literal>, числовите клетки се съхраняват като числа. Ако е <literal>false</literal>, числата се съхраняват като текст, с текстови разделители."
#. D9GzU
#: csv_params.xhp
@@ -6216,7 +6216,7 @@ msgctxt ""
"par_id961634737712752\n"
"help.text"
msgid "CSV Export"
-msgstr ""
+msgstr "Експортиране към CSV"
#. bE733
#: csv_params.xhp
@@ -6225,7 +6225,7 @@ msgctxt ""
"par_id701634737971414\n"
"help.text"
msgid "String, either <literal>false</literal> or <literal>true</literal>. Default value:<literal>true</literal>. This token is the equivalent of the check box \"Save cell contents as shown\"."
-msgstr ""
+msgstr "Низ, или <literal>false</literal>, или <literal>true</literal>. Подразбирана стойност: <literal>true</literal>. Този код е еквивалентът на полето за отметка „Записване съдържанието на клетките както се вижда“."
#. DbAB4
#: csv_params.xhp
@@ -6234,7 +6234,7 @@ msgctxt ""
"par_id481634896761359\n"
"help.text"
msgid "CSV Export"
-msgstr ""
+msgstr "Експортиране към CSV"
#. 3V5FY
#: csv_params.xhp
@@ -6243,7 +6243,7 @@ msgctxt ""
"par_id411634896764659\n"
"help.text"
msgid "String, either <literal>false</literal> or <literal>true</literal>. Default value: <literal>false</literal>. Export cell formulas."
-msgstr ""
+msgstr "Низ, или <literal>false</literal>, или <literal>true</literal>. Подразбирана стойност: <literal>false</literal>. Експортиране на формулите в клетките."
#. FE6AD
#: csv_params.xhp
@@ -6252,7 +6252,7 @@ msgctxt ""
"par_id221634896896383\n"
"help.text"
msgid "CSV Import"
-msgstr ""
+msgstr "Импортиране от CSV"
#. o6NCQ
#: csv_params.xhp
@@ -6261,7 +6261,7 @@ msgctxt ""
"par_id641634896897119\n"
"help.text"
msgid "String, either <literal>false</literal> or <literal>true</literal>. Default value: <literal>false</literal>. Remove spaces. Trim leading and trailing spaces, when reading the file."
-msgstr ""
+msgstr "Низ, или <literal>false</literal>, или <literal>true</literal>. Подразбирана стойност: <literal>false</literal>. Премахване на интервалите. При четене на файла водещите и завършващите интервали се отрязват."
#. e7nRn
#: csv_params.xhp
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id521634896971296\n"
"help.text"
msgid "CSV Export"
-msgstr ""
+msgstr "Експортиране към CSV"
#. NaJRN
#: csv_params.xhp
@@ -6279,7 +6279,7 @@ msgctxt ""
"par_id161634896971802\n"
"help.text"
msgid "Export the entire document to individual sheets .csv files or a specified sheet."
-msgstr ""
+msgstr "Експортиране на целия документ към отделни .csv файлове за листовете или само на указан лист."
#. X7QDK
#: csv_params.xhp
@@ -6288,7 +6288,7 @@ msgctxt ""
"par_id341634897309489\n"
"help.text"
msgid "<emph>0</emph> or absent means the default behaviour, first sheet from command line, or current sheet in macro filter options, exported to sample.csv"
-msgstr ""
+msgstr "<emph>0</emph> или пропуснат означава подразбираното поведение: първия лист от командния ред или текущия лист в настройките на макро филтъра, експортиран към документ.csv."
#. mnMGx
#: csv_params.xhp
@@ -6297,7 +6297,7 @@ msgctxt ""
"par_id381634897377753\n"
"help.text"
msgid "<emph>-1</emph> for all sheets, each sheet is exported to an individual file of the base file name concatenated with the sheet name, for example sample-Sheet1.csv, sample-Sheet2.csv and sample-Sheet3.csv"
-msgstr ""
+msgstr "<emph>-1</emph> за всички листова, всеки лист се експортира към отделен файл с името на основния файл, обединено с името на листа, например документ-Лист1.csv, документ-Лист2.csv и документ-Лист3.csv."
#. ANajZ
#: csv_params.xhp
@@ -6306,7 +6306,7 @@ msgctxt ""
"par_id531634897438255\n"
"help.text"
msgid "<emph>N</emph> export the N-th sheet within the range of number of sheets. Example: to export the second sheet, set 2 here to get sample-Sheet2.csv"
-msgstr ""
+msgstr "<emph>N</emph> експортиране на N-тия лист в диапазона на номерата на листовете. Например: за да експортирате втория лист, задайте тук 2, за да получите документ-Лист2.csv."
#. xfaM3
#: csv_params.xhp
@@ -6315,7 +6315,7 @@ msgctxt ""
"par_id451635293273892\n"
"help.text"
msgid "CSV Import"
-msgstr ""
+msgstr "Импортиране от CSV"
#. 54sie
#: csv_params.xhp
@@ -6324,7 +6324,7 @@ msgctxt ""
"par_id701635293273893\n"
"help.text"
msgid "String, either <literal>false</literal> or <literal>true</literal>. Default value: <literal>false</literal>. Determines whether formula expressions starting with a = equal sign character are to be evaluated as formulas or imported as textual data. If <literal>true</literal> evaluate formulas on input. If <literal>false</literal> formulas are input as text. If omitted (not present at all), the default value is <literal>true</literal> to keep the behaviour of old versions' options string that didn't have this token at all. If present and empty (or any other value than <literal>true</literal>) the default value is <literal>false</literal>."
-msgstr ""
+msgstr "Низ, или <literal>false</literal>, или <literal>true</literal>. Подразбирана стойност: <literal>false</literal>. Определя дали изразите формули, започващи със знак равно =, трябва да се изчисляват като формули, или да се импортират като текстови данни. Ако е <literal>true</literal>, формулите се изчисляват при въвеждане. Ако е <literal>false</literal>, формулите се въвеждат като текст. Ако е пропуснат (не присъства изобщо), подразбираната стойност е <literal>true</literal>, за да се запази поведението на настройките от старите версии, в които този код изобщо не фигурира. Ако е наличен и празен (или със стойност, различна от <literal>true</literal>), се подразбира стойност <literal>false</literal>."
#. DAriB
#: csv_params.xhp
@@ -6333,7 +6333,7 @@ msgctxt ""
"hd_id591638374883162\n"
"help.text"
msgid "Special case of CSV files with separator defined in the first line"
-msgstr ""
+msgstr "Частен случай на CSV файлове с разделител, дефиниран на първия ред"
#. gpBdg
#: csv_params.xhp
@@ -6342,7 +6342,7 @@ msgctxt ""
"par_id781638374952502\n"
"help.text"
msgid "CSV import and export support a <literal>sep=</literal> and <literal>\"sep=\"</literal> field separator setting. When reading a CSV document, the separator is taken from the initial <literal>sep=</literal> or <literal>\"sep=\"</literal> single field, if that is the only line content."
-msgstr ""
+msgstr "При импортиране и експортиране на CSV се поддържа настройка <literal>sep=</literal> и <literal>\"sep=\"</literal> за разделител на полетата. При четене на CSV документ разделителят се взема от началното единично поле <literal>sep=</literal> или <literal>\"sep=\"</literal>, ако това е единственото съдържание на реда."
#. q8D8y
#: csv_params.xhp
@@ -6351,7 +6351,7 @@ msgctxt ""
"par_id561638377619263\n"
"help.text"
msgid "When reading a CSV file, the quoted form is preserved as (unquoted) cell content. You see <literal>sep=|</literal> when | is the separator in the first line. In the unquoted form, the separator is discarded because it is a real field separator in the context. You see <literal>sep=</literal> in the first line."
-msgstr ""
+msgstr "При четене на CSV файл ограденият с кавички вариант се запазва като съдържание на клетка (без кавичките). Ако разделителят в първия ред е |, виждате <literal>sep=|</literal>. При варианта без кавички разделителят се отхвърля, защото е действителен разделител на поле в този контекст. В първия ред виждате <literal>sep=</literal>."
#. j5dBK
#: csv_params.xhp
@@ -6360,7 +6360,7 @@ msgctxt ""
"par_id761638377626465\n"
"help.text"
msgid "When writing a CSV file, the existing single top left cell's content such as <literal>sep=|</literal> is adapted to the current separator with the quoted form of <literal>\"sep=|\"</literal> (if quotes / text delimiters aren't set empty and | is the separator) and always uses the ASCII \" double quote character."
-msgstr ""
+msgstr "При записване на CSV файл съществуващото съдържание на единична горна лява клетка, например <literal>sep=|</literal>, се адаптира към текущия разделител във варианта с кавички <literal>\"sep=|\"</literal> (ако кавичките / разделителите за текст не са зададени като празни и разделителят е |) и винаги се използва знакът двойна кавичка \" от ASCII."
#. uBq4B
#: csv_params.xhp
@@ -6369,7 +6369,7 @@ msgctxt ""
"par_id61638377631743\n"
"help.text"
msgid "If the line containing the <literal>sep=|</literal> is not to be imported as data, remember to set the <emph>From row</emph> number in the dialog to 2. Note that this line will not be preserved when re-saving."
-msgstr ""
+msgstr "Ако редът, съдържащ <literal>sep=|</literal>, не трябва да се импортира като данни, не забравяйте да укажете стойност 2 за настройката <emph>От ред</emph> в диалога. Обърнете внимание, че този ред няма да бъде запазен при повторно записване."
#. oGd5z
#: csv_params.xhp
@@ -6378,7 +6378,7 @@ msgctxt ""
"par_id731638374814029\n"
"help.text"
msgid "\"LETTER\"|\"ANIMAL\""
-msgstr ""
+msgstr "\"БУКВА\"|\"ЖИВОТНО\""
#. CsfKB
#: csv_params.xhp
@@ -6387,7 +6387,7 @@ msgctxt ""
"par_id801638374818291\n"
"help.text"
msgid "\"a\"|\"aardvark\""
-msgstr ""
+msgstr "\"а\"|\"антилопа\""
#. t62e9
#: csv_params.xhp
@@ -6396,7 +6396,7 @@ msgctxt ""
"par_id621638374822275\n"
"help.text"
msgid "\"b\"|\"bear\""
-msgstr ""
+msgstr "\"б\"|\"бобър\""
#. G2aQG
#: csv_params.xhp
@@ -6405,7 +6405,7 @@ msgctxt ""
"par_id851638374831208\n"
"help.text"
msgid "\"c\"|\"cow\""
-msgstr ""
+msgstr "\"в\"|\"вълк\""
#. EFwn3
#: csv_params.xhp
@@ -6414,7 +6414,7 @@ msgctxt ""
"hd_id181634739011588\n"
"help.text"
msgid "Formatting Codes for Token 5"
-msgstr ""
+msgstr "Форматиращи кодове за позиция 5"
#. 3KE5V
#: csv_params.xhp
@@ -6423,7 +6423,7 @@ msgctxt ""
"par_id31634738948892\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Значение"
#. kDygY
#: csv_params.xhp
@@ -6432,7 +6432,7 @@ msgctxt ""
"par_id101634738948892\n"
"help.text"
msgid "Code"
-msgstr ""
+msgstr "Код"
#. BpiaC
#: csv_params.xhp
@@ -6441,7 +6441,7 @@ msgctxt ""
"par_id1011670216\n"
"help.text"
msgid "Standard"
-msgstr ""
+msgstr "Стандартна"
#. o2zeW
#: csv_params.xhp
@@ -6450,7 +6450,7 @@ msgctxt ""
"par_id1605952714\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Текст"
#. pPwcP
#: csv_params.xhp
@@ -6459,7 +6459,7 @@ msgctxt ""
"par_id5066036143\n"
"help.text"
msgid "MM/DD/YY"
-msgstr ""
+msgstr "ММ/ДД/ГГ"
#. 6yrFg
#: csv_params.xhp
@@ -6468,7 +6468,7 @@ msgctxt ""
"par_id6386378851\n"
"help.text"
msgid "DD/MM/YY"
-msgstr ""
+msgstr "ДД/ММ/ГГ"
#. BrCte
#: csv_params.xhp
@@ -6477,7 +6477,7 @@ msgctxt ""
"par_id6847541095\n"
"help.text"
msgid "YY/MM/DD"
-msgstr ""
+msgstr "ГГ/ММ/ДД"
#. nixiA
#: csv_params.xhp
@@ -6486,7 +6486,7 @@ msgctxt ""
"par_id7881263433\n"
"help.text"
msgid "Ignore field (do not import)"
-msgstr ""
+msgstr "Игнориране на полето (не се импортира)"
#. LEJDn
#: csv_params.xhp
@@ -6495,7 +6495,7 @@ msgctxt ""
"par_id6920129719\n"
"help.text"
msgid "US-English"
-msgstr ""
+msgstr "Английски (САЩ)"
#. wLth6
#: csv_params.xhp
@@ -6504,7 +6504,7 @@ msgctxt ""
"hd_id591634740467955\n"
"help.text"
msgid "Character Set Codes for Token 3"
-msgstr ""
+msgstr "Кодове на знакови набори за позиция 3"
#. Ag4xM
#: ctl.xhp
@@ -7368,7 +7368,7 @@ msgctxt ""
"par_id7869502\n"
"help.text"
msgid "Either create a new Base file using the <link href=\"text/sdatabase/dabawiz01.xhp\">Database Wizard</link>, or open any existing Base file that is not read-only."
-msgstr ""
+msgstr "Или създайте нов файл на Base с <link href=\"text/sdatabase/dabawiz01.xhp\">помощника за бази от данни</link>, или отворете произволен съществуващ файл на Base, който не е само за четене."
#. JHYC6
#: data_im_export.xhp
@@ -7494,7 +7494,7 @@ msgctxt ""
"par_idN105CB\n"
"help.text"
msgid "This opens the <link href=\"text/sdatabase/dabawiz01.xhp\">Database Wizard</link>, where you create a new database file."
-msgstr ""
+msgstr "Това отваря <link href=\"text/sdatabase/dabawiz01.xhp\">помощника за бази от данни</link>, в който можете да създадете нов файл на база от данни."
#. zTCBz
#: data_new.xhp
@@ -7512,7 +7512,7 @@ msgctxt ""
"par_idN105E0\n"
"help.text"
msgid "The <link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link> helps you to add a table to the new database file."
-msgstr ""
+msgstr "<link href=\"text/sdatabase/tablewizard00.xhp\">Помощникът за таблици</link> служи за добавяне на таблица към новата база от данни."
#. pF4kL
#: data_queries.xhp
@@ -7674,7 +7674,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "Data from any <link href=\"text/sdatabase/dabadoc.xhp\">database file</link> can be registered to the installed instance of %PRODUCTNAME. To register means to tell %PRODUCTNAME where the data is located, how it is organized, how to get that data, and more. Once the database is registered, you can use the menu command <emph>View - Data source</emph> to access the data records from your text documents and spreadsheets."
-msgstr ""
+msgstr "В инсталираното копие на %PRODUCTNAME могат да бъдат регистрирани данни от произволен <link href=\"text/sdatabase/dabadoc.xhp\">файл на база от данни</link> . Регистрирането се състои в това да посочите на %PRODUCTNAME къде се намират данните, как са организирани, как се извличат и др. След като базата от данни е регистрирана, можете да използвате командата <emph>Изглед - Източник на данни</emph> за достъп до записите с данни от текстови документи и електронни таблици."
#. ADK4M
#: data_register.xhp
@@ -8538,7 +8538,7 @@ msgctxt ""
"par_idN1061E\n"
"help.text"
msgid "In %PRODUCTNAME you can create a new table using the <link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link>:"
-msgstr ""
+msgstr "В %PRODUCTNAME можете да създадете нова таблица чрез <link href=\"text/sdatabase/tablewizard00.xhp\">помощника за таблици</link>:"
#. aBysk
#: data_tables.xhp
@@ -8718,7 +8718,7 @@ msgctxt ""
"par_idN105D1\n"
"help.text"
msgid "The <link href=\"text/sdatabase/dabadoc.xhp\">database file</link> gives you full access to tables, queries, reports, and forms. You can edit the structure of your tables and change the contents of the data records."
-msgstr ""
+msgstr "<link href=\"text/sdatabase/dabadoc.xhp\">Файлът на базата от данни</link> ви дава пълен достъп до таблиците, заявките, справките и формулярите. Можете да редактирате структурата на таблиците и да променяте съдържанието на записите с данни."
#. drvbN
#: data_view.xhp
@@ -8835,7 +8835,7 @@ msgctxt ""
"par_idN106A4\n"
"help.text"
msgid "<link href=\"text/sdatabase/menubar.xhp\">Menu bar of a database file</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/menubar.xhp\">Лента с менюта за файл на база от данни</link>"
#. QGxEh
#: database_main.xhp
@@ -8934,7 +8934,7 @@ msgctxt ""
"par_idN1078F\n"
"help.text"
msgid "<link href=\"text/sdatabase/tablewizard00.xhp\">Table Wizard</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/tablewizard00.xhp\">Помощник за таблици</link>"
#. x7kax
#: database_main.xhp
@@ -8952,7 +8952,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Development Tools"
-msgstr ""
+msgstr "Инструменти за разработка"
#. EQHbW
#: dev_tools.xhp
@@ -8961,7 +8961,7 @@ msgctxt ""
"bm_id821562797360035\n"
"help.text"
msgid "<bookmark_value>development tools</bookmark_value> <bookmark_value>object inspector</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>инструменти за разработка</bookmark_value><bookmark_value>инспектор на обекти</bookmark_value>"
#. SfpDF
#: dev_tools.xhp
@@ -8970,7 +8970,7 @@ msgctxt ""
"hd_id951627860296699\n"
"help.text"
msgid "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Development Tools</link></variable>"
-msgstr ""
+msgstr "<variable id=\"DevTools_h1\"><link href=\"text/shared/guide/dev_tools.xhp\" name=\"DevTools_help\">Инструменти за разработка</link></variable>"
#. p3pqz
#: dev_tools.xhp
@@ -8988,7 +8988,7 @@ msgctxt ""
"par_id961562795750725\n"
"help.text"
msgid "Choose <menuitem>Tools - Development Tools</menuitem>"
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Инструменти за разработка</menuitem>."
#. G6m74
#: dev_tools.xhp
@@ -8997,7 +8997,7 @@ msgctxt ""
"par_id241637079282587\n"
"help.text"
msgid "<image src=\"cmd/lc_developmenttoolsdockingwindow.svg\" id=\"img_id341637079282588\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id651637079282589\">Icon Development Tools</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_developmenttoolsdockingwindow.svg\" id=\"img_id341637079282588\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id651637079282589\">Икона „Инструменти за разработка“</alt></image>"
#. Adauw
#: dev_tools.xhp
@@ -9006,7 +9006,7 @@ msgctxt ""
"par_id991637079282590\n"
"help.text"
msgid "Development Tools"
-msgstr ""
+msgstr "Инструменти за разработка"
#. EcEEb
#: dev_tools.xhp
@@ -9015,7 +9015,7 @@ msgctxt ""
"par_id271627931218557\n"
"help.text"
msgid "The <emph>Development Tools</emph> are visible in all documents of %PRODUCTNAME Writer, Calc, Impress and Draw. The display is persistent and remain visible until deselected."
-msgstr ""
+msgstr "<emph>Инструментите за разработка</emph> са видими във всички документи на %PRODUCTNAME Writer, Calc, Impress и Draw. Визуализацията им е постоянна и остава включена, докато не я деактивирате."
#. YrKDj
#: dev_tools.xhp
@@ -9024,7 +9024,7 @@ msgctxt ""
"par_id3152821\n"
"help.text"
msgid "When <emph>Development Tools</emph> is enabled, a dockable window is shown at the bottom of the screen. This window has two sections:"
-msgstr ""
+msgstr "Когато <emph>Инструменти за разработка</emph> е активирано, в долната част на екрана се показва прикрепващ се прозорец. Той има две секции:"
#. BbGGE
#: dev_tools.xhp
@@ -9042,7 +9042,7 @@ msgctxt ""
"par_id581627862228381\n"
"help.text"
msgid "<emph>Object inspection panel:</emph> Displays the available services, methods, properties and interfaces of the selected object."
-msgstr ""
+msgstr "<emph>Панел за инспектиране на обект:</emph> показва наличните услуги, методи, свойства и интерфейси на избрания обект."
#. fiPDo
#: dev_tools.xhp
@@ -9051,7 +9051,7 @@ msgctxt ""
"par_id91627862617231\n"
"help.text"
msgid "This feature is available since %PRODUCTNAME 7.2 for Writer, Calc, Impress and Draw."
-msgstr ""
+msgstr "Тази функция е достъпна от %PRODUCTNAME 7.2 нататък за Writer, Calc, Impress и Draw."
#. 5J2jc
#: dev_tools.xhp
@@ -9060,7 +9060,7 @@ msgctxt ""
"hd_id791627911297568\n"
"help.text"
msgid "Document Model Tree View"
-msgstr ""
+msgstr "Дървовиден изглед на модела на документа"
#. WCR6k
#: dev_tools.xhp
@@ -9069,7 +9069,7 @@ msgctxt ""
"par_id3153303\n"
"help.text"
msgid "The left side of the window contains a <emph>Current Selection</emph> toggle button, a <emph>Refresh</emph> button and a tree view that displays all objects in the document."
-msgstr ""
+msgstr "Лявата страна на прозореца съдържа бутон за превключване <emph>Текуща селекция</emph>, бутон <emph>Опресняване</emph> и дървовиден изглед, който показва всички обекти в документа."
#. DEPEn
#: dev_tools.xhp
@@ -9078,7 +9078,7 @@ msgctxt ""
"par_id891627912224207\n"
"help.text"
msgid "The behavior of the tree view depends on the status of the <emph>Current Selection</emph> toggle button:"
-msgstr ""
+msgstr "Поведението на дървовидния изглед зависи от състоянието на превключващия бутон <emph>Текуща селекция</emph>:"
#. CJUxG
#: dev_tools.xhp
@@ -9087,7 +9087,7 @@ msgctxt ""
"par_id811627912238786\n"
"help.text"
msgid "Click on <emph>Current Selection</emph> to display the properties of the object currently selected in the document. Hence, clicking any item in the tree view have no effect."
-msgstr ""
+msgstr "Щракнете върху <emph>Текуща селекция</emph>, за да се покажат свойствата на обекта, избран в момента в документа. В този случай щракването върху който и да е елемент в дървовидния изглед няма да има ефект."
#. C3mpn
#: dev_tools.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index 3a252ed14fd..47cd765dbe2 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.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-11-24 12:03+0100\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter01/bg/>\n"
"Language: bg\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562351067.000000\n"
@@ -4425,7 +4425,7 @@ msgctxt ""
"par_id3150251\n"
"help.text"
msgid "<ahelp hid=\".\">Shows or hides hidden paragraphs.</ahelp> This option only affects the screen display of hidden paragraphs, and not the printing of hidden paragraphs."
-msgstr "<ahelp hid=\".\">Показва или скрива абзаци.</ahelp> Тази настройка засяга само показването върху екрана, не и отпечатването на скрити абзаци."
+msgstr "<ahelp hid=\".\">Показва или скрива скритите абзаци.</ahelp> Тази настройка засяга само показването върху екрана, не и отпечатването на скрити абзаци."
#. 6bm6N
#: 03140000.xhp
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index af7a353f50d..7bb033df21a 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/bg/>\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: 1562424086.000000\n"
#. kBovX
@@ -25253,97 +25253,97 @@ msgid "~View"
msgstr "Изглед"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Изображение"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Рисуване"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "Рисуване"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Обект"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "Обект"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Мултимедия"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Печат"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Печат"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -25702,139 +25702,139 @@ msgid "Im_age"
msgstr "Изображение"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "Подреждане"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Цвят"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "Мрежа"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "Език"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Преглед"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Коментари"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "Сравняване"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Изглед"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "Рисуване"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "Редактиране"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Подреждане"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Изглед"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Група"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Шрифт"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Подравняване"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Изглед"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Вмъкване"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Мултимедия"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Рамка"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "Подреждане"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "Мрежа"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "Изглед"
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index f2398a9ae2b..54b851702ac 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-01-09 04:12+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bg/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562423894.000000\n"
#. WDjkB
@@ -4173,109 +4173,109 @@ msgid "~Table"
msgstr "Таблица"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Изображение"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Рисуване"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "Рисуване"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Обект"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "Обект"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "Мултимедия"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "Образец"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "Образец"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3D"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3D"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -7062,109 +7062,109 @@ msgid "~Table"
msgstr "Таблица"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Изображение"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Рисуване"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "Рисуване"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Обект"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "Обект"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "Мултимедия"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "Формуляр"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "Образец"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "Образец"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3D"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3D"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Разширение"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Разширение"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 032c9219af9..e402dd360ab 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-01-01 10:40+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
@@ -10499,19 +10499,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Премества избрания абзацен стил с едно ниво надолу в йерархията на указателя."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Стил"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Стилове"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Създава елементи на указател от конкретни абзацни стилове."
@@ -13955,37 +13955,37 @@ msgid "Exchange Databases"
msgstr "Смяна на БД"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Дефиниране"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Бази от данни в употреба"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "_Налични бази от данни"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Преглед..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Показва диалогов прозорец за отваряне на файл с база от данни (*.odb). Избраният файл ще бъде добавен в списъка „Налични бази от данни“."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13995,31 +13995,31 @@ msgstr ""
"Използвайте бутона за преглед, за да изберете файл на БД."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Изброява базите от данни, които в момента са в употреба."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Изброява всички бази от данни, регистрирани в %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Смяна на БД"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "БД, приложена върху документа:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Смяна на източниците на данни за текущия документ."
@@ -20073,109 +20073,109 @@ msgid "Use the current _document"
msgstr "Използване на текущия документ"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Използва текущия документ на Writer като основа на циркулярното писмо."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Създаване на нов документ"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Създава нов документ на Writer, който да бъде използван като циркулярно писмо."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Започване от съществуващ документ"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Изберете съществуващ документ на Writer, който да използвате за основа на циркулярното писмо."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Започване от шаблон"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Изберете шаблона, който искате да използвате като основа за циркулярното писмо."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Започване от наскоро запазен документ"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Използва съществуващо циркулярно писмо като основа за ново."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Изберете документа."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Преглед..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Намерете документа на Writer, който искате да използвате, и щракнете върху Отваряне."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Преглед..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Отваря диалог за избор на шаблон."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Източникът на данни на текущия документ не е регистриран. Моля, сменете базата от данни."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Смяна на базата от данни..."
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Изберете начален документ за циркулярно писмо"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Укажете документа, който искате да се използва за основа на циркулярното писмо."
@@ -22318,49 +22318,49 @@ msgid "Object"
msgstr "Обект"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Тип"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Настройки"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Обтичане"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Хипервръзка"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Кантове"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Област"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Прозрачност"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Макрос"
@@ -27056,7 +27056,7 @@ msgid "Update"
msgstr "Обновяване"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Показва статистика за текущия файл."
diff --git a/source/bg/vcl/messages.po b/source/bg/vcl/messages.po
index 8050dceb3c6..2922316a6ce 100644
--- a/source/bg/vcl/messages.po
+++ b/source/bg/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-10-22 04:15+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/bg/>\n"
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Указва отпечатване на няколко страници върху всеки лист хартия."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "По избор"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Изберете колко страници да бъдат отпечатани на всеки лист хартия."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Страници:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Задайте броя редове."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "на"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Задайте броя колони."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Бели полета:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Задайте полето между отделните страници върху всеки лист хартия."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "между страниците"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Разстояние:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Задайте полето между отпечатаните страници и ръба на хартията."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "до ръба на листа"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Ред:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "От ляво надясно, после надолу"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "От горе надолу, после надясно"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "От горе надолу, после наляво"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "От дясно наляво, после надолу"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Изберете реда на отпечатване на страниците."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Кант около всяка страница"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Отметнете за отпечатване на кант около всяка страница."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Брошура"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Изберете, за да отпечатате документа във формат на брошура."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Мостра за комплектуване"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Задайте разположението на страниците, които да се отпечатат върху всеки лист хартия. Мострата показва как ще изглежда всеки от напечатаните листове."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "Още"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Подредба на страниците"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Общи"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Отпечатва текущия документ, избор, или страниците, които сте посочили. Можете да промените настройките на принтера за текущия документ."
diff --git a/source/bn-IN/chart2/messages.po b/source/bn-IN/chart2/messages.po
index c48ba8ef7eb..c8c68ee22bf 100644
--- a/source/bn-IN/chart2/messages.po
+++ b/source/bn-IN/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-13 05:59+0000\n"
"Last-Translator: joydeep <jdsk2013@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3603,7 +3603,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "কলাম এবং রেখা লেখচিত্র ধরনের জন্য মোট রেখা নির্ধারণ করুন।"
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "একটি মৌলিক লেখচিত্র ধরন নির্বাচন করুন।"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 9f455cc6c49..f62cbe4af7b 100644
--- a/source/bn-IN/cui/messages.po
+++ b/source/bn-IN/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bn_IN/>\n"
@@ -17172,178 +17172,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "স্বয়ংক্রিয়"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "গ্যালাক্সি"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "উচ্চ বৈশাদৃশ্য"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "অক্সিজেন"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "ক্লাসিক"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "হার্ডওয়্যার ত্বরয়ণ ব্যবহার করুন (_w)"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "পর্দার ডিস্প্লে উন্নত করার জন্য গ্রাফিকাল ডিস্প্লে এডাপ্টারের হার্ডওয়্যার বৈশিষ্ট্য সরাসরি ব্যবহৃত হয়।"
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "অ্যান্টি অ্যাললিয়েসিং ব্যবহার করুন (_l):"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "সমর্থিত হলে, আপনি গ্রাফিকের এন্টি এলিয়েসিং সক্রিয় অথবা নিষ্ক্রিয় করতে পারেন। এন্টি এলিয়েসিং সক্রিয় করা হলে, অধিকাংশ গ্রাফিক বস্তু মসৃণ এবং অপেক্ষাকৃত কম কৃত্রিম মনে হয়।"
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "গ্রাফিক্স আউটপুট"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "ফন্টের পূর্বদর্শন (_r)"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "পর্দার ফন্ট এন্টিএলিয়াসিং (_g)"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "থেকে (_m):"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "ফন্টের তালিকা"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/bn-IN/dbaccess/messages.po b/source/bn-IN/dbaccess/messages.po
index c004f494f28..49fe17dfbc0 100644
--- a/source/bn-IN/dbaccess/messages.po
+++ b/source/bn-IN/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-11 07:30+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3417,74 +3417,74 @@ msgid "Create a n_ew database"
msgstr "নতুন ডাটাবেস তৈরি করুন (_e)"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "সন্নিবেশিত ডাটাবেস (_E):"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "একটি বিদ্যমান ডাটাবেস ফাইল খুলুন (_f)"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "সম্প্রতি ব্যবহৃত (_R):"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "খুলুন"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "একটি বিদ্যমান ডাটাবেসে সংযোগ করুন (_x)"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3492,7 +3492,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/bn-IN/extensions/messages.po b/source/bn-IN/extensions/messages.po
index 09656b558f2..3b7050726b1 100644
--- a/source/bn-IN/extensions/messages.po
+++ b/source/bn-IN/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "ফর্ম রিফ্রেস করুন"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "গ্রহণ করুন"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "পোষ্ট করুন"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "বহু-অংশ"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "পাঠ্য"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "আদর্শ (ছোট)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "সাধারণ (সংক্ষেপ YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "সাধারণ (সংক্ষেপ YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "আদর্শ (বড়)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "১৩:৪৫"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "১৩:৪৫:০০"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "০১:৪৫ PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "০১:৪৫:০০ PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "নির্বাচিত নয়"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "নির্বাচিত"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "সুনির্দিষ্ট নয়"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "সকল রেকর্ড"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "সক্রিয় রেকর্ড"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "বর্তমান পৃষ্ঠা"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "না"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "হ্যাঁ"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "মূল ফর্ম"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "খালি (_b)"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "মূল (_p)"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "নিজস্ব (_s)"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "শীর্ষ (_T)"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "কোনটি না"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "একক"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "বহুবিধ"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "পরিসর"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "উল্লম্ব"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "পূর্বনির্ধারিত"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "ঠিক আছে"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "বাতিল"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "সহায়তা"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "নির্বাচিত ভুক্তি"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "নির্বাচিত ভুক্তির অবস্থান"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "একক-লাইন"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "বহুবিধ-লাইন"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "বিন্যাস যুক্ত বহুবিধ-লাইন"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (ইউনিক্স)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (উইন্ডোজ)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "কোনটি না"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "উল্লম্ব"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "উভয়"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "ত্রিমাত্রিক"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "সমতল"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "বামদিকে শীর্ষে"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "বাম কেন্দ্রস্থিত"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "বামদিকে নিচে"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "ডানদিকে শীর্ষে"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "ডান কেন্দ্রস্থিত"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "ডানদিকে নিচে"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "উপরের বামে"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "উপরে কেন্দ্রস্থিত"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "উপরের ডানে"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "নিচের বামে"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "নিচের কেন্দ্রস্থিত"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "নিচের ডানে"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "কেন্দ্রস্থিত"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "সংরক্ষণ করুন"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "প্রতিস্থাপন"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "পতন"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "না"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "অনুপাত রাখুন"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "আকারে ফিট"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "বাম-থেকে-ডান"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "ডান-থেকে-বাম"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "উর্ধঃস্তন অবজেক্ট সেটিং ব্যবহার"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "কখনো নয়"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "যখন ফোকাস করা হয়"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "সবসময়"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "অনুচ্ছেদে"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "অক্ষর"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "পৃষ্ঠায়"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "ফ্রেমে"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "অক্ষর"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "পৃষ্ঠায়"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "ঘরে"
diff --git a/source/bn-IN/fpicker/messages.po b/source/bn-IN/fpicker/messages.po
index 08ee6883c3a..1dc76d657bc 100644
--- a/source/bn-IN/fpicker/messages.po
+++ b/source/bn-IN/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-04-22 09:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/bn_IN/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "পরিবর্তনের তারিখ"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "ফাইলের নাম (_n):"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "ফাইলের ধরন (_t):"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "শুধুমাত্র পাঠযোগ্য (_R)"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "পাসওয়ার্ডসহ সংরক্ষণ"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "স্বয়ংক্রিয়ভাবে নির্ধারিত ফাইলের এক্সটেনশন (_A)"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ফিল্টারের সেটিং সম্পাদনা (_f)"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "GPG কি দ্বারা এনক্রিপ্ট করুন"
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index af532a8f12d..5cf7e1e9b82 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/bn_IN/>\n"
@@ -25750,97 +25750,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26226,154 +26226,154 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "সাজানো"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "রং (_o)"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "গ্রিড (_G)"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "ভাষা (_L):"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "পর্যালোচনা"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "মন্তব্য (_C)"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
#, fuzzy
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "তুলনা (_C)"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "দৃশ্যপট"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "সম্পাদনা (_E)"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "সাজানো"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "দৃশ্যপট"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "গ্রুপ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "হরফ (_o)"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "প্রান্তিককরণ"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "দৃশ্যপট"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "সন্নিবেশ"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "মিডিয়া"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "ফ্রেম (_r)"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "সাজানো"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "গ্রিড (_G)"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index 6a69e84147f..51ee60f3d14 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bn_IN/>\n"
@@ -4211,109 +4211,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7163,109 +7163,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index ae3ea29f6b1..52738bfa621 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bn_IN/>\n"
@@ -10701,19 +10701,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "সূচী স্তরায়নের এক স্তর নিচে নির্বাচিত অনুচ্ছেদ শৈলী সরিয়ে নিন।"
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "শৈলী"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "সুনির্দিষ্ট অনুচ্ছেদ শৈলীসমূহ থেকে সূচী ভুক্তিসমূহ তৈরি করা হয়।"
@@ -14257,37 +14257,37 @@ msgid "Exchange Databases"
msgstr "ডাটাবেস বিনিময়"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "নির্ধারণ"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "ব্যবহৃত ডাটাবেস"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "ব্রাউজ..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "একটি ডাটাবেস ফাইল (*.odb) খুলতে একটি ফাইল খুলুন ডায়ালগ উন্মুক্ত করা হয়। নির্বাচিত ফাইলটি বিদ্যমান ডাটাবেস তালিকায় যুক্ত করা হয়।"
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14297,31 +14297,31 @@ msgstr ""
"ডাটাবেস ফাইল নির্বাচন করতে ব্রাউজ বোতাম ব্যবহার করুন।"
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "বর্তমানে ব্যবহৃত ডাটাবেস তালিকাভূক্ত করুন।"
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "ডাটাবেস বিনিময়"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "নথিতে প্রয়োগকৃত ডাটাবেস:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "বর্তমান নথির জন্য ডাটাবেস উৎস পরিবর্তন করুন।"
@@ -20586,111 +20586,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "বার্তা একত্রিতকরনের ভিত্তি হিসেবে বর্তমান রাইটার নথি ব্যবহার করা হয়।"
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "বার্তা একত্রিতকরনে ব্যবহার করার জন্য একটি নতুন রাইটার নথি তৈরি করা হয়।"
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "বার্তা একত্রিতকরনে ভিত্তি হিসেবে ব্যবহার করার জন্য একটি নতুন রাইটার নথি নির্বাচন করুন।"
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "ফর্মা নির্বাচন করুন যা আপনি আপনার বার্তা একত্রিতকরনের সাথে তৈরি করতে চান।"
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "নতুন বার্তা একত্রিতকরণ নথির ভিত্তি হিসেবে একটি বিদ্যমান বার্তা একত্রিতকরণ নথি ব্যবহার করুন।"
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "নথিটি নির্বাচন করুন।"
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "ব্রাউজ..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "ব্রাউজ..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22861,51 +22861,51 @@ msgid "Object"
msgstr "বস্তু"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "ধরন"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "অপশন"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপারলিংক"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "এলাকা"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -27765,7 +27765,7 @@ msgid "Update"
msgstr "হালনাগাদ"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/bn-IN/vcl/messages.po b/source/bn-IN/vcl/messages.po
index d2dfc58bb84..6f44f204948 100644
--- a/source/bn-IN/vcl/messages.po
+++ b/source/bn-IN/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/bn_IN/>\n"
@@ -2339,169 +2339,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "স্বনির্ধারিত:"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "দ্বারা"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "পৃষ্ঠার মাঝে"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "শীটের সীমানায়"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "প্রতিটি পৃষ্ঠার বাইরে সীমানা আঁকা হবে"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "বিলিপত্র"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/bn/chart2/messages.po b/source/bn/chart2/messages.po
index 241fe466394..253195f0987 100644
--- a/source/bn/chart2/messages.po
+++ b/source/bn/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3701,7 +3701,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "কলাম এবং রেখা লেখচিত্র ধরনের জন্য মোট রেখা নির্ধারণ করুন।"
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "একটি মৌলিক লেখচিত্র ধরন নির্বাচন করুন।"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 2dfe586fffc..6d82a3baeb5 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bn/>\n"
@@ -17646,177 +17646,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "স্বয়ংক্রিয়"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "উচ্চ বৈসাদৃশ্য (~H)"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "পর্দার ডিস্প্লে উন্নত করার জন্য গ্রাফিকাল ডিস্প্লে এডাপ্টারের হার্ডওয়্যার বৈশিষ্ট্য সরাসরি ব্যবহৃত হয়।"
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "সমর্থিত হলে, আপনি গ্রাফিকের এন্টি এলিয়েসিং সক্রিয় অথবা নিষ্ক্রিয় করতে পারেন। এন্টি এলিয়েসিং সক্রিয় করা হলে, অধিকাংশ গ্রাফিক বস্তু মসৃণ এবং অপেক্ষাকৃত কম কৃত্রিম মনে হয়।"
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/bn/dbaccess/messages.po b/source/bn/dbaccess/messages.po
index caeabcc0064..d6d88735858 100644
--- a/source/bn/dbaccess/messages.po
+++ b/source/bn/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/bn/>\n"
@@ -3478,75 +3478,75 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "সন্নিবেশিত ডাটাবেস"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
#, fuzzy
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "সম্প্রতি ব্যবহার করা হয়েছে"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "খুলুন"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3554,7 +3554,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/bn/extensions/messages.po b/source/bn/extensions/messages.po
index e6613bd15e1..9c47b64eb95 100644
--- a/source/bn/extensions/messages.po
+++ b/source/bn/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -312,596 +312,582 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "ফর্ম রিফ্রেস করুন"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "গ্রহণ করুন"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "পোষ্ট করুন"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "বহু-অংশ"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "পাঠ্য"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "আদর্শ (ছোট)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "আদর্শ (সংক্ষেপ YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "আদর্শ (সংক্ষেপ YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "আদর্শ (বড়)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "১৩:৪৫"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "১৩:৪৫:০০"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "০১:৪৫ PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "০১:৪৫:০০ PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "নির্বাচিত নয়"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "নির্বাচিত"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "সুনির্দিষ্ট নয়"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "সকল রেকর্ড"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "সক্রিয় রেকর্ড"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "বর্তমান পৃষ্ঠা"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "না"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "হ্যাঁ"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "মূল ফর্ম"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "থামানো"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "কোনটি না"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "একক"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "বহুবিধ"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "পরিসর"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "উল্লম্ব"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "পূর্বনির্ধারিত"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "ঠিক আছে"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "বাতিল"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "সহায়তা"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "নির্বাচিত ভুক্তি"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "নির্বাচিত ভুক্তির অবস্থান"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "একক-লাইন"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "বহুবিধ-লাইন"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "বিন্যাস যুক্ত বহুবিধ-লাইন"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (ইউনিক্স)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (উইন্ডোজ)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "কোনটি না"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "অনুভূমিক"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "উল্লম্ব"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "উভয়"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "ত্রিমাত্রিক"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "সমতল"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "বামদিকে শীর্ষে"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "বাম কেন্দ্রস্থিত"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "বামদিকে নিচে"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "ডানদিকে শীর্ষে"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "ডান কেন্দ্রস্থিত"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "ডানদিকে নিচে"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "উপরের বামে"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "উপরে কেন্দ্রস্থিত"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "উপরের ডানে"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "নিচের বামে"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "নিচের কেন্দ্রস্থিত"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "নিচের ডানে"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "কেন্দ্রস্থিত"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "সংরক্ষণ করুন"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "প্রতিস্থাপন"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "ভাঁজ হয়ে গুটানো"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "না"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "অনুপাত বজায় রাখা হবে"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "মানানসই আকার"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "বাম-থেকে-ডান"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "ডান-থেকে-বাম"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "উর্ধঃস্তন বস্তুর সেটিং ব্যবহার"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "কখনো নয়"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "যখন ফোকাস করা হয়"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "সবসময়"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "অনুচ্ছেদে"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "অক্ষর হিসেবে"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "পৃষ্ঠায়"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "ফ্রেমে"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "অক্ষরে"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "পৃষ্ঠায়"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/bn/fpicker/messages.po b/source/bn/fpicker/messages.po
index 9955e328129..0a2b0723a75 100644
--- a/source/bn/fpicker/messages.po
+++ b/source/bn/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -218,61 +218,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "ফাইলের নাম:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "ফাইলের ধরন: (~t)"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "শুধুমাত্র পাঠযোগ্য (~R)"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "পাসওয়ার্ড দিয়ে সংরক্ষণ (~w)"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "স্বয়ংক্রিয় ফাইল নামের বর্ধিতাংশ (~A)"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "পরিশোধক সেটিংসমূহ সম্পাদনা (~E)"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index 775e50240bd..e0c8a2ebde7 100644
--- a/source/bn/sc/messages.po
+++ b/source/bn/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25904,97 +25904,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26384,158 +26384,158 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "সাজানো"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "রঙ"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "গ্রিড"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "ভাষা"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "পর্যালোচনা"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "মন্তব্য"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "দৃশ্যপট"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "সম্পাদনা"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "সাজানো"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "দৃশ্যপট"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "গ্রুপ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ফন্ট"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "প্রান্তিককরণ"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "দৃশ্যপট"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "সন্নিবেশ"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "মিডিয়া"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "ফ্রেম"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "সাজানো"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
#, fuzzy
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "গ্রিড"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index b1350398b78..6de00090065 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4247,109 +4247,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7233,109 +7233,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index a970551e7b4..f9995daaa55 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10767,20 +10767,20 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "সূচী স্তরায়নের এক স্তর নিচে নির্বাচিত অনুচ্ছেদ শৈলী সরিয়ে নিন।"
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
#, fuzzy
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "শৈলী"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "সুনির্দিষ্ট অনুচ্ছেদ শৈলীসমূহ থেকে সূচী ভুক্তিসমূহ তৈরি করা হয়।"
@@ -14373,38 +14373,38 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
#, fuzzy
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "নির্ধারণ (~D)"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "ব্রাউজ..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "একটি ডাটাবেস ফাইল (*.odb) খুলতে একটি ফাইল খুলুন ডায়ালগ উন্মুক্ত করা হয়। নির্বাচিত ফাইলটি বিদ্যমান ডাটাবেস তালিকায় যুক্ত করা হয়।"
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14412,31 +14412,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "বর্তমানে ব্যবহৃত ডাটাবেস তালিকাভূক্ত করুন।"
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "বর্তমান নথির জন্য ডাটাবেস উৎস পরিবর্তন করুন।"
@@ -20771,111 +20771,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "বার্তা একত্রিতকরনের ভিত্তি হিসেবে বর্তমান রাইটার নথি ব্যবহার করা হয়।"
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "বার্তা একত্রিতকরনে ব্যবহার করার জন্য একটি নতুন রাইটার নথি তৈরি করা হয়।"
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "বার্তা একত্রিতকরনে ভিত্তি হিসেবে ব্যবহার করার জন্য একটি নতুন রাইটার নথি নির্বাচন করুন।"
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "ফর্মা নির্বাচন করুন যা আপনি আপনার বার্তা একত্রিতকরনের সাথে তৈরি করতে চান।"
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "নতুন বার্তা একত্রিতকরণ নথির ভিত্তি হিসেবে একটি বিদ্যমান বার্তা একত্রিতকরণ নথি ব্যবহার করুন।"
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "নথিটি নির্বাচন করুন।"
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "ব্রাউজ..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "ব্রাউজ..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23068,50 +23068,50 @@ msgid "Object"
msgstr "বস্তু"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "ধরন"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "অপশন"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপারলিংক"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "এলাকা"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -28013,7 +28013,7 @@ msgid "Update"
msgstr "হালনাগাদ"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/bn/vcl/messages.po b/source/bn/vcl/messages.po
index 3b7df89d724..7d32b9c01a9 100644
--- a/source/bn/vcl/messages.po
+++ b/source/bn/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2345,170 +2345,170 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "স্বনির্ধারিত:"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "দ্বারা"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "পৃষ্ঠার মাঝে"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "শীটের সীমানায়"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "প্রতিটি পৃষ্ঠার বাইরে সীমানা আঁকা হবে"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "বিলিপত্র"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/bo/chart2/messages.po b/source/bo/chart2/messages.po
index 4d3a09699b5..5509a847ab5 100644
--- a/source/bo/chart2/messages.po
+++ b/source/bo/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3704,7 +3704,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 5fce194c549..ab29ce9e6e9 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bo/>\n"
@@ -17590,177 +17590,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "རང་འགུལ།"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "སྡུར་བའི་ཚད།(~H)"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "རིས་དབྱིབས་མངོན་པའི་མཚམས་སྒྲིག་ཆས་ཀྱི་མཁྲེགས་ཆས་བྱེད་ནུས་ཐད་ཀར་འཚམས་འདྲི་བྱས་ནས་གསལ་ཡོལ་མངོན་རྒྱུ་ལེགས་སྒྱུར་བྱེད།"
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/bo/dbaccess/messages.po b/source/bo/dbaccess/messages.po
index 8f19a87061c..bac233a3fe1 100644
--- a/source/bo/dbaccess/messages.po
+++ b/source/bo/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/bo/>\n"
@@ -3449,75 +3449,75 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "གྲངས་མཛོད་བཙུད་འཇུག་བྱེད་རྒྱུ།"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
#, fuzzy
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "ཉེ་ཆར་བེད་སྤྱོད་བྱས་པ།"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "ཁ་འབྱེད།"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3525,7 +3525,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/bo/extensions/messages.po b/source/bo/extensions/messages.po
index 49f5c42abc1..039497fd677 100644
--- a/source/bo/extensions/messages.po
+++ b/source/bo/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -313,599 +313,585 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "རེའུ་མིག་གསར་འདོན།"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Get"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multipart"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Text"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "ཚད་གཞི(ཐུང་)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "ཚད་གཞི(རྣམ་གཞག་ཐུང་བYY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "ཚད་གཞི(རྣམ་གཞག་ཐུང་བ་YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "ཚད་གཞི(རིང་)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "བདམས་མེད།"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "བདམས་ཟིན་པ།"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "མཚན་ཉིད་བཞག་མེད་པ།"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "ཡོངས་རྫོགས་ཐོ་འགོད།"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "འགུལ་སྐྱོད་ཀྱི་ཟིན་ཐོ།"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "མིག་སྔའི་ཤོག་གྲངས།"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "མིན།"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "རེད།"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "ཕ་རྒྱུད་རེའུ་མིག"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "སྙོམས་ཟུར་གྲུ་གཞིའི་གཟུགས།"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "མེད་པ།"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "གཅིག་རྐྱང་།"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "ཕལ་མོ་ཆེ།"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "ས་ཁོངས།"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "ངོས་བཟུང་བྱས་པ།"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
#, fuzzy
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "གཏན་འཁེལ།"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "རྩིས་མེད།"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "རོགས་རམ།"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "འདེམས་གཏན་འཁེལ་བའི་དོན་ཚན།"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "ཚན་བྱང་གི་གནས་ས་གདམ་གཏན་འཁེལ་བ།"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "རྐྱང་ཕྲེང་།"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "མང་ཕྲེང་།"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "རྣམ་གཞག་ལྡན་པའི་མང་ཕྲེང་།"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "མེད་པ།"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "གཉིས་པོ།"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "རྩ་གསུམ།"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "ངོས་དབྱེབས།"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "གཡོན་མཐའི་རྩེ་སྣེ།"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "གཡོན་མཐའི་དཀྱིལ་བསྡུ།"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "གཡོན་མཐའི་རྩེ་སྣེ།"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "གཡས་མཐའི་རྩེ་སྣེ།"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "གཡས་མཐའི་དཀྱིལ་བསྡུ།"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "གཡས་མཐའ་འོག་ལ།"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "གཡོས་མཐའི་སྟེང་ལ།"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "དཀྱིལ་བསྡུའི་སྟེང་ལ།"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "གཡས་མཐའ་སྟེང་ལ།"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "གཡོན་མཐའ་འོག་ལ།"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "དཀྱིལ་བསྡུའི་འོག་ལ།"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "གཡས་མཐའ་འོག་ལ།"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "དཀྱིལ་བསྡུ།"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "སྔོན་བཞག"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "ཚབ་བརྗེ།"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "རིམ་རྩེག"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "མིན།"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "འཕྲེད་གཞུང་གི་བསྡུར་ཚད་གཏན་བཀག"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "རང་འགུལ་དུ་ལེགས་སྒྲིག་བྱེད་པ།"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "གཡོན་ནས་གཡས་སུ"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "གཡས་ནས་གཡོན་དུ།"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "རིམ་པ་མཐོ་བའི་བྱ་ཡུལ་གནས་ས་བེད་སྤྱོད་བྱེད་རྒྱུ།"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr ""
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr ""
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "དུམ་མཚམས་སྟེང་ལ།(~P)"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "ཡིག་རྟགས།"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "ཤོག་ངོས་ལ་སྒྱུར།"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "སྒྲོམ་སྟེང་ལ།(~F)"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "ཡིག་རྟགས།"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "ཤོག་ངོས་ལ་སྒྱུར།"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/bo/fpicker/messages.po b/source/bo/fpicker/messages.po
index 300cfcaaad0..779d80b23ff 100644
--- a/source/bo/fpicker/messages.po
+++ b/source/bo/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -212,61 +212,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "ཡིག་ཆའི་མིང་།: "
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "ཡིག་ཆའི་རིགས(~T):"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "ཀློག་ཙམ།(~R)"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "གསང་ཨང་སྤྱད་ནས་ཉར་སྡེར་བྱེད།"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "རང་འགུལ་གྱིས་ཡིག་ཚགས་རྒྱ་བསྐྱེད་མིང་སྣོན་པ།(~A)"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "འཚག་འདེམ་བཀོད་སྒྲིག་རྩོམ་སྒྲིག"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index a3dbe65f091..5a586e40f7a 100644
--- a/source/bo/sc/messages.po
+++ b/source/bo/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26009,97 +26009,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26485,158 +26485,158 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "བརྩེགས་འཇོག་ཐེངས་རིམ།"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ཚོས་གཞི།"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "ལས་ཁྲའི་དྲ་མིག"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "སྐད་བརྡ།"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "བརྟག་དཔྱད།"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "དཔྱད་གཏམ།"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "མཐོང་རིས།"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "རྩོམ་སྒྲིག"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "བརྩེགས་འཇོག་ཐེངས་རིམ།"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "མཐོང་རིས།"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "ཚོ་སྒྲིག"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ཡིག་གཟུགས།"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "སྙོམ་སྒྲིག"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "མཐོང་རིས།"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "བསྒར་འཛུད།"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "མཚམས་སྦྱོར།"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "སྒྲོམ་གྱི་ཁ་གཏད།"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "བརྩེགས་འཇོག་ཐེངས་རིམ།"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
#, fuzzy
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "ལས་ཁྲའི་དྲ་མིག"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index de9db726f24..b9a2733578f 100644
--- a/source/bo/sd/messages.po
+++ b/source/bo/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4263,109 +4263,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7246,109 +7246,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index bfb9644b8ec..b9169c55257 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10775,20 +10775,20 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "འདེམས་ངེས་དུམ་མཚམས་བཟོ་ལྟ་དེ་བཤེར་འདྲེན་རིམ་པ་གྱི་གྲུབ་ཆའི་ཁྲོད་སྟེང་ཕྱོགས་སུ་རིམ་པ་གཅིག་སྤོས་དགོས།"
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
#, fuzzy
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "བཟོ་དབྱིབས།"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "དམིགས་བསལ་གྱི་དུམ་མཚམས་བཟོ་ལྟའི་ནང་ནས་བཤེར་འདྲེན་གཤར་བྱང་འཛུགས་དགོས།"
@@ -14380,38 +14380,38 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
#, fuzzy
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "གཏན་འཁེལ།(~S)"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "མིག་བཤར།..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "འདེམས་ཆོག་པའི་གཞི་གྲངས་མཛོད་ཡིག་ཆའི་(*.odb)\"ཁ་ཕྱེ་\"གླིང་སྒྲོམ་ཞིག་ཁ་ཕྱེ་དགོས་པས། འདེམས་ངེས་ཡིག་ཆ་\"བེད་སྤྱད་ཆོག་པའི་གཞི་གྲངས་མཛོད་\"རེའུ་འགོད་ནང་ཁ་སྣོན་རྒྱབ་དགོས།"
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14419,31 +14419,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "མིག་སྔའི་བེད་སྤྱོད་བཞིན་པའི་གཞི་གྲངས་མཛོད་སྒྲིག་དགོས།"
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "མི་སྔའི་ཡིག་ཚགས་ཀྱི་གཞི་གྲངས་ཁུངས་བཟོ་བཅོས་བྱེད།"
@@ -20780,111 +20780,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "མིག་སྔའི་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་གྱི་རྨང་གཞི་སྤྱོད་པ་ཡིག་ཚགས་གསར་བཟོ་"
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "གསར་དུ་བཟོ་བའི་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་སྤྱོད་པ།"
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "སྦྲགས་ཡིག་སྒྲིལསྒྲིལཡིག་ཚགས་རྨངས་གཞི་སྤྱོད་པའི་ད་ཡོད་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་འདེམས་པ།"
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ཚགས་འཛུགས་རྒྱུར་སྤྱོད་པའི་སྨོ་པང་འདེམས་པ་"
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "ད་ཡོད་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ཚགས་སྦྲགས་ཡིག་ཟླ་སྒྲིལ་ཡིག་ཚགས་གསར་པའི་རྨངས་གཞིར་སྤྱོད་པ་"
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "རིགས་འདེམས་པ། "
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "མིག་བཤར།..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "མིག་བཤར།..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23078,52 +23078,52 @@ msgid "Object"
msgstr "བྱ་ཡུལ།"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "རིགས།"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
#, fuzzy
msgctxt "objectdialog|options"
msgid "Options"
msgstr "གདམ་ཚན།"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "གདུབ་འཁོར།(~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "རིམ་འདས་སྦྲེལ་མཐུད།"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ཁ་སྐོང་།"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
#, fuzzy
msgctxt "objectdialog|macro"
msgid "Macro"
@@ -28031,7 +28031,7 @@ msgid "Update"
msgstr "གསར་བཟོ།"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/bo/vcl/messages.po b/source/bo/vcl/messages.po
index 593c84b2cd3..23924116b86 100644
--- a/source/bo/vcl/messages.po
+++ b/source/bo/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2346,170 +2346,170 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "རང་བཟོས།"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "ནས།"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr ""
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
#, fuzzy
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "ལག་དེབ་ཆུང་བ།(~U)"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/br/chart2/messages.po b/source/br/chart2/messages.po
index d965ffc01c6..adc8e15e451 100644
--- a/source/br/chart2/messages.po
+++ b/source/br/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3605,7 +3605,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index c795be03960..a1dafba21f1 100644
--- a/source/br/cui/messages.po
+++ b/source/br/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17162,176 +17162,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Emgefreek"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Dargemm uhel"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oksigen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klasel"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "S_til an arlun :"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Adloc'hañ goulennet"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Arverañ an herrekaat dre ar _periant"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Arverañ al lufr_añ"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Deouez ar skeudennoù"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Diskouez un albe_rz eus an nodrezhoù"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Lufrañ an nodrezhoù _skramm"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "e_us :"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Rolloù nodrezhoù"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/br/dbaccess/messages.po b/source/br/dbaccess/messages.po
index 83fc94eb68b..faf7500c663 100644
--- a/source/br/dbaccess/messages.po
+++ b/source/br/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-04-24 10:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3399,73 +3399,73 @@ msgid "Create a n_ew database"
msgstr "Krouiñ ur stle_nnvon nevez"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Stlennvon enkorfet :"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Digeriñ ur restr _stlennvon ez eus anezhi"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Arveret _nevez zo :"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Digeriñ"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Kennaskañ ouzh ur stlennvon ez eus ane_zhañ"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3473,7 +3473,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/br/extensions/messages.po b/source/br/extensions/messages.po
index bbc0f2363d5..4010382d40e 100644
--- a/source/br/extensions/messages.po
+++ b/source/br/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -312,596 +312,584 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Azbevaat ar furmskrid"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Tapout"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Postañ"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Liesparzhioù"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Testenn"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Skoueriek (berr)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Skoueriek (berr BB)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Skoueriek (berr BBBB)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Skoueriek (hir)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/BB"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/BB"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "BB/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/BBBB"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/BBBB"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "BBBB/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "BB-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "BBBB-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "N'eo ket diuzet"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Diuzet"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Ket Despizet"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "An holl Enrolladennoù"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Gweredekaat an enrollañ"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Pajenn vremanel"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Ket"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ya"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Furmskrid kar"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_Paouez"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Tra ebet"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Eeun"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Lies"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Lijorenn"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "A-blaen"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "A-serzh"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Dre ziouer"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "Mat eo"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Nullañ"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Skoazell"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "An enankad diuzet"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Lec'hiadur an enankad diuzet"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Unlinenn"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Lieslinennoù"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Lieslinennoù gant ur mentrezh"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Tra ebet"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "A-blaen"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "A-serzh"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "An eil hag egile"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3M"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Plaen"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "A-gleiz e-krec'h"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "A-gleiz e-kreiz"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "A-gleiz en traoñ"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "A-zehou e-krec'h"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "A-zehou e-kreiz"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "A-zehou en traoñ"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "A-us a-gleiz"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "A-us e-kreiz"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "A-us a-zehou"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Dindan a-gleiz"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Dindan e-kreiz"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Dindan a-zehou"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Kreizet"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Derc'hel"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Amsaviñ"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Bihanaat"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Ket"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Kenfeuriek"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Lakaat da genglotañ gant ar vent"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "A gleiz da zehou"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "A zehou da gleiz"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Arverañ arventennoù an ergorenn uheloc'h"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Biken"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Pa vez stiet"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Bepred"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Ouzh ar rannbennad"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Arouezenn"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Ouzh ar bajenn"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Ouzh ar stern"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Arouezenn"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Ouzh ar bajenn"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/br/fpicker/messages.po b/source/br/fpicker/messages.po
index cc6364b975d..effe7ced3b3 100644
--- a/source/br/fpicker/messages.po
+++ b/source/br/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "A_nv ar restr :"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Rizh ar restr:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "E mod _lenn nemetken"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Enrollañ gant ur ger-tremen"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Askouezhadenn emgefreek anv ar restr"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Embann arventennoù ar _sil"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index d93636d95b9..6283764d80b 100644
--- a/source/br/sc/messages.po
+++ b/source/br/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25640,97 +25640,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26116,154 +26116,154 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "Frammadur"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Liv"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Kael"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Yezh :"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Evezhiadenn"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Askelennoù"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
#, fuzzy
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "Keñ_veriañ"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Skrammañ"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Embann"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Frammadur"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Skrammañ"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Strollañ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "N_odrezh"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Steudadur"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Skrammañ"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Enlakaat"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Media"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Stern"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "Frammadur"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Kael"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index 5c4fc575ed4..d536c1afe5c 100644
--- a/source/br/sd/messages.po
+++ b/source/br/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4213,109 +4213,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7137,109 +7137,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index 6aaa8b55b51..be9a98d28ef 100644
--- a/source/br/sw/messages.po
+++ b/source/br/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10600,19 +10600,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Stiloù"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14056,37 +14056,37 @@ msgid "Exchange Databases"
msgstr "Eskemmañ ar stlennvonoù"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Despizañ"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Stlennvonoù implijet"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Stlennvonoù _hegerz"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Kantreal..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14096,31 +14096,31 @@ msgstr ""
"Arverit an afell Kantreal da ziuzañ ur restr stlennvon."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Eskemmañ ar stlennvonoù"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Stlennvon staget ouzh an teul :"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20195,109 +20195,109 @@ msgid "Use the current _document"
msgstr "Arverañ an _teul bremanel"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Krouiñ un teul _nevez"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Arv_erañ un teul ez eus anezhañ"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Arverañ ur pa_trom"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "_Arverañ un teul diazez enrollet nevez zo"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Kan_treal..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "_Kantreal..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Diuzañ an teul diazez evit al lizhiri dre doueziañ"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22472,49 +22472,49 @@ msgid "Object"
msgstr "Egorenn"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Rizh"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Dibarzhioù"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Azasaat"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Gourere"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Riblennoù"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Maez"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Boullder"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27265,7 +27265,7 @@ msgid "Update"
msgstr "Hizivaat"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/br/vcl/messages.po b/source/br/vcl/messages.po
index e7e142058b8..7081dbd0ec7 100644
--- a/source/br/vcl/messages.po
+++ b/source/br/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2330,169 +2330,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personelaet"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "dre"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "etre ar bajennoù"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "diouzh riblenn ar follenn"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Tresañ ur riblenn tro dro da bep pajenn"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Kraflevr"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/brx/chart2/messages.po b/source/brx/chart2/messages.po
index c1c3ce63692..378fe780bba 100644
--- a/source/brx/chart2/messages.po
+++ b/source/brx/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3696,7 +3696,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 5d00f74e6b0..dfcc1a65d18 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17540,177 +17540,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "गावनो गाव"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "~गोजौ फाराग"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/brx/dbaccess/messages.po b/source/brx/dbaccess/messages.po
index 343acb07ce0..f2494bf0eaf 100644
--- a/source/brx/dbaccess/messages.po
+++ b/source/brx/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Bodo <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/brx/>\n"
@@ -3462,74 +3462,74 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr ""
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
#, fuzzy
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "बावैसो बाहाय जाबाय"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "खेव"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3537,7 +3537,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/brx/extensions/messages.po b/source/brx/extensions/messages.po
index 9566165d5ba..8f1e8e12f71 100644
--- a/source/brx/extensions/messages.po
+++ b/source/brx/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -303,571 +303,557 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr ""
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "मोन"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "पस्ट खालाम"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr ""
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "फराय बिजाब"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "थाखो मान(गुसुं)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "थाखो मान(गुसुं)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "थाखो मान(गुसुं)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "थाखो मान (गोलाव)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr ""
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr ""
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr ""
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr ""
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr ""
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr ""
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr ""
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr ""
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr ""
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr ""
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr ""
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr ""
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr ""
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "सायख"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr ""
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr ""
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr ""
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "बोहैथि अक्ट'"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "नङा"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "नंगौ"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr ""
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "थादनाय"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "रावबो नङा"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "मोनसेल'"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr ""
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "सारि"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "समानथि"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "थोंगोर"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "खामानिआव उदायै जानाय"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "OK"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "नागार"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "मदद हो"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr ""
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr ""
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "मोनसेल'-सारि"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "गोबां-सारि"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "दाथायजों गोबां-सारि"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF(विंडोजस)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "रावबो नङा"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "समानथि"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "थोंगोर"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "मोननैबो"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "दाब्ले"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "आगसि सायाव"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "आगसि गेजेराव"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "आगसि सिं बाहागो"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "आगदा सायाव"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "आगदा गेजेराव"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "आगदा सिंथारनि बाहागो"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "आगसि गोजौआव"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "गेजेर गोजौआव"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "आगदा गोजौआव"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "आगसि गाहायाव"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "गेजेर गाहायाव"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "आगदा गाहायाव"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "मिरु"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "दोन्थुमनाय"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "जायगा सोलाय हो"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "हरखाब बायनाय"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "नङा"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr ""
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr ""
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "आगसि निफ्राय आगदा सिम"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "आगदा-निफ्राय-आगसि"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "सुपारअर्डिनेट बेसाद फज'नाय बाहाय"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr ""
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr ""
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "आन्थोर"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "हांखो बादि"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "बिखं सिम"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "फ्रेम"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "हांखोआव"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "बिखं सिम"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/brx/fpicker/messages.po b/source/brx/fpicker/messages.po
index 09f89794977..9657213fbe2 100644
--- a/source/brx/fpicker/messages.po
+++ b/source/brx/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -215,61 +215,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "फाइलनि मुं:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "फाइल~ रोखोम:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "~फरायनो-थाखायल'"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "पासवर्डजों थिना दोन"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "~गावनो गाव फाइल मुं बारायनाय"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "फिल्टार फज'नायफोर सुजु"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/brx/sc/messages.po b/source/brx/sc/messages.po
index 64e59a6f39f..68cf9925a74 100644
--- a/source/brx/sc/messages.po
+++ b/source/brx/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25842,97 +25842,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26319,157 +26319,157 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "साजाय"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "गाब"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "ग्रिड"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "राव"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "बिजिरना नायफिन"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "सुद' लिरथाय"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "नुथाय"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "सुजु"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "साजाय"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "नुथाय"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "हानजा"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "फन्ट"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "सारि सारि साजायनाय"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "नुथाय"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "फज'"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr ""
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "फ्रेम"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "साजाय"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
#, fuzzy
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "ग्रिड"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/brx/sd/messages.po b/source/brx/sd/messages.po
index dc6e4b71911..f7cae27aa48 100644
--- a/source/brx/sd/messages.po
+++ b/source/brx/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4261,109 +4261,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7242,109 +7242,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index 0ffbf26bcc8..21260fb52c9 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10762,20 +10762,20 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
#, fuzzy
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "आदबफोर"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14365,38 +14365,38 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
#, fuzzy
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "~ओंथि बेखेव"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "ब्राउज..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14404,31 +14404,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20741,111 +20741,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "ब्राउज..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "ब्राउज..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23035,51 +23035,51 @@ msgid "Object"
msgstr "बेसाद"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "रोखोम"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "उफ्राफोर"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "~खोबसिननाय"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपारलिंक"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ओनसोल"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "गोजों"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "मेक्र'"
@@ -27981,7 +27981,7 @@ msgid "Update"
msgstr "आपडेट खालाम"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/brx/vcl/messages.po b/source/brx/vcl/messages.po
index 2fe7870157b..f5e094f303e 100644
--- a/source/brx/vcl/messages.po
+++ b/source/brx/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2348,171 +2348,171 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "कास्टम:"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "जों"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr ""
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
#, fuzzy
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "बिजाबसा"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/bs/chart2/messages.po b/source/bs/chart2/messages.po
index 09d5dea2987..0de96be7c46 100644
--- a/source/bs/chart2/messages.po
+++ b/source/bs/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3694,7 +3694,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Postavi rezoluciju."
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index a578cd44ccf..8c7d980a406 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17558,181 +17558,155 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatski"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaksija"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Visok Kontrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klasično"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Koristi akceleraciju hard_vera"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
#, fuzzy
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Koristi Anti-A_liasing"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
#, fuzzy
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Izlaz ilustracije"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Prikaži p_regled fontova"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Umekšavanje _slova na ekranu"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
#, fuzzy
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "o_d"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Lista fontova"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/bs/dbaccess/messages.po b/source/bs/dbaccess/messages.po
index 5efa412b75d..0be74c29afe 100644
--- a/source/bs/dbaccess/messages.po
+++ b/source/bs/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Bosnian <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/bs/>\n"
@@ -3477,74 +3477,74 @@ msgid "Create a n_ew database"
msgstr "Napravi n_ovu bazu podataka"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Ugrađena baza podataka:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Otvori postojeći _fajl baze podataka"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_Prethodno korišteno:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Otvori"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Spoji se sa p_ostojećom bazom podataka"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3552,7 +3552,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/bs/extensions/messages.po b/source/bs/extensions/messages.po
index 48cc36a5506..47daa12d568 100644
--- a/source/bs/extensions/messages.po
+++ b/source/bs/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -309,598 +309,584 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Osvježi formular"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "GET"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Višedjelno"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Tekst"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standardno (kratko)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standardan (kratko YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standardan (kratki YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standardno (dugo)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Nije odabrano"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Odabrano"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Nije definisano"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Svi zapisi"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Trenutni zapis"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Trenutna stranica"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Ne"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Da"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Formular prije ovog"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "prazno"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "vrh"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Nijedna"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Jednostruko"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Višestruki"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Opseg"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Vodoravno"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Uspravno"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Uobičajeno"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "U redu"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Odustani"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Pomoć"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Izabrani unos"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Pozicija izabranog unosa"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Jednolinijski"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Višelinijski"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Višelinijski sa formatiranjem"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Nijedna"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Vodoravno"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Uspravno"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Oba"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Ravno"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Lijevo gore"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Lijevo centrirano"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Lijevo dolje"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Desno gore"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Desno centrirano"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Desno dolje"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Iznad lijevo"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Iznad centrirano"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Iznad desno"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Ispod lijevo"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Ispod centrirano"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Ispod desno"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centrirano"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Sačuvaj"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Zamijeni"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Zatvori"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Ne"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Sačuvaj omjer"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Namjesti po dimenzijama"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "S lijeva na desno"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "S desna na lijevo"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Koristi pretpostavljene postavke objekta"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Nikad"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Kada ima fokus"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Uvijek"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Do odlomka"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Kao znak"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Na stranu"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Na okvir"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Na znak"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Na stranu"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/bs/fpicker/messages.po b/source/bs/fpicker/messages.po
index 6e492b652cc..6ab492535a0 100644
--- a/source/bs/fpicker/messages.po
+++ b/source/bs/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -220,61 +220,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Ime datoteke:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "~Vrsta dokumenta:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "~Samo za čitanje"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Snimi sa š~ifrom"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "~Automatska ekstenzija datoteke"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "~Izmijeni opcije filtera"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/bs/sc/messages.po b/source/bs/sc/messages.po
index bc893bf1a3f..953bf7e2201 100644
--- a/source/bs/sc/messages.po
+++ b/source/bs/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25747,97 +25747,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26228,155 +26228,155 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "Rasporedi"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "B_oja"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Mreža"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Jezik"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Recenzija"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Komentari"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
#, fuzzy
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Uporedi"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "Pogled"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Izmjeni"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "Rasporedi"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "Pogled"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Grupa"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Font"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "Poravnanje"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "Pogled"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "Ubaci"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "Medij"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "O_kvir"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "Rasporedi"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Mreža"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/bs/sd/messages.po b/source/bs/sd/messages.po
index 5c6fe9e80bb..dde95b99d24 100644
--- a/source/bs/sd/messages.po
+++ b/source/bs/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4235,109 +4235,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7197,109 +7197,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index a8f9cfae1a9..c3840447721 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10755,19 +10755,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Stilovi"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14273,37 +14273,37 @@ msgid "Exchange Databases"
msgstr "Razmjena podataka"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Definiši"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Baza podataka u upotrebi"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "_Dostupna baza podataka"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Potraži..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14313,31 +14313,31 @@ msgstr ""
"Koristite tipku za pretraživanje da izaberete datoteku baze podataka."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Razmjena podataka"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Baza podataka primjenjena na dokument:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20530,110 +20530,110 @@ msgid "Use the current _document"
msgstr "Koristi tekući _dokument"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Kreiraj _novi dokument"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Počni od _postojećeg dokumenta"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Počni od _predloška"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "_Počni od posljednjeg spašenog početnog dokumenta"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "_Potraži..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "_Potraži..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Odaberite početni dokument za spajanje pošte"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22810,51 +22810,51 @@ msgid "Object"
msgstr "Objekat"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Vrsta"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Postavke"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Omotavanje"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiper-veza"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Rubovi"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Površina"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27676,7 +27676,7 @@ msgid "Update"
msgstr "Ažuriraj"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/bs/vcl/messages.po b/source/bs/vcl/messages.po
index 5fd4ee101db..909d5c045e5 100644
--- a/source/bs/vcl/messages.po
+++ b/source/bs/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2330,169 +2330,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Unesi glavnu lozinku."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Prilagođeno"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Odaberite operator sa liste."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Odaberite operator sa liste."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "od"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Postavi rezoluciju."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Postavi redosljed podataka."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "između stranica"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Postavi redosljed podataka."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "okviru lista"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Odaberite operator sa liste."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Nacrtaj okvir oko svake stranica"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Odaberite ovu ikonu da listate stranice."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Brošura"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/ca-valencia/chart2/messages.po b/source/ca-valencia/chart2/messages.po
index 33b2eb25a4f..69a5c272f26 100644
--- a/source/ca-valencia/chart2/messages.po
+++ b/source/ca-valencia/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ca_VALENCIA/>\n"
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Definiu el nombre de línies per al diagrama de tipus Columna i línia."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Seleccioneu un tipus de diagrama bàsic."
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index d0b086cc384..7ae54b6e4a0 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca_VALENCIA/>\n"
@@ -17133,176 +17133,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automàtic"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galàxia"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Alt contrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Clàssic"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Brisa"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Indica l'estil d'icona per a les icones de les barres d'eines i diàlegs."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Es_til de les icones:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Afig més temes d'icones mitjançant extensions"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Estil de les icones"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Cal reiniciar"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Accelera per ma_quinari"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Accedeix directament a les funcions de maquinari de l'adaptador de visualització gràfica per millorar la visualització de pantalla."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Su_avitza les vores"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Si és compatible, podeu habilitar i inhabilitar el suavitzat dels gràfics. Quan el suavitzat està activat, la majoria d'objectes tenen una aparença més suau i amb menys artefactes."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Utilitza l'Skia per a totes les renderitzacions"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Força la renderització per programari Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Requereix el reinici. Si s'activa això, s'evita l'ús dels controladors de gràfics."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "L'Skia està activat."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "L'Skia està desactivat."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Eixida de gràfics"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "P_revisualitza els tipus de lletra"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Mostra els noms dels tipus de lletra que es poden seleccionar en el tipus de lletra corresponent, com ara els tipus de lletra del quadre Tipus de lletra que hi ha a la barra Formatació."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Suavitza el tipus de lletra a la _pantalla"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_des de:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Llistes de tipus de lletra"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/ca-valencia/dbaccess/messages.po b/source/ca-valencia/dbaccess/messages.po
index 8d5cacc5ed4..6fa0922922c 100644
--- a/source/ca-valencia/dbaccess/messages.po
+++ b/source/ca-valencia/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ca_VALENCIA/>\n"
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Crear una base de dades _nova"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Base de dades _incrustada:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Obrir una _base de dades existent"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Utilitzats _recentment:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Obri"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Connectar amb una base de dades e_xistent"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3469,7 +3469,7 @@ msgid ""
msgstr "No és possible crear una base de dades nova, perquè ni l'HSQLDB ni el Firebird són disponibles en aquesta instal·lació."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/ca-valencia/extensions/messages.po b/source/ca-valencia/extensions/messages.po
index 92bc363b18f..1e84a8dd3f0 100644
--- a/source/ca-valencia/extensions/messages.po
+++ b/source/ca-valencia/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ca_VALENCIA/>\n"
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Actualitza el formulari"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Aconsegueix"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Publica"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Múltiples parts"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Text"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Estàndard (curt)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Estàndard (curta YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Estàndard (curta YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Estàndard (llarg)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "No seleccionats"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Seleccionat"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "No definit"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Tots els registres"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Registre actiu"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Pàgina actual"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "No"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Sí"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Formulari pare"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_en blanc"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_pare"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_si-mateix"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_superior"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Cap"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Simple"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Múltiple"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Interval"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horitzontal"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Vertical"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Per defecte"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "D'acord"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Cancel·la"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Ajuda"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "L'entrada seleccionada"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "La posició de l'entrada seleccionada"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Línia única"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Línies múltiples"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Línies múltiples amb formatació"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Cap"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horitzontal"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Vertical"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Totes dues"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Pla"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Superior esquerre"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Centrat a l'esquerra"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Inferior esquerre"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Superior dret"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Centrat a la dreta"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Inferior dret"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Dalt a l'esquerra"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Dalt centrat"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Dalt a la dreta"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Avall a l'esquerra"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Avall centrat"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Avall a la dreta"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centrat"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Preserva"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Substitueix"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Redueix"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "No"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Mantén la proporció"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Ajusta a la mida"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "D'esquerra a dreta"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "De dreta a esquerra"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Utilitza la configuració d'objectes superordinats"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Mai"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Quan tinga el focus"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Sempre"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Al paràgraf"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Com a caràcter"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "A la pàgina"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Al marc"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Al caràcter"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "A la pàgina"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "A la cel·la"
diff --git a/source/ca-valencia/fpicker/messages.po b/source/ca-valencia/fpicker/messages.po
index 9ada8312658..2d075712ef4 100644
--- a/source/ca-valencia/fpicker/messages.po
+++ b/source/ca-valencia/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2020-05-23 22:47+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://weblate.documentfoundation.org/projects/libo_ui-master/fpickermessages/ca_VALENCIA/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Data de modificació"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Nom del fitxer:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Tipus de fitxer:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Només lectu_ra"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Guarda amb contrasenya"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Extensió del nom del fitxer _automàtica"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Edita els paràmetres del _filtre"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Xifra amb clau GPG"
diff --git a/source/ca-valencia/sc/messages.po b/source/ca-valencia/sc/messages.po
index 5f2472b8815..ebd8485f8cc 100644
--- a/source/ca-valencia/sc/messages.po
+++ b/source/ca-valencia/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ca_VALENCIA/>\n"
@@ -25245,97 +25245,97 @@ msgid "~View"
msgstr "~Visualitza"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Im_atge"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimeix"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Im~primeix"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Ei~nes"
@@ -25694,139 +25694,139 @@ msgid "Im_age"
msgstr "Im_atge"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Organitza"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olor"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Graella"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Llengua"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_Revisió"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Comentaris"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "Com_para"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Visualització"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "D_ibuixa"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Edita"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Organitza"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Visualització"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_Agrupa"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Tipus de lletra"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Alineació"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Visualització"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Insereix"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimèdia"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Marc"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Organitza"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Graella"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Visualització"
diff --git a/source/ca-valencia/sd/messages.po b/source/ca-valencia/sd/messages.po
index dd43bd8bddc..a3608214dc2 100644
--- a/source/ca-valencia/sd/messages.po
+++ b/source/ca-valencia/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ca_VALENCIA/>\n"
@@ -4171,109 +4171,109 @@ msgid "~Table"
msgstr "~Taula"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Imatge"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Mestra"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~Mestra"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -7060,109 +7060,109 @@ msgid "~Table"
msgstr "~Taula"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Imatge"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Mestra"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~Mestra"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "~Eines"
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index eeab21add3b..b9369aa41bd 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ca_VALENCIA/>\n"
@@ -10499,19 +10499,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Mou l'estil de paràgraf seleccionat un nivell avall en la jerarquia de l'índex."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Estil"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Estils"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Crea entrades d'índex a partir d'estils de paràgraf concrets."
@@ -13955,37 +13955,37 @@ msgid "Exchange Databases"
msgstr "Intercanvia les bases de dades"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Defineix"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Bases de dades utilitzades"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Bases de dades _disponibles"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Navega..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Obri un diàleg d'obertura de fitxer per seleccionar un fitxer de base de dades (*.odb). El fitxer seleccionat s'afig a la llista Bases de dades disponibles."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13995,31 +13995,31 @@ msgstr ""
"Feu servir el botó del navegador per seleccionar un fitxer de base de dades."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Llista les bases de dades que estan en ús actualment."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Mostra una llista de les bases de dades que s'han registrat al %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Intercanvia les bases de dades"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Base de dades aplicada al document:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Canvia les fonts de dades per al document actual."
@@ -20073,109 +20073,109 @@ msgid "Use the current _document"
msgstr "Utilitza el _document actual"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Utilitza el document del Writer actual com a base per al document de combinació de correu."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Crea un document no_u"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Crea un document del Writer nou per a la combinació de correu."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Comença pel document _existent"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Seleccioneu un document del Writer existent per utilitzar com a base per al document de combinació de correu."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Com_ença a partir d'una plantilla"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Seleccioneu la plantilla que voleu utilitzar per crear un document de combinació de correu."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Co_mença a partir d'un document inicial guardat recentment"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Utilitzeu un document de combinació de correu existent com a base per a un document de combinació de correu nou."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Seleccioneu el document."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "_Navega..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Localitzeu el document del Writer que voleu utilitzar i feu clic a Obri."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "_Navega..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Obri un diàleg per a seleccionar una plantilla."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleccioneu un document inicial per a la combinació de correu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Indiqueu el document que voleu utilitzar com a base per al document de combinació de correu."
@@ -22318,49 +22318,49 @@ msgid "Object"
msgstr "Objecte"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Tipus"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opcions"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Ajusta"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Enllaç"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Vores"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Àrea"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Transparència"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27056,7 +27056,7 @@ msgid "Update"
msgstr "Actualitza"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Mostra les estadístiques del document actual."
diff --git a/source/ca-valencia/vcl/messages.po b/source/ca-valencia/vcl/messages.po
index 9152170d52b..0f23ecd9bef 100644
--- a/source/ca-valencia/vcl/messages.po
+++ b/source/ca-valencia/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-01-12 09:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ca_VALENCIA/>\n"
@@ -2319,169 +2319,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Imprimeix diverses pàgines per full de paper."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personalitzat"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Seleccioneu quantes pàgines s'imprimiran per full de paper."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Pàgines:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Seleccioneu el nombre de files."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "per"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Seleccioneu el nombre de columnes."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Marge:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Seleccioneu el marge entre les pàgines individuals de cada full de paper."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "entre les pàgines"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Distància:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Seleccioneu el marge entre les pàgines impreses i la vora del paper."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "fins a la vora del full"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Ordre:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "D'esquerra a dreta, i avall"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "De dalt a baix, i a la dreta"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "De dalt a baix, i a l'esquerra"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "De dreta a esquerra, i avall"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Seleccioneu l'orde en què s'imprimiran les pàgines."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Dibuixa una vora al voltant de cada pàgina"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Activeu esta opció per dibuixar una vora al voltant de cada pàgina."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Fullet"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Previsualització de la intercalació"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Canvia la disposició de les pàgines a imprimir en cada full de paper. La vista prèvia mostra com es veurà cada full de paper final."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "Mé_s"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Esquema de la pàgina"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "General"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Imprimeix el document actual, la selecció o les pàgines que indiqueu. També podeu definir les opcions d'impressió per al document actual."
diff --git a/source/ca/chart2/messages.po b/source/ca/chart2/messages.po
index d56b8a96fac..c746b422af6 100644
--- a/source/ca/chart2/messages.po
+++ b/source/ca/chart2/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-03-23 11:35+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547819235.000000\n"
#. NCRDD
@@ -3005,19 +3005,19 @@ msgstr "Activeu la casella Perspectiva per a visualitzar el diagrama com si esti
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION"
msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings."
-msgstr "Defineix el gir del diagrama a l'eix Z. La previsualització respon a la nova configuració."
+msgstr "Defineix el gir del diagrama a l'eix Z. La previsualització respon als paràmetres nous."
#. AyMWn
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION"
msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings."
-msgstr "Defineix el gir del diagrama a l'eix Y. La previsualització respon als nous paràmetres."
+msgstr "Defineix el gir del diagrama a l'eix Y. La previsualització respon als paràmetres nous."
#. EGS4B
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION"
msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings."
-msgstr "Defineix el gir del diagrama a l'eix X. La previsualització respon a la nova configuració."
+msgstr "Defineix el gir del diagrama a l'eix X. La previsualització respon als paràmetres nous."
#. RGQDC
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Definiu el nombre de línies per al diagrama de tipus Columna i línia."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Seleccioneu un tipus de diagrama bàsic."
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 6e8d9782103..06c85eb1424 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/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: 2022-01-10 12:20+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/ca/>\n"
"Language: ca\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: 1564129929.000000\n"
#. GyY9M
@@ -3137,7 +3137,7 @@ msgstr "Voleu transposar una taula de Writer? Copieu i enganxeu-la al Calc, tran
#: cui/inc/tipoftheday.hrc:215
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the “Vertical Text” tool in the Drawing toolbar, check Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Default languages ▸ Asian (and make the button visible with right-click)."
-msgstr "Per a obtenir la barra d'eines «Text vertical» en la barra de dibuix, marqueu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Llengües predeterminades per als documents ▸ Asiàtic, i feu el botó visible fent-hi clic dret."
+msgstr "Per a obtenir la barra d'eines «Text vertical» en la barra de dibuix, marqueu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Llengües per defecte per als documents ▸ Asiàtic, i feu el botó visible fent-hi clic dret."
#. mmG7g
#: cui/inc/tipoftheday.hrc:216
@@ -15380,7 +15380,7 @@ msgstr "Occidental:"
#: cui/uiconfig/ui/optlanguagespage.ui:301
msgctxt "optlanguagespage|label2"
msgid "Default Languages for Documents"
-msgstr "Llengües predeterminades per als documents"
+msgstr "Llengües per defecte per als documents"
#. 25J4E
#: cui/uiconfig/ui/optlanguagespage.ui:329
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automàtic"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galàxia"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Alt contrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Clàssic"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Brisa"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Indica l'estil d'icona per a les icones de les barres d'eines i diàlegs."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Es_til de les icones:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Afegeix més temes d'icones mitjançant extensions"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Estil de les icones"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Cal reiniciar"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Accelera per ma_quinari"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Accedeix directament a les funcions de maquinari de l'adaptador de visualització gràfica per millorar la visualització de pantalla."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Su_avitza les vores"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Si és compatible, podeu habilitar i inhabilitar el suavitzat dels gràfics. Quan el suavitzat està activat, la majoria d'objectes tenen una aparença més suau i amb menys artefactes."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Utilitza l'Skia per a totes les renderitzacions"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Força la renderització per programari Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Requereix el reinici. Si s'activa això, s'evita l'ús dels controladors de gràfics."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "L'Skia està activat."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "L'Skia està desactivat."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Sortida de gràfics"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "P_revisualitza les lletres tipogràfiques"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Mostra els noms dels tipus de lletra que es poden seleccionar en el tipus de lletra corresponent, com ara els tipus de lletra del quadre Tipus de lletra que hi ha a la barra Formatació."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Suavitza la lletra tipogràfica a la _pantalla"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Seleccioneu aquesta opció per a suavitzar l'aparença en pantalla del text."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_des de:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Introduïu la mida de lletra més petita que cal suavitzar."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Llistes de lletres tipogràfiques"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Executa proves gràfiques"
@@ -19966,7 +19942,7 @@ msgstr "_Insereix"
#: cui/uiconfig/ui/specialcharacters.ui:109
msgctxt "specialcharacters|subsetft"
msgid "Subset:"
-msgstr "Subconjunt:"
+msgstr "Bloc de caràcters:"
#. mPCRR
#: cui/uiconfig/ui/specialcharacters.ui:123
diff --git a/source/ca/dbaccess/messages.po b/source/ca/dbaccess/messages.po
index 3cb45184aaa..d43a49002be 100644
--- a/source/ca/dbaccess/messages.po
+++ b/source/ca/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-01-21 04:38+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ca/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562301145.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Crear una base de dades _nova"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Seleccioneu-ho per a crear una base de dades"
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Base de dades _incrustada:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Obrir una _base de dades existent"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Seleccioneu-ho per a obrir un fitxer de base de dades d'una llista de fitxers usats recentment o des d'un diàleg de selecció de fitxers."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Emprats _recentment:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Seleccioneu un fitxer de base de dades per obrir des de la llista de fitxers utilitzats recentment. Feu clic a «Finalitza» per a obrir el fitxer immediatament i sortir de l'auxiliar."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Obre"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Obre un diàleg de selecció de fitxers on podeu seleccionar un fitxer de base de dades. Feu clic a Obre o D'acord en el diàleg de selecció de fitxers per a obrir el fitxer immediatament i sortir de l'auxiliar."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Connectar amb una base de dades e_xistent"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Seleccioneu aquesta opció per a crear un document de base de dades per a una connexió de base de dades existent."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Seleccioneu el tipus de base de dades per a la connexió existent a la base de dades."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3469,7 +3469,7 @@ msgid ""
msgstr "No és possible crear una base de dades nova, perquè ni l'HSQLDB ni el Firebird són disponibles en aquesta instal·lació."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "L'auxiliar de bases de dades crea un fitxer de base de dades que conté informació sobre una base de dades."
diff --git a/source/ca/extensions/messages.po b/source/ca/extensions/messages.po
index 74b1057067c..449b76adb31 100644
--- a/source/ca/extensions/messages.po
+++ b/source/ca/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-03-31 21:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/ca/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1556389250.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Actualitza el formulari"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Aconsegueix"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Publica"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Múltiples parts"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Text"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Estàndard (curta)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Estàndard (curta YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Estàndard (curta YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Estàndard (llarga)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "No seleccionats"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Seleccionat"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "No definit"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Tots els registres"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Registre actiu"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Pàgina actual"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "No"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Sí"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Formulari pare"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_en blanc"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_pare"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_si-mateix"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_superior"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Cap"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Simple"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Múltiple"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Interval"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horitzontal"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Vertical"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Per defecte"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "D'acord"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Cancel·la"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Ajuda"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "L'entrada seleccionada"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "La posició de l'entrada seleccionada"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Línia única"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Línies múltiples"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Línies múltiples amb formatació"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Cap"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horitzontal"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Vertical"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Totes dues"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Pla"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Superior esquerre"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Centrat a l'esquerra"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Inferior esquerre"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Superior dret"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Centrat a la dreta"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Inferior dret"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Dalt a l'esquerra"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Dalt centrat"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Dalt a la dreta"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Avall a l'esquerra"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Avall centrat"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Avall a la dreta"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centrat"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Conserva"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Substitueix"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Redueix"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "No"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Mantén la proporció"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Ajusta a la mida"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "D'esquerra a dreta"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "De dreta a esquerra"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Utilitza la configuració d'objectes superordinats"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Mai"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Quan tingui el focus"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Sempre"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Al paràgraf"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Com a caràcter"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "A la pàgina"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Al marc"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Al caràcter"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "A la pàgina"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "A la cel·la"
diff --git a/source/ca/fpicker/messages.po b/source/ca/fpicker/messages.po
index 418c8ae6a03..bbfc75b9257 100644
--- a/source/ca/fpicker/messages.po
+++ b/source/ca/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-05-18 09:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/fpickermessages/ca/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496751.000000\n"
#. SJGCw
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Data de modificació"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "_Obre"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "Re_produeix"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Nom del fitxer:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Tipus de fitxer:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Només lectu_ra"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Desa amb contrasenya"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Extensió del nom del fitxer _automàtica"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Edita els paràmetres del _filtre"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Xifra amb clau GPG"
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index 22fc7e189c8..720f6a74214 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared/ca/>\n"
"Language: ca\n"
@@ -34935,13 +34935,12 @@ msgstr "Exemple:"
#. EPYGA
#: 03132200.xhp
-#, fuzzy
msgctxt ""
"03132200.xhp\n"
"tit\n"
"help.text"
msgid "ThisComponent Object"
-msgstr "Objecte d'acord"
+msgstr "Objecte ThisComponent"
#. AKrki
#: 03132200.xhp
@@ -34959,7 +34958,7 @@ msgctxt ""
"hd_id3155342\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">ThisComponent Object</link>"
-msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">ThisComponent Objecte</link>"
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Object\">Objecte ThisComponent</link>"
#. ECFFs
#: 03132200.xhp
@@ -34995,7 +34994,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "' updates the \"Table of Contents\" in a text doc"
-msgstr "' actualitza l'\"Índex de continguts\" en un document de text"
+msgstr "' actualitza la «Taula de continguts» en un document de text"
#. 3vMxq
#: 03132200.xhp
@@ -35013,7 +35012,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "' use the default name for Table of Contents and a 1"
-msgstr "' utilitzeu el nom per defecte per a l'Índex de continguts i a 1"
+msgstr "' utilitzeu el nom per defecte per a la Taula de continguts i a 1"
#. XF28a
#: 03132200.xhp
@@ -35058,7 +35057,7 @@ msgctxt ""
"par_id105622646874083\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\" name=\"FormulaProperties API service\">com.sun.star.formula.FormulaProperties</link> API service"
-msgstr ""
+msgstr "Servei de l'API <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1formula_1_1FormulaProperties.html\" name=\"FormulaProperties API service\">com.sun.star.formula.FormulaProperties</link>"
#. FLbnX
#: 03132200.xhp
@@ -35067,7 +35066,7 @@ msgctxt ""
"par_id106622646874083\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
-msgstr ""
+msgstr "Servei de l'API <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link>"
#. vZW9w
#: 03132200.xhp
@@ -35076,7 +35075,7 @@ msgctxt ""
"par_id581622646875379\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
-msgstr ""
+msgstr "Servei de l'API <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link>"
#. QgZSF
#: 03132300.xhp
@@ -38489,13 +38488,12 @@ msgstr "<variable id=\"getpathseparator01\"><link href=\"text/sbasic/shared/GetP
#. dWBDB
#: GetPathSeparator.xhp
-#, fuzzy
msgctxt ""
"GetPathSeparator.xhp\n"
"N0003\n"
"help.text"
msgid "Returns the operating system-dependent directory separator used to specify file paths."
-msgstr "Retorna el separador de directori dependent del sistema operatiu utilitzat per especificar els camins de fitxer."
+msgstr "Retorna el separador de directoris, que depèn del sistema operatiu, utilitzat per a especificar els camins dels fitxers."
#. 8jaPZ
#: GetPathSeparator.xhp
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/03.po b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
index 3e62daef09c..dd1dd6bb10c 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/03.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-05-18 09:27+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared03/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1562337011.000000\n"
#. ViEWM
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id451618876389788\n"
"help.text"
msgid "Returns the operating system-dependent directory separator used to specify file paths."
-msgstr ""
+msgstr "Retorna el separador de directoris, que depèn del sistema operatiu, utilitzat per a especificar els camins dels fitxers."
#. BWvPB
#: sf_basic.xhp
@@ -10455,7 +10455,7 @@ msgctxt ""
"par_id211612629836725\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. mzbBD
#: sf_dialogcontrol.xhp
@@ -10473,7 +10473,7 @@ msgctxt ""
"par_id311612629836481\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. FCBxu
#: sf_dialogcontrol.xhp
@@ -10509,7 +10509,7 @@ msgctxt ""
"par_id711612629836704\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. 4c5qE
#: sf_dialogcontrol.xhp
@@ -10563,7 +10563,7 @@ msgctxt ""
"par_id811612707606330\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Sí"
#. th6Kr
#: sf_dialogcontrol.xhp
@@ -22308,7 +22308,7 @@ msgctxt ""
"par_id181612441703306\n"
"help.text"
msgid "\"?\" represents any single character;"
-msgstr ""
+msgstr "«?» representa qualsevol caràcter individual;"
#. CFPcW
#: sf_string.xhp
@@ -22443,7 +22443,7 @@ msgctxt ""
"par_id471580293142283\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: la cadena que es comprovarà. Si és buida, el mètode retorna <literal>False</literal>."
#. 7Ryzp
#: sf_string.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 53159e8cf42..720c13109c5 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-05-18 09:27+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalc01/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1560441763.000000\n"
@@ -58161,7 +58161,7 @@ msgctxt ""
"par_id472715992174398\n"
"help.text"
msgid "Pond"
-msgstr ""
+msgstr "Pond"
#. Z8snf
#: func_convert.xhp
@@ -58521,7 +58521,7 @@ msgctxt ""
"hd_id1001620426284123\n"
"help.text"
msgid "Power"
-msgstr ""
+msgstr "Potència"
#. HvGBm
#: func_convert.xhp
@@ -58638,7 +58638,7 @@ msgctxt ""
"par_id477235647442515\n"
"help.text"
msgid "Pascal"
-msgstr ""
+msgstr "Pascal"
#. yyvEQ
#: func_convert.xhp
@@ -58665,7 +58665,7 @@ msgctxt ""
"hd_id61620426438099\n"
"help.text"
msgid "Speed"
-msgstr ""
+msgstr "Velocitat"
#. AXQxd
#: func_convert.xhp
@@ -58701,7 +58701,7 @@ msgctxt ""
"par_id391572877557741\n"
"help.text"
msgid "Admiralty knot"
-msgstr ""
+msgstr "Nus de l'Almirallat"
#. X3yym
#: func_convert.xhp
@@ -58710,7 +58710,7 @@ msgctxt ""
"par_id152721538362456\n"
"help.text"
msgid "International knot"
-msgstr ""
+msgstr "Nus internacional"
#. KAWp4
#: func_convert.xhp
@@ -58737,7 +58737,7 @@ msgctxt ""
"par_id233825548718154\n"
"help.text"
msgid "Miles per hour"
-msgstr ""
+msgstr "Milles per hora"
#. FyEd2
#: func_convert.xhp
@@ -58746,7 +58746,7 @@ msgctxt ""
"hd_id351620426496272\n"
"help.text"
msgid "Temperature"
-msgstr ""
+msgstr "Temperatura"
#. C5MHQ
#: func_convert.xhp
@@ -59052,7 +59052,7 @@ msgctxt ""
"par_id538319527687728\n"
"help.text"
msgid "Cubic meter"
-msgstr ""
+msgstr "Metre cúbic"
#. GG8ep
#: func_convert.xhp
diff --git a/source/ca/helpcontent2/source/text/scalc/guide.po b/source/ca/helpcontent2/source/text/scalc/guide.po
index 40916d1a561..5e0592166e3 100644
--- a/source/ca/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca/helpcontent2/source/text/scalc/guide.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-10-25 12:48+0200\n"
-"PO-Revision-Date: 2022-03-23 11:41+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalcguide/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1551343811.000000\n"
@@ -586,23 +586,21 @@ msgstr "Definició dels colors de fons o dels gràfics de fons"
#. PE8wQ
#: background.xhp
-#, fuzzy
msgctxt ""
"background.xhp\n"
"bm_id3149346\n"
"help.text"
msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value><bookmark_value>backgrounds;cell ranges</bookmark_value><bookmark_value>tables; backgrounds</bookmark_value><bookmark_value>cells; backgrounds</bookmark_value><bookmark_value>rows, see also cells</bookmark_value><bookmark_value>columns, see also cells</bookmark_value>"
-msgstr "Fulls de càlcul <bookmarkvalue>; fons</bookmarkvalue>fons <bookmarkvalue>;intervals de cel·les taules</bookmarkvalue><bookmarkvalue>; fons</bookmarkvalue>cel·les <bookmarkvalue>; fons files</bookmarkvalue><bookmarkvalue>vegeu també cel·les</bookmarkvalue>columnes <bookmarkvalue>vegeu també cel·les </bookmarkvalue>"
+msgstr "<bookmark_value>fulls de càlcul; fons</bookmark_value><bookmark_value>fons;intervals de cel·les</bookmark_value><bookmark_value>taules;fons</bookmark_value><bookmark_value>cel·les;fons</bookmark_value><bookmark_value>files, mostra també les cel·les</bookmark_value><bookmark_value>columnes, mostra també les cel·les</bookmark_value>"
#. tMFWU
#: background.xhp
-#, fuzzy
msgctxt ""
"background.xhp\n"
"hd_id3149346\n"
"help.text"
msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link> </variable>"
-msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\"> Definició de colors de fons o gràfics de fons</link> </variable>"
+msgstr "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Definició dels colors de fons dels gràfics de fons</link> </variable>"
#. gwwiM
#: background.xhp
@@ -678,13 +676,12 @@ msgstr "Seleccioneu el gràfic i feu clic a <emph>Obre</emph>"
#. 2BGVn
#: background.xhp
-#, fuzzy
msgctxt ""
"background.xhp\n"
"par_id3153575\n"
"help.text"
msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <menuitem>Arrange - To Background</menuitem> command to place this in the background. To select a graphic that has been placed in the background, use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>."
-msgstr "El gràfic s'insereix ancorat a la cel·la actual. Podeu moure i escalar el gràfic com vulgueu. En el menú contextual podeu utilitzar l'ordre <menuitem>Organitza - Al fons</menuitem> per col·locar-lo al fons. Per seleccionar un gràfic que s'ha col·locat al fons utilitzeu el Navegador <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\"></link> ."
+msgstr "El gràfic s'insereix ancorat a la cel·la actual. Podeu moure i escalar el gràfic com vulgueu. Al menú de context podeu utilitzar l'ordre <menuitem>Organitza ▸ Al fons</menuitem> per a col·locar-lo al fons. Per a seleccionar un gràfic que s'ha col·locat al fons, feu servir el <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navegador</link>."
#. vTxFX
#: background.xhp
@@ -2268,7 +2265,7 @@ msgctxt ""
"par_id3166427\n"
"help.text"
msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
-msgstr "Les cel·les s'han amagat amb l'ordre <emph>Amaga</emph> del menú contextual de les capçaleres de fila o de columna, o bé amb un <link href=\"text/scalc/01/12080000.xhp\" name=\"contorn\">contorn</link>."
+msgstr "Les cel·les s'han amagat amb l'ordre <emph>Amaga</emph> del menú contextual de les capçaleres de fila o de columna, o bé amb un <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">esquema</link>."
#. hCVpN
#: cellcopy.xhp
@@ -5605,13 +5602,12 @@ msgstr "Seleccioneu tots els fulls que vulgueu mantenint premuda la tecla <switc
#. xSB4o
#: edit_multitables.xhp
-#, fuzzy
msgctxt ""
"edit_multitables.xhp\n"
"par_idN10614\n"
"help.text"
msgid "You can use <emph>Shift</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Page Up</emph> or <emph>Page Down</emph> to select multiple sheets using the keyboard."
-msgstr "Podeu utilitzar <emph>Maj</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"> <emph>Ordre</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Pàgina Amunt</emph>o <emph>Av Pàg</emph>per seleccionar múltiples fulls utilitzant el teclat."
+msgstr "Podeu utilitzar <emph>Maj</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Ordre</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Re pàg</emph> o <emph> Av pàg</emph> per seleccionar diversos fulls amb el teclat."
#. bwHKS
#: edit_multitables.xhp
@@ -11646,7 +11642,7 @@ msgctxt ""
"hd_id3148798\n"
"help.text"
msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Applying Advanced Filters\">Applying Advanced Filters</link></variable>"
-msgstr ""
+msgstr "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Applying Advanced Filters\">Aplicació de filtres avançats</link></variable>"
#. tYuAi
#: specialfilter.xhp
@@ -11853,7 +11849,7 @@ msgctxt ""
"par_id3147372\n"
"help.text"
msgid "Choose <menuitem>Data - More Filters - Advanced Filter</menuitem>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
-msgstr ""
+msgstr "Trieu <menuitem>Dades ▸ Més filtres ▸ Filtre avançat</menuitem> i seleccioneu l'interval A20:E22. Després de que feu clic a D'acord, només es mostraran les files filtrades. La resta s'amagarà de la visualització."
#. jQ6bn
#: subtotaltool.xhp
diff --git a/source/ca/helpcontent2/source/text/schart/01.po b/source/ca/helpcontent2/source/text/schart/01.po
index 9924dd4add6..00c9b249f1a 100644
--- a/source/ca/helpcontent2/source/text/schart/01.po
+++ b/source/ca/helpcontent2/source/text/schart/01.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: 2022-03-23 11:41+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textschart01/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1551858787.000000\n"
@@ -5247,7 +5247,7 @@ msgctxt ""
"par_id4721823\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Defineix el gir del diagrama a l'eix X. La previsualització respon a la nova configuració.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Defineix el gir del diagrama a l'eix X. La previsualització respon als paràmetres nous.</ahelp>"
#. r68Bu
#: three_d_view.xhp
@@ -5256,7 +5256,7 @@ msgctxt ""
"par_id5806756\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Defineix el gir del diagrama a l'eix Y. La previsualització respon als nous paràmetres.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Defineix el gir del diagrama a l'eix Y. La previsualització respon als paràmetres nous.</ahelp>"
#. HG7NF
#: three_d_view.xhp
@@ -5265,7 +5265,7 @@ msgctxt ""
"par_id8915372\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Defineix el gir del diagrama a l'eix Z. La previsualització respon a la nova configuració.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Defineix el gir del diagrama a l'eix Z. La previsualització respon als paràmetres nous.</ahelp>"
#. P3E59
#: three_d_view.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index 61c5598d733..e06c99ce5c2 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-06-06 18:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared00/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561601622.000000\n"
@@ -3349,7 +3349,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
-msgstr "Es pot activar aquesta ordre si hi ha un objecte seleccionat. Es crearà un enllaç directament anomenat \"Enllaç a xxx\" (on <emph>xxx</emph> representa el nom de l'objecte) en el mateix directori que el de l'objecte seleccionat."
+msgstr "Es pot activar aquesta ordre si hi ha un objecte seleccionat. Es crearà un enllaç directament anomenat «Enllaç a xxx» (on <emph>xxx</emph> representa el nom de l'objecte) en el mateix directori que el de l'objecte seleccionat."
#. HKFbQ
#: 00000011.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 3ae456ae291..2723e92aadd 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.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: 2022-01-10 12:21+0100\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared01/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1565199637.000000\n"
@@ -26110,7 +26110,7 @@ msgctxt ""
"par_id1001632807096225\n"
"help.text"
msgid "Select the cells to be unmerged then do one of the following:"
-msgstr ""
+msgstr "Seleccioneu les cel·les que s'han de separar i efectueu un dels procediments següents:"
#. 8HDVx
#: 05100200.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/autopi.po b/source/ca/helpcontent2/source/text/shared/autopi.po
index 7a15da4158b..9d0d859a4c5 100644
--- a/source/ca/helpcontent2/source/text/shared/autopi.po
+++ b/source/ca/helpcontent2/source/text/shared/autopi.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-01-14 18:09+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textsharedautopi/ca/>\n"
"Language: ca\n"
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3153748\n"
"help.text"
msgid "Within the wizard, you can modify your entries and options at any time. You may also skip an entire page or even all the wizard pages, in which case the current (or default) settings will remain in effect."
-msgstr "Dins l'auxiliar, podeu modificar les dades i les opcions en qualsevol moment. També podeu saltar-vos una pàgina sencera o fins i tot totes les pàgines de l'auxiliar, cas en què s'aplicarà la configuració actual (o els paràmetres per defecte)."
+msgstr "Dins l'auxiliar, podeu modificar les dades i les opcions en qualsevol moment. També podeu saltar-vos una pàgina sencera o fins i tot totes les pàgines de l'auxiliar, cas en què s'aplicaran els paràmetres actuals (o els valors per defecte)."
#. oHQpt
#: 01010000.xhp
@@ -177,7 +177,7 @@ msgctxt ""
"par_id3153543\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZARD_BACK\">Allows you to view the selections that you made on the previous steps.</ahelp> The current settings will be saved."
-msgstr "<ahelp hid=\"HID_LTRWIZARD_BACK\">Us permet veure les seleccions que heu fet en els passos anteriors.</ahelp> Es desarà la configuració actual."
+msgstr "<ahelp hid=\"HID_LTRWIZARD_BACK\">Us permet veure les seleccions que heu fet en els passos anteriors.</ahelp> Es desaran els paràmetres actuals."
#. cNLgv
#: 01010000.xhp
@@ -195,7 +195,7 @@ msgctxt ""
"par_id3155923\n"
"help.text"
msgid "<ahelp hid=\"HID_LTRWIZARD_NEXT\">Saves the current settings and continues to the next page.</ahelp>"
-msgstr "<ahelp hid=\"HID_LTRWIZARD_NEXT\">Desa la configuració actual i continua a la pàgina següent.</ahelp>"
+msgstr "<ahelp hid=\"HID_LTRWIZARD_NEXT\">Desa els paràmetres actuals i continua a la pàgina següent.</ahelp>"
#. RTbvH
#: 01010000.xhp
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3144433\n"
"help.text"
msgid "$[officename] saves the current settings in the wizard according to the chosen template. These settings are used as the default settings the next time you activate the wizard."
-msgstr "El $[officename] desa la configuració actual de l'auxiliar segons la plantilla seleccionada. Aquesta configuració s'utilitzarà per defecte la propera vegada que activeu l'auxiliar."
+msgstr "El $[officename] desa els paràmetres actuals de l'auxiliar segons la plantilla seleccionada. Aquests paràmetres s'utilitzaran per defecte la propera vegada que activeu l'auxiliar."
#. HCxtN
#: 01010100.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 71ad6962f22..5d41025b604 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/helpcontent2/source/text/shared/guide.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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-03-31 21:47+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textsharedguide/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1564412548.000000\n"
@@ -22983,7 +22983,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "For example: You are an editor and are delivering your latest report. But before publication the report must be read by the senior editor and the proofreader, and both will add their changes. The senior editor writes \"clarify\" after one paragraph and crosses out another entirely. The proofreader corrects the spelling of your document."
-msgstr "Per exemple: sou editor i esteu a punt de lliurar el vostre últim informe. Abans de publicar-lo, l'han de llegir l'editor sènior i el corrector, i ambdós hi afegeixen canvis. L'editor sènior escriu «aclarir» després d'un paràgraf i en barra completament un altre. El corrector corregeix l'ortografia del document."
+msgstr "Per exemple: sou editor i esteu a punt de lliurar el vostre últim informe. Abans de publicar-lo, l'han de llegir l'editor sènior i la correctora, i ambdós hi afegeixen canvis. L'editor sènior escriu «aclarir» després d'un paràgraf i en barra completament un altre. La correctora corregeix l'ortografia del document."
#. sZdoa
#: redlining.xhp
@@ -23210,7 +23210,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "A file selection dialog appears. Select your older original document and confirm the dialog."
-msgstr "Apareix un diàleg de selecció de fitxer. Seleccioneu el document antic original i confirmeu el diàleg."
+msgstr "Apareix un diàleg de selecció de fitxers. Seleccioneu el document antic original i confirmeu el diàleg."
#. sabfp
#: redlining_doccompare.xhp
@@ -23327,7 +23327,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Recording Changes"
-msgstr "Registre de canvis"
+msgstr "Enregistrament de canvis"
#. V8ATh
#: redlining_enter.xhp
@@ -23345,7 +23345,7 @@ msgctxt ""
"hd_id3155364\n"
"help.text"
msgid "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Recording Changes</link></variable>"
-msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Registre de canvis\">Registre de canvis</link></variable>"
+msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Enregistrament de canvis</link></variable>"
#. VBpWf
#: redlining_enter.xhp
diff --git a/source/ca/helpcontent2/source/text/simpress/02.po b/source/ca/helpcontent2/source/text/simpress/02.po
index 6bf685e50e7..45699f61c42 100644
--- a/source/ca/helpcontent2/source/text/simpress/02.po
+++ b/source/ca/helpcontent2/source/text/simpress/02.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-20 13:03+0200\n"
-"PO-Revision-Date: 2022-05-18 09:27+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textsimpress02/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561340761.000000\n"
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id3149756\n"
"help.text"
msgid "<ahelp hid=\".uno:Shear\">Lets you drag the handles of the selected object to change its shape.</ahelp> If the selected object is not a polygon or Bézier curve, you are prompted to change the object to a curve before you can distort it."
-msgstr "<ahelp hid=\".uno:Shear\">Us permet arrossegar les anses de l'objecte seleccionat per canviar-ne la forma.</ahelp> Si l'objecte seleccionat no és un polígon ni una corba de Bézier, se us sol·licitarà que canvieu l'objecte a una corba abans de distorsionar-lo."
+msgstr "<ahelp hid=\".uno:Shear\">Us permet arrossegar les anses de l'objecte seleccionat per a canviar-ne la forma.</ahelp> Si l'objecte seleccionat no és un polígon ni una corba de Bézier, se us sol·licitarà que canvieu l'objecte a una corba abans de distorsionar-lo."
#. e6Ep6
#: 10030000.xhp
@@ -1059,7 +1059,7 @@ msgctxt ""
"par_id3147516\n"
"help.text"
msgid "Drag the white handle to change the direction of the transparency gradient. Drag the black handle to change the length of the gradient. You can also drag and drop colors onto the handles from the <emph>Color</emph> Bar to change their grayscale values."
-msgstr "Arrossegueu l'ansa blanca per canviar la direcció del degradat de transparència. Arrossegueu l'ansa negra per canviar la longitud del degradat. També podeu arrossegar i deixar anar colors a les anses des de la barra <emph>Color</emph> per canviar-ne els valors d'escala de grisos."
+msgstr "Arrossegueu l'ansa blanca per a canviar la direcció del degradat de transparència. Arrossegueu l'ansa negra per a canviar la longitud del degradat. També podeu arrossegar i deixar anar colors a les anses des de la barra <emph>Color</emph> per a canviar-ne els valors d'escala de grisos."
#. UVA2E
#: 10030000.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index 5629c790748..9b35501b257 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/01.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-11-24 12:03+0100\n"
-"PO-Revision-Date: 2022-05-18 09:26+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter01/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561340858.000000\n"
@@ -5971,7 +5971,7 @@ msgctxt ""
"par_id5187536\n"
"help.text"
msgid "Choose the \"Default\" page style from the submenu."
-msgstr "Trieu l'estil de pàgina \"Per defecte\" del submenú."
+msgstr "Trieu l'estil de pàgina «Per defecte» del submenú."
#. JyxEQ
#: 04070000.xhp
@@ -5980,7 +5980,7 @@ msgctxt ""
"par_id6952726\n"
"help.text"
msgid "This removes the special \"Envelope\" page formatting."
-msgstr "Aquesta acció suprimeix la formatació especial \"Sobre\" de la pàgina."
+msgstr "Aquesta acció suprimeix la formatació especial «Sobre» de la pàgina."
#. 3iAPy
#: 04070000.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index 666231930d8..0fff5c67784 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-04-26 12:55+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriterguide/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1564507881.000000\n"
@@ -8223,7 +8223,7 @@ msgctxt ""
"hd_id3147119\n"
"help.text"
msgid "To Define Table of Contents Entries"
-msgstr "Per definir entrades en les taules de continguts"
+msgstr "Per a definir entrades en les taules de continguts"
#. s2tDv
#: indices_enter.xhp
@@ -8232,7 +8232,7 @@ msgctxt ""
"par_id3147132\n"
"help.text"
msgid "The best way to generate a table of contents is to apply the predefined heading paragraph styles, such as \"Heading 1\", to the paragraphs that you want to include in your table of contents."
-msgstr "La millor manera de generar una taula de continguts consisteix a aplicar estils de paràgraf predefinits, com ara \"Encapçalament 1\", als paràgrafs que vulgueu incloure a la taula de continguts."
+msgstr "La millor manera de generar una taula de continguts consisteix a aplicar estils de paràgraf predefinits, com ara «Encapçalament 1», als paràgrafs que vulgueu incloure a la taula de continguts."
#. SuiqC
#: indices_enter.xhp
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index 2149f68fc01..293d0dec8bd 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-05-18 09:17+0000\n"
+"PO-Revision-Date: 2022-06-06 18:34+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1562301193.000000\n"
#. W5ukN
@@ -20156,7 +20156,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Up"
-msgstr "Mou amunt"
+msgstr "Mou cap amunt"
#. GvBYt
#: GenericCommands.xcu
@@ -20176,7 +20176,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Down"
-msgstr "Mou avall"
+msgstr "Mou cap avall"
#. KQLPA
#: GenericCommands.xcu
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index 1a894cf6309..50854e3f748 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/messages.po
@@ -3,9 +3,9 @@ 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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-05-18 09:17+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562916192.000000\n"
#. kBovX
@@ -25252,97 +25252,97 @@ msgid "~View"
msgstr "~Visualitza"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Im_atge"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimeix"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Im~primeix"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Ei~nes"
@@ -25701,139 +25701,139 @@ msgid "Im_age"
msgstr "Im_atge"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Organitza"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olor"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Graella"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Llengua"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_Revisió"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Comentaris"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "Com_para"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Visualització"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "D_ibuixa"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Edita"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Organitza"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Visualització"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_Agrupa"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Lletra tipogràfica"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Alineació"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Visualització"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Insereix"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimèdia"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Marc"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Organitza"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Graella"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Visualització"
@@ -30594,7 +30594,7 @@ msgstr "Voleu conservar el resultat o preferiu restaurar els valors anteriors?"
#: sc/uiconfig/scalc/ui/solversuccessdialog.ui:88
msgctxt "solversuccessdialog|label2"
msgid "Solving successfully finished."
-msgstr "El càlcul de la solució ha finalitzat amb èxit."
+msgstr "El càlcul de la solució ha finalitzat correctament."
#. hA9oa
#: sc/uiconfig/scalc/ui/solversuccessdialog.ui:100
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index 8a184e8ca2f..d11afc5d02e 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-04-26 12:46+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/ca/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562916317.000000\n"
#. WDjkB
@@ -4173,109 +4173,109 @@ msgid "~Table"
msgstr "~Taula"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Imatge"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Mestra"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~Mestra"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -7062,109 +7062,109 @@ msgid "~Table"
msgstr "~Taula"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Imatge"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Dibuix"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Mestra"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~Mestra"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtensió"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtensió"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "~Eines"
diff --git a/source/ca/setup_native/source/mac.po b/source/ca/setup_native/source/mac.po
index 98dd8055649..74d092c9f27 100644
--- a/source/ca/setup_native/source/mac.po
+++ b/source/ca/setup_native/source/mac.po
@@ -4,16 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2019-12-06 10:28+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
-"Language-Team: Catalan <https://vm137.documentfoundation.org/projects/libo_ui-master/setup_nativesourcemac/ca/>\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/setup_nativesourcemac/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 3.8\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1516019742.000000\n"
#. HQKCW
@@ -77,7 +77,7 @@ msgctxt ""
"ChooseMyOwnText\n"
"LngText.text"
msgid "Not listed (choose location in an extra step)"
-msgstr "No llistada (trieu la ubicació en un pas addicional)"
+msgstr "Una altra (trieu la ubicació en un pas addicional)"
#. ey87A
#: macinstall.ulf
@@ -140,7 +140,7 @@ msgctxt ""
"StartInstallText1\n"
"LngText.text"
msgid "Click Install to start the installation"
-msgstr "Feu clic a Instal·la per iniciar la instal·lació"
+msgstr "Feu clic a Instal·la per a iniciar la instal·lació"
#. ikAwX
#: macinstall.ulf
@@ -176,7 +176,7 @@ msgctxt ""
"IdentifyYES\n"
"LngText.text"
msgid "Yes, identify"
-msgstr "Sí, identifiqueu-me"
+msgstr "Sí, identifica'm"
#. QdpWc
#: macinstall.ulf
@@ -212,7 +212,7 @@ msgctxt ""
"InstallCompleteText2\n"
"LngText.text"
msgid "Call '[PRODUCTNAME] - Preferences - Language Settings - Languages' to change the user interface language."
-msgstr "Aneu a «[PRODUCTNAME] ▸ Preferències ▸ Configuració de llengua ▸ Llengües» per a canviar la llengua de la interfície d'usuari."
+msgstr "Aneu a «[PRODUCTNAME] ▸ Preferències ▸ Paràmetres de la llengua ▸ Llengües» per a canviar la llengua de la interfície d'usuari."
#. kAZvs
#: macinstall.ulf
diff --git a/source/ca/svtools/messages.po b/source/ca/svtools/messages.po
index f03ee5860b7..f7d87251ab1 100644
--- a/source/ca/svtools/messages.po
+++ b/source/ca/svtools/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: 2021-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/svtoolsmessages/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1564413316.000000\n"
#. fLdeV
@@ -2420,7 +2420,7 @@ msgstr ""
#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid "Execution of macros is disabled. Macros are signed, but the document (containing document events) is not signed."
-msgstr "L'execució de macros està desactivada. Les macros estan desactivades, però el document (que conté esdeveniments de document) no està signat."
+msgstr "L'execució de macros està desactivada. Les macros estan signades, però no pas el document (que conté esdeveniments)."
#. 24FhM
#: svtools/inc/errtxt.hrc:123
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index 99492c7981f..41155d123a0 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/ca/>\n"
"Language: ca\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562916102.000000\n"
#. v3oJv
@@ -6285,7 +6285,7 @@ msgstr "Definit per l'usuari"
#: sw/inc/strings.hrc:731
msgctxt "STR_TOC"
msgid "Table of Contents"
-msgstr "Índex de continguts"
+msgstr "Taula de continguts"
#. BESjb
#: sw/inc/strings.hrc:732
@@ -10499,19 +10499,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Mou l'estil de paràgraf seleccionat un nivell avall en la jerarquia de l'índex."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Estil"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Estils"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Crea entrades d'índex a partir d'estils de paràgraf concrets."
@@ -13955,37 +13955,37 @@ msgid "Exchange Databases"
msgstr "Intercanvia les bases de dades"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Defineix"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Bases de dades utilitzades"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Bases de dades _disponibles"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Navega..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Obre un diàleg d'obertura de fitxer per seleccionar un fitxer de base de dades (*.odb). El fitxer seleccionat s'afegeix a la llista Bases de dades disponibles."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13995,31 +13995,31 @@ msgstr ""
"Feu servir el botó del navegador per a seleccionar un fitxer de base de dades."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Enumera les bases de dades que estan en ús actualment."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Mostra una llista de les bases de dades que s'han registrat al %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Intercanvia les bases de dades"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Base de dades aplicada al document:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Canvia les fonts de dades per al document actual."
@@ -20073,109 +20073,109 @@ msgid "Use the current _document"
msgstr "Utilitza el _document actual"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Utilitza el document del Writer actual com a base per al document de combinació de correu."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Crea un document no_u"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Crea un document del Writer nou per a la combinació de correu."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Comença pel document _existent"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Seleccioneu un document del Writer existent per a utilitzar-lo com a base per al document de combinació de correu."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Com_ença a partir d'una plantilla"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Seleccioneu la plantilla que voleu utilitzar per a crear un document de combinació de correu."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Co_mença a partir d'un document inicial desat recentment"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Utilitzeu un document de combinació de correu existent com a base per a un document de combinació de correu nou."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Seleccioneu el document."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "_Navega..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Localitzeu el document del Writer que voleu utilitzar i feu clic a Obre."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "_Navega..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Obre un diàleg per a seleccionar una plantilla."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "La font de dades del document actual no està registrada. Intercanvieu la base de dades."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Intercanvia la base de dades..."
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleccioneu un document inicial per a la combinació de correu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Indiqueu el document que voleu utilitzar com a base per al document de combinació de correu."
@@ -22318,49 +22318,49 @@ msgid "Object"
msgstr "Objecte"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Tipus"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opcions"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Ajusta"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Enllaç"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Vores"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Àrea"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Transparència"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27056,7 +27056,7 @@ msgid "Update"
msgstr "Actualitza"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Mostra les estadístiques del document actual."
@@ -28805,7 +28805,7 @@ msgstr "Tipus:"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
-msgstr "Índex de continguts"
+msgstr "Taula de continguts"
#. hP5JM
#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
diff --git a/source/ca/vcl/messages.po b/source/ca/vcl/messages.po
index 37305ab0ccc..efc4974db44 100644
--- a/source/ca/vcl/messages.po
+++ b/source/ca/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-12-27 06:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ca/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562301320.000000\n"
#. k5jTM
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Imprimeix diverses pàgines per full de paper."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Personalitzat"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Seleccioneu quantes pàgines s'imprimiran per full de paper."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Pàgines:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Seleccioneu el nombre de files."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "per"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Seleccioneu el nombre de columnes."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Marge:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Seleccioneu el marge entre les pàgines individuals de cada full de paper."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "entre les pàgines"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Distància:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Seleccioneu el marge entre les pàgines impreses i la vora del paper."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "fins a la vora del full"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Ordre:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "D'esquerra a dreta, i avall"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "De dalt a baix, i a la dreta"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "De dalt a baix, i a l'esquerra"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "De dreta a esquerra, i avall"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Seleccioneu l'ordre en què s'imprimiran les pàgines."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Dibuixa una vora al voltant de cada pàgina"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Activeu aquesta opció per a dibuixar una vora al voltant de cada pàgina."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Fullet"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Trieu per a imprimir el document en format de fulletó."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Previsualització de la intercalació"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Canvia la disposició de les pàgines a imprimir en cada full de paper. La previsualització mostra com es veurà cada full de paper final."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "Mé_s"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Disposició de la pàgina"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "General"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Imprimeix el document actual, la selecció o les pàgines que indiqueu. També podeu definir les opcions d'impressió per al document actual."
diff --git a/source/ca/xmlsecurity/messages.po b/source/ca/xmlsecurity/messages.po
index ddaa9d8668c..9f377678dae 100644
--- a/source/ca/xmlsecurity/messages.po
+++ b/source/ca/xmlsecurity/messages.po
@@ -4,16 +4,16 @@ 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-03-29 16:04+0200\n"
-"PO-Revision-Date: 2021-02-09 16:36+0000\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/ca/>\n"
+"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-7-3/xmlsecuritymessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1556385421.000000\n"
#. EyJrF
@@ -441,7 +441,7 @@ msgstr "Signat per "
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:146
msgctxt "digitalsignaturesdialog|issued"
msgid "Digital ID issued by "
-msgstr "ID digital emesa per "
+msgstr "Id. digital emesa per "
#. DSCb7
#: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:159
diff --git a/source/ckb/chart2/messages.po b/source/ckb/chart2/messages.po
index d32fc58666b..4894bf82ae5 100644
--- a/source/ckb/chart2/messages.po
+++ b/source/ckb/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ckb/>\n"
@@ -3599,7 +3599,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/ckb/cui/messages.po b/source/ckb/cui/messages.po
index 348a869a2e2..b7848248597 100644
--- a/source/ckb/cui/messages.po
+++ b/source/ckb/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ckb/>\n"
@@ -17104,176 +17104,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "خۆکار"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "تۆخی بەرز"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "کلاسیک"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "ش_ێوەی وێنۆچکە:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "پێویستی بە پێکردنەوەیە"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "پێویستی بە پێکردنەوەیە. چالاککردنی ئەمە نایەڵێت وەگەڕخەری گرافیک ئیش بکات."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "سکیا ئێستا چالاک کراوە."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "سکیا ئێستا ناچالاک کراوە."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "دەرخستەی گرافیک"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "پێشب_ینی جۆرەپیتەکان پیشانبدە"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "ل_ە:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/ckb/dbaccess/messages.po b/source/ckb/dbaccess/messages.po
index 69154d64670..827834b7af0 100644
--- a/source/ckb/dbaccess/messages.po
+++ b/source/ckb/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ckb/>\n"
@@ -3319,73 +3319,73 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr ""
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr ""
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "کردنەوە"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3393,7 +3393,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/ckb/extensions/messages.po b/source/ckb/extensions/messages.po
index d8ef62f8434..e1f0f678f60 100644
--- a/source/ckb/extensions/messages.po
+++ b/source/ckb/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/ckb/>\n"
@@ -290,536 +290,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "نوێکردنەوەی فۆرم"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "بەدەستهێنان"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr ""
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "بەستەر"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr ""
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "دەق"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "ستاندارد (کورت)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "ستاندارد (کورت YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "ستاندارد (کورت)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "ستاندارد (درێژ )"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "ڕ/م/س"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "م/ڕ/س"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "س/م/ڕ"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "ڕ/م/س"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "س/ڕ/م"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "س/م/ڕ"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "س-م-ڕ"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "س-م-ڕ"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "١٣:٤٥"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "١٣:٤٥:٠٠ پ.ن"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "٠١:٤٥ پ.ن"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "٠١:٤٥:٠٠ پ.ن"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "دیارینەکراوە"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "دیاریکراوە"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "نەناسێنراوە"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "هەموو تۆمارەکان"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "تۆماری چالاک"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "پەڕەی ئێستا"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "نەخێر"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "بەڵێ"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr ""
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_بەتاڵ"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_سەرەوە"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "هیج"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "تاک"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "دووانی"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "بوار"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "ئاسۆیی"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "ستوونی"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "بنەڕەت"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "باشە"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "هه‌ڵوه‌شاندنه‌وه‌"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "یارمەتی"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr ""
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr ""
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr ""
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr ""
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr ""
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr ""
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr ""
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "هیج"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "ئاسۆیی"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "ستوونی"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "هەردووک"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr ""
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "تەخت"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr ""
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr ""
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr ""
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr ""
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr ""
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr ""
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr ""
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr ""
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr ""
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr ""
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr ""
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr ""
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "لە ناوەڕاست"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "ناوچەی پارێزراو"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "جێگرتنەوە"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr ""
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr ""
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr ""
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr ""
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "چەپ-بۆ-ڕاست"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "ڕاست-بۆ-چەپ"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr ""
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "هه‌رگیز"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "هەموو کات"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "بۆ بەند"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "وەکوو نووسە"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "بۆ پەڕە"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "بۆ چوارچێوە"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "بۆ نووسە"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "بۆ پەڕەی"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "بۆ خانەی"
diff --git a/source/ckb/fpicker/messages.po b/source/ckb/fpicker/messages.po
index 9066876dcac..048bf902902 100644
--- a/source/ckb/fpicker/messages.po
+++ b/source/ckb/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/ckb/>\n"
@@ -217,55 +217,55 @@ msgid "Date modified"
msgstr "ئەو رۆژەی کە پەڕگە دەستکاریکراوە"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_ناوی پەڕگە:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "جۆری _پەڕگە:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "تەنها _خوێندنەوە"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "‫پاشەکەوتکردن لەگەڵ وشەی تێپەڕبوو"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_پاشگری ناوی پەڕگەی خۆکار"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ڕێکخستنەکانی _پاڵێوکردن دەستکاریبکە"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "باهێماکردنی بە هۆی کلیلی GPG"
diff --git a/source/ckb/sc/messages.po b/source/ckb/sc/messages.po
index 3a7a844bb5f..d9def246919 100644
--- a/source/ckb/sc/messages.po
+++ b/source/ckb/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ckb/>\n"
@@ -25154,97 +25154,97 @@ msgid "~View"
msgstr "~پیشاندان"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "وێن_ە"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "کێ_شان"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~کێشان"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "تەن"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~تەن"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_میدیا"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "چاپکردن"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~چاپکردن"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر~او"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
@@ -25603,139 +25603,139 @@ msgid "Im_age"
msgstr "وێن_ە"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_ڕێکخستن"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ڕە_نگ"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_هێڵەکی"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_زمان"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_پێداچوونەوە"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_لێدوانەکان"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "بەراو_ردکردن"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_بینین"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "کێ_شان"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_دەستکاریکردن"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_ڕێکخستن"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_بینین"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "گروو_پ"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "‫3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "جۆرە_پیت"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_ڕێککردن"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_بینین"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_هێنان"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_میدیا"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "چوارچچ_ێوە"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_ڕێکخستن"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_هێڵەکی"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_بینین"
diff --git a/source/ckb/sd/messages.po b/source/ckb/sd/messages.po
index 5c5a24f0fc3..693a2318af5 100644
--- a/source/ckb/sd/messages.po
+++ b/source/ckb/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ckb/>\n"
@@ -4160,109 +4160,109 @@ msgid "~Table"
msgstr "~خشتە"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "وێنە"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "کێ_شان"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~کێشان"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "تەن"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~تەن"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_میدیا"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_سەرەکی"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~سەرەکی"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "‫3_D"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "‫3~D"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر~او"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
@@ -7049,109 +7049,109 @@ msgid "~Table"
msgstr "~خشتە"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "وێنە"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "وێ~نە"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "کێ_شان"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~کێشان"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "تەن"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~تەن"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_میدیا"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~میدیا"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "فۆ_رم"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "فۆ~رم"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_سەرەکی"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~سەرەکی"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "‫3_D"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "‫3~D"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "زیاد_کراو"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "زیادکر~او"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_ئامرازەکان"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "~ئامرازەکان"
diff --git a/source/ckb/sw/messages.po b/source/ckb/sw/messages.po
index 29341ce6f63..60279efe89e 100644
--- a/source/ckb/sw/messages.po
+++ b/source/ckb/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-01-10 13:21+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 13:01+0200\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ckb/>\n"
"Language: ckb\n"
@@ -10474,19 +10474,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "شێوە"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "شێوازەکان"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -13930,37 +13930,37 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr ""
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "بگەڕێ…"
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13968,31 +13968,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20046,109 +20046,109 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "گە_ڕان…"
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "گە_ڕان…"
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22291,49 +22291,49 @@ msgid "Object"
msgstr "تەن"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "جۆر"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "هەڵبژاردەکان"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "پێچانەوە"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "سەرووبەستەر"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "قەراخ"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ڕووبەر"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "دیارخەری ڕوونی"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ماکرۆ"
@@ -27027,7 +27027,7 @@ msgid "Update"
msgstr "نوێکردنەوە"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/ckb/vcl/messages.po b/source/ckb/vcl/messages.po
index b8e52ddc7b8..acfc7f87b9a 100644
--- a/source/ckb/vcl/messages.po
+++ b/source/ckb/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ckb/>\n"
@@ -2316,169 +2316,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "دەستکرد"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "پەڕەکان:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "لەلایەن"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "قەراخ:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "نێوان پەڕەکان"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "دووری:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "بۆ سنووری شیت"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "ڕێکی:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "چەپ بۆ ڕاست، پاشان بۆ خوارەوە"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "سەرەوە بۆ خوارەوە، پاشان ڕاست"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "سەرەوە بۆ خوارەوە، پاشان چەپ"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "ڕاست بۆ چەپ، پاشان خوارەوە"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "سنوورێک بکێشە بە دەوری هەر پەڕەیەک"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr ""
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "کڵێشەی پەڕە"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "گشتی"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/cs/chart2/messages.po b/source/cs/chart2/messages.po
index 4e3811fbef9..3b31b505492 100644
--- a/source/cs/chart2/messages.po
+++ b/source/cs/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547326849.000000\n"
#. NCRDD
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Určení počtu čar pro typ grafu Sloupce a čáry."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Zvolte základní typ grafu."
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index 7fc606b2e24..af3829eead5 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565905500.000000\n"
#. GyY9M
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automaticky"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Vysoký kontrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klasické"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Určuje styl ikon na nástrojových lištách a v dialogových oknech."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "_Styl ikon:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Další motivy ikon přidáte pomocí rozšíření"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Styl ikon"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Vyžaduje restart"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Použít hardwarovou _akceleraci"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Pro vylepšení zobrazení budou použity přímo hardwarové vlastnosti grafické karty."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Použít vy_hlazení"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Pokud je podporováno, můžete použít vyhlazení grafiky. Při zapnutém vyhlazování má většina grafických objektů méně artefaktů."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Použít pro veškeré vykreslování knihovnu Skia"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Vynutit softwarové vykreslování knihovnou Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Vyžaduje restart. Povolením se zabrání použití grafického ovladače."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Knihovna Skia je aktuálně povolena."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Knihovna Skia je aktuálně zakázána."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafický výstup"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Zobrazit náh_led písem"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Při výběru písma se název písma zobrazí daným písmem, např. v seznamu písem v poli Písmo na liště Formátování."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "_Vyhlazování písem na obrazovce"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Zvolte, pokud chcete vyhlazovat písma na obrazovce."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_od:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Zadejte nejmenší velikost písma pro vyhlazování."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Seznamy písem"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Spustit testy grafiky"
diff --git a/source/cs/dbaccess/messages.po b/source/cs/dbaccess/messages.po
index 130954146fb..15b24cd3592 100644
--- a/source/cs/dbaccess/messages.po
+++ b/source/cs/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563225070.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Vytvořit _novou databázi"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Vytvoří novou databázi."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Vestavěná databáze:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Otevřít existující databázový _soubor"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Vyberte databázový soubor ze seznamu naposledy použitých souborů nebo z dialogového okna pro výběr souboru."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_Naposledy použité:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Vyberte databázový soubor, který chcete otevřít, ze seznamu naposledy použitých souborů. Klepnutím na Dokončit soubor okamžitě otevřete a ukončíte průvodce."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Otevřít"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Otevře dialogové okno pro výběr souboru, ve kterém je možné vybrat databázový soubor. Klepnutím na Otevřít nebo OK v dialogovém okně soubor okamžitě otevřete a ukončíte průvodce."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Připojit se k _databázi"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Vytvoří databázový dokument s připojením k existující databázi."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Vyberte typ databáze existujícího databázového připojení."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3471,7 +3471,7 @@ msgstr ""
"databáze HSQLDB ani Firebird."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Průvodce databází vytvoří databázový soubor, který obsahuje informace o databázi."
diff --git a/source/cs/extensions/messages.po b/source/cs/extensions/messages.po
index 5a9d7dfd3e0..15452426422 100644
--- a/source/cs/extensions/messages.po
+++ b/source/cs/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555043285.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Obnovit formulář"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "GET"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "POST"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Multipart"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Text"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standardní (krátké)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standardní (krátké RR)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standardní (krátké RRRR)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standardní (dlouhé)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/RR"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/RR"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "RR/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/RRRR"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/RRRR"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "RRRR/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "RR-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "RRRR-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Nevybráno"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Vybráno"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Nedefinováno"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Všechny záznamy"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Aktivní záznam"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Aktuální stránka"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Ne"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ano"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Zdrojový formulář"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Žádné"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Jeden"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Více"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Oblast"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Vodorovná"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Svislá"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Výchozí"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "OK"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Zrušit"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Nápověda"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Zvolená položka"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Pozice zvolené položky"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Jednořádkový"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Víceřádkový"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Víceřádkový s formátováním"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Žádné"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Vodorovný"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Svislý"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Oba"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Plochý"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Vlevo nahoře"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Vlevo uprostřed"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Vlevo dole"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Vpravo nahoře"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Vpravo uprostřed"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Vpravo dole"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Vlevo nad"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Uprostřed nad"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Vpravo nad"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Vlevo pod"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Uprostřed pod"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Vpravo pod"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Uprostřed"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Zachovat"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Nahradit"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Skrýt všechno"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Ne"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Zachovat poměr"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Přizpůsobit velikosti"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Zleva doprava"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Zprava doleva"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Použít nastavení nadřazeného objektu"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Nikdy"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Při zaměření"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Vždy"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "K odstavci"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Jako znak"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Ke stránce"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "K rámci"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Ke znaku"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Ke stránce"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "K buňce"
diff --git a/source/cs/fpicker/messages.po b/source/cs/fpicker/messages.po
index 563f49a5120..f440e644e4f 100644
--- a/source/cs/fpicker/messages.po
+++ b/source/cs/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/fpickermessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1538496813.000000\n"
#. SJGCw
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Datum změny"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "_Otevřít"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "Pře_hrát"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Název souboru:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Typ souboru:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Jen pro čtení"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Uložit s heslem"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Automatická přípona názvu souboru"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Upravit nastavení _filtru"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Zašifrovat klíčem GPG"
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index f710ee64ccf..f5fa5e40de8 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565903887.000000\n"
#. kBovX
@@ -25256,97 +25256,97 @@ msgid "~View"
msgstr "~Zobrazit"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "O_brázek"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Kresba"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresba"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimédia"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Tisk"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~Tisk"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Nástroj~e"
@@ -25705,139 +25705,139 @@ msgid "Im_age"
msgstr "O_brázek"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Uspořádat"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Barva"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Mřížka"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Jazyk"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_Revize"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "Ko_mentáře"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Porovnat"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Zobrazit"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "Kr_esba"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "Uprav_it"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Uspořádat"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Zobrazit"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Seskup_it"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Písmo"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Zarovnání"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Zobrazit"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Vložit"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Multimédia"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Ráme_c"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Uspořádat"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Mřížka"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Zobrazit"
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index 3fdcc4a4a5e..34d37ee34ed 100644
--- a/source/cs/sd/messages.po
+++ b/source/cs/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563224604.000000\n"
#. WDjkB
@@ -4174,109 +4174,109 @@ msgid "~Table"
msgstr "T~abulka"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Obrázek"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Kresba"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresba"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Multimédia"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "Předlo_ha"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "Předlo~ha"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nástroje"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~Nástroje"
@@ -7063,109 +7063,109 @@ msgid "~Table"
msgstr "T~abulka"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Obrázek"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Kresba"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresba"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Multimédia"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "_Formulář"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "Předlo_ha"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "Předlo~ha"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_D"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~D"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Rozšíření"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "~Rozšíření"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "Nástroj~e"
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index 85f671e4743..e478beaf279 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563223676.000000\n"
#. v3oJv
@@ -10506,19 +10506,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Posune vybraný styl odstavce v rejstříku o jednu úroveň níže."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Styl"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Styly"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Vytvoří položky rejstříku z určitých stylů odstavců."
@@ -13962,37 +13962,37 @@ msgid "Exchange Databases"
msgstr "Vyměnit databáze"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Definovat"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Používané databáze"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Dostupné databáze"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Procházet..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Zobrazí dialog Otevřít soubor, kde můžete vybrat soubor s databází (*.odb). Vybraný soubor se přidá do seznamu dostupných databází."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14002,31 +14002,31 @@ msgstr ""
"Soubor databáze vyberete pomocí tlačítka Procházet."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Seznam aktuálně používaných databází."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Seznam databází registrovaných v %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Vyměnit databáze"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Databáze použité v dokumentu:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Změní zdroj dat pro aktuální dokument."
@@ -20080,109 +20080,109 @@ msgid "Use the current _document"
msgstr "Použít _aktuální dokument"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Použije aktuální dokument aplikace Writer, na kterém se založí hromadně rozesílaná zpráva."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Vytvořit _nový dokument"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Vytvoří nový dokument aplikace Writer, na kterém se založí hromadně rozesílaná zpráva."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Začít s _existujícím dokumentem"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Vyberte stávající dokument aplikace Writer, na kterém se založí hromadně rozesílaná zpráva."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Začít ze ša_blony"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Vyberte šablonu na které chcete založit hromadně rozesílanou zprávu."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Začít z naposledy _uloženého počátečního dokumentu"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Založí nový dokument hromadné korespondence na již existujícím."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Vyberte dokument."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "_Procházet..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Vyhledejte dokument aplikace Writer, který chcete použít, a poté klepněte na Otevřít."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Pro_cházet..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Otevře dialogové okno pro výběr šablony."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Zdroj dat aktuálního dokumentu není zaregistrován. Vyměňte databázi."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Vyměnit databázi..."
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Vyberte počáteční dokument pro hromadnou korespondenci"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Určete dokument, na kterém se založí hromadně rozesílaná zpráva."
@@ -22325,49 +22325,49 @@ msgid "Object"
msgstr "Objekt"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Typ"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Možnosti"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Obtékání textu"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hypertextový odkaz"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Ohraničení"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Oblast"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Průhlednost"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27063,7 +27063,7 @@ msgid "Update"
msgstr "Aktualizovat"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Zobrazí pro aktuální soubor statistiku."
diff --git a/source/cs/vcl/messages.po b/source/cs/vcl/messages.po
index 17c1623d04f..370c3a7123d 100644
--- a/source/cs/vcl/messages.po
+++ b/source/cs/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2022-02-25 16:40+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1558934371.000000\n"
#. k5jTM
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Tisk více stránek na jeden list papíru."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Vlastní"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Vyberte, kolik stránek má být vytištěno na jeden list papíru."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Stránky:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Vyberte počet řádků."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "x"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Vyberte počet sloupců."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Okraj:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Vyberte mezeru mezi jednotlivými stránkami na každém listu papíru."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "mezi stránkami"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Vzdálenost:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Vyberte mezeru mezi tisknutými stránkami a okrajem papíru."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "k okraji listu"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Pořadí:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Zleva doprava, potom dolů"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Shora dolů, potom vpravo"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Shora dolů, potom vlevo"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Zprava doleva, potom dolů"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Zvolte pořadí tisku stránek."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Nakreslit ohraničení kolem každé stránky"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Zaškrtněte, pokud chcete mít kolem každé stránky ohraničení."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Příručka"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Vyberte, chcete-li dokument vytisknout ve formátu příručky."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Náhled řazení"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Změňte uspořádání stránek, které se budou tisknout na každý list papíru. Náhled ukáže, jak bude vypadat každý výsledný list papíru."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "D_alší"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Rozvržení stránky"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Obecné"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Vytiskne aktuální dokument, výběr nebo určené stránky. Také je možné nastavit volby tisku pro aktuální dokument."
diff --git a/source/cy/chart2/messages.po b/source/cy/chart2/messages.po
index ecdff67f1fd..da0ff39857f 100644
--- a/source/cy/chart2/messages.po
+++ b/source/cy/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-09-13 16:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/cy/>\n"
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Gosodwch nifer y llinellau ar gyfer y math siart Colofn a Llinell."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Dewiswch fath o siart sylfaenol."
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 695aed3597a..da125070d41 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-10 10:03+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565800847.000000\n"
#. GyY9M
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Awtomatig"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Cyferbynnedd Uchel"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Ocsigen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Clasurol"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Seifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Awel"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Yn pennu'r arddull eicon ar gyfer eiconau mewn bariau offer a deialogau."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "_Arddull eicon:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Ychwanegwch ragor o themâu eicon trwy estyniad"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Arddull Eicon"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Mae angen ailgychwyn"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Defnyddio cyflymu c_aledwedd"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Yn cyrchu nodweddion caledwedd yr addasydd arddangos graffigol yn uniongyrchol i wella'r dangosydd sgrin."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Defnyddio _llyfnhau"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Pan fydd yn cael ei gefnogi, gallwch alluogi ac analluogi llyfnhau graffeg. Gyda llyfnhau wedi'i alluogi, mae dangos y mwyafrif o wrthrychau graffigol yn llyfnach a gyda llai o arteffactau."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Defnyddio Skia ar gyfer yr holl rendro"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Gorfodi rendro meddalwedd Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Mae angen ailgychwyn. Bydd galluogi hwn yn atal y defnydd o yrwyr graffigol."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Mae Skia wedi'i alluogi ar hyn o bryd."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Ar hyn o bryd mae Skia wedi ei analluogi."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Allbwn Graffigau"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Dangos _rhagolwg ffontiau"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Yn dangos enwau ffontiau dewisaday yn y ffont gyfatebol, er enghraifft, ffontiau yn y blwch Ffont ar y bar Fformatio."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "_Llyfnhau ffont sgrin"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Dewiswch i lyfnhau ymddangosiad sgrin testun."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_oddi wrth:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Rhowch y maint ffont lleiaf i'w llyfnhau."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Rhestrau Font"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Rhedeg Profion Graffigol"
diff --git a/source/cy/dbaccess/messages.po b/source/cy/dbaccess/messages.po
index a946c50901a..f90f342e561 100644
--- a/source/cy/dbaccess/messages.po
+++ b/source/cy/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-11-19 08:37+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565695943.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Creu cronfa ddata _newydd"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Dewis i greu cronfa ddata newydd."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Cronfa ddata mewnosodedig:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Agor ffeil cronfa ddata _presennol"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Dewis i agor ffeil cronfa ddata o restr o ffeiliau a ddefnyddiwyd yn ddiweddar nei o ddeialog dewis ffeiliau."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_Defnyddiwyd yn ddiweddar:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Dewiswch y ffeil cronfa ddata i'w hagor o'r rhestr o ffeiliau a ddefnyddiwyd yn ddiweddar. Cliciwch Gorffen i agor y ffeil ar unwaith ac i adael y dewin."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Agor"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Yn agor deialog dewis ffeiliau lle gallwch ddewis ffeil cronfa ddata. Cliciwch Agor neu Iawn yn y dialog dewis ffeiliau i agor y ffeil ar unwaith ac i adael y dewin."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Cysylltu i gronfa ddata p_resennol"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Dewiswch i greu dogfen gronfa ddata ar gyfer cysylltiad cronfa ddata sy'n bodoli eisoes."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Dewiswch y math o gronfa ddata ar gyfer y cysylltiad cronfa ddata bresennol."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3471,7 +3471,7 @@ msgstr ""
"ar gael yn y gosodiad yma."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Mae'r Dewin Cronfa Ddata yn creu ffeil gronfa ddata sy'n cynnwys gwybodaeth am gronfa ddata."
diff --git a/source/cy/extensions/messages.po b/source/cy/extensions/messages.po
index dbff83dbc3e..187a6c491ed 100644
--- a/source/cy/extensions/messages.po
+++ b/source/cy/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/cy/>\n"
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Adnewyddu'r ffurflen"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Estyn"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Cofnod"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Aml ddarn"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Testun"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Safonol (byr)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Safonol (byr YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Safonol (byr YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Safonol (hir)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/BB"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/BB"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "BB/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/BBBB"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/BBBB"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "BBBB/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "BB-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "BBBB-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Heb ei Ddewis"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Dewiswyd"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Heb ei Ddiffinio"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Pob cofnod"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Cofnodion byw"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Tudalen bresennol"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Na"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Iawn"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Ffurflen Rhiant"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_gwag"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_rhiant"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_hunan"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_brig"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Dim"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Sengl"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Aml"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Amrediad"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Llorweddol"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Fertigol"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Rhagosodiad"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "Iawn"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Diddymu"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Cymorth"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Y cofnod dewiswyd"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Safle'r cofnod dewiswyd"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Llinell sengl"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Aml-linell"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Aml-linell gyda fformatio"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Dim"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Llorweddol"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Fertigol"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Y ddau"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Gwastad"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Brig chwith"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Canoli i'r chwith"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Gwaelod chwith"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Brig de"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Canoli i'r dde"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Gwaelod de"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Uwchlaw chwith"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Canoli uwchlaw"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Uwchlaw de"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Islaw chwith"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Canoli islaw"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Islaw de"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Canolwyd"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Diogelu"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Amnewid"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Cwympo"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Na"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Cadw Cymhareb"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Ffitio i'r Maint"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Chwith i dde"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "De i chwith"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Defnyddio gosodiadau gwrthrych uwcholyn"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Byth"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Wedi ffocysu"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Bob tro"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "I Baragraff"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Fel Nod"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "I Dudalen"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "I Ffrâm"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "I Nod"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "I Dudalen"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "I Gell"
diff --git a/source/cy/fpicker/messages.po b/source/cy/fpicker/messages.po
index 65068f653c5..2c010a563c3 100644
--- a/source/cy/fpicker/messages.po
+++ b/source/cy/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-01-26 17:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/cy/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Dyddiad newidwyd"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "_Agor"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "_Chwarae"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "_Enw ffeil:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Math o ffeil:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Darllen-yn-unig"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Cadw gyda chyfrinair"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Estyniad enw ffeil awtomatig"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "_Golygu gosodiadau'r hidl"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Amgryptio gydag allwedd GPG"
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index d02aec9f4ff..f74ce1d656d 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/sc/messages.po
@@ -3,10 +3,10 @@ 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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2021-11-23 14:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
-"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/cy/>\n"
+"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/cy/>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1031,7 +1031,7 @@ msgstr "Thesawrws"
#: sc/inc/globstr.hrc:179
msgctxt "STR_FILL_TAB"
msgid "Fill Sheets"
-msgstr "Dalenni llanw"
+msgstr "Dalennau llanw"
#. GzG9j
#: sc/inc/globstr.hrc:180
@@ -1758,7 +1758,7 @@ msgstr "Dangos Dalen"
#: sc/inc/globstr.hrc:306
msgctxt "STR_UNDO_SHOWTABS"
msgid "Show Sheets"
-msgstr "Dangos Dalenni"
+msgstr "Dangos Dalennau"
#. RpgBp
#: sc/inc/globstr.hrc:307
@@ -1770,7 +1770,7 @@ msgstr "Cuddio dalen"
#: sc/inc/globstr.hrc:308
msgctxt "STR_UNDO_HIDETABS"
msgid "Hide sheets"
-msgstr "Cuddio Dalenni"
+msgstr "Cuddio Dalennau"
#. dcXQA
#: sc/inc/globstr.hrc:309
@@ -2048,7 +2048,7 @@ msgstr "Methu mewnosod y tabl."
#: sc/inc/globstr.hrc:352
msgctxt "STR_TABREMOVE_ERROR"
msgid "The sheets could not be deleted."
-msgstr "Methu dileu'r dalenni."
+msgstr "Methu dileu'r dalennau."
#. SQGAE
#: sc/inc/globstr.hrc:353
@@ -3539,7 +3539,7 @@ msgid ""
"The document contains more sheets than supported in the selected format.\n"
"Additional sheets were not saved."
msgstr ""
-"Mae'r ddogfen yn cynnwys mwy o ddalenni na mae'r fformat hwn yn ei gynnal.\n"
+"Mae'r ddogfen yn cynnwys mwy o ddalennau na mae'r fformat hwn yn ei gynnal.\n"
"Nid yw'r colofnau ychwanegol wedi eu cadw."
#. UbTaD
@@ -16910,14 +16910,14 @@ msgstr "Testun"
#: sc/inc/strings.hrc:87
msgctxt "STR_DLG_SELECTTABLES_TITLE"
msgid "Select Sheets"
-msgstr "Dewis Dalenni"
+msgstr "Dewis Dalennau"
#. SEDS2
#. Select tables dialog listbox
#: sc/inc/strings.hrc:89
msgctxt "STR_DLG_SELECTTABLES_LBNAME"
msgid "~Selected sheets"
-msgstr "~Dalenni dewiswyd"
+msgstr "~Y dalennau a ddewiswyd"
#. SfEhE
#: sc/inc/strings.hrc:90
@@ -24081,7 +24081,7 @@ msgstr "Tablau mewn ffeil"
#: sc/uiconfig/scalc/ui/insertsheet.ui:393
msgctxt "insertsheet|extended_tip|tables"
msgid "If you selected a file by using the Browse button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box."
-msgstr "Os gwnaethoch ddewis ffeil trwy ddefnyddio'r botwm Pori, mae'r dalenni sydd ynddo yn cael eu dangos yn y blwch rhestr. Mae'r llwybr ffeiliau i'w weld o dan y blwch hwn. Dewiswch y ddalen i'w mewnosod o'r blwch rhestr."
+msgstr "Os gwnaethoch ddewis ffeil trwy ddefnyddio'r botwm Pori, mae'r dalennau sydd ynddi'n cael eu dangos yn y blwch rhestr. Mae'r llwybr ffeiliau i'w gweld o dan y blwch hwn. Dewiswch y ddalen i'w mewnosod o'r blwch rhestr."
#. mGqDq
#: sc/uiconfig/scalc/ui/insertsheet.ui:412
@@ -25269,97 +25269,97 @@ msgid "~View"
msgstr "~Golwg"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "_Delwedd"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Lluniadu"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Gwrthrych"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Argraffu"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~Argraffu"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_styniad"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~styniad"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -25718,139 +25718,139 @@ msgid "Im_age"
msgstr "_Delwedd"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Trefnu"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "L_liw"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Grid"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Iaith"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_Adolygu"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Nodiadau"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Cymharu"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Golwg"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "_Lluniadu"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Golygu"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Trefnu"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Golwg"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Grŵ_p"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Ffont"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Aliniad"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Golwg"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Mewnosod"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Cyfrwng"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Ffrâm"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Trefnu"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Grid"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Golwg"
@@ -26705,7 +26705,7 @@ msgstr "Yn pennu mai dim ond cynnwys o daflenni dethol sy'n cael ei argraffu, hy
#: sc/uiconfig/scalc/ui/optdlg.ui:119
msgctxt "optdlg|label2"
msgid "Sheets"
-msgstr "Dalenni"
+msgstr "Dalennau"
#. JptgQ
#: sc/uiconfig/scalc/ui/optdlg.ui:135
@@ -29843,7 +29843,7 @@ msgstr "Dangos Dalen"
#: sc/uiconfig/scalc/ui/showsheetdialog.ui:132
msgctxt "showsheetdialog|label1"
msgid "Hidden Sheets"
-msgstr "Dalenni Cudd"
+msgstr "Dalennau Cudd"
#. 2NR97
#: sc/uiconfig/scalc/ui/showsheetdialog.ui:157
@@ -31475,7 +31475,7 @@ msgstr "Celloedd:"
#: sc/uiconfig/scalc/ui/statisticsinfopage.ui:76
msgctxt "statisticsinfopage|label2"
msgid "Sheets:"
-msgstr "Dalenni:"
+msgstr "Dalennau:"
#. BnU73
#: sc/uiconfig/scalc/ui/statisticsinfopage.ui:103
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index 693fe249dae..ec5e3d304f5 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-04 19:38+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565695968.000000\n"
#. WDjkB
@@ -4177,109 +4177,109 @@ msgid "~Table"
msgstr "~Tabl"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Delwedd"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Lluniadu"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Gwrthrych"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "~Prif"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~Prif"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_styniad"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~styniad"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -7066,109 +7066,109 @@ msgid "~Table"
msgstr "~Tabl"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Delwedd"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Lluniadu"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Lluniadu"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Gwrthrych"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Gwrthrych"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Cyfrwng"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "~Prif"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~Prif"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_styniad"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~styniad"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "~Offer"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index 99c4bc23a34..2121f51674e 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-04 19:39+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565695976.000000\n"
#. v3oJv
@@ -10527,19 +10527,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Symud yr arddull paragraff a ddewiswyd i lawr un lefel yn yr hierarchaeth mynegai."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Arddull"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Arddulliau"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Yn creu cofnodion mynegai o arddulliau paragraff penodol."
@@ -13983,37 +13983,37 @@ msgid "Exchange Databases"
msgstr "Cyfnewid Cronfeydd Data"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Diffinio"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Cronfeydd Data ar waith"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Cronfeydd _Data ar Gael"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Pori..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Yn agor deialog ffeil agored i ddewis ffeil cronfa ddata (* .odb). Bydd y y ffeil a ddewiswyd yn cael ei hychwanegu at y rhestr Cronfeydd Data sydd ar Gael."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14023,31 +14023,31 @@ msgstr ""
"Defnyddiwch y botwm pori i ddewis ffeil cronfa ddata."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Yn rhestru'r cronfeydd data sy'n cael eu defnyddio ar hyn o bryd."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Yn rhestru'r cronfeydd data sydd wedi'u cofrestru yn %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Cyfnewid Cronfeydd Data"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Cronfa Ddata cysylltiedig â'r ddogfen:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Newid y ffynonellau data ar gyfer y ddogfen gyfredol."
@@ -20101,109 +20101,109 @@ msgid "Use the current _document"
msgstr "Defnyddio'r _ddogfen gyfredol"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Yn defnyddio'r ddogfen Write gyfredol fel sylfaen ar gyfer y ddogfen cyfuno post."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Creu dogfen _newydd"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Yn creu dogfen Write newydd i'w defnyddio ar gyfer cyfuno post."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Cychwyn o _ddogfen newydd"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Dewiswch ddogfen Writer bresennol i'w defnyddio fel sylfaen ar gyfer y ddogfen cyfuno post."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Cychwyn o _dempled"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Dewiswch y templed rydych am greu eich dogfen cyfuno post gydag ef."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "C_ychwyn o ddogfen gychwyn cadwyd yn ddiweddar"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Defnyddiwch ddogfen cyfuno post sy'n bodoli eisoes fel sylfaen ar gyfer dogfen cyfuno post newydd."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Dewis y ddogfen"
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "_Pori..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Lleolwch y ddogfen Write rydych am ei defnyddio, ac yna cliciwch Agor."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "_Pori..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Yn agor deialog dewisydd templed."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Nid yw ffynhonnell data'r ddogfen gyfredol wedi ei chofrestri. Cyfnewidiwch y gronfa ddata."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Cyfnewid Cronfa Ddata..."
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Dewis Dogfen Gychwynnol ar gyfer Cyfuno Post"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Pennwch y ddogfen rydych am ei defnyddio fel sylfaen ar gyfer y ddogfen cyfuno post."
@@ -22346,49 +22346,49 @@ msgid "Object"
msgstr "Gwrthrych"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Math"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Dewisiadau"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Amlapio"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Dolen"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Borderi"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Ardal"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Tryloywder"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27084,7 +27084,7 @@ msgid "Update"
msgstr "Diweddaru"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Yn dangos ystadegau ar gyfer y ffeil gyfredol."
diff --git a/source/cy/vcl/messages.po b/source/cy/vcl/messages.po
index 27049a991b8..1ba4b608c10 100644
--- a/source/cy/vcl/messages.po
+++ b/source/cy/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-09-13 16:36+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/cy/>\n"
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Argraffu tudalennau lluosog fesul dalen o bapur."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Cyfaddasu"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Dewiswch faint o dudalennau i'w hargraffu fesul dalen o bapur."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Tudalennau:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Dewiswch nifer y rhesi."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "gan"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Dewiswch nifer y colofnau."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Ymyl:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Dewiswch ymyl rhwng tudalennau unigol ar bob dalen o bapur."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "rhwng tudalennau"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Pellter:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Dewiswch ymyl rhwng y tudalennau argraffedig ac ymyl papur."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "i forder y ddalen"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Trefn"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Chwith i'r dde, ac yna i lawr"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Brig i'r gwaelod, yna i'r dde"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Brig i'r gwaelod, yna i'r chwith"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "De i'r chwith, yna i lawr"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Dewiswch y drefn y bydd tudalennau'n cael eu hargraffu."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Gosod border o amgylch pob tudalen"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Gwiriwch i dynnu border o amgylch pob tudalen."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Llyfryn"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Dewis i argraffu'r ddogfen yn fformat llyfryn."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Rhagolwg coladu"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Newid trefn y tudalennau i'w hargraffu ar bob dalen o bapur. Mae'r rhagolwg yn dangos sut y bydd pob dalen olaf o bapur yn edrych."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "R_hagor"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Cynllun Tudalen"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Cyffredinol"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Yn argraffu'r ddogfen gyfredol, y detholiad, neu'r tudalennau rydych chi'n eu nodi. Gallwch hefyd osod y dewisidau argraffu ar gyfer y ddogfen gyfredol."
diff --git a/source/da/chart2/messages.po b/source/da/chart2/messages.po
index 2dba576971e..4425e893939 100644
--- a/source/da/chart2/messages.po
+++ b/source/da/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-22 00:39+0000\n"
"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/da/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547493259.000000\n"
#. NCRDD
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Definer antal kurver for typen søjle- og kurvediagram."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Vælg en basal diagramtype."
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index 9b6a3db652c..c6e7a24d480 100644
--- a/source/da/cui/messages.po
+++ b/source/da/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-05-22 12:53+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/da/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562743938.000000\n"
#. GyY9M
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatisk"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Høj kontrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klassisk"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Specificerer ikonstil for ikoner i værktøjslinje og dialoger."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Ikonstil:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Tilføj flere ikontemaer med udvidelser"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Ikontypografi"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Kræver genstart"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Brug hardwareacceleration"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Du kan tilgå hardwarefunktionerne for dit grafikkort for at forbedre skærmfremvisningen."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Brug anti-aliasing"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Når det er understøttet, kan du aktivere og deaktivere anti-aliasing af grafik. Når anti-aliasing er aktiveret, vil de fleste grafiske objekter fremstå glattere."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Brug Skia til al tegning"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Gennemtving Skia software gengivelse"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Genstart nødvendig, Aktivering af dette vil forhindre brug af grafikdrivere."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia er aktiveret i øjeblikket."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia er deaktiveret i øjeblikket."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafikoutput"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "_Forhåndsvisning af skrifttyper"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Viser navnene på tilgængelige skrifttyper i den tilsvarende skrifttype, for eksempel skrifttyper i feltet Skrifttype på værktøjslinjen Formatering."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Trim skærmskrifttyper"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Marker for at udjævne tekstens udseende på skærmen."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "_fra:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Skriv den mindste skriftstørrelse, du vil bruge antialiasing på."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Skrifttypelister"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Kør grafik-tests."
diff --git a/source/da/dbaccess/messages.po b/source/da/dbaccess/messages.po
index 01b700e7a68..1bdbacf7b34 100644
--- a/source/da/dbaccess/messages.po
+++ b/source/da/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-02-22 00:39+0000\n"
"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/da/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562523246.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Opret en ny database"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Vælg for at oprette en ny database."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Indlejret database:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Åbn en eksisterende databasefil"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Vælg for at åbne en databasefil fra en liste over nyligt brugte filer eller fra en dialog til filvalg."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Senest brugte:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Vælg en databasefil for at åbne en liste over nyligt brugte filer. Klik på Afslut for at åbne filen udmiddelbart og gå ud af guiden."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Åbn"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Åbner en filvalgsdialog, hvor du kan vælge en databasefil. Klik på Åbn eller OK i filvalgsdialogen for at åbne filen umiddelbart og gå ud af guiden."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Forbind til en eksisterende database"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Vælg for at oprette et databasedokument til en eksisterende databaseforbindelse."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Vælg en databasetype til en eksisterende databaseforbindelse."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3469,7 +3469,7 @@ msgid ""
msgstr "Det er ikke muligt at oprette en ny database, da hverken HSQLDB eller Firebird er tilgængelige i denne opsætning."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Database-guiden opretter en databasefil, der indeholder information om en database."
diff --git a/source/da/extensions/messages.po b/source/da/extensions/messages.po
index b88fe093838..4413dfb2c44 100644
--- a/source/da/extensions/messages.po
+++ b/source/da/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-11-22 01:38+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/da/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555775202.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Opdater formular"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Get"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Flerdelt"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Tekst"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standard (kort)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standard (kort YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standard (kort YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standard (lang)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "13:45"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "13:45:00"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Ikke markeret"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Valgt"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Ikke defineret"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Alle dataposter"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Aktiv datapost"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Aktuel side"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Nej"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ja"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Overordnet formular"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Ingen"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Enkelt"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Flere"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Område"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Vandret"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Lodret"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Standard"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "Ok"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Annuller"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Hjælp"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Det valgte element"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Placering af det valgte element"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Enkeltlinje"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Flerlinjet"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Flerlinjet med formatering"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Ingen"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Vandret"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Lodret"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Begge"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Flad"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Venstre top"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Venstre midte"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Venstre bund"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Højre top"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Højre midte"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Højre bund"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Over til venstre"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Over centreret"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Over til højre"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Under til venstre"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Under centreret"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Under til højre"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centreret"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Bevar"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Erstat"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Fold sammen"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Nej"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Behold proportion"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Tilpas til størrelse"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Venstre mod højre"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Højre mod venstre"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Brug indstillinger fra det overordnede objekt"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Aldrig"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Når i fokus"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Altid"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Til afsnit"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Som tegn"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Til side"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Til ramme"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Til tegn"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Til side"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "Til celle"
diff --git a/source/da/fpicker/messages.po b/source/da/fpicker/messages.po
index 4cecaccb077..bb491e8f877 100644
--- a/source/da/fpicker/messages.po
+++ b/source/da/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-03-06 20:36+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/da/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Ændringsdato"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "Åbn"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "Spil"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Fil_navn:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Fil_type:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Skrivebeskyttet"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Gem med adgangskode"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Automatisk filendelse"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Rediger _filterindstillinger"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Krypter med GPG-nøgle"
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index 863ad30bc09..52c53f75d5c 100644
--- a/source/da/sc/messages.po
+++ b/source/da/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-22 00:39+0000\n"
"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/da/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562523528.000000\n"
#. kBovX
@@ -25253,97 +25253,97 @@ msgid "~View"
msgstr "~Vis"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Bill_ede"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Draw"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Draw"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medie"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Medie"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Udskriv"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~Udskriv"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Udvidelse"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "~Udvidelse"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Funktioner"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
@@ -25702,139 +25702,139 @@ msgid "Im_age"
msgstr "Bill_ede"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Arranger"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Farve"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Gitter"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Sprog"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_Gennemsyn"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Kommentarer"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Sammenlign"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Vis"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "_Tegne"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Redigér"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Arranger"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Vis"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Gruppe"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "3_D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "Skrifttype"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Justering"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Vis"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Indsæt"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medie"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Ramme"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Arranger"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Gitter"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Vis"
diff --git a/source/da/sd/messages.po b/source/da/sd/messages.po
index ef67875309c..a2279f65303 100644
--- a/source/da/sd/messages.po
+++ b/source/da/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-02-22 00:39+0000\n"
"Last-Translator: Jesper Hertel <jesper.hertel@gmail.com>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/da/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562822671.000000\n"
#. WDjkB
@@ -4173,109 +4173,109 @@ msgid "~Table"
msgstr "~Tabel"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Billede"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Tegne"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "Tegne"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "Objekt"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Medie"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "Medie"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Master"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "Master"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Udvidelse"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "~Udvidelse"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Funktioner"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
@@ -7062,109 +7062,109 @@ msgid "~Table"
msgstr "~Tabel"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Billede"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Tegn"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Draw"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Medie"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Medie"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Master"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~Master"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "_Udvidelse"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "~Udvidelse"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index cfff41a2ad6..a92fae7f8d2 100644
--- a/source/da/sw/messages.po
+++ b/source/da/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-03-23 11:35+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/da/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562523751.000000\n"
#. v3oJv
@@ -10499,19 +10499,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Flytter den valgte afsnitstypografi et niveau ned i indekshierarkiet."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Typografi"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Typografier"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Opretter indekselementer ud fra specifikke afsnitstypografier."
@@ -13955,37 +13955,37 @@ msgid "Exchange Databases"
msgstr "Udskift databaser"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Definer"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Anvendte databaser"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "_Tilgængelige databaser"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Gennemse..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Åbner en filåbningsdialog til at vælge en database fil (*.odb). Den valgte fil bliver føjet til listen over tilgængelige databaser."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13995,31 +13995,31 @@ msgstr ""
"Brug knappen Gennemse for at vælge en databasefil."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Viser databaserne, der for øjeblikket er i brug."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Lister databaserne, som er registreret i %PRODUCTNAME."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Udskift databaser"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Database tilknyttet til dokument:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Skift datakilderne for det aktuelle dokument."
@@ -20073,109 +20073,109 @@ msgid "Use the current _document"
msgstr "Benyt det aktuelle dokument"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Bruger det aktuelle Writer-dokument som basis for brevfletningsdokumentet."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "Opret et nyt dokument"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Opretter et nyt Writer-dokument til brug for brevfletningen."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Begynd med et eksisterende dokument"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Vælg et eksisterende Writer-dokument til brug som basis for brevfletningsdokumentet."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Begynd med en skabelon"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Vælg den skabelon, som du vil oprette dit brevfletningsdokument med."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "Begynd med et netop gemt startdokument"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Brug et eksisterende brevfletningsdokument som basis for et nyt brevfletningsdokument."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Vælg dokumentet."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Gennemse..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Lokaliser det Writer-dokument du vil bruge, og klik Åbn."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Gennemse..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Åbner en skabelonvælger-dialog."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Det aktuelle dokuments datakilde er ikke registreret. Skift venligst database."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Skift database…"
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Vælg startdokument for brevfletning"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Angiv det dokument som du vil bruge som basis for brevfletningsdokumentet."
@@ -22318,49 +22318,49 @@ msgid "Object"
msgstr "Objekt"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Type"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Indstillinger"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Ombryd"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Kanter"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Område"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27056,7 +27056,7 @@ msgid "Update"
msgstr "Opdater"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Viser statistik for den aktuelle fil."
diff --git a/source/da/vcl/messages.po b/source/da/vcl/messages.po
index c5387210f88..93b48c3c655 100644
--- a/source/da/vcl/messages.po
+++ b/source/da/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2021-11-07 05:14+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/da/>\n"
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Udskriv flere sider på hvert ark papir."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Brugerdefineret"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Vælg hvor mange sider der skal udskrives på hvert ark papir."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Sider:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Vælg antal rækker."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "med"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Vælg antal kolonner."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Margen:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Vælg marginen mellem individuelle sider på hvert ark papir."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "mellem sider"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Afstand:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Vælg marginen mellem udskrivningsområdet og papirets kant."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "til arkkant"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Rækkefølge:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Venstre mod højre, så nedad"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Top til bund, så mod højre"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Top til bund, så mod venstre"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Højre mod venstre, så ned"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Vælg den rækkefølge som siderne skal udskrives i."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Tegn en kant omkring hver side"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Marker for at tegne en kant rundt om hver side."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Brochure"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Vælg at udskrive dokumentet i brochureformat."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Forhåndvisning af samling"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Skift om på opstillingen af de sider, der skal trykkes på hvert ark papir. Forhåndsvisningen viser, hvordan hvert ark papir vil se ud til sidst."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "Flere"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Sidelayout"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Generelt"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Udskriver det aktuelle dokument, markeringen eller de sider, som du angiver. Du kan også indstille udskriftsindstillingerne for det aktuelle dokument."
diff --git a/source/de/chart2/messages.po b/source/de/chart2/messages.po
index d34f4ddd03a..c21b25ced5c 100644
--- a/source/de/chart2/messages.po
+++ b/source/de/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-03-11 14:07+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/de/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547564210.000000\n"
#. NCRDD
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Legt die Linienanzahl für Säulen- und Liniendiagramme fest."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Wählen Sie einen grundlegenden Diagrammtyp aus."
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 53f891bd5c6..a3b4bc0e52e 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/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: 2022-01-10 12:20+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/de/>\n"
"Language: de\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566197858.000000\n"
#. GyY9M
@@ -8297,7 +8297,7 @@ msgstr "_Buch:"
#: cui/uiconfig/ui/editdictionarydialog.ui:137
msgctxt "editdictionarydialog|lang_label"
msgid "_Language:"
-msgstr "_Sprache:"
+msgstr "S_prache:"
#. mE3Lo
#: cui/uiconfig/ui/editdictionarydialog.ui:185
@@ -11236,7 +11236,7 @@ msgstr ""
#: cui/uiconfig/ui/imagetabpage.ui:62
msgctxt "imagetabpage|BTN_IMPORT"
msgid "Add / Import"
-msgstr "Hinzufügen / Importieren"
+msgstr "Hinzufügen / Importieren…"
#. HDX5z
#: cui/uiconfig/ui/imagetabpage.ui:68
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Automatisch"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Hoher Kontrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klassisch"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Wählen Sie das Symbolthema für die Symbole in den Symbolleisten und Dialogen aus."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Sy_mbolstil:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Fügen Sie weitere Symbolthemen über Extensions hinzu"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Symbolstil"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Erfordert Neustart"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Hard_warebeschleunigung verwenden"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Diese Option greift zur Verbesserung der Darstellung auf dem Bildschirm direkt auf die Hardwareleistungsmerkmale der Grafikkarte zu."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "_Kantenglättung verwenden"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Wenn es unterstützt wird, können Sie Antialiasing für Objekte aktivieren oder deaktivieren. Wenn Antialiasing aktiviert ist, erscheint die Ansicht der meisten grafischen Objekte glatter und mit weniger Artefakten."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Skia für das Rendern verwenden"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Rendern mittels Skia-Software erzwingen"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Neustart erforderlich. Bei Aktivierung wird die Verwendung von Grafiktreibern verhindert."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia ist gegenwärtig aktiviert."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia ist gegenwärtig deaktiviert."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Grafikausgabe"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Schriftarten_vorschau aktivieren"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Zeigt die Namen der auswählbaren Schriftarten in der entsprechenden Schriftart an, beispielsweise im Feld \"Schrift\" in der Symbolleiste Format."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Bildschirmschriftarten _glätten"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Lässt die Textdarstellung auf dem Bildschirm glatter aussehen."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "a_b:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Geben Sie die kleinste Schriftgröße ein, auf welche die Kantenglättung angewendet werden soll."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Liste der Schriftarten"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Grafiktests ausführen"
@@ -20152,7 +20128,7 @@ msgstr "Rechtschreibung: $LANGUAGE ($LOCATION)"
#: cui/uiconfig/ui/spellingdialog.ui:443
msgctxt "spellingdialog|change"
msgid "Co_rrect"
-msgstr "Ä_ndern"
+msgstr "Än_dern"
#. m7FFp
#: cui/uiconfig/ui/spellingdialog.ui:452
@@ -20176,7 +20152,7 @@ msgstr "Ersetzt alle Fundstellen des unbekannten Worts durch den aktuellen Vorsc
#: cui/uiconfig/ui/spellingdialog.ui:483
msgctxt "spellingdialog|autocorrect"
msgid "Add to _AutoCorrect"
-msgstr "Zur _AutoKorrektur hinzufügen"
+msgstr "Zur Auto_Korrektur hinzufügen"
#. xpvWk
#: cui/uiconfig/ui/spellingdialog.ui:487
diff --git a/source/de/dbaccess/messages.po b/source/de/dbaccess/messages.po
index 676773f25ba..28f9b219dbd 100644
--- a/source/de/dbaccess/messages.po
+++ b/source/de/dbaccess/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-03-23 11:35+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/de/>\n"
"Language: de\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562385716.000000\n"
#. BiN6g
@@ -1977,7 +1977,7 @@ msgstr "Spaltenübernahme"
#: dbaccess/inc/strings.hrc:347
msgctxt "STR_WIZ_TYPE_SELECT_TITEL"
msgid "Type formatting"
-msgstr "Typformatierungen"
+msgstr "Typformatierung"
#. C5Zs4
#: dbaccess/inc/strings.hrc:348
@@ -2937,7 +2937,7 @@ msgstr "Name:"
#: dbaccess/uiconfig/ui/copytablepage.ui:162
msgctxt "copytablepage|infoLabel"
msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard."
-msgstr "Existierende Datenfelder können beim Formatierungsschritt Typ (dritte Seite) des Assistenten als Primärschlüssel gesetzt werden."
+msgstr "Existierende Datenfelder können beim Schritt Typformatierung (dritte Seite) des Assistenten als Primärschlüssel gesetzt werden."
#. LqAEB
#: dbaccess/uiconfig/ui/copytablepage.ui:179
@@ -3399,73 +3399,73 @@ msgid "Create a n_ew database"
msgstr "Eine n_eue Datenbank erstellen"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Wählen Sie aus, um eine neue Datenbank zu erstellen."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Eingebettete Datenbank:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "_Bestehende Datenbankdatei öffnen"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Wählen Sie aus, um eine Datenbankdatei aus der Liste kürzlich verwendeter Dateien oder aus dem Dialog Dateiauswahl auszuwählen."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "Zu_letzt benutzt:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Wählen Sie aus, um eine Datenbankdatei aus der Liste kürzlich verwendeter Dateien zu öffnen. Klicken Sie auf »Fertigstellen«, um die Datei sofort zu öffnen und den Assistenten zu beenden."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Öffnen"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Öffnet den Dialog „Dateiauswahl“, in dem Sie eine Datenbankdatei auswählen können. Klicken Sie im Dialog „Dateiauswahl“ auf »Öffnen« oder »OK«, um die Datei sofort zu Öffnen und den Assistenten zu beenden."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "_Verbindung zu einer bestehenden Datenbank herstellen"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Wählen Sie aus, um ein Datenbankdokument zu einer bestehende Verbindung zu erstellen."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Wählen Sie den Datenbanktyp für eine bestehende Datenbankverbindung aus."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3475,7 +3475,7 @@ msgstr ""
"da weder HSQLDB noch Firebird auf diesem System verfügbar ist."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Der Datenbank-Assisent erstellt eine Datenbankdatei, die Informationen über die Datenbank enthält."
@@ -4504,7 +4504,7 @@ msgstr "_Schema:"
#: dbaccess/uiconfig/ui/saveindexdialog.ui:7
msgctxt "saveindexdialog|SaveIndexDialog"
msgid "Exit Index Design"
-msgstr "Index-Entwurf verlassen"
+msgstr "Indexentwurf verlassen"
#. k9pCR
#: dbaccess/uiconfig/ui/saveindexdialog.ui:13
diff --git a/source/de/desktop/messages.po b/source/de/desktop/messages.po
index 02a6229655f..bd145f26479 100644
--- a/source/de/desktop/messages.po
+++ b/source/de/desktop/messages.po
@@ -4,8 +4,8 @@ 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: 2022-02-28 03:39+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2022-06-15 20:57+0000\n"
+"Last-Translator: bx7aah <dl7und@gmail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/desktopmessages/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1558846552.000000\n"
#. v2iwK
@@ -566,7 +566,7 @@ msgstr "Unbekannter Fehler."
#: desktop/inc/strings.hrc:148
msgctxt "RID_DLG_UPDATE_NODESCRIPTION"
msgid "No more details are available for this update."
-msgstr "Es ist keine Beschreibung für diese Extension verfügbar."
+msgstr "Für dieses Update sind keine weiteren Informationen verfügbar."
#. NECjC
#: desktop/inc/strings.hrc:149
diff --git a/source/de/extensions/messages.po b/source/de/extensions/messages.po
index bf0b45db151..e6a2c231c5e 100644
--- a/source/de/extensions/messages.po
+++ b/source/de/extensions/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: 2021-11-19 15:43+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/de/>\n"
"Language: de\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: 1555474560.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Formular aktualisieren"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Get"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Post"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Mehrteilig"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Text"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standard (kurz)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standard (kurz JJ)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standard (kurz JJJJ)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standard (lang)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "TT/MM/JJ"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/TT/JJ"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "JJ/MM/TT"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "TT/MM/JJJJ"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/TT/JJJJ"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "JJJJ/MM/TT"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "JJ-MM-TT"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "JJJJ-MM-TT"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Nicht ausgewählt"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Ausgewählt"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Nicht definiert"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Alle Datensätze"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Aktueller Datensatz"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Aktuelle Seite"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Nein"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ja"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Übergeordnetes Formular"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Keine"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Einfach"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Mehrfach"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Bereich"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horizontal"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Vertikal"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Standard"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "OK"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Abbrechen"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Hilfe"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Der ausgewählte Eintrag"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Position des ausgewählten Eintrags"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Einzeilig"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Mehrzeilig"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Mehrzeilig mit Formatierung"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Keine"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horizontal"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Vertikal"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Beide"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Flach"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Links oben"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Links mittig"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Links unten"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Rechts oben"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Rechts mittig"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Rechts unten"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Oben links"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Oben zentriert"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Oben rechts"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Unten links"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Unten zentriert"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Unten rechts"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Zentriert"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Erhalten"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Ersetzen"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Zusammenfassen"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Nein"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Größenverhältnis beibehalten"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Automatische Größe"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Links-nach-Rechts"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Rechts-nach-Links"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Einstellungen des übergeordneten Objekts verwenden"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Nie"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Wenn ausgewählt"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Immer"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Am Absatz"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Als Zeichen"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "An der Seite"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Am Rahmen"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Am Zeichen"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "An der Seite"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "An der Zelle"
@@ -4444,7 +4432,7 @@ msgstr "Mehrzeilige Bearbeitung"
#: extensions/uiconfig/spropctrlr/ui/taborder.ui:18
msgctxt "taborder|TabOrderDialog"
msgid "Tab Order"
-msgstr "Register-Reihenfolge"
+msgstr "Tabulatorreihenfolge"
#. bdEtz
#: extensions/uiconfig/spropctrlr/ui/taborder.ui:147
diff --git a/source/de/filter/messages.po b/source/de/filter/messages.po
index efdfe582dfb..4c7f10dc68b 100644
--- a/source/de/filter/messages.po
+++ b/source/de/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: 2021-11-19 15:43+0100\n"
-"PO-Revision-Date: 2022-02-28 03:39+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/filtermessages/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1562385794.000000\n"
#. 5AQgJ
@@ -682,7 +682,7 @@ msgstr "PDF/A-Version:"
#: filter/uiconfig/ui/pdfgeneralpage.ui:748
msgctxt "pdfgeneralpage|pdfua"
msgid "Universal Accessibilit_y (PDF/UA)"
-msgstr "Barrierefreiheit (PDF/UA)"
+msgstr "Universelle Zugänglichkeit (PDF/UA)"
#. 4B3FD
#: filter/uiconfig/ui/pdfgeneralpage.ui:752
diff --git a/source/de/fpicker/messages.po b/source/de/fpicker/messages.po
index 857f4b40db6..d2384254903 100644
--- a/source/de/fpicker/messages.po
+++ b/source/de/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-04-25 06:37+0000\n"
"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/de/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Letzte Änderung"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "Ö_ffnen"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "~Wiedergeben"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Datei_name:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Datei_typ:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Schreibgeschützt"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Mit Kennwort speichern"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "Automatische Datei_endung"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Filtereinstellungen _bearbeiten"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Mit GPG-Schlüssel verschlüsseln"
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index 2edf3e411ef..4c1520acc4f 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared/de/>\n"
"Language: de\n"
@@ -42242,7 +42242,7 @@ msgctxt ""
"par_id221622764991492\n"
"help.text"
msgid "Converts <emph>Text</emph> characters from Unicode to the default code page of the system."
-msgstr ""
+msgstr "Wandelt Zeichen in <emph>Text</emph> von Unicode in die Standard-Codepage des Systems um."
#. B2oeo
#: strconv.xhp
@@ -42251,7 +42251,7 @@ msgctxt ""
"par_id761622765118156\n"
"help.text"
msgid "<emph>LCID</emph> Optional. The Locale ID in decimal number. If this parameter is omitted, it assumes the system Locale ID. Refer to the file <link href=\"https://opengrok.libreoffice.org/xref/core/l10ntools/source/ulfconv/msi-encodinglist.txt\" name=\"LCID\">msi-encodinglist.txt</link> for the available LCID values."
-msgstr ""
+msgstr "<emph>LCID</emph> Optional. Die Gebietsschema-ID als Dezimalzahl. Wenn dieser Parameter weggelassen wird, wird von der Gebietsschema-ID ausgegangen. Siehe die Datei <link href=\"https://opengrok.libreoffice.org/xref/core/l10ntools/source/ulfconv/msi-encodinglist.txt\" name=\"LCID\">msi-encodinglist.txt</link> für mögliche Werte für LCID."
#. CdCwD
#: strconv.xhp
@@ -42260,7 +42260,7 @@ msgctxt ""
"par_id311622770486052\n"
"help.text"
msgid "REM Converts narrow (single-byte) characters in string to wide"
-msgstr ""
+msgstr "REM Wandelt schmale Zeichen (Einzelbyte) in der Zeichenfolge in breite Zeichen (Doppelbyte) um"
#. ysFBA
#: strconv.xhp
@@ -42269,7 +42269,7 @@ msgctxt ""
"par_id231622770493491\n"
"help.text"
msgid "REM Converts wide (double-byte) characters in string to narrow (single-byte) characters"
-msgstr ""
+msgstr "REM Wandelt breite Zeichen (Doppelbyte) in der Zeichenfolge in schmale Zeichen (Einzelbyte) um"
#. EitmH
#: strconv.xhp
@@ -42278,7 +42278,7 @@ msgctxt ""
"par_id871622770498992\n"
"help.text"
msgid "REM Converts Hiragana characters in string to Katakana characters"
-msgstr ""
+msgstr "REM Wandelt Hiragana-Zeichen in der Zeichenfolge in Katakana-Zeichen um"
#. WxMQr
#: strconv.xhp
@@ -42287,7 +42287,7 @@ msgctxt ""
"par_id351622770504087\n"
"help.text"
msgid "REM Converts Katakana characters in string to Hiragana characters"
-msgstr ""
+msgstr "REM Wandelt Katakana-Zeichen in der Zeichenfolge in Hiragana-Zeichen um"
#. 9sG37
#: strconv.xhp
@@ -42314,7 +42314,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ThisDatabaseDocument object"
-msgstr ""
+msgstr "Objekt ThisDatabaseDocument"
#. rDs9b
#: thisdbdoc.xhp
@@ -42323,7 +42323,7 @@ msgctxt ""
"N0089\n"
"help.text"
msgid "<bookmark_value>ThisDatabaseDocument</bookmark_value> <bookmark_value>API; Database document</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ThisDatabaseDocument</bookmark_value><bookmark_value>API; Datenbankdokument</bookmark_value>"
#. v4XLY
#: thisdbdoc.xhp
@@ -42332,7 +42332,7 @@ msgctxt ""
"hd_id401544551916353\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/thisdbdoc.xhp\" name=\"ThisDatabaseDocument\">ThisDatabaseDocument object</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/thisdbdoc.xhp\" name=\"ThisDatabaseDocument\">Objekt ThisDatabaseDocument</link>"
#. CT58E
#: thisdbdoc.xhp
@@ -42341,7 +42341,7 @@ msgctxt ""
"N0091\n"
"help.text"
msgid "<literal>ThisDatabaseDocument</literal> addresses the active <literal>Base</literal> document whose properties can be read and set, and whose methods can be called."
-msgstr ""
+msgstr "<literal>ThisDatabaseDocument</literal> adressiert das aktive <literal>Base</literal>-Dokument, dessen Eigenschaften gelesen und geschrieben und dessen Methoden aufgerufen werden können."
#. umGF9
#: thisdbdoc.xhp
@@ -42350,7 +42350,7 @@ msgctxt ""
"par_id241622646033201\n"
"help.text"
msgid "<literal>ThisDatabaseDocument</literal> returns an object of type <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"XOfficeDatabaseDocument interface\">com.sun.star.sdb.XOfficeDatabaseDocument</link>."
-msgstr ""
+msgstr "<literal>ThisDatabaseDocument</literal> gibt ein Objekt vom Typ <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"XOfficeDatabaseDocument interface\">com.sun.star.sdb.XOfficeDatabaseDocument</link> zurück."
#. EFj3T
#: thisdbdoc.xhp
@@ -42359,7 +42359,7 @@ msgctxt ""
"par_id241622797081182\n"
"help.text"
msgid "When the active window does not relate to a Base document, <literal>ThisDatabaseDocument</literal> returns <literal>Nothing</literal>."
-msgstr ""
+msgstr "Wenn sich das aktive Fenster nicht auf ein Base-Dokument bezieht, gibt <literal>ThisDatabaseDocument</literal> <literal>Nichts</literal> zurück."
#. WvPJY
#: thisdbdoc.xhp
@@ -42368,7 +42368,7 @@ msgctxt ""
"par_id871622796485123\n"
"help.text"
msgid "When the active window is the Basic IDE, <literal>ThisDatabaseDocument</literal> object returns the database owning the current script."
-msgstr ""
+msgstr "Wenn das aktive Fenster die Basis-IDE ist, gibt das Objekt <literal>ThisDatabaseDocument</literal> die Datenbank, welche das aktuelle Skript besitzt, zurück."
#. DrF8G
#: thisdbdoc.xhp
@@ -42377,7 +42377,7 @@ msgctxt ""
"par_id631622806529469\n"
"help.text"
msgid "Opening current database \"formName\" and maximizing it can be achieved as shown:"
-msgstr ""
+msgstr "Das Öffnen der aktuellen Datenbank \"formName\" und deren Maximierung kann wie gezeigt erreicht werden:"
#. wxbXC
#: thisdbdoc.xhp
@@ -42386,7 +42386,7 @@ msgctxt ""
"par_id251622800540402\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent object\">ThisComponent</link> object"
-msgstr ""
+msgstr "Objekt <link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent object\">ThisComponent</link>"
#. 7k6AR
#: thisdbdoc.xhp
@@ -42395,7 +42395,7 @@ msgctxt ""
"par_id101622646874083\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link> API service"
-msgstr ""
+msgstr "API-Dienst <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1sdb_1_1OfficeDatabaseDocument.html\" name=\"OfficeDatabaseDocument API service\">com.sun.star.sdb.OfficeDatabaseDocument</link>"
#. 7Znag
#: thisdbdoc.xhp
@@ -42404,7 +42404,7 @@ msgctxt ""
"par_id581622646875379\n"
"help.text"
msgid "<link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link> API service"
-msgstr ""
+msgstr "API-Dienst <link href=\"https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1document_1_1OfficeDocument.html\" name=\"OfficeDocument API service\">com.sun.star.document.OfficeDocument</link>"
#. WMVc9
#: uno_objects.xhp
@@ -42449,7 +42449,7 @@ msgctxt ""
"hd_id121622648046670\n"
"help.text"
msgid "%PRODUCTNAME Global Objects"
-msgstr ""
+msgstr "Globale %PRODUCTNAME-Objekte"
#. xd3nC
#: uno_objects.xhp
@@ -42458,7 +42458,7 @@ msgctxt ""
"hd_id121622648046680\n"
"help.text"
msgid "Active document Objects"
-msgstr ""
+msgstr "Aktive Dokument-Objekte"
#. NxFfo
#: uno_objects.xhp
@@ -42467,7 +42467,7 @@ msgctxt ""
"par_id481622648684689\n"
"help.text"
msgid "The following objects can be used from the active document."
-msgstr ""
+msgstr "Die folgenden Objekte können aus dem aktiven Dokument verwendet werden."
#. yFvUL
#: uno_objects.xhp
@@ -42494,7 +42494,7 @@ msgctxt ""
"hd_id151622648087678\n"
"help.text"
msgid "UNO Methods"
-msgstr ""
+msgstr "UNO-Methoden"
#. WVSFD
#: uno_objects.xhp
@@ -42503,7 +42503,7 @@ msgctxt ""
"par_id481622648684690\n"
"help.text"
msgid "Use the following methods to manage or query Unified Network Objects (UNO)."
-msgstr ""
+msgstr "Verwenden Sie die folgenden Methoden, um Unified Network Objects (UNO) zu verwalten oder abzufragen."
#. 8GF88
#: uno_objects.xhp
diff --git a/source/de/helpcontent2/source/text/sbasic/shared/03.po b/source/de/helpcontent2/source/text/sbasic/shared/03.po
index 7068cd3139e..24305780205 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared/03.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared03/de/>\n"
"Language: de\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: 1565407061.000000\n"
#. ViEWM
@@ -21128,7 +21128,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.String service (SF_String)"
-msgstr ""
+msgstr "Dienst ScriptForge.String (SF_String)"
#. ZhvDP
#: sf_string.xhp
@@ -21137,7 +21137,7 @@ msgctxt ""
"hd_id521580038927003\n"
"help.text"
msgid "<variable id=\"StringService\"><link href=\"text/sbasic/shared/03/sf_string.xhp\" name=\"String service\"><literal>ScriptForge</literal>.<literal>String</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"StringService\"><link href=\"text/sbasic/shared/03/sf_string.xhp\" name=\"String service\">Dienst <literal>ScriptForge</literal>.<literal>String</literal></link></variable>"
#. yaisH
#: sf_string.xhp
@@ -21146,7 +21146,7 @@ msgctxt ""
"par_id351579602570526\n"
"help.text"
msgid "The <literal>String</literal> service provides a collection of methods for string processing. These methods can be used to:"
-msgstr ""
+msgstr "Der Dienst <literal>String</literal> stellt eine Sammlung von Methoden zur Verarbeitung von Zeichenfolgen bereit. Diese Methoden können verwendet werden, um:"
#. oNvbV
#: sf_string.xhp
@@ -21155,7 +21155,7 @@ msgctxt ""
"par_id611611952070366\n"
"help.text"
msgid "Validate the contents of strings"
-msgstr ""
+msgstr "Überprüfen des Inhalts von Zeichenfolgen"
#. UmFAv
#: sf_string.xhp
@@ -21164,7 +21164,7 @@ msgctxt ""
"par_id611611952070376\n"
"help.text"
msgid "Format strings by trimming, justifying or wrapping their contents"
-msgstr ""
+msgstr "Formatieren von Zeichenfolgen, indem Sie ihren Inhalt kürzen, ausrichten oder umbrechen"
#. EZKAi
#: sf_string.xhp
@@ -21173,7 +21173,7 @@ msgctxt ""
"par_id611611952070367\n"
"help.text"
msgid "Use regular expressions to search and replace substrings"
-msgstr ""
+msgstr "Verwenden Sie reguläre Ausdrücke, um Teilzeichenfolgen zu suchen und zu ersetzen"
#. D2qPU
#: sf_string.xhp
@@ -21182,7 +21182,7 @@ msgctxt ""
"par_id611611952070368\n"
"help.text"
msgid "Apply hash algorithms on strings, etc."
-msgstr ""
+msgstr "Anwenden von Hash-Algorithmen auf Zeichenfolgen, …"
#. Nd4es
#: sf_string.xhp
@@ -21191,7 +21191,7 @@ msgctxt ""
"hd_id961579603699855\n"
"help.text"
msgid "Definitions"
-msgstr ""
+msgstr "Definitionen"
#. dQjPv
#: sf_string.xhp
@@ -21200,7 +21200,7 @@ msgctxt ""
"hd_id441579603838777\n"
"help.text"
msgid "Line breaks"
-msgstr ""
+msgstr "Zeilenumbrüche"
#. ePyj2
#: sf_string.xhp
@@ -21209,7 +21209,7 @@ msgctxt ""
"par_id791611946942340\n"
"help.text"
msgid "The <literal>String</literal> service recognizes the following line breaks:"
-msgstr ""
+msgstr "Der Dienst <literal>String</literal> erkennt die folgenden Zeilenumbrüche:"
#. o2TiZ
#: sf_string.xhp
@@ -21218,7 +21218,7 @@ msgctxt ""
"par_id151611947117831\n"
"help.text"
msgid "Symbolic name"
-msgstr ""
+msgstr "Symbolischer Name"
#. fEbm9
#: sf_string.xhp
@@ -21227,7 +21227,7 @@ msgctxt ""
"par_id721611947117831\n"
"help.text"
msgid "ASCII number"
-msgstr ""
+msgstr "ASCII-Nummer"
#. yqVHd
#: sf_string.xhp
@@ -21236,7 +21236,7 @@ msgctxt ""
"par_id761611947117831\n"
"help.text"
msgid "Line feed<br/> Vertical tab<br/> Carriage return<br/> Line feed + Carriage return<br/> File separator<br/> Group separator<br/> Record separator<br/> Next line<br/> Line separator<br/> Paragraph separator"
-msgstr ""
+msgstr "Zeilenvorschub<br/>Vertikaler Tabulator<br/>Wagenrücklauf<br/>Zeilenvorschub + Wagenrücklauf<br/>Dateitrenner<br/>Gruppentrenner<br/>Datensatztrenner<br/>Nächste Zeile<br/>Zeilentrenner<br/>Absatztrenner"
#. WCvgW
#: sf_string.xhp
@@ -21245,7 +21245,7 @@ msgctxt ""
"hd_id161579604225813\n"
"help.text"
msgid "Whitespaces"
-msgstr ""
+msgstr "Leerzeichen"
#. mFfbq
#: sf_string.xhp
@@ -21254,7 +21254,7 @@ msgctxt ""
"par_id401611948279056\n"
"help.text"
msgid "The <literal>String</literal> service recognizes the following whitespaces:"
-msgstr ""
+msgstr "Der Dienst <literal>String</literal> erkennt die folgenden Leerzeichen:"
#. U3GSy
#: sf_string.xhp
@@ -21263,7 +21263,7 @@ msgctxt ""
"par_id151611947117893\n"
"help.text"
msgid "Symbolic name"
-msgstr ""
+msgstr "Symbolischer Name"
#. ZsSFF
#: sf_string.xhp
@@ -21272,7 +21272,7 @@ msgctxt ""
"par_id721611947117855\n"
"help.text"
msgid "ASCII number"
-msgstr ""
+msgstr "ASCII-Nummer"
#. TXAFP
#: sf_string.xhp
@@ -21281,7 +21281,7 @@ msgctxt ""
"par_id761611947117835\n"
"help.text"
msgid "Space<br/> Horizontal tab<br/> Line feed<br/> Vertical tab<br/> Form feed<br/> Carriage return<br/> Next line<br/> No-break space<br/> Line separator<br/> Paragraph separator"
-msgstr ""
+msgstr "Leerzeichen<br/>Horizontaler Tabulator<br/>Zeilenvorschub<br/>Vertikaler Tabulator<br/>Seitenvorschub<br/>Wagenrücklauf<br/>Nächste Zeile<br/>Geschütztes Leerzeichen<br/>Zeilentrennzeichen<br/>Absatztrennzeichen"
#. UPByW
#: sf_string.xhp
@@ -21290,7 +21290,7 @@ msgctxt ""
"hd_id191580480825160\n"
"help.text"
msgid "Escape sequences"
-msgstr ""
+msgstr "Escape-Sequenzen"
#. JD6CK
#: sf_string.xhp
@@ -21299,7 +21299,7 @@ msgctxt ""
"par_id971611949145057\n"
"help.text"
msgid "Below is a list of escape sequences that can be used in strings."
-msgstr ""
+msgstr "Nachfolgend finden Sie eine Liste von Escape-Sequenzen, die in Zeichenfolgen verwendet werden können."
#. D4DjE
#: sf_string.xhp
@@ -21308,7 +21308,7 @@ msgctxt ""
"par_id151611947117287\n"
"help.text"
msgid "Escape Sequence"
-msgstr ""
+msgstr "Escape-Sequenz"
#. xzDai
#: sf_string.xhp
@@ -21317,7 +21317,7 @@ msgctxt ""
"par_id721611947117732\n"
"help.text"
msgid "Symbolic name"
-msgstr ""
+msgstr "Symbolischer Name"
#. rrxV4
#: sf_string.xhp
@@ -21326,7 +21326,7 @@ msgctxt ""
"par_id721611947117144\n"
"help.text"
msgid "ASCII number"
-msgstr ""
+msgstr "ASCII-Nummer"
#. fS24a
#: sf_string.xhp
@@ -21335,7 +21335,7 @@ msgctxt ""
"par_id761611947119834\n"
"help.text"
msgid "Line feed<br/> Carriage return<br/> Horizontal tab"
-msgstr ""
+msgstr "Zeilenvorschub<br/>Wagenrücklauf<br/>Horizontaler Tabulator"
#. wAbkt
#: sf_string.xhp
@@ -21344,7 +21344,7 @@ msgctxt ""
"par_id251611949474763\n"
"help.text"
msgid "To have the escape sequence \"\\n\" interpreted as an actual string, simply use \"\\\\n\" instead of <literal>\"\\\" & Chr(10).</literal>"
-msgstr ""
+msgstr "Um die Escape-Sequenz \"\\n\" als tatsächliche Zeichenfolge interpretieren zu lassen, verwenden Sie einfach \"\\\\n\" anstelle von <literal>\"\\\" & Chr(10)</literal>."
#. AYQbH
#: sf_string.xhp
@@ -21353,7 +21353,7 @@ msgctxt ""
"hd_id771579606799550\n"
"help.text"
msgid "Non-printable characters:"
-msgstr ""
+msgstr "Nicht druckbare Zeichen:"
#. WXEDi
#: sf_string.xhp
@@ -21362,7 +21362,7 @@ msgctxt ""
"par_id531579606877342\n"
"help.text"
msgid "Characters defined in the Unicode Character Database as “Other” or “Separator” are considered as non-printable characters."
-msgstr ""
+msgstr "Zeichen, die in der Unicode-Zeichendatenbank als „Andere“ oder „Trennzeichen“ definiert sind, gelten als nicht druckbare Zeichen."
#. EsBdD
#: sf_string.xhp
@@ -21371,7 +21371,7 @@ msgctxt ""
"par_id221611949584320\n"
"help.text"
msgid "Control characters (ascii code <= 0x1F) are also considered as non-printable."
-msgstr ""
+msgstr "Steuerzeichen (ASCII-Code <= 0x1F) gelten ebenfalls als nicht druckbar."
#. GfNfK
#: sf_string.xhp
@@ -21380,7 +21380,7 @@ msgctxt ""
"hd_id661579604944268\n"
"help.text"
msgid "Quotes inside strings:"
-msgstr ""
+msgstr "Anführungszeichen innerhalb von Zeichenfolgen:"
#. 6KLF9
#: sf_string.xhp
@@ -21389,7 +21389,7 @@ msgctxt ""
"par_id551579605035332\n"
"help.text"
msgid "To add quotes in strings use \\' (single quote) or \\\" (double quote). For example:"
-msgstr ""
+msgstr "Um Anführungszeichen in Zeichenfolgen einzufügen, verwenden Sie \\' (einfaches Anführungszeichen) oder \\\" (doppeltes Anführungszeichen). Beispielsweise:"
#. BKoHN
#: sf_string.xhp
@@ -21398,7 +21398,7 @@ msgctxt ""
"par_id201611949691285\n"
"help.text"
msgid "The string <literal>[str\\'i\\'ng]</literal> is interpreted as <literal>[str'i'ng]</literal>"
-msgstr ""
+msgstr "Die Zeichenfolge <literal>[Ze\\'i\\'chenfolge]</literal> wird als <literal>[Ze'i'chenfolge]</literal> interpretiert"
#. eRosR
#: sf_string.xhp
@@ -21407,7 +21407,7 @@ msgctxt ""
"par_id201611949691323\n"
"help.text"
msgid "The string <literal>[str\\\"i\\\"ng]</literal> is interpreted as <literal>[str\"i\"ng]</literal>"
-msgstr ""
+msgstr "Die Zeichenfolge <literal>[Ze\\\"i\\\"chenfolge]</literal> wird als <literal>[Ze\"i\"chenfolge]</literal> interpretiert"
#. FtzhT
#: sf_string.xhp
@@ -21416,7 +21416,7 @@ msgctxt ""
"hd_id201586594659135\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Dienstaufruf"
#. 4WFve
#: sf_string.xhp
@@ -21425,7 +21425,7 @@ msgctxt ""
"par_id141609955500101\n"
"help.text"
msgid "Before using the <literal>ScriptForge.String</literal> service the <literal>ScriptForge</literal> library needs to be loaded using:"
-msgstr ""
+msgstr "Vor der Verwendung des Dienstes <literal>ScriptForge.String</literal> muss die Bibliothek <literal>ScriptForge</literal> geladen werden mit:"
#. znLHV
#: sf_string.xhp
@@ -21434,7 +21434,7 @@ msgctxt ""
"par_id271627158844922\n"
"help.text"
msgid "Loading the library will create the <literal>SF_String</literal> object that can be used to call the methods in the <literal>String</literal> service."
-msgstr ""
+msgstr "Durch das Laden der Bibliothek wird das Objekt <literal>SF_String</literal> erstellt, das verwendet werden kann, um die Methoden im Dienst <literal>String</literal> aufzurufen."
#. e2Gty
#: sf_string.xhp
@@ -21443,7 +21443,7 @@ msgctxt ""
"par_id63158659509728\n"
"help.text"
msgid "The following code snippets show the three ways to call methods from the <literal>String</literal> service (the <literal>Capitalize</literal> method is used as an example):"
-msgstr ""
+msgstr "Die folgenden Codeschnipsel zeigen die drei Möglichkeiten zum Aufrufen von Methoden aus dem Dienst <literal>String</literal> (die Methode <literal>Capitalize</literal> wird als Beispiel verwendet):"
#. UE3DL
#: sf_string.xhp
@@ -21452,7 +21452,7 @@ msgctxt ""
"par_id761627158463235\n"
"help.text"
msgid "The code snippet below illustrates how to invoke methods from the <literal>String</literal> service in Python scripts. The <literal>IsIPv4</literal> method is used as an example."
-msgstr ""
+msgstr "Der folgende Codeschnipsel veranschaulicht, wie Methoden aus dem Dienst <literal>String</literal> in Python-Skripten aufgerufen werden. Als Beispiel wird die Methode <literal>IsIPv4</literal> verwendet."
#. GfEcK
#: sf_string.xhp
@@ -21461,7 +21461,7 @@ msgctxt ""
"hd_id651584978211886\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschaften"
#. qKhL4
#: sf_string.xhp
@@ -21470,7 +21470,7 @@ msgctxt ""
"par_id241611950267068\n"
"help.text"
msgid "The <literal>SF_String</literal> object provides the following properties for Basic scripts:"
-msgstr ""
+msgstr "Das Objekt <literal>SF_String</literal> stellt die folgenden Eigenschaften für Basic-Skripte bereit:"
#. FDjPb
#: sf_string.xhp
@@ -21479,7 +21479,7 @@ msgctxt ""
"par_id271584978211792\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. HGYbF
#: sf_string.xhp
@@ -21506,7 +21506,7 @@ msgctxt ""
"par_id71584978715562\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. YJA6w
#: sf_string.xhp
@@ -21515,7 +21515,7 @@ msgctxt ""
"par_id581584978715701\n"
"help.text"
msgid "Carriage return: Chr(13)"
-msgstr ""
+msgstr "Wagenrücklauf: Chr(13)"
#. NCbTs
#: sf_string.xhp
@@ -21524,7 +21524,7 @@ msgctxt ""
"par_id211584978211383\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. xht7K
#: sf_string.xhp
@@ -21533,7 +21533,7 @@ msgctxt ""
"par_id691584978211774\n"
"help.text"
msgid "Carriage return + Linefeed: Chr(13) & Chr(10)"
-msgstr ""
+msgstr "Wagenrücklauf + Zeilenvorschub: Chr(13) & Chr(10)"
#. ennLs
#: sf_string.xhp
@@ -21542,7 +21542,7 @@ msgctxt ""
"par_id671584978666689\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. pdykp
#: sf_string.xhp
@@ -21551,7 +21551,7 @@ msgctxt ""
"par_id951584978666296\n"
"help.text"
msgid "Linefeed: Chr(10)"
-msgstr ""
+msgstr "Zeilenvorschub: Chr(10)"
#. TTF6v
#: sf_string.xhp
@@ -21560,7 +21560,7 @@ msgctxt ""
"par_id421584978666327\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. 9djV3
#: sf_string.xhp
@@ -21569,7 +21569,7 @@ msgctxt ""
"par_id901584978666158\n"
"help.text"
msgid "Carriage return + Linefeed, which can be<br/>1) Chr(13) & Chr(10) or <br/>2) Linefeed: Chr(10) <br/>depending on the operating system."
-msgstr ""
+msgstr "Wagenrücklauf + Zeilenvorschub, das je nach Betriebssystem<br/>1) Chr(13) & Chr(10) oder<br/>2) Zeilenvorschub: Chr(10)<br/>sein kann."
#. EMV7g
#: sf_string.xhp
@@ -21578,7 +21578,7 @@ msgctxt ""
"par_id541584978666991\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. VrjGQ
#: sf_string.xhp
@@ -21587,7 +21587,7 @@ msgctxt ""
"par_id741584978666508\n"
"help.text"
msgid "Horizontal tabulation: Chr(9)"
-msgstr ""
+msgstr "Horizontale Tabulator: Chr(9)"
#. Ee5CF
#: sf_string.xhp
@@ -21596,7 +21596,7 @@ msgctxt ""
"par_id461584978880380\n"
"help.text"
msgid "You can use the properties above to identify or insert the corresponding characters inside strings. For example, the Linefeed can be replaced by <literal>SF_String.sfLF</literal>."
-msgstr ""
+msgstr "Sie können die obigen Eigenschaften verwenden, um die entsprechenden Zeichen in Zeichenfolgen zu identifizieren oder einzufügen. Beispielsweise kann der Zeilenvorschub mittels <literal>SF_String.sfLF</literal> ersetzt werden."
#. TFfR3
#: sf_string.xhp
@@ -21605,7 +21605,7 @@ msgctxt ""
"par_id151611951803163\n"
"help.text"
msgid "The first argument of most methods is the string to be considered. It is always passed by reference and left unchanged. Methods such as <literal>Capitalize</literal>, <literal>Escape</literal>, etc return a new string after their execution."
-msgstr ""
+msgstr "Das erste Argument der meisten Methoden ist die zu berücksichtigende Zeichenfolge. Sie wird immer als Referenz übergeben und unverändert gelassen. Methoden wie <literal>Capitalize</literal>, <literal>Escape</literal> und so weiter geben nach ihrer Ausführung eine neue Zeichenfolge zurück."
#. PYcny
#: sf_string.xhp
@@ -21614,7 +21614,7 @@ msgctxt ""
"par_id371627158142730\n"
"help.text"
msgid "Because Python has comprehensive built-in string support, most of the methods in the <literal>String</literal> service are available for Basic scripts only. The methods available for Basic and Python are: <literal>HashStr</literal>, <literal>IsADate</literal>, <literal>IsEmail</literal>, <literal>IsFileName</literal>, <literal>IsIBAN</literal>, <literal>IsIPv4</literal>, <literal>IsLike</literal>, <literal>IsSheetName</literal>, <literal>IsUrl</literal>, <literal>SplitNotQuoted</literal> and <literal>Wrap</literal>."
-msgstr ""
+msgstr "Da Python über eine umfassende integrierte Zeichenfolgenunterstützung verfügt, sind die meisten Methoden im Dienst <literal>String</literal> nur für Basic-Skripts verfügbar. Die für Basic und Python verfügbaren Methoden sind: <literal>HashStr</literal>, <literal>IsADate</literal>, <literal>IsEmail</literal>, <literal>IsFileName</literal>, <literal>IsIBAN</literal>, <literal>IsIPv4</literal>, <literal>IsLike</literal>, <literal>IsSheetName</literal>, <literal>IsUrl</literal>, <literal>SplitNotQuoted</literal> und <literal>Wrap</literal>."
#. jaBZR
#: sf_string.xhp
@@ -21623,7 +21623,7 @@ msgctxt ""
"par_id271579683706571\n"
"help.text"
msgid "Capitalizes the first character from each word in the input string."
-msgstr ""
+msgstr "Schreibt das erste Zeichen jedes Wortes in der Eingabezeichenfolge groß."
#. ibgky
#: sf_string.xhp
@@ -21632,7 +21632,7 @@ msgctxt ""
"par_id941582304592013\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be capitalized."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die Zeichenfolge, die groß geschrieben werden soll."
#. DB982
#: sf_string.xhp
@@ -21641,7 +21641,7 @@ msgctxt ""
"par_id891582384556756\n"
"help.text"
msgid "Counts the number of occurrences of a substring or a regular expression within a string."
-msgstr ""
+msgstr "Zählt die Anzahl der Vorkommen einer Teilzeichenfolge oder eines regulären Ausdrucks innerhalb einer Zeichenfolge."
#. DxK5L
#: sf_string.xhp
@@ -21650,7 +21650,7 @@ msgctxt ""
"par_id571582384689863\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string to be examined"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu untersuchende Eingabezeichenfolge"
#. QUeur
#: sf_string.xhp
@@ -21659,7 +21659,7 @@ msgctxt ""
"par_id601582384696486\n"
"help.text"
msgid "<emph>substring</emph>: The substring or the regular expression to be used during search"
-msgstr ""
+msgstr "<emph>substring</emph>: Die Teilzeichenfolge oder der reguläre Ausdruck, die/der während der Suche verwendet werden soll"
#. vGiqm
#: sf_string.xhp
@@ -21668,7 +21668,7 @@ msgctxt ""
"par_id451582384703719\n"
"help.text"
msgid "<emph>isregex</emph>: Use <literal>True</literal> if the substring is a regular expression (Default = <literal>False</literal>)"
-msgstr ""
+msgstr "<emph>isregex</emph>: Verwenden Sie <literal>True</literal>, wenn die Teilzeichenfolge ein regulärer Ausdruck ist (Standard = <literal>False</literal>)"
#. WiFme
#: sf_string.xhp
@@ -21677,7 +21677,7 @@ msgctxt ""
"par_id141582384726168\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. QcE5q
#: sf_string.xhp
@@ -21686,7 +21686,7 @@ msgctxt ""
"bas_id371582384749769\n"
"help.text"
msgid "'Counts the occurrences of the substring \"or\" inside the input string (returns 2)"
-msgstr ""
+msgstr "' Zählt die Vorkommen der Teilzeichenfolge \"or\" innerhalb der Eingabezeichenfolge (gibt 2 zurück)"
#. XXCR4
#: sf_string.xhp
@@ -21695,7 +21695,7 @@ msgctxt ""
"bas_id561582384801586\n"
"help.text"
msgid "'Counts the number of words with only lowercase letters (returns 7)"
-msgstr ""
+msgstr "' Zählt die Anzahl der Wörter mit nur Kleinbuchstaben (gibt 7 zurück)"
#. aJNDg
#: sf_string.xhp
@@ -21704,7 +21704,7 @@ msgctxt ""
"par_id131612223767126\n"
"help.text"
msgid "To learn more about regular expressions, refer to the Python's documentation on <link href=\"https://docs.python.org/3/library/re.html\" name=\"Regular expressions\">Regular Expression Operations</link>."
-msgstr ""
+msgstr "Weitere Informationen zu regulären Ausdrücken finden Sie in der Python-Dokumentation unter <link href=\"https://docs.python.org/3/library/re.html\" name=\"Regular expressions\">Regular Expression Operations</link> ."
#. CCzMc
#: sf_string.xhp
@@ -21713,7 +21713,7 @@ msgctxt ""
"par_id581579687739629\n"
"help.text"
msgid "Returns <literal>True</literal> if a string ends with a specified substring."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn eine Zeichenfolge mit einer angegebenen Teilzeichenfolge endet."
#. cAmFW
#: sf_string.xhp
@@ -21722,7 +21722,7 @@ msgctxt ""
"par_id21612306392239\n"
"help.text"
msgid "The function returns <literal>False</literal> when either the string or the substring have a length = 0 or when the substring is longer than the string."
-msgstr ""
+msgstr "Die Funktion gibt <literal>False</literal> zurück, wenn entweder die Zeichenfolge oder die Teilzeichenfolge eine Länge = 0 haben oder wenn die Teilzeichenfolge länger als die Zeichenfolge ist."
#. qk5nE
#: sf_string.xhp
@@ -21731,7 +21731,7 @@ msgctxt ""
"par_id191579861552201\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be tested."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu testende Zeichenfolge."
#. ErigR
#: sf_string.xhp
@@ -21740,7 +21740,7 @@ msgctxt ""
"par_id211579861561473\n"
"help.text"
msgid "<emph>substring</emph>: The substring to be searched at the end of <literal>inputstr</literal>."
-msgstr ""
+msgstr "<emph>substring</emph>: Die zu durchsuchende Teilzeichenfolge am Ende von <literal>inputstr</literal>."
#. 4DKkW
#: sf_string.xhp
@@ -21749,7 +21749,7 @@ msgctxt ""
"par_id801579861574009\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. gn2F8
#: sf_string.xhp
@@ -21758,7 +21758,7 @@ msgctxt ""
"bas_id811579862998452\n"
"help.text"
msgid "'Returns True because the method was called with the default CaseSensitive = False"
-msgstr ""
+msgstr "' Gibt \"True\" zurück, weil die Methode mit dem Standard \"CaseSensitive = False\" aufgerufen wurde"
#. vJDmx
#: sf_string.xhp
@@ -21767,7 +21767,7 @@ msgctxt ""
"bas_id231579863168747\n"
"help.text"
msgid "'Returns False due to the CaseSensitive parameter"
-msgstr ""
+msgstr "' Gibt aufgrund des Parameters \"CaseSensitive\" \"False\" zurück"
#. zThMM
#: sf_string.xhp
@@ -21776,7 +21776,7 @@ msgctxt ""
"par_id921585921441429\n"
"help.text"
msgid "Converts linebreaks and tabs contained in the input string to their equivalent escaped sequence (\\\\, \\n, \\r, \\t)."
-msgstr ""
+msgstr "Konvertiert Zeilenumbrüche und Tabulatoren, die in der Eingabezeichenfolge enthalten sind, in ihre entsprechende Escape-Sequenz (\\\\, \\n, \\r, \\t)."
#. kBiBE
#: sf_string.xhp
@@ -21785,7 +21785,7 @@ msgctxt ""
"par_id9158592144110\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be converted."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu konvertierende Zeichenfolge."
#. cpLKD
#: sf_string.xhp
@@ -21794,7 +21794,7 @@ msgctxt ""
"bas_id901585921441483\n"
"help.text"
msgid "'Returns the string \"abc\\n\\tdef\\\\n\""
-msgstr ""
+msgstr "' Gibt die Zeichenfolge \"abc\\n\\tdef\\\\n\" zurück"
#. ADN8M
#: sf_string.xhp
@@ -21803,7 +21803,7 @@ msgctxt ""
"par_id271579868053137\n"
"help.text"
msgid "Replaces Tab characters <literal>Chr(9)</literal> by space characters to replicate the behavior of tab stops."
-msgstr ""
+msgstr "Ersetzt Tabulatoren <literal>Chr(9)</literal> durch Leerzeichen, um das Verhalten von Tabulatoren zu replizieren."
#. Eb23Z
#: sf_string.xhp
@@ -21812,7 +21812,7 @@ msgctxt ""
"par_id951579868064344\n"
"help.text"
msgid "If a line break is found, a new line is started and the character counter is reset."
-msgstr ""
+msgstr "Wird ein Zeilenumbruch gefunden, wird eine neue Zeile begonnen und der Zeichenzähler zurückgesetzt."
#. E73Ko
#: sf_string.xhp
@@ -21821,7 +21821,7 @@ msgctxt ""
"par_id231579868290408\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be expanded"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu erweiternde Zeichenfolge"
#. 9dyYc
#: sf_string.xhp
@@ -21830,7 +21830,7 @@ msgctxt ""
"par_id281579868299807\n"
"help.text"
msgid "<emph>tabsize</emph>: This parameter is used to determine the Tab stops using the formula: TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)"
-msgstr ""
+msgstr "<emph>tabsize</emph>: Mit diesem Parameter werden die Tabulatoren bestimmt nach der Formel: TabSize + 1, 2 * TabSize + 1 , … N * TabSize + 1 (Standard = 8)"
#. GUoE8
#: sf_string.xhp
@@ -21839,7 +21839,7 @@ msgctxt ""
"par_id161579874552729\n"
"help.text"
msgid "Replaces all non-printable characters in the input string by a given character."
-msgstr ""
+msgstr "Ersetzt alle nicht druckbaren Zeichen in der Eingabezeichenfolge durch ein vorgegebenes Zeichen."
#. GpHwp
#: sf_string.xhp
@@ -21848,7 +21848,7 @@ msgctxt ""
"par_id431579874633865\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be searched"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu durchsuchende Zeichenfolge"
#. GttDN
#: sf_string.xhp
@@ -21857,7 +21857,7 @@ msgctxt ""
"par_id31579874656437\n"
"help.text"
msgid "<emph>replacedby</emph>: Zero, one or more characters that will replace all non-printable characters in <literal>inputstr</literal> (Default = \"\")"
-msgstr ""
+msgstr "<emph>replacedby</emph>: Null, ein oder mehrere Zeichen, die alle nicht druckbaren Zeichen in <literal>inputstr</literal> ersetzen (Standard = \"\")"
#. W44TL
#: sf_string.xhp
@@ -21866,7 +21866,7 @@ msgctxt ""
"par_id1001579876228707\n"
"help.text"
msgid "Finds in a string a substring matching a given regular expression."
-msgstr ""
+msgstr "Findet in einer Zeichenfolge eine Teilzeichenfolge, die mit einem vorgegebenen regulären Ausdruck übereinstimmt."
#. aq28M
#: sf_string.xhp
@@ -21875,7 +21875,7 @@ msgctxt ""
"par_id131579876314120\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be searched"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu durchsuchende Zeichenfolge"
#. hRrBB
#: sf_string.xhp
@@ -21884,7 +21884,7 @@ msgctxt ""
"par_id751579876371545\n"
"help.text"
msgid "<emph>regex</emph>: The regular expression"
-msgstr ""
+msgstr "<emph>regex</emph>: Der reguläre Ausdruck"
#. y2Fqs
#: sf_string.xhp
@@ -21893,7 +21893,7 @@ msgctxt ""
"par_id881579876394584\n"
"help.text"
msgid "<emph>start</emph>: The position in the string where the search will begin. This parameter is passed by reference, so after execution the value of <literal>start</literal> will point to the first character of the found substring. If no matching substring is found, <literal>start</literal> will be set to 0."
-msgstr ""
+msgstr "<emph>start</emph>: Die Position in der Zeichenfolge, an der die Suche beginnt. Dieser Parameter wird als Referenz übergeben, sodass nach der Ausführung der Wert von <literal>start</literal> auf das erste Zeichen der gefundenen Teilzeichenfolge zeigt. Wenn keine passende Teilzeichenfolge gefunden wird, wird <literal>start</literal> auf 0 gesetzt."
#. yZMDg
#: sf_string.xhp
@@ -21902,7 +21902,7 @@ msgctxt ""
"par_id251579876403831\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. A4JC7
#: sf_string.xhp
@@ -21911,7 +21911,7 @@ msgctxt ""
"par_id841579876412287\n"
"help.text"
msgid "<emph>forward</emph>: Determines the direction of the search. If <literal>True</literal>, search moves forward. If <literal>False</literal> search moves backwards (Default = <literal>True</literal>)"
-msgstr ""
+msgstr "<emph>forward</emph>: Bestimmt die Suchrichtung. Wenn <literal>True</literal>, geht die Suche vorwärts. Wenn <literal>False</literal>, geht die Suche rückwärts (Standard = <literal>True</literal>)"
#. SkaCi
#: sf_string.xhp
@@ -21920,7 +21920,7 @@ msgctxt ""
"par_id451612309155653\n"
"help.text"
msgid "At the first iteration, if <literal>forward = True</literal>, then <literal>start</literal> should be equal to 1, whereas if <literal>forward = False</literal> then <literal>start</literal> should be equal to <literal>Len(inputstr)</literal>"
-msgstr ""
+msgstr "Bei der ersten Wiederholung, wenn <literal>forward = True</literal>, sollte <literal>start</literal> gleich 1 sein, wohingegen, wenn <literal>forward = False</literal> ist, sollte <literal>start</literal> gleich <literal>Len(inputstr)</literal> sein."
#. gv3oo
#: sf_string.xhp
@@ -21929,7 +21929,7 @@ msgctxt ""
"par_id221612309579001\n"
"help.text"
msgid "In the example above, the new value of <literal>lStart</literal> can be used to keep searching the same input string by setting the <literal>Start</literal> parameter to <literal>lStart + Len(result)</literal> at the next iteration."
-msgstr ""
+msgstr "Im obigen Beispiel kann der neue Wert von <literal>lStart</literal> verwendet werden, um weiterhin dieselbe Eingabezeichenfolge zu suchen, indem der Parameter <literal>Start</literal> bei der nächsten Wiederholung auf <literal>lStart + Len(result)</literal> gesetzt wird."
#. qAkN4
#: sf_string.xhp
@@ -21938,7 +21938,7 @@ msgctxt ""
"par_id471601048983628\n"
"help.text"
msgid "Hash functions are used inside some cryptographic algorithms, in digital signatures, message authentication codes, manipulation detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more."
-msgstr ""
+msgstr "Hash-Funktionen werden in einigen kryptografischen Algorithmen, in digitalen Signaturen, Nachrichtenauthentifizierungscodes, Manipulationserkennung, Fingerabdrücken, Prüfsummen (Nachrichtenintegritätsprüfung), Hash-Tabellen, Kennwortspeicherung und vielem mehr verwendet."
#. HupGD
#: sf_string.xhp
@@ -21947,7 +21947,7 @@ msgctxt ""
"par_id301601048983765\n"
"help.text"
msgid "The <literal>HashStr</literal> method returns the result of a hash function applied on a given string and using a specified algorithm, as a string of lowercase hexadecimal digits."
-msgstr ""
+msgstr "Die Methode <literal>HashStr</literal> gibt das Ergebnis einer Hash-Funktion, die auf eine gegebene Zeichenfolge angewendet wird und einen angegebenen Algorithmus verwendet, als eine Zeichenfolge aus hexadezimalen Ziffern in Kleinbuchstaben zurück."
#. ZRZEF
#: sf_string.xhp
@@ -21956,7 +21956,7 @@ msgctxt ""
"par_id631601048983149\n"
"help.text"
msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
-msgstr ""
+msgstr "Die unterstützten Hash-Algorithmen sind: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> und <literal>SHA512</literal>."
#. yUmmb
#: sf_string.xhp
@@ -21965,7 +21965,7 @@ msgctxt ""
"par_id621601048983210\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to hash. It is presumed to be encoded in UTF-8. The hashing algorithm will consider the string as a stream of bytes."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu hashende Zeichenfolge. Es wird angenommen, dass es in UTF-8 codiert ist. Der Hash-Algorithmus betrachtet die Zeichenfolge als eine Folge von Bytes."
#. nuQRb
#: sf_string.xhp
@@ -21974,7 +21974,7 @@ msgctxt ""
"par_id941601048983822\n"
"help.text"
msgid "<emph>algorithm</emph>: One of the supported algorithms listed above, passed as a string."
-msgstr ""
+msgstr "<emph>algorithm</emph>: Einer der oben aufgeführten unterstützten Algorithmen, der als Zeichenfolge übergeben wird."
#. TXGmB
#: sf_string.xhp
@@ -21983,7 +21983,7 @@ msgctxt ""
"par_id221579879516929\n"
"help.text"
msgid "Encodes the input string into the HTML character codes, replacing special characters by their <literal>&</literal> counterparts."
-msgstr ""
+msgstr "Kodiert die Eingabezeichenfolge in die HTML-Zeichencodes und ersetzt Sonderzeichen durch ihre Entsprechungen mit <literal>&</literal>."
#. YNfid
#: sf_string.xhp
@@ -21992,7 +21992,7 @@ msgctxt ""
"par_id341612351999692\n"
"help.text"
msgid "For example, the character <literal>é</literal> would be replaced by <literal>&eacute;</literal> or an equivalent numerical HTML code."
-msgstr ""
+msgstr "Beispielsweise würde das Zeichen <literal>é</literal> durch <literal>&eacute;</literal> oder einen entsprechenden numerischen HTML-Code ersetzt."
#. CGFQH
#: sf_string.xhp
@@ -22001,7 +22001,7 @@ msgctxt ""
"bas_id501579879570781\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to encode."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu codierende Zeichenfolge."
#. jpv97
#: sf_string.xhp
@@ -22010,7 +22010,7 @@ msgctxt ""
"par_id171579880990533\n"
"help.text"
msgid "Returns <literal>True</literal> if the input string is a valid date according to a specified date format."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Eingabezeichenfolge ein gültiges Datum gemäß einem angegebenen Datumsformat ist."
#. tBGBH
#: sf_string.xhp
@@ -22019,7 +22019,7 @@ msgctxt ""
"par_id151579881091821\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück"
#. nmTv3
#: sf_string.xhp
@@ -22028,7 +22028,7 @@ msgctxt ""
"par_id991579881107670\n"
"help.text"
msgid "<emph>dateformat</emph>: The date format, as a string. It can be either \"YYYY-MM-DD\" (default), \"DD-MM-YYYY\" or \"MM-DD-YYYY\""
-msgstr ""
+msgstr "<emph>dateformat</emph>: Das Datumsformat als Zeichenfolge. Kann \"YYYY-MM-DD\" (Standard), \"DD-MM-YYYY\" oder \"MM-DD-YYYY\" sein"
#. GvZLC
#: sf_string.xhp
@@ -22037,7 +22037,7 @@ msgctxt ""
"par_id291579881117126\n"
"help.text"
msgid "The dash (-) may be replaced by a dot (.), a slash (/) or a space."
-msgstr ""
+msgstr "Der Bindestrich (-) kann durch einen Punkt (.), einen Schrägstrich (/) oder ein Leerzeichen ersetzt werden."
#. yCA3T
#: sf_string.xhp
@@ -22046,7 +22046,7 @@ msgctxt ""
"par_id51579881125801\n"
"help.text"
msgid "If the format is invalid, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "Wenn das Format ungültig ist, gibt die Methode <literal>False</literal> zurück."
#. qFmWW
#: sf_string.xhp
@@ -22055,7 +22055,7 @@ msgctxt ""
"par_id211612370427721\n"
"help.text"
msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the <link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate function\"><literal>IsDate</literal> built-in function</link>."
-msgstr ""
+msgstr "Diese Methode prüft das Format der Eingabezeichenfolge, ohne kalenderspezifische Prüfungen durchzuführen. Daher wird die Eingabezeichenfolge nicht auf Schaltjahre oder Monate mit 30 oder 31 Tagen getestet. Siehe hierzu die integrierte Funktion <link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate function\"><literal>IsDate</literal></link>."
#. DJQFQ
#: sf_string.xhp
@@ -22064,7 +22064,7 @@ msgctxt ""
"par_id181612371147364\n"
"help.text"
msgid "The example below shows the difference between the methods <literal>IsADate</literal> (ScriptForge) and the <literal>IsDate</literal> (built-in) function."
-msgstr ""
+msgstr "Das folgende Beispiel zeigt den Unterschied zwischen den Methoden <literal>IsADate</literal> (ScriptForge) und der Funktion <literal>IsDate</literal> (eingebaut)."
#. hAADi
#: sf_string.xhp
@@ -22073,7 +22073,7 @@ msgctxt ""
"par_id161579881600317\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are alphabetic."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge alphabetisch sind."
#. Cpeo3
#: sf_string.xhp
@@ -22082,7 +22082,7 @@ msgctxt ""
"par_id251579881615469\n"
"help.text"
msgid "Alphabetic characters are those characters defined in the <link href=\"https://unicode.org/reports/tr44/\" name=\"Unicode documentation\">Unicode Character Database</link> as <literal>Letter</literal>."
-msgstr ""
+msgstr "Alphabetische Zeichen sind die Zeichen, die in der <link href=\"https://unicode.org/reports/tr44/\" name=\"Unicode documentation\">Unicode-Zeichendatenbank</link> als <literal>Buchstaben</literal> definiert sind."
#. a9rTa
#: sf_string.xhp
@@ -22091,7 +22091,7 @@ msgctxt ""
"par_id11579881691826\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. KaLGv
#: sf_string.xhp
@@ -22100,7 +22100,7 @@ msgctxt ""
"par_id421579883181382\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are alphabetic, digits or \"_\" (underscore). The first character must not be a digit."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge alphabetisch, Ziffern oder \"_\" (Unterstrich) sind. Das erste Zeichen darf keine Ziffer sein."
#. BAEB4
#: sf_string.xhp
@@ -22109,7 +22109,7 @@ msgctxt ""
"par_id31579884464101\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. qAZpA
#: sf_string.xhp
@@ -22118,7 +22118,7 @@ msgctxt ""
"par_id671580039484786\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are Ascii characters."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge ASCII-Zeichen sind."
#. 3DNou
#: sf_string.xhp
@@ -22127,7 +22127,7 @@ msgctxt ""
"par_id791580039528838\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. iuPF4
#: sf_string.xhp
@@ -22136,7 +22136,7 @@ msgctxt ""
"par_id861580044805749\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are digits."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge Ziffern sind."
#. yU7cc
#: sf_string.xhp
@@ -22145,7 +22145,7 @@ msgctxt ""
"par_id41580044873043\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. J8Ykx
#: sf_string.xhp
@@ -22154,7 +22154,7 @@ msgctxt ""
"par_id521580045221758\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid email address."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Zeichenfolge eine gültige E-Mail-Adresse ist."
#. 8Pxsn
#: sf_string.xhp
@@ -22163,7 +22163,7 @@ msgctxt ""
"par_id841580045280071\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. R6MsU
#: sf_string.xhp
@@ -22172,7 +22172,7 @@ msgctxt ""
"par_id41580047039666\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid filename in a given operating system."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Zeichenfolge ein gültiger Dateiname in einem bestimmten Betriebssystem ist."
#. aQbRF
#: sf_string.xhp
@@ -22181,7 +22181,7 @@ msgctxt ""
"par_id801580047079938\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. jWMpJ
#: sf_string.xhp
@@ -22190,7 +22190,7 @@ msgctxt ""
"par_id781580047088954\n"
"help.text"
msgid "<emph>osname</emph>: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"."
-msgstr ""
+msgstr "<emph>osname</emph>: Der Name des Betriebssystems als Zeichenfolge. Kann \"WINDOWS\", \"LINUX\", \"MACOSX\" oder \"SOLARIS\" sein."
#. GnrxA
#: sf_string.xhp
@@ -22199,7 +22199,7 @@ msgctxt ""
"par_id991612372824234\n"
"help.text"
msgid "The default value is the current operating system on which the script is running."
-msgstr ""
+msgstr "Der Standardwert ist das aktuelle Betriebssystem, auf dem das Skript ausgeführt wird."
#. FPuAV
#: sf_string.xhp
@@ -22208,7 +22208,7 @@ msgctxt ""
"par_id911580047551929\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are hexadecimal digits."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge Hexadezimalziffern sind."
#. hWqAh
#: sf_string.xhp
@@ -22217,7 +22217,7 @@ msgctxt ""
"par_id331580047594144\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. kEz4y
#: sf_string.xhp
@@ -22226,7 +22226,7 @@ msgctxt ""
"par_id521612377109554\n"
"help.text"
msgid "The hexadecimal digits may be prefixed with \"0x\" or \"&H\"."
-msgstr ""
+msgstr "Den Hexadezimalziffern kann „0x“ oder „&H“ vorangestellt werden."
#. 3WKNf
#: sf_string.xhp
@@ -22235,7 +22235,7 @@ msgctxt ""
"par_id791584008420941\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid International Bank Account Number (IBAN). The comparison is not case-sensitive."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Zeichenfolge eine gültige internationale Bankkontonummer (IBAN) ist. Beim Vergleich wird die Groß-/Kleinschreibung nicht beachtet."
#. DnC6i
#: sf_string.xhp
@@ -22244,7 +22244,7 @@ msgctxt ""
"par_id951880048466565\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. VgT3x
#: sf_string.xhp
@@ -22253,7 +22253,7 @@ msgctxt ""
"par_id631619526542367\n"
"help.text"
msgid "<literal>True</literal> if the string contains a valid IBAN number."
-msgstr ""
+msgstr "<literal>True</literal>, wenn die Zeichenfolge eine gültige IBAN-Nummer enthält."
#. CcTNk
#: sf_string.xhp
@@ -22262,7 +22262,7 @@ msgctxt ""
"par_id791580048420941\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid IP(v4) address."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Zeichenfolge eine gültige IP(v4)-Adresse ist."
#. rMpXB
#: sf_string.xhp
@@ -22271,7 +22271,7 @@ msgctxt ""
"par_id981580048466565\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. yWHew
#: sf_string.xhp
@@ -22280,7 +22280,7 @@ msgctxt ""
"par_id831580049093038\n"
"help.text"
msgid "Returns <literal>True</literal> if the whole input string matches a given pattern containing wildcards."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die gesamte Eingabezeichenfolge mit einem bestimmten Muster übereinstimmt, das Platzhalter enthält."
#. PzigS
#: sf_string.xhp
@@ -22289,7 +22289,7 @@ msgctxt ""
"par_id141580049142548\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. XEBzh
#: sf_string.xhp
@@ -22298,7 +22298,7 @@ msgctxt ""
"par_id31580049154551\n"
"help.text"
msgid "<emph>pattern</emph>: The pattern as a string. Wildcards are:"
-msgstr ""
+msgstr "<emph>pattern</emph>: Das Muster als Zeichenfolge. Platzhalter sind:"
#. ZCzDP
#: sf_string.xhp
@@ -22307,7 +22307,7 @@ msgctxt ""
"par_id181612441703306\n"
"help.text"
msgid "\"?\" represents any single character;"
-msgstr ""
+msgstr "\"?\" stellt ein beliebiges einzelnes Zeichen dar;"
#. CFPcW
#: sf_string.xhp
@@ -22316,7 +22316,7 @@ msgctxt ""
"par_id861612377611438\n"
"help.text"
msgid "\"*\" represents zero, one, or multiple characters."
-msgstr ""
+msgstr "\"*\" steht für null, ein oder mehrere Zeichen."
#. eLYBF
#: sf_string.xhp
@@ -22325,7 +22325,7 @@ msgctxt ""
"par_id991580049206617\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. kSMmn
#: sf_string.xhp
@@ -22334,7 +22334,7 @@ msgctxt ""
"par_id581580050048679\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are in lowercase. Non-alphabetic characters are ignored."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge in Kleinbuchstaben geschrieben sind. Nicht alphabetische Zeichen werden ignoriert."
#. nWGvX
#: sf_string.xhp
@@ -22343,7 +22343,7 @@ msgctxt ""
"par_id751580050122938\n"
"help.text"
msgid "<emph>InputStr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>InputStr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. BzD3y
#: sf_string.xhp
@@ -22352,7 +22352,7 @@ msgctxt ""
"par_id231580051650488\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are printable."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge druckbar sind."
#. gUhut
#: sf_string.xhp
@@ -22361,7 +22361,7 @@ msgctxt ""
"par_id721580051706431\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. HYBp5
#: sf_string.xhp
@@ -22370,7 +22370,7 @@ msgctxt ""
"par_id281580052400960\n"
"help.text"
msgid "Returns <literal>True</literal> if the whole input string matches a given regular expression."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die gesamte Eingabezeichenfolge mit einem gegebenen regulären Ausdruck übereinstimmt."
#. ZuBxC
#: sf_string.xhp
@@ -22379,7 +22379,7 @@ msgctxt ""
"par_id161580052454770\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. mi4mi
#: sf_string.xhp
@@ -22388,7 +22388,7 @@ msgctxt ""
"par_id581580052467973\n"
"help.text"
msgid "<emph>regex</emph>: The regular expression. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>regex</emph>: Der reguläre Ausdruck. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. vmqZM
#: sf_string.xhp
@@ -22397,7 +22397,7 @@ msgctxt ""
"par_id621580052654341\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. iZSEw
#: sf_string.xhp
@@ -22406,7 +22406,7 @@ msgctxt ""
"par_id1001589460240467\n"
"help.text"
msgid "Returns <literal>True</literal> if the input string is a valid Calc sheet name."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Eingabezeichenfolge ein gültiger Calc-Tabellenname ist."
#. xPFLm
#: sf_string.xhp
@@ -22415,7 +22415,7 @@ msgctxt ""
"par_id671589460240552\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. uE5gz
#: sf_string.xhp
@@ -22424,7 +22424,7 @@ msgctxt ""
"par_id551612442002823\n"
"help.text"
msgid "A sheet name must not contain the characters [ ] * ? : / \\ or the character ' (apostrophe) as first or last character."
-msgstr ""
+msgstr "Ein Tabellenname darf nicht die Zeichen [ ] * ? : / \\ oder das Zeichen ' (Apostroph) als erstes oder letztes Zeichen enthalten."
#. ALdgg
#: sf_string.xhp
@@ -22433,7 +22433,7 @@ msgctxt ""
"par_id371580293093655\n"
"help.text"
msgid "Returns <literal>True</literal> if the first character of every word is in uppercase and the other characters are in lowercase."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn das erste Zeichen jedes Wortes in Großbuchstaben und die anderen Zeichen in Kleinbuchstaben geschrieben sind."
#. uVF9U
#: sf_string.xhp
@@ -22442,7 +22442,7 @@ msgctxt ""
"par_id471580293142283\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. 7Ryzp
#: sf_string.xhp
@@ -22451,7 +22451,7 @@ msgctxt ""
"par_id801580128672004\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are in uppercase. Non alphabetic characters are ignored."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge in Großbuchstaben geschrieben sind. Nicht alphabetische Zeichen werden ignoriert."
#. HFDCW
#: sf_string.xhp
@@ -22460,7 +22460,7 @@ msgctxt ""
"par_id391580128736809\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. BTRpG
#: sf_string.xhp
@@ -22469,7 +22469,7 @@ msgctxt ""
"par_id531580132067813\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid absolute URL (Uniform Resource Locator) address. Only the http, https and ftp protocols are supported."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die Zeichenfolge eine gültige absolute URL-Adresse (Uniform Resource Locator) ist. Es werden nur die Protokolle http, https und ftp unterstützt."
#. HrFqG
#: sf_string.xhp
@@ -22478,7 +22478,7 @@ msgctxt ""
"par_id321580132113593\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. wBAqG
#: sf_string.xhp
@@ -22487,7 +22487,7 @@ msgctxt ""
"par_id41580132491698\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are whitespaces"
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn alle Zeichen in der Zeichenfolge Leerzeichen sind"
#. JDD85
#: sf_string.xhp
@@ -22496,7 +22496,7 @@ msgctxt ""
"par_id801580132535511\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu prüfende Zeichenfolge. Wenn leer, gibt die Methode <literal>False</literal> zurück."
#. 7EBbA
#: sf_string.xhp
@@ -22505,7 +22505,7 @@ msgctxt ""
"par_id891580133307100\n"
"help.text"
msgid "Returns the input string center-justified."
-msgstr ""
+msgstr "Gibt die Eingabezeichenfolge zentriert zurück."
#. TLmnE
#: sf_string.xhp
@@ -22514,7 +22514,7 @@ msgctxt ""
"par_id571612380829021\n"
"help.text"
msgid "The leading and trailing white spaces are stripped and the remaining characters are completed left and right up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
-msgstr ""
+msgstr "Die führenden und abschließenden Leerzeichen werden entfernt und die restlichen Zeichen werden links und rechts bis zu einer angegebenen Gesamtlänge <literal>lenght</literal> mit dem Zeichen <literal>padding</literal> aufgefüllt."
#. 4uuQT
#: sf_string.xhp
@@ -22523,7 +22523,7 @@ msgctxt ""
"par_id911580133391827\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be center-justified. If empty, the method returns an empty string."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die Zeichenfolge, die zentriert werden soll. Wenn leer, gibt die Methode eine leere Zeichenfolge zurück."
#. jHJNT
#: sf_string.xhp
@@ -22532,7 +22532,7 @@ msgctxt ""
"par_id671580133694946\n"
"help.text"
msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
-msgstr ""
+msgstr "<emph>length</emph>: Die Länge der resultierenden Zeichenfolge (Standard = die Länge der Eingabezeichenfolge)."
#. A3qof
#: sf_string.xhp
@@ -22541,7 +22541,7 @@ msgctxt ""
"par_id511612381090109\n"
"help.text"
msgid "If the specified length is shorter than the center-justified input string, then the returned string is truncated."
-msgstr ""
+msgstr "Wenn die angegebene Länge kürzer als die zentrierte Eingabezeichenfolge ist, wird die zurückgegebene Zeichenfolge abgeschnitten."
#. fys4j
#: sf_string.xhp
@@ -22550,7 +22550,7 @@ msgctxt ""
"par_id101580133705268\n"
"help.text"
msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
-msgstr ""
+msgstr "<emph>padding</emph>: Das einzelne Zeichen, das für \"padding\" verwendet werden soll (Standard = das Ascii-Leerzeichen \" \")."
#. 4zk3p
#: sf_string.xhp
@@ -22559,7 +22559,7 @@ msgctxt ""
"par_id911580135466348\n"
"help.text"
msgid "Returns the input string left-justified."
-msgstr ""
+msgstr "Gibt die Eingabezeichenfolge linksbündig zurück."
#. 9KeCE
#: sf_string.xhp
@@ -22568,7 +22568,7 @@ msgctxt ""
"par_id431612381917641\n"
"help.text"
msgid "The leading white spaces are stripped and the remaining characters are completed to the right up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
-msgstr ""
+msgstr "Die führenden Leerzeichen werden entfernt und die restlichen Zeichen bis zu einer vorgegebenen Gesamtlänge <literal>length</literal> mit dem Zeichen <literal>padding</literal> nach rechts aufgefüllt."
#. UQXSM
#: sf_string.xhp
@@ -22577,7 +22577,7 @@ msgctxt ""
"par_id281580135523448\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be left-justified. If empty, the method returns an empty string."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die linksbündig auszurichtende Zeichenfolge. Wenn leer, gibt die Methode eine leere Zeichenfolge zurück."
#. EAwAa
#: sf_string.xhp
@@ -22586,7 +22586,7 @@ msgctxt ""
"par_id431580135534910\n"
"help.text"
msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
-msgstr ""
+msgstr "<emph>length</emph>: Die Länge der resultierenden Zeichenfolge (Standard = die Länge der Eingabezeichenfolge)."
#. ntKXx
#: sf_string.xhp
@@ -22595,7 +22595,7 @@ msgctxt ""
"par_id161612381664182\n"
"help.text"
msgid "If the specified length is shorter than the left-justified input string, then the returned string is truncated."
-msgstr ""
+msgstr "Wenn die angegebene Länge kürzer als die linksbündige Eingabezeichenfolge ist, wird die zurückgegebene Zeichenfolge abgeschnitten."
#. wBnmv
#: sf_string.xhp
@@ -22604,7 +22604,7 @@ msgctxt ""
"par_id221580135568475\n"
"help.text"
msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
-msgstr ""
+msgstr "<emph>padding</emph>: Das einzelne Zeichen, das für \"padding\" verwendet werden soll (Standard = das Ascii-Leerzeichen \" \")."
#. TTokb
#: sf_string.xhp
@@ -22613,7 +22613,7 @@ msgctxt ""
"par_id821580136091225\n"
"help.text"
msgid "Returns the input string right-justified."
-msgstr ""
+msgstr "Gibt den Eingabestring rechtsbündig zurück."
#. 4fG7c
#: sf_string.xhp
@@ -22622,7 +22622,7 @@ msgctxt ""
"par_id771612382000293\n"
"help.text"
msgid "The leading white spaces are stripped and the remaining characters are completed to the left up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
-msgstr ""
+msgstr "Dabei werden die führenden Leerzeichen entfernt und die restlichen Zeichen nach links bis zu einer vorgegebenen Gesamtlänge <literal>length</literal> mit dem Zeichen <literal>padding</literal> aufgefüllt."
#. KxskT
#: sf_string.xhp
@@ -22631,7 +22631,7 @@ msgctxt ""
"par_id201580136154170\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be right-justified. If empty, the method returns an empty string."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die rechtsbündig auszurichtende Zeichenfolge. Wenn leer, gibt die Methode eine leere Zeichenfolge zurück."
#. FboQc
#: sf_string.xhp
@@ -22640,7 +22640,7 @@ msgctxt ""
"par_id71580136164632\n"
"help.text"
msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
-msgstr ""
+msgstr "<emph>length</emph>: Die Länge der resultierenden Zeichenfolge (Standard = die Länge der Eingabezeichenfolge)."
#. dshKE
#: sf_string.xhp
@@ -22649,7 +22649,7 @@ msgctxt ""
"par_id191612381732163\n"
"help.text"
msgid "If the specified length is shorter than the right-justified input string, then the returned string is truncated."
-msgstr ""
+msgstr "Wenn die angegebene Länge kürzer als die rechtsbündige Eingabezeichenfolge ist, wird die zurückgegebene Zeichenfolge abgeschnitten."
#. LtcVG
#: sf_string.xhp
@@ -22658,7 +22658,7 @@ msgctxt ""
"par_id751580136200680\n"
"help.text"
msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
-msgstr ""
+msgstr "<emph>padding</emph>: Das einzelne Zeichen, das für \"padding\" verwendet werden soll (Standard = das Ascii-Leerzeichen \" \")."
#. Wn55u
#: sf_string.xhp
@@ -22667,7 +22667,7 @@ msgctxt ""
"par_id251580136888958\n"
"help.text"
msgid "Returns the input string enclosed in single or double quotes. Existing quotes are left unchanged, including leading and/or trailing quotes."
-msgstr ""
+msgstr "Gibt die in einfache oder doppelte Anführungszeichen eingeschlossene Eingabezeichenfolge zurück. Vorhandene Anführungszeichen werden unverändert gelassen, einschließlich vorangestellter und/oder nachgestellter Anführungszeichen."
#. YBvt4
#: sf_string.xhp
@@ -22676,7 +22676,7 @@ msgctxt ""
"par_id811580136944674\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to quote."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu zitierende Zeichenfolge."
#. GynWV
#: sf_string.xhp
@@ -22685,7 +22685,7 @@ msgctxt ""
"par_id581599129397412\n"
"help.text"
msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote (default)."
-msgstr ""
+msgstr "<emph>quotechar</emph>: Entweder das einfache (') oder das doppelte (\") Anführungszeichen (Standard)."
#. fY3PC
#: sf_string.xhp
@@ -22694,7 +22694,7 @@ msgctxt ""
"par_id911612382537087\n"
"help.text"
msgid "This method can be useful while preparing a string field to be stored in a csv-like file, which requires that text values be enclosed with single or double quotes."
-msgstr ""
+msgstr "Diese Methode kann nützlich sein, wenn ein Zeichenfolgenfeld vorbereitet wird, das in einer CSV-ähnlichen Datei gespeichert werden soll, was erfordert, dass Textwerte in einfache oder doppelte Anführungszeichen gesetzt werden."
#. 8Rr4M
#: sf_string.xhp
@@ -22703,7 +22703,7 @@ msgctxt ""
"par_id951580139124650\n"
"help.text"
msgid "Replaces all occurrences of the characters specified in the <literal>Before</literal> parameter by the corresponding characters specified in <literal>After</literal>."
-msgstr ""
+msgstr "Ersetzt alle Vorkommen der im Parameter <literal>Before</literal> angegebenen Zeichen durch die entsprechenden Zeichen, die in <literal>After</literal> angegeben sind."
#. 5hn2y
#: sf_string.xhp
@@ -22712,7 +22712,7 @@ msgctxt ""
"par_id1001612384040018\n"
"help.text"
msgid "If the length of <literal>Before</literal> is greater than the length of <literal>After</literal>, the residual characters in <literal>Before</literal> are replaced by the last character in <literal>After</literal>."
-msgstr ""
+msgstr "Wenn die Länge von <literal>Before</literal> größer als die Länge von <literal>After</literal> ist, werden die Restzeichen in <literal>Before</literal> durch das letzte Zeichen in <literal>After</literal> ersetzt."
#. DD2CL
#: sf_string.xhp
@@ -22721,7 +22721,7 @@ msgctxt ""
"par_id11580139160633\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die Eingabezeichenfolge, bei der Ersetzungen erfolgen."
#. DvaRE
#: sf_string.xhp
@@ -22730,7 +22730,7 @@ msgctxt ""
"par_id111580139169795\n"
"help.text"
msgid "<emph>before</emph>: A string with the characters that will be searched in the input string for replacement."
-msgstr ""
+msgstr "<emph>before</emph>: Eine Zeichenfolge mit den Zeichen, nach denen in der Eingabezeichenfolge zur Ersetzung gesucht werden."
#. N46b3
#: sf_string.xhp
@@ -22739,7 +22739,7 @@ msgctxt ""
"par_id851580139182113\n"
"help.text"
msgid "<emph>after</emph>: A string with the new characters that will replace those defined in <literal>before</literal>."
-msgstr ""
+msgstr "<emph>after</emph>: Eine Zeichenfolge mit den neuen Zeichen, welche die in <literal>before</literal> definierten ersetzen."
#. CDuCC
#: sf_string.xhp
@@ -22748,7 +22748,7 @@ msgctxt ""
"bas_id921580139218457\n"
"help.text"
msgid "' Replaces accented characters"
-msgstr ""
+msgstr "' Ersetzt akzentuierte Zeichen"
#. 5ww5A
#: sf_string.xhp
@@ -22757,7 +22757,7 @@ msgctxt ""
"par_id151612442904499\n"
"help.text"
msgid "The <literal>SF_String</literal> service provides useful public constants for the Latin character sets, as shown in the example below:"
-msgstr ""
+msgstr "Der Dienst <literal>SF_String</literal> stellt nützliche öffentliche Konstanten für die lateinischen Zeichensätze bereit, wie im folgenden Beispiel gezeigt:"
#. 9SPjv
#: sf_string.xhp
@@ -22766,7 +22766,7 @@ msgctxt ""
"par_id671580140272818\n"
"help.text"
msgid "Replaces all occurrences of a given regular expression by a new string."
-msgstr ""
+msgstr "Ersetzt alle Vorkommen eines bestimmten regulären Ausdrucks durch eine neue Zeichenfolge."
#. ujCyu
#: sf_string.xhp
@@ -22775,7 +22775,7 @@ msgctxt ""
"par_id471580140311626\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die Eingabezeichenfolge, bei der Ersetzungen erfolgen."
#. o2DS2
#: sf_string.xhp
@@ -22784,7 +22784,7 @@ msgctxt ""
"par_id651580140322666\n"
"help.text"
msgid "<emph>regex</emph>: The regular expression."
-msgstr ""
+msgstr "<emph>regex</emph>: Der reguläre Ausdruck."
#. itEEd
#: sf_string.xhp
@@ -22793,7 +22793,7 @@ msgctxt ""
"par_id891580140334754\n"
"help.text"
msgid "<emph>newstr</emph>: The replacing string."
-msgstr ""
+msgstr "<emph>newstr</emph>: Die ersetzende Zeichenfolge."
#. gJRAr
#: sf_string.xhp
@@ -22802,7 +22802,7 @@ msgctxt ""
"par_id581580140345221\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. ykPVR
#: sf_string.xhp
@@ -22811,7 +22811,7 @@ msgctxt ""
"bas_id961612384647003\n"
"help.text"
msgid "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (each lowercase letter is replaced by \"x\")"
-msgstr ""
+msgstr "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxx xxxxxxxxxx xxxx.\" (jeder Kleinbuchstabe wird durch ein \"x\" ersetzt)"
#. rkMsv
#: sf_string.xhp
@@ -22820,7 +22820,7 @@ msgctxt ""
"bas_id751612384623936\n"
"help.text"
msgid "' \"x x x x x, x x x.\" (each word is replaced by \"x\")"
-msgstr ""
+msgstr "' \"x x x x x, x x x.\" (jedes Wort wird durch ein \"x\" ersetzt)"
#. 2Gd5C
#: sf_string.xhp
@@ -22829,7 +22829,7 @@ msgctxt ""
"par_id51580146471894\n"
"help.text"
msgid "Replaces in a string some or all occurrences of an array of strings by an array of new strings."
-msgstr ""
+msgstr "Ersetzt in einer Zeichenfolge einige oder alle Vorkommen einer Matriv von Zeichenfolgen durch eine Matrix neuer Zeichenfolgen."
#. SDpot
#: sf_string.xhp
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id831580146504326\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die Eingabezeichenfolge, bei der Ersetzungen erfolgen."
#. UfuEm
#: sf_string.xhp
@@ -22847,7 +22847,7 @@ msgctxt ""
"par_id411580146514927\n"
"help.text"
msgid "<emph>oldstr</emph>: A single string or an array of strings. Zero-length strings are ignored."
-msgstr ""
+msgstr "<emph>oldstr</emph>: Eine einzelne Zeichenfolge oder eine Matrix mit Zeichenfolgen. Zeichenfolgen der Länge Null werden ignoriert."
#. Ukr3F
#: sf_string.xhp
@@ -22856,7 +22856,7 @@ msgctxt ""
"par_id591580146532966\n"
"help.text"
msgid "<emph>newstr</emph>: The replacing string or the array of replacing strings."
-msgstr ""
+msgstr "<emph>newstr</emph>: Die ersetzende Zeichenfolge oder die Matrix mit ersetzenden Zeichenfolgen."
#. 7BQ7F
#: sf_string.xhp
@@ -22865,7 +22865,7 @@ msgctxt ""
"par_id611612384873347\n"
"help.text"
msgid "If <literal>oldstr</literal> is an array, each occurrence of any of the items in <literal>oldstr</literal> is replaced by <literal>newstr</literal>."
-msgstr ""
+msgstr "Wenn <literal>oldstr</literal> eine Matrix ist, wird jedes Vorkommen eines der Elemente in <literal>oldstr</literal> durch <literal>newstr</literal> ersetzt."
#. AfRz6
#: sf_string.xhp
@@ -22874,7 +22874,7 @@ msgctxt ""
"par_id611612384880820\n"
"help.text"
msgid "If <literal>oldstr</literal> and <literal>newstr</literal> are arrays, replacements occur one by one up to the <literal>UBound(newstr)</literal>."
-msgstr ""
+msgstr "Wenn <literal>oldstr</literal> und <literal>newstr</literal> Matrizen sind, erfolgt die Ersetzung nacheinander bis zu <literal>UBound(newstr)</literal>."
#. E39aH
#: sf_string.xhp
@@ -22883,7 +22883,7 @@ msgctxt ""
"par_id241612385058264\n"
"help.text"
msgid "If <literal>oldstr</literal> has more entries than <literal>newstr</literal>, then the residual elements in <literal>oldstr</literal> are replaced by the last element in <literal>newstr</literal>."
-msgstr ""
+msgstr "Wenn <literal>oldstr</literal> mehr Einträge hat als <literal>newstr</literal>, dann werden die restlichen Elemente in <literal>oldstr</literal> durch das letzte Element in <literal>newstr</literal> ersetzt."
#. MkqW5
#: sf_string.xhp
@@ -22892,7 +22892,7 @@ msgctxt ""
"par_id701580146547619\n"
"help.text"
msgid "<emph>occurrences</emph>: The maximum number of replacements. The default value is 0, meaning that all occurrences will be replaced."
-msgstr ""
+msgstr "<emph>occurrences</emph>: Die maximale Anzahl von Ersetzungen. Der Standardwert ist 0, was bedeutet, dass alle Vorkommen ersetzt werden."
#. QX33p
#: sf_string.xhp
@@ -22901,7 +22901,7 @@ msgctxt ""
"par_id741612385380533\n"
"help.text"
msgid "When <literal>oldstr</literal> is an array, the <literal>occurrence</literal> parameter is computed separately for each item in the array."
-msgstr ""
+msgstr "Wenn <literal>oldstr</literal> eine Matrix ist, wird der Parameter <literal>occurrence</literal> für jedes Element in der Matrix separat berechnet."
#. aWrvA
#: sf_string.xhp
@@ -22910,7 +22910,7 @@ msgctxt ""
"par_id301580146556599\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. eygyi
#: sf_string.xhp
@@ -22919,7 +22919,7 @@ msgctxt ""
"par_id901580147558931\n"
"help.text"
msgid "Returns a string with a readable representation of the argument, truncated at a given length. This is useful mainly for debugging or logging purposes."
-msgstr ""
+msgstr "Gibt eine Zeichenfolge, die bei einer bestimmten Länge abgeschnitten wird, mit einer lesbaren Darstellung des Arguments zurück. Dies ist hauptsächlich für Debugging- oder Protokollierungszwecke nützlich."
#. cU3Ev
#: sf_string.xhp
@@ -22928,7 +22928,7 @@ msgctxt ""
"par_id11612386054691\n"
"help.text"
msgid "If the <literal>anyvalue</literal> parameter is an object, it will be enclosed with square brackets \"[\" and \"]\"."
-msgstr ""
+msgstr "Wenn der Parameter <literal>anyvalue</literal> ein Objekt ist, wird es in eckige Klammern \"[\" und \"]\" eingeschlossen."
#. gVB32
#: sf_string.xhp
@@ -22937,7 +22937,7 @@ msgctxt ""
"par_id491612386081802\n"
"help.text"
msgid "In strings, tabs and line breaks are replaced by \\t, \\n or \\r."
-msgstr ""
+msgstr "In Zeichenfolgen werden Tabulatoren und Zeilenumbrüche durch \\t, \\n oder \\r ersetzt."
#. SfUGD
#: sf_string.xhp
@@ -22946,7 +22946,7 @@ msgctxt ""
"par_id921612386089103\n"
"help.text"
msgid "If the final length exceeds the <literal>maxlength</literal> parameter, the latter part of the string is replaced by \" ... (N)\" where N is the total length of the original string before truncation."
-msgstr ""
+msgstr "Wenn die endgültige Länge den Parameter <literal>maxlength</literal> überschreitet, wird der letzte Teil der Zeichenfolge durch \" … (N)\" ersetzt, wobei N die Gesamtlänge der ursprünglichen Zeichenfolge vor dem Abschneiden ist."
#. zLfNR
#: sf_string.xhp
@@ -22955,7 +22955,7 @@ msgctxt ""
"par_id91580147593626\n"
"help.text"
msgid "<emph>anyvalue</emph>: The input value to be represented. It can be any value, such as a string, an array, a Basic object, a UNO object, etc."
-msgstr ""
+msgstr "<emph>anyvalue</emph>: Der darzustellende Eingabewert. Dies kann ein beliebiger Wert sein, beispielsweise eine Zeichenfolge, eine Matrix, ein Basic-Objekt, ein UNO-Objekt …"
#. hdDFi
#: sf_string.xhp
@@ -22964,7 +22964,7 @@ msgctxt ""
"par_id811580147609322\n"
"help.text"
msgid "<emph>maxlength</emph>: The maximum length of the resulting string. The default value is 0, meaning there is no limit to the length of the resulting representation."
-msgstr ""
+msgstr "<emph>maxlength</emph>: Die maximale Länge der resultierenden Zeichenfolge. Der Standardwert ist 0, was bedeutet, dass die Länge der resultierenden Darstellung unbegrenzt ist."
#. Ape7i
#: sf_string.xhp
@@ -22973,7 +22973,7 @@ msgctxt ""
"par_id641612386659292\n"
"help.text"
msgid "Note that the representation of data types such as Arrays and <literal>ScriptForge.Dictionary</literal> object instances include both the data type and their values:"
-msgstr ""
+msgstr "Beachten Sie, dass die Darstellung von Datentypen wie Matrizen und Objektinstanzen <literal>ScriptForge.Dictionary</literal> sowohl den Datentyp als auch ihre Werte enthalten:"
#. ZFFAD
#: sf_string.xhp
@@ -22982,7 +22982,7 @@ msgctxt ""
"bas_id971612386906463\n"
"help.text"
msgid "' An example with a Basic built-in Array"
-msgstr ""
+msgstr "' Ein Beispiel mit einer eingebauten Matrix in Basic"
#. GEZzM
#: sf_string.xhp
@@ -22991,7 +22991,7 @@ msgctxt ""
"bas_id401612386876329\n"
"help.text"
msgid "' An example with a ScriptForge Array"
-msgstr ""
+msgstr "' Ein Beispiel mit einer Matrix in ScriptForge"
#. mZ3ar
#: sf_string.xhp
@@ -23000,7 +23000,7 @@ msgctxt ""
"bas_id551612386931680\n"
"help.text"
msgid "' An example with a ScriptForge Dictionary"
-msgstr ""
+msgstr "' Ein Beispiel mit einem Wörterbuch in ScriptForge"
#. vvADG
#: sf_string.xhp
@@ -23009,7 +23009,7 @@ msgctxt ""
"par_id411580312925741\n"
"help.text"
msgid "Returns the input string in reversed order."
-msgstr ""
+msgstr "Gibt die Eingabezeichenfolge in umgekehrter Reihenfolge zurück."
#. EEyG6
#: sf_string.xhp
@@ -23018,7 +23018,7 @@ msgctxt ""
"par_id141612387177873\n"
"help.text"
msgid "This method is equivalent to the built-in <link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse function\"><literal>StrReverse</literal> Basic function</link>."
-msgstr ""
+msgstr "Diese Methode entspricht der integrierten <link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse function\">Basic-Funktion <literal>StrReverse</literal></link>."
#. ZEarP
#: sf_string.xhp
@@ -23027,7 +23027,7 @@ msgctxt ""
"par_id961612387463144\n"
"help.text"
msgid "To use the <literal>StrReverse</literal> function, the statement <literal>Option VBASupport 1</literal> must be present in the module."
-msgstr ""
+msgstr "Um die Funktion <literal>StrReverse</literal> zu verwenden, muss die Anweisung <literal>Option VBASupport 1</literal> im Modul vorhanden sein."
#. pSyL6
#: sf_string.xhp
@@ -23036,7 +23036,7 @@ msgctxt ""
"par_id241580312964497\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be reversed."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die umzukehrende Zeichenfolge."
#. KBFDk
#: sf_string.xhp
@@ -23045,7 +23045,7 @@ msgctxt ""
"par_id721580210762286\n"
"help.text"
msgid "Returns a zero-based array of strings with the lines in the input string. Each item in the array is obtained by splitting the input string at newline characters."
-msgstr ""
+msgstr "Gibt eine nullbasierte Matrix von Zeichenfolgen mit den Zeilen in der Eingabezeichenfolge zurück. Jedes Element in der Matrix wird erhalten, indem die Eingabezeichenfolge an Zeilenumbruchzeichen geteilt wird."
#. nuUF6
#: sf_string.xhp
@@ -23054,7 +23054,7 @@ msgctxt ""
"par_id481580210806878\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be split."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu teilende Zeichenfolge."
#. FEFUw
#: sf_string.xhp
@@ -23063,7 +23063,7 @@ msgctxt ""
"par_id231580210820309\n"
"help.text"
msgid "<emph>keepbreaks</emph>: When <literal>True</literal>, line breaks are preserved in the output array (default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>keepbreaks</emph>: Wenn <literal>True</literal>, werden Zeilenumbrüche in der Ausgabematrix beibehalten (Standard = <literal>False</literal>)."
#. HAG8Q
#: sf_string.xhp
@@ -23072,7 +23072,7 @@ msgctxt ""
"par_id471580211762739\n"
"help.text"
msgid "Splits a string into an array of elements using a specified delimiter."
-msgstr ""
+msgstr "Teilt eine Zeichenfolge mithilfe eines angegebenen Trennzeichens in eine Matrix von Elementen."
#. zsADB
#: sf_string.xhp
@@ -23081,7 +23081,7 @@ msgctxt ""
"par_id281612388034501\n"
"help.text"
msgid "If a quoted substring contains a delimiter, it is ignored. This is useful when parsing CSV-like records that contain quoted strings."
-msgstr ""
+msgstr "Wenn eine Teilzeichenfolge in Anführungszeichen ein Trennzeichen enthält, wird es ignoriert. Dies ist nützlich, wenn CSV-ähnliche Datensätze analysiert werden, die Zeichenfolgen in Anführungszeichen enthalten."
#. JKAaG
#: sf_string.xhp
@@ -23090,7 +23090,7 @@ msgctxt ""
"par_id881580211809490\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be split."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu teilende Zeichenfolge."
#. zFjwe
#: sf_string.xhp
@@ -23099,7 +23099,7 @@ msgctxt ""
"par_id811580211821162\n"
"help.text"
msgid "<emph>delimiter</emph>: A string of one or more characters that will be used as delimiter. The default delimiter is the Ascii space \" \" character."
-msgstr ""
+msgstr "<emph>delimiter</emph>: Eine Zeichenfolge aus einem oder mehreren Zeichen, die als Trennzeichen verwendet werden. Das Standardtrennzeichen ist das ASCII-Leerzeichen \" \"."
#. 3rGRu
#: sf_string.xhp
@@ -23108,7 +23108,7 @@ msgctxt ""
"par_id181580211833778\n"
"help.text"
msgid "<emph>occurrences</emph>: The maximum number of substrings to return. The default value is 0, meaning that there is no limit to the number of returned strings."
-msgstr ""
+msgstr "<emph>occurrences</emph>: Die maximale Anzahl der zurückzugebenden Teilzeichenfolgen. Der Standardwert ist 0, was bedeutet, dass die Anzahl der zurückzugebenden Zeichenfolgen unbegrenzt ist."
#. W2og7
#: sf_string.xhp
@@ -23117,7 +23117,7 @@ msgctxt ""
"par_id421599123777334\n"
"help.text"
msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote."
-msgstr ""
+msgstr "<emph>quotechar</emph>: Entweder das einfache (') oder das doppelte (\") Anführungszeichen."
#. DiYMJ
#: sf_string.xhp
@@ -23126,7 +23126,7 @@ msgctxt ""
"par_id661627251379676\n"
"help.text"
msgid "Beware of the differences between Basic and Python when representing strings. For example, in Basic two \"\" characters inside a string are interpreted as a single \" character. In Python, strings enclosed with single quotes can contain \" characters without having to double them."
-msgstr ""
+msgstr "Achten Sie bei der Darstellung von Zeichenfolgen auf die Unterschiede zwischen Basic und Python. Beispielsweise werden in Basic zwei doppelte Anführungszeichen (\"\") innerhalb einer Zeichenfolge als einzelnes doppeltes Anführungszeichen (\") interpretiert. In Python können in einfache Anführungszeichen eingeschlossene Zeichenfolgen doppelte Anführungszeichen (\") enthalten, ohne sie verdoppeln zu müssen."
#. 6Q2tJ
#: sf_string.xhp
@@ -23135,7 +23135,7 @@ msgctxt ""
"par_id771580212837884\n"
"help.text"
msgid "Returns <literal>True</literal> if the first characters of a string are identical to a given substring."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn die ersten Zeichen einer Zeichenfolge mit einer gegebenen Teilzeichenfolge identisch sind."
#. BYx4G
#: sf_string.xhp
@@ -23144,7 +23144,7 @@ msgctxt ""
"par_id781612393174350\n"
"help.text"
msgid "This method returns <literal>False</literal> if either the input string or the substring have a length = 0 or when the substring is longer than the input string."
-msgstr ""
+msgstr "Diese Methode gibt <literal>False</literal> zurück, wenn entweder die Eingabezeichenfolge oder die Teilzeichenfolge eine Länge = 0 haben oder wenn die Teilzeichenfolge länger als die Eingabezeichenfolge ist."
#. jrzxu
#: sf_string.xhp
@@ -23153,7 +23153,7 @@ msgctxt ""
"par_id271580212876135\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be tested."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu testende Zeichenfolge."
#. tE9WD
#: sf_string.xhp
@@ -23162,7 +23162,7 @@ msgctxt ""
"par_id571580212889462\n"
"help.text"
msgid "<emph>substring</emph>: The substring to be searched at the start of <literal>inputstr</literal>."
-msgstr ""
+msgstr "<emph>substring</emph>: Die zu durchsuchende Teilzeichenfolge am Anfang von <literal>inputstr</literal>."
#. ZeQP4
#: sf_string.xhp
@@ -23171,7 +23171,7 @@ msgctxt ""
"par_id811580212900799\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph>: Die Suche kann Groß- und Kleinschreibung beachten oder nicht (Standard = <literal>False</literal>)."
#. DGgBx
#: sf_string.xhp
@@ -23180,7 +23180,7 @@ msgctxt ""
"par_id911580295999690\n"
"help.text"
msgid "Returns the input string without its leading and trailing whitespaces."
-msgstr ""
+msgstr "Gibt die Eingabezeichenfolge ohne die führenden und abschließenden Leerzeichen zurück."
#. BESEu
#: sf_string.xhp
@@ -23189,7 +23189,7 @@ msgctxt ""
"par_id541580296044377\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to trim."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu trimmende Zeichenfolge."
#. 9t9vX
#: sf_string.xhp
@@ -23198,7 +23198,7 @@ msgctxt ""
"par_id61580483096936\n"
"help.text"
msgid "Converts any escaped sequence (\\\\, \\n, \\r, \\t) in the input string to their corresponding Ascii character."
-msgstr ""
+msgstr "Konvertiert jede maskierte Sequenz (\\\\, \\n, \\r, \\t) in der Eingabezeichenfolge in das entsprechende ASCII-Zeichen."
#. mzTsG
#: sf_string.xhp
@@ -23207,7 +23207,7 @@ msgctxt ""
"par_id971580483124743\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be converted."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die zu konvertierende Zeichenfolge."
#. BoYHV
#: sf_string.xhp
@@ -23216,7 +23216,7 @@ msgctxt ""
"par_id831580213634029\n"
"help.text"
msgid "Removes the single or double quotes enclosing the input string."
-msgstr ""
+msgstr "Entfernt die einfachen oder doppelten Anführungszeichen, welche die Eingabezeichenfolge einschließen."
#. Ae8c5
#: sf_string.xhp
@@ -23225,7 +23225,7 @@ msgctxt ""
"par_id811612393585600\n"
"help.text"
msgid "This is useful when parsing CSV-like records that contain quoted strings."
-msgstr ""
+msgstr "Dies ist nützlich, wenn CSV-ähnliche Datensätze analysiert werden, die Zeichenfolgen in Anführungszeichen enthalten."
#. BhVvp
#: sf_string.xhp
@@ -23234,7 +23234,7 @@ msgctxt ""
"par_id761580213677493\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to unquote."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die Zeichenfolge, deren Anführungszeichen entfernt werden sollen."
#. gRUHA
#: sf_string.xhp
@@ -23243,7 +23243,7 @@ msgctxt ""
"par_id211599129509890\n"
"help.text"
msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote (default)."
-msgstr ""
+msgstr "<emph>quotechar</emph>: Entweder das einfache (') oder das doppelte (\") Anführungszeichen (Standard)."
#. nGq4Q
#: sf_string.xhp
@@ -23252,7 +23252,7 @@ msgctxt ""
"bas_id371580213702598\n"
"help.text"
msgid "' s = \"Some text\" (without enclosing quotes)"
-msgstr ""
+msgstr "' s = \"Some text\" (ohne einschließende Anführungszeichen)"
#. Fp8ip
#: sf_string.xhp
@@ -23261,7 +23261,7 @@ msgctxt ""
"bas_id51580213693694\n"
"help.text"
msgid "' The string below does not have enclosing quotes, so it remains unchanged"
-msgstr ""
+msgstr "' Die folgende Zeichenfolge enthält keine einschließenden Anführungszeichen, sodass sie unverändert bleibt"
#. A4Eki
#: sf_string.xhp
@@ -23270,7 +23270,7 @@ msgctxt ""
"bas_id961612393917830\n"
"help.text"
msgid "' s = \"Some text\" (unchanged)"
-msgstr ""
+msgstr "' s = \"Some text\" (unverändert)"
#. ULtxx
#: sf_string.xhp
@@ -23279,7 +23279,7 @@ msgctxt ""
"bas_id461612394182689\n"
"help.text"
msgid "' Quotes inside the string are not removed"
-msgstr ""
+msgstr "' Anführungszeichen innerhalb der Zeichenfolge werden nicht entfernt"
#. 8w4ia
#: sf_string.xhp
@@ -23288,7 +23288,7 @@ msgctxt ""
"bas_id961612394171208\n"
"help.text"
msgid "' s = \"The \"\"true\"\" meaning\" (unchanged)"
-msgstr ""
+msgstr "' s = \"The \"\"true\"\" meaning\" (unverändert)"
#. JGhWK
#: sf_string.xhp
@@ -23297,7 +23297,7 @@ msgctxt ""
"par_id871585834468102\n"
"help.text"
msgid "Converts the input string into an array of substrings so that each item in the array has at most a given number of characters."
-msgstr ""
+msgstr "Konvertiert die Eingabezeichenfolge in eine Matrix von Teilzeichenfolgen, sodass jedes Element in der Matrix höchstens eine bestimmte Anzahl von Zeichen enthält."
#. 4G9FU
#: sf_string.xhp
@@ -23306,7 +23306,7 @@ msgctxt ""
"par_id21612394465120\n"
"help.text"
msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks."
-msgstr ""
+msgstr "In der Praxis gibt diese Methode eine nullbasierte Matrix von Ausgabezeilen ohne Zeilenumbrüche am Ende zurück, mit Ausnahme der bereits vorhandenen Zeilenumbrüche."
#. qgd6X
#: sf_string.xhp
@@ -23315,7 +23315,7 @@ msgctxt ""
"par_id601612395193333\n"
"help.text"
msgid "Tabs are expanded using the same procedure performed by the <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\" name=\"ExpandTabs method\">ExpandTabs</link> method."
-msgstr ""
+msgstr "Tabulatoren werden mit demselben Verfahren erweitert, das auch von der Methode <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\" name=\"ExpandTabs method\">ExpandTabs</link> durchgeführt wird."
#. kTwEG
#: sf_string.xhp
@@ -23324,7 +23324,7 @@ msgctxt ""
"par_id641612394826616\n"
"help.text"
msgid "Symbolic line breaks are replaced by their equivalent Ascii characters."
-msgstr ""
+msgstr "Symbolische Zeilenumbrüche werden durch die entsprechenden ASCII-Zeichen ersetzt."
#. y7VvP
#: sf_string.xhp
@@ -23333,7 +23333,7 @@ msgctxt ""
"par_id361612394859733\n"
"help.text"
msgid "If the wrapped output has no content, the returned array is empty."
-msgstr ""
+msgstr "Wenn die verpackte Ausgabe keinen Inhalt hat, ist die zurückgegebene Matrix leer."
#. SNRzH
#: sf_string.xhp
@@ -23342,7 +23342,7 @@ msgctxt ""
"par_id251585834468498\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to wrap."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Die umzubrechende Zeichenfolge."
#. MiptC
#: sf_string.xhp
@@ -23351,7 +23351,7 @@ msgctxt ""
"par_id351585834773177\n"
"help.text"
msgid "<emph>width</emph>: The maximum number of characters in each line (Default = 70)."
-msgstr ""
+msgstr "<emph>width</emph>: Die maximale Anzahl von Zeichen in jeder Zeile (Standard = 70)."
#. epG6z
#: sf_string.xhp
@@ -23360,7 +23360,7 @@ msgctxt ""
"par_id741585834874500\n"
"help.text"
msgid "<emph>tabsize</emph>: Before wrapping the text, the existing TAB <literal>Chr(9)</literal> characters are replaced with spaces. The argument <literal>tabsize</literal> defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)."
-msgstr ""
+msgstr "<emph>tabsize</emph>: Vor dem Umbruch des Textes werden die vorhandenen Tabulator-Zeichen <literal>Chr(9)</literal> durch Leerzeichen ersetzt. Das Argument <literal>tabsize</literal> definiert die Tabulatoren bei TabSize + 1, 2 * TabSize + 1 , … N * TabSize + 1 (Default = 8)."
#. HjZDB
#: sf_textstream.xhp
@@ -23369,7 +23369,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.TextStream service"
-msgstr ""
+msgstr "Dienst ScriptForge.TextStream"
#. cEA5U
#: sf_textstream.xhp
@@ -23378,7 +23378,7 @@ msgctxt ""
"bm_id351585330787295\n"
"help.text"
msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\">Dienst <literal>ScriptForge</literal>.<literal>TextStream</literal></link></variable>"
#. nBJsE
#: sf_textstream.xhp
@@ -23387,7 +23387,7 @@ msgctxt ""
"par_id511585330787205\n"
"help.text"
msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
-msgstr ""
+msgstr "Der Dienst <literal>TextStream</literal> wird verwendet, um sequentiell aus Dateien zu lesen und in Dateien zu schreiben, die mit dem Dienst <literal>ScriptForge.FileSystem</literal> geöffnet oder erstellt wurden."
#. TeRTa
#: sf_textstream.xhp
@@ -23396,7 +23396,7 @@ msgctxt ""
"par_id41613596903894\n"
"help.text"
msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
-msgstr ""
+msgstr "Die Methoden <literal>OpenTextFile</literal> und <literal>CreateTextFile</literal> des Dienstes <literal>FileSystem</literal> geben eine Instanz des Dienstes <literal>TextStream</literal> zurück."
#. MVFWC
#: sf_textstream.xhp
@@ -23405,7 +23405,7 @@ msgctxt ""
"par_id161585330787262\n"
"help.text"
msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
-msgstr ""
+msgstr "Zeilenbegrenzer können vom Benutzer angegeben werden. Bei Eingabeoperationen werden CR, LF oder CR+LF unterstützt. Bei Ausgabeoperationen ist das Standard-Zeilentrennzeichen dasjenige, das vom Betriebssystem verwendet wird."
#. GDkir
#: sf_textstream.xhp
@@ -23414,7 +23414,7 @@ msgctxt ""
"par_id831613598137669\n"
"help.text"
msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
-msgstr ""
+msgstr "Auf das Zeilentrennzeichen für das Betriebssystem, in dem das Makro ausgeführt wird, kann über die Eigenschaft <literal>SF_String.sfNEWLINE</literal> zugegriffen werden."
#. SvXzF
#: sf_textstream.xhp
@@ -23423,7 +23423,7 @@ msgctxt ""
"par_id851613597445432\n"
"help.text"
msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
-msgstr ""
+msgstr "Es wird davon ausgegangen, dass alle zum Lesen oder Schreiben in eine Datei erforderlichen Operationen (Öffnen, Lesen/Schreiben und Schließen) während derselben Makroausführung erfolgen."
#. dc5KN
#: sf_textstream.xhp
@@ -23432,7 +23432,7 @@ msgctxt ""
"hd_id83158533078741\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Dienstaufruf"
#. AuQX2
#: sf_textstream.xhp
@@ -23441,7 +23441,7 @@ msgctxt ""
"par_id351613598192725\n"
"help.text"
msgid "The examples below in Basic and Python use the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
-msgstr ""
+msgstr "Die folgenden Beispiele in Basic und Python verwenden die Methode <literal>OpenTextFile</literal>, um eine Instanz des Dienstes <literal>TextStream</literal> zu erstellen."
#. UUudg
#: sf_textstream.xhp
@@ -23450,7 +23450,7 @@ msgctxt ""
"par_id371585330787197\n"
"help.text"
msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
-msgstr ""
+msgstr "Nachdem alle Lese- oder Schreiboperationen ausgeführt wurden, muss die Datei mit der Methode <literal>CloseFile</literal> geschlossen werden:"
#. zNveN
#: sf_textstream.xhp
@@ -23459,7 +23459,7 @@ msgctxt ""
"par_id891582733781994\n"
"help.text"
msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
-msgstr ""
+msgstr "Optional können die von der Instanz <literal>TextStream</literal> verwendeten Ressourcen mit der Methode <literal>Dispose</literal> freigegeben werden:"
#. nsGCZ
#: sf_textstream.xhp
@@ -23468,7 +23468,7 @@ msgctxt ""
"par_id121612917368946\n"
"help.text"
msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
-msgstr ""
+msgstr "Die Methoden im Dienst <literal>TextStream</literal> basieren hauptsächlich auf den UNO-Schnittstellen <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> und <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link>."
#. JAmgD
#: sf_textstream.xhp
@@ -23477,7 +23477,7 @@ msgctxt ""
"hd_id941585330787948\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschaften"
#. aN9zM
#: sf_textstream.xhp
@@ -23486,7 +23486,7 @@ msgctxt ""
"par_id631585330787267\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. vwGC5
#: sf_textstream.xhp
@@ -23504,7 +23504,7 @@ msgctxt ""
"par_id581585330787700\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Typ"
#. 6FDuM
#: sf_textstream.xhp
@@ -23522,7 +23522,7 @@ msgctxt ""
"par_id181585330787752\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. YFkaY
#: sf_textstream.xhp
@@ -23531,7 +23531,7 @@ msgctxt ""
"par_id901585330787680\n"
"help.text"
msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
-msgstr ""
+msgstr "Wird im Lesemodus verwendet. Ein Wert <literal>True</literal> gibt an, dass das Ende der Datei erreicht ist. Ein Test, der diese Eigenschaft verwendet, sollte Aufrufen der Methode <literal>ReadLine</literal> vorausgehen."
#. EFEnA
#: sf_textstream.xhp
@@ -23540,7 +23540,7 @@ msgctxt ""
"par_id561585330787568\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. cVCoJ
#: sf_textstream.xhp
@@ -23549,7 +23549,7 @@ msgctxt ""
"par_id741585330787777\n"
"help.text"
msgid "The character set to be used. The default encoding is \"UTF-8\"."
-msgstr ""
+msgstr "Der zu verwendende Zeichensatz. Die Standardcodierung ist „UTF-8“."
#. p5s3X
#: sf_textstream.xhp
@@ -23558,7 +23558,7 @@ msgctxt ""
"par_id641585330787207\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. JjEqX
#: sf_textstream.xhp
@@ -23567,7 +23567,7 @@ msgctxt ""
"par_id281585330787614\n"
"help.text"
msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
-msgstr ""
+msgstr "Gibt den Namen der aktuellen Datei entweder im URL-Format oder im Format des nativen Betriebssystems zurück, abhängig vom aktuellen Wert der Eigenschaft <literal>FileNaming</literal> des Dienstes <literal>FileSystem</literal>."
#. goEnw
#: sf_textstream.xhp
@@ -23576,7 +23576,7 @@ msgctxt ""
"par_id111585330787410\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. MZS6Z
#: sf_textstream.xhp
@@ -23585,7 +23585,7 @@ msgctxt ""
"par_id861585330787417\n"
"help.text"
msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
-msgstr ""
+msgstr "Zeigt den Eingabe-/Ausgabemodus an. Mögliche Werte sind \"READ\", \"WRITE\" oder \"APPEND\"."
#. 7nTb9
#: sf_textstream.xhp
@@ -23594,7 +23594,7 @@ msgctxt ""
"par_id87158533078795\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. j45gC
#: sf_textstream.xhp
@@ -23603,7 +23603,7 @@ msgctxt ""
"par_id561585330787741\n"
"help.text"
msgid "Returns the number of lines read or written so far."
-msgstr ""
+msgstr "Gibt die Anzahl der bisher gelesenen oder geschriebenen Zeilen zurück."
#. CLAvQ
#: sf_textstream.xhp
@@ -23612,7 +23612,7 @@ msgctxt ""
"par_id531585330787157\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Nein"
#. rdA5M
#: sf_textstream.xhp
@@ -23621,7 +23621,7 @@ msgctxt ""
"par_id691585330787279\n"
"help.text"
msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
-msgstr ""
+msgstr "Legt das aktuelle Trennzeichen fest oder gibt es zurück, das zwischen zwei aufeinanderfolgend geschriebenen Zeilen eingefügt werden soll. Der Standardwert ist das native Zeilentrennzeichen im aktuellen Betriebssystem."
#. dCeHZ
#: sf_textstream.xhp
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id141613001281573\n"
"help.text"
msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
-msgstr ""
+msgstr "Um mehr über die Namen von Zeichensätzen zu erfahren, besuchen Sie die Seite <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link>. Beachten Sie, dass %PRODUCTNAME nicht alle vorhandenen Zeichensätze implementiert."
#. hKJkD
#: sf_textstream.xhp
@@ -23639,7 +23639,7 @@ msgctxt ""
"par_id891611613601554\n"
"help.text"
msgid "List of Methods in the TextStream Service"
-msgstr ""
+msgstr "Liste der Methoden im Dienst \"TextStream\""
#. DBBKM
#: sf_textstream.xhp
@@ -23648,7 +23648,7 @@ msgctxt ""
"par_id421585330787675\n"
"help.text"
msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
-msgstr ""
+msgstr "Schließt den aktuellen Eingabe- oder Ausgabestream und leert gegebenenfalls den Ausgabepuffer. Gibt <literal>True</literal> zurück, wenn die Datei erfolgreich geschlossen wurde."
#. MCW3q
#: sf_textstream.xhp
@@ -23657,7 +23657,7 @@ msgctxt ""
"par_id65158533078799\n"
"help.text"
msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
-msgstr ""
+msgstr "Gibt alle verbleibenden Zeilen im Textstrom als einzelne Zeichenfolge zurück. Zeilenumbrüche werden nicht entfernt."
#. Vr34D
#: sf_textstream.xhp
@@ -23666,7 +23666,7 @@ msgctxt ""
"par_id71613600347125\n"
"help.text"
msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
-msgstr ""
+msgstr "Die resultierende Zeichenfolge kann entweder mit der eingebauten Basic-Funktion <literal>Split</literal> in Zeilen aufgeteilt werden, wenn das Zeilentrennzeichen bekannt ist, oder mit der Methode <literal>SF_String.SplitLines</literal>."
#. VRLGn
#: sf_textstream.xhp
@@ -23675,7 +23675,7 @@ msgctxt ""
"par_id91585330787373\n"
"help.text"
msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
-msgstr ""
+msgstr "Bei großen Dateien verschwendet die Verwendung der Methode <literal>ReadAll</literal> Speicherressourcen. In solchen Fällen empfiehlt es sich, die Datei Zeile für Zeile mit der Methode <literal>ReadLine</literal> zu lesen."
#. BuBVA
#: sf_textstream.xhp
@@ -23684,7 +23684,7 @@ msgctxt ""
"par_id921613595637851\n"
"help.text"
msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
-msgstr ""
+msgstr "Betrachten Sie die Textdatei \"Students.txt\" mit folgendem Inhalt (ein Name in jeder Zeile):"
#. hk7q4
#: sf_textstream.xhp
@@ -23693,7 +23693,7 @@ msgctxt ""
"par_id391613596019750\n"
"help.text"
msgid "The examples below in Basic and Python use the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
-msgstr ""
+msgstr "Die folgenden Beispiele in Basic und Python verwenden die Methoden <literal>ReadAll</literal> und <literal>SplitLines</literal>, um den Inhalt der Datei in eine Matrix von Zeichenfolgen einzulesen:"
#. BuRJE
#: sf_textstream.xhp
@@ -23702,7 +23702,7 @@ msgctxt ""
"bas_id251613595640550\n"
"help.text"
msgid "'Loads the FileSystem service"
-msgstr ""
+msgstr "' Lädt den Dienst \"FileSystem\""
#. L2a3D
#: sf_textstream.xhp
@@ -23711,7 +23711,7 @@ msgctxt ""
"bas_id181613595641087\n"
"help.text"
msgid "'Opens the text file with the names to be read"
-msgstr ""
+msgstr "' Öffnet die Textdatei mit den auszulesenden Namen"
#. 7Fq9E
#: sf_textstream.xhp
@@ -23720,7 +23720,7 @@ msgctxt ""
"par_id871585330787885\n"
"help.text"
msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
-msgstr ""
+msgstr "Gibt die nächste Zeile im Textstrom als Zeichenfolge zurück. Zeilenumbrüche werden aus der zurückgegebenen Zeichenfolge entfernt."
#. 6iDcF
#: sf_textstream.xhp
@@ -23729,7 +23729,7 @@ msgctxt ""
"par_id431613600221626\n"
"help.text"
msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
-msgstr ""
+msgstr "Der Test <literal>AtEndOfStream</literal> sollte der Methode <literal>ReadLine</literal> vorangehen, wie im Beispiel unten."
#. GRRkq
#: sf_textstream.xhp
@@ -23738,7 +23738,7 @@ msgctxt ""
"par_id171585330787774\n"
"help.text"
msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
-msgstr ""
+msgstr "Ein Fehler wird ausgelöst, wenn <literal>AtEndOfStream</literal> während des vorherigen Methodenaufrufs <literal>ReadLine</literal> oder <literal>SkipLine</literal> erreicht wurde."
#. mAty4
#: sf_textstream.xhp
@@ -23747,7 +23747,7 @@ msgctxt ""
"par_id11585330787847\n"
"help.text"
msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
-msgstr ""
+msgstr "Überspringt die nächste Zeile im Eingabestrom beim Lesen einer Datei <literal>TextStream</literal>."
#. FDMJB
#: sf_textstream.xhp
@@ -23756,7 +23756,7 @@ msgctxt ""
"par_id441613600704766\n"
"help.text"
msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
-msgstr ""
+msgstr "Diese Methode kann dazu führen, dass <literal>AtEndOfStream</literal> auf <literal>True</literal> gesetzt wird."
#. D4JVb
#: sf_textstream.xhp
@@ -23765,7 +23765,7 @@ msgctxt ""
"par_id141585330787657\n"
"help.text"
msgid "Writes a specified number of empty lines to the output stream."
-msgstr ""
+msgstr "Schreibt eine angegebene Anzahl leerer Zeilen in den Ausgabestrom."
#. YsBUm
#: sf_textstream.xhp
@@ -23774,7 +23774,7 @@ msgctxt ""
"par_id291585330787357\n"
"help.text"
msgid "<emph>lines</emph>: The number of empty lines to write to the file."
-msgstr ""
+msgstr "<emph>lines</emph>: Die Anzahl der leeren Zeilen, die in die Datei geschrieben werden sollen."
#. GCPCC
#: sf_textstream.xhp
@@ -23783,7 +23783,7 @@ msgctxt ""
"par_id101585330787215\n"
"help.text"
msgid "Writes the given string to the output stream as a single line."
-msgstr ""
+msgstr "Schreibt die angegebene Zeichenfolge als einzelne Zeile in den Ausgabestrom."
#. Eska7
#: sf_textstream.xhp
@@ -23792,7 +23792,7 @@ msgctxt ""
"par_id421613601002074\n"
"help.text"
msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
-msgstr ""
+msgstr "Als Zeilentrennzeichen wird das in der Eigenschaft <literal>NewLine</literal> definierte Zeichen verwendet."
#. LXFPE
#: sf_textstream.xhp
@@ -23801,7 +23801,7 @@ msgctxt ""
"par_id491585330787650\n"
"help.text"
msgid "<emph>line</emph>: The line to write, may be empty."
-msgstr ""
+msgstr "<emph>line</emph>: Die zu schreibende Zeile, kann leer sein."
#. PM5Bx
#: sf_textstream.xhp
@@ -23810,7 +23810,7 @@ msgctxt ""
"par_id821626894480105\n"
"help.text"
msgid "The examples below in Basic and Python create a text file in CSV format in which each line contains a value and its square until <literal>lastValue</literal> is reached."
-msgstr ""
+msgstr "Die folgenden Beispiele in Basic und Python erstellen eine Textdatei im CSV-Format, in der jede Zeile einen Wert und sein Quadrat enthält, bis <literal>lastValue</literal> erreicht ist."
#. 39u4o
#: sf_textstream.xhp
@@ -23819,7 +23819,7 @@ msgctxt ""
"bas_id21613321528612\n"
"help.text"
msgid "'Instantiates the FileSystem Service"
-msgstr ""
+msgstr "' Instanziiert den Dienst \"FileSystem\""
#. FnTiG
#: sf_textstream.xhp
@@ -23828,7 +23828,7 @@ msgctxt ""
"bas_id191613321529277\n"
"help.text"
msgid "'Creates a text file"
-msgstr ""
+msgstr "' Erzeugt eine Textdatei"
#. f5RSB
#: sf_textstream.xhp
@@ -23837,7 +23837,7 @@ msgctxt ""
"bas_id641613321530181\n"
"help.text"
msgid "'Writes the Value and Value squared, separated by \";\""
-msgstr ""
+msgstr "' Schreibt den Wert und den Wert zum Quadrat, getrennt durch \";\""
#. FCowk
#: sf_textstream.xhp
@@ -23846,7 +23846,7 @@ msgctxt ""
"bas_id141613321530960\n"
"help.text"
msgid "myFile.WriteLine(\"Value;Value Squared\")"
-msgstr ""
+msgstr "myFile.WriteLine(\"Value;Value Squared\")"
#. m9Mo4
#: sf_textstream.xhp
@@ -23855,7 +23855,7 @@ msgctxt ""
"bas_id881613321532598\n"
"help.text"
msgid "'Closes the file and free resources"
-msgstr ""
+msgstr "' Schließt die Datei und gibt Ressourcen frei"
#. PCSPY
#: sf_timer.xhp
@@ -23864,7 +23864,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.Timer service"
-msgstr ""
+msgstr "Dienst ScriptForge.Timer"
#. cxRDS
#: sf_timer.xhp
@@ -23873,7 +23873,7 @@ msgctxt ""
"hd_id731582733781114\n"
"help.text"
msgid "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>ScriptForge</literal>.<literal>Timer</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\">Dienst <literal>ScriptForge</literal>.<literal>Timer</literal></link></variable>"
#. WyVvH
#: sf_timer.xhp
@@ -23882,7 +23882,7 @@ msgctxt ""
"par_id961582733781662\n"
"help.text"
msgid "The <literal>Timer</literal> service measures the amount of time it takes to run user scripts."
-msgstr ""
+msgstr "Der Dienst <literal>Timer</literal> misst die Zeit, die zum Ausführen von Benutzerskripten benötigt wird."
#. qDa8E
#: sf_timer.xhp
@@ -23891,7 +23891,7 @@ msgctxt ""
"par_id181582733781323\n"
"help.text"
msgid "A <literal>Timer</literal> measures <emph>durations</emph>. It can be:"
-msgstr ""
+msgstr "<literal>Timer</literal> misst die <emph>Dauer</emph>. Es kann sein:"
#. ErpLm
#: sf_timer.xhp
@@ -23900,7 +23900,7 @@ msgctxt ""
"par_id711582733781252\n"
"help.text"
msgid "Started, to indicate when to start measuring time."
-msgstr ""
+msgstr "Gestartet, um anzugeben, wann die Zeitmessung beginnen soll."
#. NAAFg
#: sf_timer.xhp
@@ -23909,7 +23909,7 @@ msgctxt ""
"par_id631582733781431\n"
"help.text"
msgid "Suspended, to pause measuring running time."
-msgstr ""
+msgstr "Angehalten, um die Messung der Laufzeit zu unterbrechen."
#. nt9Qc
#: sf_timer.xhp
@@ -23918,7 +23918,7 @@ msgctxt ""
"par_id691582733781498\n"
"help.text"
msgid "Resumed, to continue tracking running time after the Timer has been suspended."
-msgstr ""
+msgstr "Fortgesetzt, um die Laufzeit fortzusetzen, nachdem der Timer ausgesetzt wurde."
#. DVCBM
#: sf_timer.xhp
@@ -23927,7 +23927,7 @@ msgctxt ""
"par_id31582733781344\n"
"help.text"
msgid "Restarted, which will cancel previous measurements and start the <literal>Timer</literal> at zero."
-msgstr ""
+msgstr "Neu gestartet, wodurch frühere Messungen abgebrochen und der <literal>Timer</literal> bei Null gestartet wird."
#. dm7yA
#: sf_timer.xhp
@@ -23936,7 +23936,7 @@ msgctxt ""
"par_id991582733781280\n"
"help.text"
msgid "Durations are expressed in seconds with a precision of 3 decimal digits (milliseconds). A duration value of 12.345 means 12 seconds and 345 milliseconds"
-msgstr ""
+msgstr "Die Dauer wird in Sekunden mit einer Genauigkeit von 3 Dezimalstellen (Millisekunden) ausgedrückt. Ein Wert von 12,345 bedeutet 12 Sekunden und 345 Millisekunden"
#. CVhDR
#: sf_timer.xhp
@@ -23945,7 +23945,7 @@ msgctxt ""
"hd_id201582733781265\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Dienstaufruf"
#. SCYEX
#: sf_timer.xhp
@@ -23954,7 +23954,7 @@ msgctxt ""
"par_id891610734806133\n"
"help.text"
msgid "The example below creates a <literal>Timer</literal> object named <literal>myTimer</literal> and starts it immediately."
-msgstr ""
+msgstr "Das folgende Beispiel erstellt ein Objekt <literal>Timer</literal> namens <literal>myTimer</literal> und startet es sofort."
#. CnZqc
#: sf_timer.xhp
@@ -23963,7 +23963,7 @@ msgctxt ""
"par_id891582733781994\n"
"help.text"
msgid "It is recommended to free resources after use:"
-msgstr ""
+msgstr "Es wird empfohlen, Ressourcen nach der Verwendung freizugeben:"
#. 8h3fp
#: sf_timer.xhp
@@ -23972,7 +23972,7 @@ msgctxt ""
"hd_id521582733781450\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschaften"
#. dVncX
#: sf_timer.xhp
@@ -23981,7 +23981,7 @@ msgctxt ""
"par_id71582733781260\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. hFnkK
#: sf_timer.xhp
@@ -23999,7 +23999,7 @@ msgctxt ""
"par_id76158273378122\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Typ"
#. 7zFYh
#: sf_timer.xhp
@@ -24017,7 +24017,7 @@ msgctxt ""
"par_id621582733781588\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. 9yDgM
#: sf_timer.xhp
@@ -24026,7 +24026,7 @@ msgctxt ""
"par_id731582733781476\n"
"help.text"
msgid "The actual running time elapsed since start or between start and stop (does not consider suspended time)"
-msgstr ""
+msgstr "Die tatsächliche Laufzeit, die seit dem Start oder zwischen Start und Stopp verstrichen ist (unterbrochene Zeit wird nicht berücksichtigt)"
#. ThAaG
#: sf_timer.xhp
@@ -24035,7 +24035,7 @@ msgctxt ""
"par_id301582733781498\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. tqpDU
#: sf_timer.xhp
@@ -24044,7 +24044,7 @@ msgctxt ""
"par_id401582733781608\n"
"help.text"
msgid "<literal>True</literal> when timer is started or suspended"
-msgstr ""
+msgstr "<literal>True</literal>, wenn der Timer gestartet oder angehalten wird"
#. pSPgk
#: sf_timer.xhp
@@ -24053,7 +24053,7 @@ msgctxt ""
"par_id181582733781551\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. SGyi4
#: sf_timer.xhp
@@ -24062,7 +24062,7 @@ msgctxt ""
"par_id161582733781328\n"
"help.text"
msgid "<literal>True</literal> when timer is started and suspended"
-msgstr ""
+msgstr "<literal>True</literal> wenn der Timer gestartet und angehalten wird"
#. qoNpD
#: sf_timer.xhp
@@ -24071,7 +24071,7 @@ msgctxt ""
"par_id651582733781874\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. E45MD
#: sf_timer.xhp
@@ -24080,7 +24080,7 @@ msgctxt ""
"par_id171582733781456\n"
"help.text"
msgid "The actual time elapsed while suspended since start or between start and stop"
-msgstr ""
+msgstr "Die tatsächlich verstrichene Zeit während der Unterbrechung, seit dem Start oder zwischen Start und Stopp"
#. gxF8S
#: sf_timer.xhp
@@ -24089,7 +24089,7 @@ msgctxt ""
"par_id141582733781303\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. FeCob
#: sf_timer.xhp
@@ -24098,7 +24098,7 @@ msgctxt ""
"par_id411582733781932\n"
"help.text"
msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)"
-msgstr ""
+msgstr "Die tatsächlich verstrichene Zeit seit dem Start oder zwischen Start und Stopp (einschließlich Unterbrechungen und Laufzeit)"
#. Mav4g
#: sf_timer.xhp
@@ -24107,7 +24107,7 @@ msgctxt ""
"hd_id141582734141895\n"
"help.text"
msgid "Methods"
-msgstr ""
+msgstr "Methoden"
#. P8RQj
#: sf_timer.xhp
@@ -24116,7 +24116,7 @@ msgctxt ""
"par_id291582734377752\n"
"help.text"
msgid "All methods do not require arguments and return a <literal>Boolean</literal> value."
-msgstr ""
+msgstr "Alle Methoden benötigen keine Argumente und geben einen <literal>booleschen</literal> Wert zurück."
#. onEib
#: sf_timer.xhp
@@ -24125,7 +24125,7 @@ msgctxt ""
"par_id311582734894257\n"
"help.text"
msgid "If the returned value is <literal>False</literal>, then nothing happened."
-msgstr ""
+msgstr "Wenn der zurückgegebene Wert <literal>False</literal> ist, ist nichts passiert."
#. U82Do
#: sf_timer.xhp
@@ -24134,7 +24134,7 @@ msgctxt ""
"par_id871582734180676\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. 6oGwx
#: sf_timer.xhp
@@ -24152,7 +24152,7 @@ msgctxt ""
"par_id911582734180676\n"
"help.text"
msgid "Returned value"
-msgstr ""
+msgstr "Zurückgegebener Wert"
#. 6DJTP
#: sf_timer.xhp
@@ -24161,7 +24161,7 @@ msgctxt ""
"par_id301582734180676\n"
"help.text"
msgid "Resumes the <literal>Timer</literal> if it has been suspended"
-msgstr ""
+msgstr "Setzt den <literal>Timer</literal> fort, wenn er angehalten wurde"
#. ixF7A
#: sf_timer.xhp
@@ -24170,7 +24170,7 @@ msgctxt ""
"par_id661582734180676\n"
"help.text"
msgid "<literal>False</literal> if the timer is not suspended"
-msgstr ""
+msgstr "<literal>False</literal>, wenn der Timer nicht angehalten wurde"
#. AAozF
#: sf_timer.xhp
@@ -24179,7 +24179,7 @@ msgctxt ""
"par_id821582734649305\n"
"help.text"
msgid "Terminates the <literal>Timer</literal> and discards its current property values, restarting as a new clean <literal>Timer</literal>"
-msgstr ""
+msgstr "Beendet den <literal>Timer</literal>, verwirft seine aktuellen Eigenschaftswerte und startet als neuer <literal>Timer</literal> neu"
#. UtCTT
#: sf_timer.xhp
@@ -24188,7 +24188,7 @@ msgctxt ""
"par_id761582734649305\n"
"help.text"
msgid "<literal>False</literal> if the timer is inactive"
-msgstr ""
+msgstr "<literal>False</literal> wenn der Timer inaktiv ist"
#. AkgAy
#: sf_timer.xhp
@@ -24197,7 +24197,7 @@ msgctxt ""
"par_id641582734802443\n"
"help.text"
msgid "Starts a new clean timer"
-msgstr ""
+msgstr "Startet einen neuen Timer"
#. B4gTh
#: sf_timer.xhp
@@ -24206,7 +24206,7 @@ msgctxt ""
"par_id921582734802443\n"
"help.text"
msgid "<literal>False</literal> if the timer is already started"
-msgstr ""
+msgstr "<literal>False</literal> wenn der Timer bereits gestartet ist"
#. D7CoH
#: sf_timer.xhp
@@ -24215,7 +24215,7 @@ msgctxt ""
"par_id81582734905507\n"
"help.text"
msgid "Suspends a running timer"
-msgstr ""
+msgstr "Unterbricht einen laufenden Timer"
#. YbeSJ
#: sf_timer.xhp
@@ -24224,7 +24224,7 @@ msgctxt ""
"par_id661582734905507\n"
"help.text"
msgid "<literal>False</literal> if the timer is not started or already suspended"
-msgstr ""
+msgstr "<literal>False</literal>, wenn der Timer nicht gestartet oder bereits angehalten wurde"
#. sgXra
#: sf_timer.xhp
@@ -24233,7 +24233,7 @@ msgctxt ""
"par_id861582734996722\n"
"help.text"
msgid "Stops a running timer"
-msgstr ""
+msgstr "Stoppt einen laufenden Timer"
#. WkCCC
#: sf_timer.xhp
@@ -24242,7 +24242,7 @@ msgctxt ""
"par_id381582734996722\n"
"help.text"
msgid "<literal>False</literal> if the timer is neither started nor suspended"
-msgstr ""
+msgstr "<literal>False</literal> wenn der Timer weder gestartet noch angehalten ist"
#. DuD3h
#: sf_timer.xhp
@@ -24251,7 +24251,7 @@ msgctxt ""
"par_id731626871820490\n"
"help.text"
msgid "The examples below in Basic and Python illustrate the use of the methods and properties in the <literal>Timer</literal> service."
-msgstr ""
+msgstr "Die folgenden Beispiele in Basic und Python veranschaulichen die Verwendung der Methoden und Eigenschaften im Dienst <literal>Timer</literal>."
#. UgBnC
#: sf_timer.xhp
@@ -24260,7 +24260,7 @@ msgctxt ""
"bas_id141582735926821\n"
"help.text"
msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
-msgstr ""
+msgstr "' Die verstrichene Zeit, während der Dialog geöffnet war, wird als unterbrochene Zeit gezählt"
#. 4jHcj
#: sf_timer.xhp
@@ -24269,7 +24269,7 @@ msgctxt ""
"bas_id901582735961725\n"
"help.text"
msgid "'The time elapsed while the Dialog box is open will be counted as running time"
-msgstr ""
+msgstr "' Die verstrichene Zeit, während der Dialog geöffnet war, wird als Laufzeit gezählt"
#. 7QhZU
#: sf_timer.xhp
@@ -24278,7 +24278,7 @@ msgctxt ""
"bas_id941610739926687\n"
"help.text"
msgid "'Shows the final time measurements"
-msgstr ""
+msgstr "' Zeigt die letzten Zeitmessungen"
#. J6XGB
#: sf_timer.xhp
@@ -24287,7 +24287,7 @@ msgctxt ""
"par_id281610740093006\n"
"help.text"
msgid "If you call the <literal>Terminate</literal> method, subsequent calls for the <literal>Continue</literal> method will not resume time measurement. Similarly, after a Timer has been terminated, calling the <literal>Start</literal> method will restart it as if it were a clean new Timer."
-msgstr ""
+msgstr "Wenn Sie die Methode <literal>Terminate</literal> aufrufen, setzen nachfolgende Aufrufe der Methode <literal>Continue</literal> die Zeitmessung nicht fort. In ähnlicher Weise wird ein Timer, nachdem er beendet wurde, durch Aufrufen der Methode <literal>Start</literal> neu gestartet, als wäre er ein neuer Timer."
#. DSYKj
#: sf_timer.xhp
@@ -24296,7 +24296,7 @@ msgctxt ""
"par_id391626872019832\n"
"help.text"
msgid "Beware that the <literal>Wait</literal> function in Basic takes in a duration argument in milliseconds whereas the <literal>sleep</literal> function in Python uses seconds in its argument."
-msgstr ""
+msgstr "Beachten Sie, dass die Funktion <literal>Wait</literal> in Basic ein Argument für die Dauer in Millisekunden akzeptiert, während die Funktion <literal>sleep</literal> in Python Sekunden in ihrem Argument verwendet."
#. bHEyr
#: sf_timer.xhp
@@ -24305,7 +24305,7 @@ msgctxt ""
"hd_id431610989623086\n"
"help.text"
msgid "Working with Multiple Timers"
-msgstr ""
+msgstr "Arbeiten mit mehreren Timern"
#. dr779
#: sf_timer.xhp
@@ -24314,7 +24314,7 @@ msgctxt ""
"par_id741610989639201\n"
"help.text"
msgid "It is possible to instantiate multiple <literal>Timer</literal> services in parallel, which gives flexibility in measuring time in different parts of the code."
-msgstr ""
+msgstr "Es ist möglich, mehrere Dienste <literal>Timer</literal> parallel zu instanziieren, wodurch die Zeit in verschiedenen Teilen des Codes flexibel gemessen werden kann."
#. ueLgB
#: sf_timer.xhp
@@ -24323,7 +24323,7 @@ msgctxt ""
"par_id921610989722908\n"
"help.text"
msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
-msgstr ""
+msgstr "Das folgende Beispiel veranschaulicht, wie zwei Objekte <literal>Timer</literal> erstellt und separat gestartet werden."
#. PtA4E
#: sf_timer.xhp
@@ -24332,7 +24332,7 @@ msgctxt ""
"bas_id481610989853679\n"
"help.text"
msgid "'Starts myTimerA"
-msgstr ""
+msgstr "' Startet myTimerA"
#. VUdGW
#: sf_timer.xhp
@@ -24341,7 +24341,7 @@ msgctxt ""
"bas_id331610989849501\n"
"help.text"
msgid "'Starts myTimerB"
-msgstr ""
+msgstr "' Startet myTimerB"
#. t98Fv
#: sf_timer.xhp
@@ -24350,7 +24350,7 @@ msgctxt ""
"bas_id931610989837747\n"
"help.text"
msgid "'Terminate both timers"
-msgstr ""
+msgstr "' Beenden Sie beide Timer"
#. dphFv
#: sf_ui.xhp
@@ -24359,7 +24359,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.UI service"
-msgstr ""
+msgstr "Dienst ScriptForge.UI"
#. QWA6E
#: sf_ui.xhp
@@ -24368,7 +24368,7 @@ msgctxt ""
"hd_id371587913266310\n"
"help.text"
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\">Dienst <literal>ScriptForge</literal>.<literal>UI</literal></link></variable>"
#. cAtxQ
#: sf_ui.xhp
@@ -24377,7 +24377,7 @@ msgctxt ""
"par_id31587913266153\n"
"help.text"
msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
-msgstr ""
+msgstr "Der Dienst UI (User Interface) vereinfacht die Identifizierung und Handhabung der verschiedenen Fenster, aus denen sich die gesamte %PRODUCTNAME-Anwendung zusammensetzt:"
#. nTqj5
#: sf_ui.xhp
@@ -24386,7 +24386,7 @@ msgctxt ""
"par_id591587913266547\n"
"help.text"
msgid "Windows selection"
-msgstr ""
+msgstr "Fensterauswahl"
#. 45jFA
#: sf_ui.xhp
@@ -24395,7 +24395,7 @@ msgctxt ""
"par_id511587913266292\n"
"help.text"
msgid "Windows moving and resizing"
-msgstr ""
+msgstr "Fenster verschieben und skalieren"
#. UKRyn
#: sf_ui.xhp
@@ -24404,7 +24404,7 @@ msgctxt ""
"par_id51587913266596\n"
"help.text"
msgid "Statusbar settings"
-msgstr ""
+msgstr "Statusleisten-Einstellungen"
#. oj2kC
#: sf_ui.xhp
@@ -24413,7 +24413,7 @@ msgctxt ""
"par_id401599404339702\n"
"help.text"
msgid "Display of a floating progress bar"
-msgstr ""
+msgstr "Anzeige eines schwebenden Fortschrittsbalkens"
#. iE5hR
#: sf_ui.xhp
@@ -24422,7 +24422,7 @@ msgctxt ""
"par_id761587913266388\n"
"help.text"
msgid "Creation of new windows"
-msgstr ""
+msgstr "Erstellung neuer Fenster"
#. Dxuyy
#: sf_ui.xhp
@@ -24431,7 +24431,7 @@ msgctxt ""
"par_id591587913266489\n"
"help.text"
msgid "Access to the underlying \"documents\""
-msgstr ""
+msgstr "Zugriff auf die zugrunde liegenden \"Dokumente\""
#. W5BL2
#: sf_ui.xhp
@@ -24440,7 +24440,7 @@ msgctxt ""
"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
-msgstr ""
+msgstr "Der Dienst UI ist der Ausgangspunkt zum Öffnen, Erstellen oder Zugreifen auf den Inhalt neuer oder bestehender Dokumente aus einem Benutzerskript."
#. ERvRF
#: sf_ui.xhp
@@ -24449,7 +24449,7 @@ msgctxt ""
"hd_id881587913266307\n"
"help.text"
msgid "Definitions"
-msgstr ""
+msgstr "Definitionen"
#. L8Ate
#: sf_ui.xhp
@@ -24458,7 +24458,7 @@ msgctxt ""
"par_id741587913266919\n"
"help.text"
msgid "A window can be designated using various ways:"
-msgstr ""
+msgstr "Ein Fenster kann auf verschiedene Arten bezeichnet werden:"
#. Bhs9h
#: sf_ui.xhp
@@ -24467,7 +24467,7 @@ msgctxt ""
"par_id291587913946648\n"
"help.text"
msgid "a full path and file name"
-msgstr ""
+msgstr "ein vollständiger Pfad und Dateiname"
#. CK62z
#: sf_ui.xhp
@@ -24476,7 +24476,7 @@ msgctxt ""
"par_id991587914045862\n"
"help.text"
msgid "the last component of the full file name or even only the last component without its suffix"
-msgstr ""
+msgstr "der letzte Bestandteil des vollständigen Dateinamens oder auch nur der letzte Bestandteil ohne sein Suffix"
#. 8qLrG
#: sf_ui.xhp
@@ -24485,7 +24485,7 @@ msgctxt ""
"par_id541587914079744\n"
"help.text"
msgid "the title of the window"
-msgstr ""
+msgstr "der Titel des Fensters"
#. rdSGt
#: sf_ui.xhp
@@ -24494,7 +24494,7 @@ msgctxt ""
"par_id191587914134221\n"
"help.text"
msgid "for new documents, something like \"Untitled 1\""
-msgstr ""
+msgstr "für neue Dokumente so etwas wie \"Unbenannt 1\""
#. GrAxe
#: sf_ui.xhp
@@ -24503,7 +24503,7 @@ msgctxt ""
"par_id911587914185746\n"
"help.text"
msgid "one of the special windows \"<literal>BASICIDE</literal>\" and \"<literal>WELCOMESCREEN</literal>\""
-msgstr ""
+msgstr "eines der Spezialfenster \"<literal>BASICIDE</literal>\" und \"<literal>WELCOMESCREEN</literal>\""
#. n5ZLz
#: sf_ui.xhp
@@ -24512,7 +24512,7 @@ msgctxt ""
"par_id181587914255236\n"
"help.text"
msgid "The window name is case-sensitive."
-msgstr ""
+msgstr "Beim Fensternamen wird zwischen Groß- und Kleinschreibung unterschieden."
#. CC5D5
#: sf_ui.xhp
@@ -24521,7 +24521,7 @@ msgctxt ""
"hd_id541588520711430\n"
"help.text"
msgid "Document object"
-msgstr ""
+msgstr "Objekt \"Document\""
#. utsAW
#: sf_ui.xhp
@@ -24530,7 +24530,7 @@ msgctxt ""
"par_id841588521238711\n"
"help.text"
msgid "The methods <literal>CreateDocument</literal>, <literal>CreateBaseDocument</literal>, <literal>GetDocument</literal> and <literal>OpenDocument</literal>, described below, generate document objects. When a window contains a document, an instance of the <literal>Document</literal> class represents that document. A counterexample the Basic IDE is not a document but is a window in our terminology. Additionally a document has a type: <literal>Calc</literal>, <literal>Impress</literal>, <literal>Writer</literal>, ..."
-msgstr ""
+msgstr "Die unten beschriebenen Methoden <literal>CreateDocument</literal>, <literal>CreateBaseDocument</literal>, <literal>GetDocument</literal> und <literal>OpenDocument</literal> erzeugen Objekte \"Document\". Wenn ein Fenster ein Dokument enthält, repräsentiert eine Instanz der Klasse <literal>Document</literal> dieses Dokument. Ein Gegenbeispiel: Die Basic IDE ist kein Dokument, sondern ein Fenster in unserer Terminologie. Zusätzlich hat ein Dokument einen Typ: <literal>Calc</literal>, <literal>Impress</literal>, <literal>Writer</literal>, …"
#. CbJ8H
#: sf_ui.xhp
@@ -24539,7 +24539,7 @@ msgctxt ""
"par_id331588521254916\n"
"help.text"
msgid "The specific properties and methods applicable on documents are implemented in a document class."
-msgstr ""
+msgstr "Die spezifischen Eigenschaften und Methoden, die auf Dokumente anwendbar sind, werden in einer Klasse \"Document\" implementiert."
#. CEisb
#: sf_ui.xhp
@@ -24548,7 +24548,7 @@ msgctxt ""
"par_id971588521292976\n"
"help.text"
msgid "The implementation of the document objects class is done in the <literal>SFDocuments</literal> associated library. See its \"<literal>Document</literal>\" service."
-msgstr ""
+msgstr "Die Implementierung der Dokumentobjektklasse erfolgt in der zugehörigen Bibliothek <literal>SFDocuments</literal>. Siehe Dienst \"<literal>Document</literal>\"."
#. 8NGPA
#: sf_ui.xhp
@@ -24557,7 +24557,7 @@ msgctxt ""
"hd_id91587913266988\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Dienstaufruf"
#. 2tFG6
#: sf_ui.xhp
@@ -24566,7 +24566,7 @@ msgctxt ""
"hd_id841587913266618\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschaften"
#. m8i6L
#: sf_ui.xhp
@@ -24575,7 +24575,7 @@ msgctxt ""
"par_id521587913266568\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. 48SHW
#: sf_ui.xhp
@@ -24593,7 +24593,7 @@ msgctxt ""
"par_id631587914939732\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Typ"
#. nB9z5
#: sf_ui.xhp
@@ -24611,7 +24611,7 @@ msgctxt ""
"par_id651587913266754\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. vQ8TT
#: sf_ui.xhp
@@ -24620,7 +24620,7 @@ msgctxt ""
"par_id351587913266349\n"
"help.text"
msgid "a valid and unique <literal>WindowName</literal> for the currently active window. When the window cannot be identified, a zero-length string is returned."
-msgstr ""
+msgstr "ein gültiger und eindeutiger <literal>WindowName</literal> für das aktuell aktive Fenster. Wenn das Fenster nicht identifiziert werden kann, wird eine Zeichenfolge der Länge Null zurückgegeben."
#. DiCRC
#: sf_ui.xhp
@@ -24629,7 +24629,7 @@ msgctxt ""
"par_id658517913266754\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#. Bjyuv
#: sf_ui.xhp
@@ -24638,7 +24638,7 @@ msgctxt ""
"par_id153587913266349\n"
"help.text"
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
-msgstr ""
+msgstr "Die Liste der aktuell geöffneten Dokumente. Sonderfenster werden ignoriert. Diese Liste besteht aus einer nullbasierten eindimensionalen Matrix entweder aus Dateinamen (in der Notation SF_FileSystem.FileNaming) oder aus Fenstertiteln für nicht gespeicherte Dokumente."
#. BH9YJ
#: sf_ui.xhp
@@ -24647,7 +24647,7 @@ msgctxt ""
"hd_id511620762163390\n"
"help.text"
msgid "Constants"
-msgstr ""
+msgstr "Konstanten"
#. ziD2D
#: sf_ui.xhp
@@ -24656,7 +24656,7 @@ msgctxt ""
"par_id761620761856238\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. eBD6E
#: sf_ui.xhp
@@ -24665,7 +24665,7 @@ msgctxt ""
"par_id591620761856238\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Wert"
#. 2DU4R
#: sf_ui.xhp
@@ -24674,7 +24674,7 @@ msgctxt ""
"par_id711620761856238\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. adCUF
#: sf_ui.xhp
@@ -24683,7 +24683,7 @@ msgctxt ""
"par_id341620761856238\n"
"help.text"
msgid "Macros are always executed"
-msgstr ""
+msgstr "Makros werden immer ausgeführt"
#. 7hEDg
#: sf_ui.xhp
@@ -24692,7 +24692,7 @@ msgctxt ""
"par_id101620761893011\n"
"help.text"
msgid "Macros are never executed"
-msgstr ""
+msgstr "Makros werden nie ausgeführt"
#. 6Jgt7
#: sf_ui.xhp
@@ -24701,7 +24701,7 @@ msgctxt ""
"par_id11620761899780\n"
"help.text"
msgid "Macro execution depends on user settings"
-msgstr ""
+msgstr "Die Makroausführung hängt von den Benutzereinstellungen ab"
#. BTUQ4
#: sf_ui.xhp
@@ -24710,7 +24710,7 @@ msgctxt ""
"par_id311620312548992\n"
"help.text"
msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
-msgstr ""
+msgstr "Die folgenden Beispiele zeigen eine <literal>MsgBox</literal> mit den Namen aller derzeit geöffneten Dokumente."
#. DfpBz
#: sf_ui.xhp
@@ -24719,7 +24719,7 @@ msgctxt ""
"par_id881608131596153\n"
"help.text"
msgid "List of Methods in the UI Service"
-msgstr ""
+msgstr "Liste der Methoden im Dienst \"UI\""
#. 4fc2p
#: sf_ui.xhp
@@ -24728,7 +24728,7 @@ msgctxt ""
"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
-msgstr ""
+msgstr "Beachten Sie als Ausnahme, dass die mit <emph>(*)</emph> gekennzeichneten Methoden <emph>nicht auf Base-Dokumente anwendbar sind</emph>."
#. 778Fh
#: sf_ui.xhp
@@ -24737,7 +24737,7 @@ msgctxt ""
"par_id201587913266596\n"
"help.text"
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
-msgstr ""
+msgstr "Aktiviert das angegebene Fenster. Die Methode gibt <literal>True</literal> zurück, wenn das angegebene Fenster gefunden wird und aktiviert werden kann. Es gibt keine Änderung in der eigentlichen Benutzeroberfläche, wenn kein Fenster der Auswahl entspricht."
#. w9DR4
#: sf_ui.xhp
@@ -24746,7 +24746,7 @@ msgctxt ""
"par_id381587913266946\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions above."
-msgstr ""
+msgstr "<emph>windowname</emph>: siehe obige Definitionen."
#. 5kwSb
#: sf_ui.xhp
@@ -24755,7 +24755,7 @@ msgctxt ""
"par_id13159655484952\n"
"help.text"
msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
-msgstr ""
+msgstr "Erstellt und speichert ein neues %PRODUCTNAME-Base-Dokument, das eine leere Datenbank des angegebenen Typs einbettet. Die Methode gibt eine Dienstinstanz <literal>Document</literal> zurück."
#. gqGpB
#: sf_ui.xhp
@@ -24764,7 +24764,7 @@ msgctxt ""
"par_id441596554849949\n"
"help.text"
msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
-msgstr ""
+msgstr "<emph>filename</emph>: Identifiziert die zu erstellende Datei. Es muss der Notation <literal>SF_FileSystem.FileNaming</literal> folgen. Existiert die Datei bereits, wird sie ohne Warnung überschrieben"
#. Jub7D
#: sf_ui.xhp
@@ -24773,7 +24773,7 @@ msgctxt ""
"par_id381596554849698\n"
"help.text"
msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default), \"FIREBIRD\" or \"CALC\"."
-msgstr ""
+msgstr "<emph>embeddeddatabase</emph>: \"HSQLDB\" (Standard), \"FIREBIRD\" oder \"CALC\"."
#. BWgpN
#: sf_ui.xhp
@@ -24782,7 +24782,7 @@ msgctxt ""
"par_id521596554849185\n"
"help.text"
msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
-msgstr ""
+msgstr "<emph>registrationname</emph>: Der Name, der verwendet wird, um die neue Datenbank im Datenbankregister zu speichern. Wenn = \"\" (Standard), findet keine Registrierung statt. Existiert der Name bereits, wird er ohne Warnung überschrieben."
#. AFin6
#: sf_ui.xhp
@@ -24791,7 +24791,7 @@ msgctxt ""
"par_id181629364905056\n"
"help.text"
msgid "<emph>calcfilename</emph> : Only when <literal>embeddeddatabase</literal> = \"CALC\", <literal>calcfilename</literal> represents the file containing the tables as Calc sheets. The file must exist or an error is raised."
-msgstr ""
+msgstr "<emph>calcfilename</emph>: Nur wenn <literal>embeddeddatabase</literal> = \"CALC\", stellt <literal>calcfilename</literal> die Datei dar, welche die Tabellen als Tabellendokument enthält. Die Datei muss vorhanden sein oder es wird ein Fehler ausgelöst."
#. GtB5n
#: sf_ui.xhp
@@ -24800,7 +24800,7 @@ msgctxt ""
"par_id651588521753997\n"
"help.text"
msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
-msgstr ""
+msgstr "Erstellen Sie ein neues %PRODUCTNAME-Dokument eines bestimmten Typs oder basierend auf einer bestimmten Vorlage. Die Methode gibt ein Objekt \"Document\" zurück."
#. JnBPt
#: sf_ui.xhp
@@ -24809,7 +24809,7 @@ msgctxt ""
"par_id51588521753302\n"
"help.text"
msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>templatefile</literal> argument must be present."
-msgstr ""
+msgstr "<emph>documenttype</emph> : \"Calc\", \"Writer\", … Wenn nicht vorhanden, muss das Argument <literal>templatefile</literal> vorhanden sein."
#. BQ6UD
#: sf_ui.xhp
@@ -24818,7 +24818,7 @@ msgctxt ""
"par_id401588522663325\n"
"help.text"
msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
-msgstr ""
+msgstr "<emph>templatefile</emph>: Der vollständige <literal>FileName</literal> der Vorlage, auf der das neue Dokument aufgebaut werden soll. Wenn die Datei nicht existiert, wird das Argument ignoriert. Der Dienst <literal>FileSystem</literal> stellt die Eigenschaften <literal>TemplatesFolder</literal> und <literal>UserTemplatesFolder</literal> bereit, um beim Erstellen des Arguments zu helfen."
#. VeNQg
#: sf_ui.xhp
@@ -24827,7 +24827,7 @@ msgctxt ""
"par_id131588522824366\n"
"help.text"
msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
-msgstr ""
+msgstr "<emph>hidden</emph>: wenn <literal>True</literal>, öffnet das neue Dokument im Hintergrund (Standard = <literal>False</literal>). Mit Vorsicht zu verwenden: Die Aktivierung oder Schließung kann danach nur programmgesteuert erfolgen."
#. gWFt9
#: sf_ui.xhp
@@ -24836,7 +24836,7 @@ msgctxt ""
"par_id701620762417802\n"
"help.text"
msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
-msgstr ""
+msgstr "In den beiden folgenden Beispielen erstellt der erste Aufruf der Methode <literal>CreateDocument</literal> ein leeres Calc-Dokument, während der zweite ein Dokument aus einer Vorlagendatei erstellt."
#. TxY93
#: sf_ui.xhp
@@ -24845,7 +24845,7 @@ msgctxt ""
"par_id201588520551463\n"
"help.text"
msgid "Returns a document object referring to either the active window, a given window or the active document."
-msgstr ""
+msgstr "Gibt ein Objekt \"Document\" zurück, das entweder auf das aktive Fenster, ein bestimmtes Fenster oder das aktive Dokument verweist."
#. xgMAv
#: sf_ui.xhp
@@ -24854,7 +24854,7 @@ msgctxt ""
"par_id851588520551368\n"
"help.text"
msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used. UNO objects of types <literal>com.sun.star.lang.XComponent</literal> or <literal>com.sun.star.comp.dba.ODatabaseDocument</literal> are also accepted. Thus passing <literal>ThisComponent</literal> or <literal>ThisDatabaseDocument</literal> as argument creates a new <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"Base service\">Base</link> or <link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\">Calc</link> service."
-msgstr ""
+msgstr "<emph>windowname</emph>: Siehe die Definitionen <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">oben</link>. Fehlt dieses Argument, wird das aktive Fenster verwendet. UNO-Objekte vom Typ <literal>com.sun.star.lang.XComponent</literal> oder <literal>com.sun.star.comp.dba.ODatabaseDocument</literal> werden ebenfalls akzeptiert. Wenn Sie also <literal>ThisComponent</literal> oder <literal>ThisDatabaseDocument</literal> als Argument übergeben, wird ein neuer Dienst <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"Base service\">Base</link> oder <link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\">Calc</link> erstellt."
#. AAjDB
#: sf_ui.xhp
@@ -24863,7 +24863,7 @@ msgctxt ""
"par_id521620330287071\n"
"help.text"
msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
-msgstr ""
+msgstr "Um auf den Namen des derzeit aktiven Fensters zuzugreifen, beziehen Sie sich auf die Eigenschaft <literal>ActiveWindow</literal>."
#. CYsyC
#: sf_ui.xhp
@@ -24872,7 +24872,7 @@ msgctxt ""
"par_id24158798644169\n"
"help.text"
msgid "Maximizes the active window or the given window."
-msgstr ""
+msgstr "Maximiert das aktive Fenster oder das angegebene Fenster."
#. hD4TC
#: sf_ui.xhp
@@ -24881,7 +24881,7 @@ msgctxt ""
"par_id951587986441954\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
-msgstr ""
+msgstr "<emph>windowname</emph>: siehe Definitionen <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">oben</link>. Fehlt dieses Argument, wird das aktive Fenster maximiert."
#. vzDdG
#: sf_ui.xhp
@@ -24890,7 +24890,7 @@ msgctxt ""
"par_id871587986592696\n"
"help.text"
msgid "Minimizes the active window or the given window."
-msgstr ""
+msgstr "Minimiert das aktive Fenster oder das angegebene Fenster."
#. Enys5
#: sf_ui.xhp
@@ -24899,7 +24899,7 @@ msgctxt ""
"par_id751587986592626\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
-msgstr ""
+msgstr "<emph>windowname</emph>: siehe Definitionen <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">oben</link>. Fehlt dieses Argument, wird das aktive Fenster minimiert."
#. WHDDQ
#: sf_ui.xhp
@@ -24908,7 +24908,7 @@ msgctxt ""
"par_id691596555746539\n"
"help.text"
msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
-msgstr ""
+msgstr "Öffnen Sie ein vorhandenes %PRODUCTNAME Base-Dokument. Die Methode gibt ein Objekt \"Document\" zurück."
#. q2E3C
#: sf_ui.xhp
@@ -24917,7 +24917,7 @@ msgctxt ""
"par_id231596555746385\n"
"help.text"
msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
-msgstr ""
+msgstr "<emph>filename</emph>: Identifiziert die zu öffnende Datei. Es muss der Notation <literal>SF_FileSystem.FileNaming</literal> folgen. Existiert die Datei bereits, wird sie ohne Warnung überschrieben"
#. mtpoL
#: sf_ui.xhp
@@ -24926,7 +24926,7 @@ msgctxt ""
"par_id711596555746281\n"
"help.text"
msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
-msgstr ""
+msgstr "<emph>registrationname</emph>: Der Name, der verwendet werden soll, um die Datenbank im Datenbankregister zu finden. Es wird ignoriert, wenn <literal>FileName</literal> <> \"\"."
#. TqAd2
#: sf_ui.xhp
@@ -24935,7 +24935,7 @@ msgctxt ""
"id721596556313545\n"
"help.text"
msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
-msgstr ""
+msgstr "<emph>makroexecution</emph>: 0 = Verhalten wird durch die Benutzerkonfiguration festgelegt, 1 = Makros sind nicht ausführbar, 2 = Makros sind ausführbar."
#. Dok5e
#: sf_ui.xhp
@@ -24944,7 +24944,7 @@ msgctxt ""
"par_id941620762989833\n"
"help.text"
msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
-msgstr ""
+msgstr "Um die Lesbarkeit des Codes zu verbessern, können Sie <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">vordefinierte Konstanten</link> für das Argument <literal>macroexecution</literal> verwenden, wie in den obigen Beispielen."
#. LBgGQ
#: sf_ui.xhp
@@ -24953,7 +24953,7 @@ msgctxt ""
"par_id541588523635283\n"
"help.text"
msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
-msgstr ""
+msgstr "Öffnet ein vorhandenes %PRODUCTNAME-Dokument mit den angegebenen Optionen. Gibt ein Dokumentobjekt oder eine seiner Unterklassen zurück. Die Methode gibt <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) zurück, wenn das Öffnen fehlgeschlagen ist, selbst wenn der Fehler durch eine Benutzerentscheidung verursacht wurde."
#. 8tjbg
#: sf_ui.xhp
@@ -24962,7 +24962,7 @@ msgctxt ""
"par_id481588523635890\n"
"help.text"
msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
-msgstr ""
+msgstr "<emph>filename</emph>: Identifiziert die zu öffnende Datei. Es muss der Notation <literal>FileNaming</literal> des Dienstes <literal>FileSystem</literal> folgen."
#. PWvQz
#: sf_ui.xhp
@@ -24971,7 +24971,7 @@ msgctxt ""
"par_id451588523635507\n"
"help.text"
msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
-msgstr ""
+msgstr "<emph>password</emph>: Zu verwenden, wenn das Dokument geschützt ist. Falls falsch oder nicht vorhanden, während das Dokument geschützt ist, wird der Benutzer aufgefordert, ein Kennwort einzugeben."
#. 2jjFK
#: sf_ui.xhp
@@ -24980,7 +24980,7 @@ msgctxt ""
"par_id611588524329781\n"
"help.text"
msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>readonly</emph>: Standard = <literal>False</literal>."
#. BcyEp
#: sf_ui.xhp
@@ -24989,7 +24989,7 @@ msgctxt ""
"par_id641588523635497\n"
"help.text"
msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
-msgstr ""
+msgstr "<emph>hidden</emph>: wenn <literal>True</literal>, öffnet das neue Dokument im Hintergrund (Standard = <literal>False</literal>). Mit Vorsicht zu verwenden: Die Aktivierung oder Schließung kann danach nur programmgesteuert erfolgen."
#. sbgeH
#: sf_ui.xhp
@@ -24998,7 +24998,7 @@ msgctxt ""
"par_id981588524474719\n"
"help.text"
msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
-msgstr ""
+msgstr "<emph>macroexecution</emph>: 0 = Verhalten wird durch die Benutzerkonfiguration festgelegt, 1 = Makros sind nicht ausführbar, 2 = Makros sind ausführbar."
#. AF7iF
#: sf_ui.xhp
@@ -25007,7 +25007,7 @@ msgctxt ""
"par_id611588524584693\n"
"help.text"
msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
-msgstr ""
+msgstr "<emph>filtername</emph>: Der Name eines Filters, der zum Laden des Dokuments verwendet werden soll. Falls vorhanden, muss der Filter vorhanden sein."
#. MKueU
#: sf_ui.xhp
@@ -25016,7 +25016,7 @@ msgctxt ""
"par_id191588524634348\n"
"help.text"
msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
-msgstr ""
+msgstr "<emph>filteroptions</emph>: Eine optionale Reihe von Optionen, die dem Filter zugeordnet sind."
#. qMTrj
#: sf_ui.xhp
@@ -25025,7 +25025,7 @@ msgctxt ""
"par_id751587986945965\n"
"help.text"
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
-msgstr ""
+msgstr "Ändert die Größe und/oder verschiebt das aktive Fenster. Fehlende und negative Argumente werden ignoriert. Wenn das Fenster minimiert oder maximiert ist, wird es durch Aufrufen von <literal>Resize</literal> ohne Argumente wiederhergestellt."
#. 6NUcv
#: sf_ui.xhp
@@ -25034,7 +25034,7 @@ msgctxt ""
"par_id441587986945696\n"
"help.text"
msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
-msgstr ""
+msgstr "<emph>left, top</emph>: Abstände der oberen linken Ecke vom oberen und linken Rand des Bildschirms in Pixel."
#. AdcjG
#: sf_ui.xhp
@@ -25043,7 +25043,7 @@ msgctxt ""
"par_id601587987453825\n"
"help.text"
msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
-msgstr ""
+msgstr "<emph>width, height</emph>: Neue Abmessungen des Fensters in Pixel."
#. vDNVH
#: sf_ui.xhp
@@ -25052,7 +25052,7 @@ msgctxt ""
"par_id801587987507028\n"
"help.text"
msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
-msgstr ""
+msgstr "In den folgenden Beispielen werden <literal>width</literal> und <literal>height</literal> des Fensters geändert, während <literal>top</literal> und <literal>left</literal> unverändert bleiben."
#. HP2Jb
#: sf_ui.xhp
@@ -25061,7 +25061,7 @@ msgctxt ""
"par_id21620332301809\n"
"help.text"
msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
-msgstr ""
+msgstr "Um die Größe eines nicht aktiven Fensters zu ändern, aktivieren Sie es zunächst mit der Methode <literal>Activate</literal>."
#. NnBWM
#: sf_ui.xhp
@@ -25070,7 +25070,7 @@ msgctxt ""
"par_id281587996421580\n"
"help.text"
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
-msgstr ""
+msgstr "Zeigt einen Text und einen Fortschrittsbalken in der Statusleiste des aktiven Fensters an. Alle nachfolgenden Aufrufe im gleichen Makrolauf beziehen sich auf die gleiche Statuszeile des gleichen Fensters, auch wenn das Fenster nicht mehr sichtbar ist. Ein Aufruf ohne Argumente setzt die Statusleiste in ihren Normalzustand zurück."
#. rDr2L
#: sf_ui.xhp
@@ -25079,7 +25079,7 @@ msgctxt ""
"par_id71587996421829\n"
"help.text"
msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
-msgstr ""
+msgstr "<emph>text</emph>: Ein optionaler Text, der vor dem Fortschrittsbalken angezeigt werden soll."
#. hbCpG
#: sf_ui.xhp
@@ -25088,7 +25088,7 @@ msgctxt ""
"par_id881587996421777\n"
"help.text"
msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
-msgstr ""
+msgstr "<emph>percentage</emph>: ein optionaler Fortschrittsgrad zwischen 0 und 100."
#. qbGdy
#: sf_ui.xhp
@@ -25097,7 +25097,7 @@ msgctxt ""
"bas_id651620332601083\n"
"help.text"
msgid "' Resets the statusbar"
-msgstr ""
+msgstr "' Setzt die Statusleiste zurück"
#. oQfWc
#: sf_ui.xhp
@@ -25106,7 +25106,7 @@ msgctxt ""
"par_id571598864255776\n"
"help.text"
msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
-msgstr ""
+msgstr "Zeigt einen nicht modalen Dialog an. Geben Sie den Titel, einen erläuternden Text und einen Prozentsatz des Fortschritts an, der auf einem Fortschrittsbalken dargestellt werden soll. Der Dialog bleibt sichtbar, bis die Methode ohne Argumente aufgerufen wird oder der Benutzer den Dialog manuell schließt."
#. drhV6
#: sf_ui.xhp
@@ -25115,7 +25115,7 @@ msgctxt ""
"par_id441598864535695\n"
"help.text"
msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
-msgstr ""
+msgstr "<emph>title</emph>: Der Titel, der oben im Dialog erscheint. Standard = \"ScriptForge\"."
#. jvrZV
#: sf_ui.xhp
@@ -25124,7 +25124,7 @@ msgctxt ""
"par_id311598864255297\n"
"help.text"
msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
-msgstr ""
+msgstr "<emph>text</emph>: Ein optionaler Text, der über dem Fortschrittsbalken angezeigt wird."
#. Qj3N3
#: sf_ui.xhp
@@ -25133,7 +25133,7 @@ msgctxt ""
"par_id881598864255424\n"
"help.text"
msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
-msgstr ""
+msgstr "<emph>percentage</emph>: ein optionaler Fortschrittsgrad zwischen 0 und 100."
#. rVBX3
#: sf_ui.xhp
@@ -25142,7 +25142,7 @@ msgctxt ""
"bas_id651620333289753\n"
"help.text"
msgid "' Closes the Progress Bar window"
-msgstr ""
+msgstr "' Schließt das Fenster mit dem Fortschrittsbalken"
#. u3gZ8
#: sf_ui.xhp
@@ -25151,7 +25151,7 @@ msgctxt ""
"pyc_id761620333269236\n"
"help.text"
msgid "# Closes the Progress Bar window"
-msgstr ""
+msgstr "# Schließt das Fenster mit dem Fortschrittsbalken"
#. ZEG6t
#: sf_ui.xhp
@@ -25160,7 +25160,7 @@ msgctxt ""
"par_id431588587119925\n"
"help.text"
msgid "Returns <literal>True</literal> if the given window could be identified."
-msgstr ""
+msgstr "Gibt <literal>True</literal> zurück, wenn das angegebene Fenster identifiziert werden konnte."
#. rkJbT
#: sf_ui.xhp
@@ -25169,7 +25169,7 @@ msgctxt ""
"par_id45158858711917\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions above."
-msgstr ""
+msgstr "<emph>windowname</emph>: siehe obige Definitionen."
#. NyP5B
#: sf_writer.xhp
@@ -25178,7 +25178,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SFDocuments.Writer service"
-msgstr ""
+msgstr "Dienst SFDocuments.Writer"
#. 5i7vz
#: sf_writer.xhp
@@ -25187,7 +25187,7 @@ msgctxt ""
"hd_id731582733781114\n"
"help.text"
msgid "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\" name=\"Writer service\"><literal>SFDocuments</literal>.<literal>Writer</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\" name=\"Writer service\">Dienst <literal>SFDocuments</literal>.<literal>Writer</literal></link></variable>"
#. dUwYw
#: sf_writer.xhp
@@ -25196,7 +25196,7 @@ msgctxt ""
"par_id381589189355849\n"
"help.text"
msgid "The <literal>SFDocuments</literal> shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents."
-msgstr ""
+msgstr "Die gemeinsam genutzte Bibliothek <literal>SFDocuments</literal> bietet eine Reihe von Methoden und Eigenschaften, um die Verwaltung und Handhabung von %PRODUCTNAME-Dokumenten zu erleichtern."
#. FvF79
#: sf_writer.xhp
@@ -25205,7 +25205,7 @@ msgctxt ""
"par_id351591014177269\n"
"help.text"
msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> module, whereas other methods that are specific for Writer documents are defined in the <literal>SF_Writer</literal> module."
-msgstr ""
+msgstr "Einige Methoden sind generisch für alle Arten von Dokumenten und werden vom Modul <literal>SF_Document</literal> geerbt, während andere Methoden, die spezifisch für Writer-Dokumente sind, im Modul <literal>SF_Writer</literal> definiert sind."
#. ojZFF
#: sf_writer.xhp
@@ -25214,7 +25214,7 @@ msgctxt ""
"par_id591589189364267\n"
"help.text"
msgid "The <literal>SF_Writer</literal> module is focused on:"
-msgstr ""
+msgstr "Das Modul <literal>SF_Writer</literal> konzentriert sich auf:"
#. LTpqJ
#: sf_writer.xhp
@@ -25223,7 +25223,7 @@ msgctxt ""
"hd_id581582885621841\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Dienstaufruf"
#. 3LPrN
#: sf_writer.xhp
@@ -25232,7 +25232,7 @@ msgctxt ""
"par_id591589191059889\n"
"help.text"
msgid "The <literal>Writer</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Writer</literal> service can be invoked."
-msgstr ""
+msgstr "Der Dienst <literal>Writer</literal> ist eng mit dem Dienst <literal>UI</literal> der Bibliothek <literal>ScriptForge</literal> verwandt. Unten sind einige Beispiele dafür, wie der Dienst <literal>Writer</literal> aufgerufen werden kann."
#. NvcUB
#: sf_writer.xhp
@@ -25241,7 +25241,7 @@ msgctxt ""
"par_id551621623999947\n"
"help.text"
msgid "The code snippet below creates a <literal>Writer</literal> service instance that corresponds to the currently active Writer document."
-msgstr ""
+msgstr "Der folgende Codeschnipsel erstellt eine Dienstinstanz <literal>Writer</literal>, die dem derzeit aktiven Writer-Dokument entspricht."
#. 4P2m8
#: sf_writer.xhp
@@ -25250,7 +25250,7 @@ msgctxt ""
"par_id341621467500466\n"
"help.text"
msgid "Another way to create an instance of the <literal>Writer</literal> service is using the <literal>UI</literal> service. In the following example, a new Writer document is created and <literal>oDoc</literal> is a <literal>Writer</literal> service instance:"
-msgstr ""
+msgstr "Eine andere Möglichkeit, eine Instanz des Dienstes <literal>Writer</literal> zu erstellen, ist die Verwendung des Dienstes <literal>UI</literal>. Im folgenden Beispiel wird ein neues Writer-Dokument erstellt und <literal>oDoc</literal> ist eine Dienstinstanz <literal>Writer</literal>:"
#. dENpx
#: sf_writer.xhp
@@ -25259,7 +25259,7 @@ msgctxt ""
"par_id921621467621019\n"
"help.text"
msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
-msgstr ""
+msgstr "Oder verwenden Sie die Methode <literal>OpenDocument</literal> des Dienstes <literal>UI</literal>:"
#. WopGb
#: sf_writer.xhp
@@ -25268,7 +25268,7 @@ msgctxt ""
"par_id741621467697967\n"
"help.text"
msgid "It is also possible to instantiate the <literal>Writer</literal> service using the <literal>CreateScriptService</literal> method:"
-msgstr ""
+msgstr "Es ist auch möglich, den Dienst <literal>Writer</literal> mit der Methode <literal>CreateScriptService</literal> zu instanziieren:"
#. WTDbw
#: sf_writer.xhp
@@ -25277,7 +25277,7 @@ msgctxt ""
"par_id271621467810774\n"
"help.text"
msgid "In the example above, \"MyFile.odt\" is the name of an open document window. If this argument is not provided, the active window is considered."
-msgstr ""
+msgstr "Im obigen Beispiel ist \"MyFile.odt\" der Name eines geöffneten Dokumentfensters. Wenn dieses Argument nicht angegeben wird, wird das aktive Fenster berücksichtigt."
#. EEAZF
#: sf_writer.xhp
@@ -25286,7 +25286,7 @@ msgctxt ""
"par_id71158288562139\n"
"help.text"
msgid "It is recommended to free resources after use:"
-msgstr ""
+msgstr "Es wird empfohlen, Ressourcen nach der Verwendung freizugeben:"
#. wPWMP
#: sf_writer.xhp
@@ -25295,7 +25295,7 @@ msgctxt ""
"par_id231611610666018\n"
"help.text"
msgid "However, if the document was closed using the <literal>CloseDocument</literal> method, it becomes unnecessary to free resources using the command described above."
-msgstr ""
+msgstr "Wenn das Dokument jedoch mit der Methode <literal>CloseDocument</literal> geschlossen wurde, ist es unnötig, Ressourcen mit dem oben beschriebenen Befehl freizugeben."
#. 7JvGW
#: sf_writer.xhp
@@ -25304,7 +25304,7 @@ msgctxt ""
"par_id71611090922315\n"
"help.text"
msgid "The use of the prefix \"<literal>SFDocuments.</literal>\" while calling the service is optional."
-msgstr ""
+msgstr "Die Verwendung des Präfixes \"<literal>SFDocuments.</literal>\" beim Aufruf des Dienstes ist optional."
#. EcQjk
#: sf_writer.xhp
@@ -25313,7 +25313,7 @@ msgctxt ""
"hd_id291631196803182\n"
"help.text"
msgid "Definitions"
-msgstr ""
+msgstr "Definitionen"
#. ausGU
#: sf_writer.xhp
@@ -25322,7 +25322,7 @@ msgctxt ""
"hd_id351582885195476\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschaften"
#. VB9Jj
#: sf_writer.xhp
@@ -25331,7 +25331,7 @@ msgctxt ""
"hd_id501582887473754\n"
"help.text"
msgid "Methods"
-msgstr ""
+msgstr "Methoden"
#. ioXEB
#: sf_writer.xhp
@@ -25340,7 +25340,7 @@ msgctxt ""
"par_id891611613601554\n"
"help.text"
msgid "List of Methods in the Writer Service"
-msgstr ""
+msgstr "Liste der Methoden im Dienst Writer"
#. 3uC2J
#: sf_writer.xhp
@@ -25349,7 +25349,7 @@ msgctxt ""
"par_id501623063693649\n"
"help.text"
msgid "Depending on the parameters provided this method will return:"
-msgstr ""
+msgstr "Abhängig von den bereitgestellten Parametern gibt diese Methode Folgendes zurück:"
#. YpgWy
#: sf_writer.xhp
@@ -25358,7 +25358,7 @@ msgctxt ""
"par_id611623063742045\n"
"help.text"
msgid "A zero-based Array (or a tuple in Python) with the names of all the forms contained in the document (if the <literal>form</literal> argument is absent)"
-msgstr ""
+msgstr "Eine nullbasierte Matrix (oder ein Tupel in Python) mit den Namen aller im Dokument enthaltenen Formulare (wenn das Argument <literal>form</literal> fehlt)"
#. CNfBX
#: sf_writer.xhp
@@ -25367,7 +25367,7 @@ msgctxt ""
"par_id641623063744536\n"
"help.text"
msgid "A <literal>SFDocuments.Form</literal> service instance representing the form specified as argument."
-msgstr ""
+msgstr "Eine Serviceinstanz <literal>SFDocuments.Form</literal>, die das als Argument angegebene Formular darstellt."
#. ULjtu
#: sf_writer.xhp
@@ -25376,7 +25376,7 @@ msgctxt ""
"par_id821623076570573\n"
"help.text"
msgid "This method is applicable only for Writer documents. Calc and Base documents have their own <literal>Forms</literal> method in the <link href=\"text/sbasic/shared/03/sf_calc.xhp#Forms\" name=\"Calc_Forms\">Calc</link> and <link href=\"text/sbasic/shared/03/sf_base.xhp#Forms\" name=\"Base_Forms\">Base</link> services, respectively."
-msgstr ""
+msgstr "Diese Methode gilt nur für Writer-Dokumente. Calc- und Base-Dokumente haben ihre eigene Methode <literal>Forms</literal> in den Diensten <link href=\"text/sbasic/shared/03/sf_calc.xhp#Forms\" name=\"Calc_Forms\">Calc</link> und <link href=\"text/sbasic/shared/03/sf_base.xhp#Forms\" name=\"Base_Forms\">Base</link>."
#. ty8pu
#: sf_writer.xhp
@@ -25385,7 +25385,7 @@ msgctxt ""
"par_id451623063459286\n"
"help.text"
msgid "<emph>form</emph>: The name or index corresponding to a form stored in the document. If this argument is absent, the method will return a list with the names of all forms available in the document."
-msgstr ""
+msgstr "<emph>form</emph>: Der Name oder Index, der einem im Dokument gespeicherten Formular entspricht. Fehlt dieses Argument, gibt die Methode eine Liste mit den Namen aller im Dokument verfügbaren Formulare zurück."
#. 7Ywp9
#: sf_writer.xhp
@@ -25394,7 +25394,7 @@ msgctxt ""
"par_id251623063305557\n"
"help.text"
msgid "In the following examples, the first line gets the names of all forms in the document and the second line retrieves the <literal>Form</literal> object of the form named \"Form_A\"."
-msgstr ""
+msgstr "In den folgenden Beispielen erhält die erste Zeile die Namen aller Formulare im Dokument und die zweite Zeile das Objekt <literal>Form</literal> des Formulars mit dem Namen \"Form_A\"."
#. y684J
#: sf_writer.xhp
@@ -25403,7 +25403,7 @@ msgctxt ""
"par_id31592919577984\n"
"help.text"
msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\" name=\"SetPrinter method\"><literal>SetPrinter</literal></link> method of the <link href=\"text/sbasic/03/sf_document.xhp\" name=\"Document service\">Document</link> service. Returns <literal>True</literal> when successful."
-msgstr ""
+msgstr "Sendet den Inhalt des Dokuments an den Drucker. Der Drucker kann zuvor standardmäßig, vom Benutzer oder über die Methode <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\" name=\"SetPrinter method\"><literal>SetPrinter</literal></link> des Dienstes <link href=\"text/sbasic/03/sf_document.xhp\" name=\"Document service\">Document</link> definiert werden. Gibt bei Erfolg <literal>True</literal> zurück."
#. CKDb5
#: sf_writer.xhp
@@ -25412,7 +25412,7 @@ msgctxt ""
"par_id441592919577809\n"
"help.text"
msgid "<emph>pages</emph>: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default = all pages"
-msgstr ""
+msgstr "<emph>pages</emph>: Die Seiten, die gedruckt werden sollen, als Zeichenfolge wie in der Benutzeroberfläche. Beispielsweise: \"1-4;10;15-18\". Standard = alle Seiten"
#. mYCkV
#: sf_writer.xhp
@@ -25421,7 +25421,7 @@ msgctxt ""
"par_id221636020923278\n"
"help.text"
msgid "<emph>copies</emph>: The number of copies, default is 1."
-msgstr ""
+msgstr "<emph>copies</emph>: Die Anzahl der Kopien, Standard ist 1."
#. aFEAa
#: sf_writer.xhp
@@ -25430,7 +25430,7 @@ msgctxt ""
"par_id121636020926764\n"
"help.text"
msgid "<emph>printbackground</emph>: Prints the background image when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printbackground</emph>: Druckt das Hintergrundbild, wenn <literal>True</literal> (Standard)."
#. D4krC
#: sf_writer.xhp
@@ -25439,7 +25439,7 @@ msgctxt ""
"par_id261636020927276\n"
"help.text"
msgid "<emph>printblankpages</emph>: When <literal>False</literal> (default), omits empty pages."
-msgstr ""
+msgstr "<emph>printblankpages</emph>: Wenn <literal>False</literal> (Standard), werden leere Seiten weggelassen."
#. LFSzm
#: sf_writer.xhp
@@ -25448,7 +25448,7 @@ msgctxt ""
"par_id021636020927484\n"
"help.text"
msgid "<emph>printevenpages</emph>: Prints even pages when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printevenpages</emph>: Druckt gerade Seiten, wenn <literal>True</literal> (Standard)."
#. iewN5
#: sf_writer.xhp
@@ -25457,7 +25457,7 @@ msgctxt ""
"par_id391636020927676\n"
"help.text"
msgid "<emph>printoddpages</emph>: Print odd pages when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printoddpages</emph>: Ungerade Seiten drucken, wenn <literal>True</literal> (Standard)."
#. 4mYCT
#: sf_writer.xhp
@@ -25466,4 +25466,4 @@ msgctxt ""
"par_id121636021103996\n"
"help.text"
msgid "<emph>printimages</emph>: Print graphic objects when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printimages</emph>: Grafikobjekte drucken, wenn <literal>True</literal> (Standard)."
diff --git a/source/de/helpcontent2/source/text/scalc/05.po b/source/de/helpcontent2/source/text/scalc/05.po
index 747c2ad5c57..57988d1ee3f 100644
--- a/source/de/helpcontent2/source/text/scalc/05.po
+++ b/source/de/helpcontent2/source/text/scalc/05.po
@@ -4,16 +4,16 @@ 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: 2020-10-27 12:31+0100\n"
-"PO-Revision-Date: 2021-12-29 05:38+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc05/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalc05/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565271401.000000\n"
#. Cxzki
@@ -329,7 +329,7 @@ msgctxt ""
"par_id3145635\n"
"help.text"
msgid "<emph>Compiler:</emph> an identifier in the formula exceeds 64 kB in size. <emph>Interpreter:</emph> a result of a string operation exceeds 64 kB in size."
-msgstr "<emph>Compiler:</emph> ein Bezeichner in der Formel überschreitet die Größe von 64 kB. <emph>Interpreter:</emph> ein Ergebnis einer Zeichenkettenverarbeitung überschreitet die Größe von 64 kB."
+msgstr "<emph>Compiler:</emph> ein Bezeichner in der Formel überschreitet die Größe von 64 kB. <emph>Interpreter:</emph> ein Ergebnis einer Zeichenkettenverarbeitung überschreitet die Größe von 64 kB."
#. E7ohJ
#: 02140000.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index b63426b6eec..652fc6c9aa1 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.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-10-25 12:48+0200\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textscalcguide/de/>\n"
"Language: de\n"
@@ -12083,7 +12083,7 @@ msgctxt ""
"hd_id8005005\n"
"help.text"
msgid "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Merge and Unmerge Cells</link></variable>"
-msgstr ""
+msgstr "<variable id=\"table_cellmerge\"><link href=\"text/scalc/guide/table_cellmerge.xhp\" name=\"Merging and Unmerging Cells\">Zellen verbinden und trennen</link></variable>"
#. Hht67
#: table_cellmerge.xhp
@@ -13523,7 +13523,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Wildcards in Formulas"
-msgstr ""
+msgstr "Platzhalter in Formeln verwenden"
#. kZVe7
#: wildcards.xhp
@@ -13532,7 +13532,7 @@ msgctxt ""
"bm_id3152149\n"
"help.text"
msgid "<bookmark_value>wildcards in formulas</bookmark_value> <bookmark_value>wildcards;examples</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Platzhalter in Formeln</bookmark_value><bookmark_value>Platzhalter; Beispiele</bookmark_value>"
#. 98C5v
#: wildcards.xhp
@@ -13541,7 +13541,7 @@ msgctxt ""
"hd_id941629155075179\n"
"help.text"
msgid "<variable id=\"wildcards_h1\"><link href=\"text/scalc/guide/wildcards.xhp\" name=\"wildcards_link\">Using Wildcards in Formulas</link></variable>"
-msgstr ""
+msgstr "<variable id=\"wildcards_h1\"><link href=\"text/scalc/guide/wildcards.xhp\" name=\"wildcards_link\">Platzhalter in Formeln verwenden</link></variable>"
#. yqMKw
#: wildcards.xhp
@@ -13550,7 +13550,7 @@ msgctxt ""
"par_id571629155308959\n"
"help.text"
msgid "Wildcards are special characters that can be used in search strings that are passed as arguments to some Calc functions. They can also be used to define search criteria in the <emph>Find & Replace</emph> dialog. The use of wildcards enables the definition of more advanced search parameters with a single search string."
-msgstr ""
+msgstr "Platzhalter sind Sonderzeichen, die in Suchzeichenfolgen verwendet werden können, welche als Argumente an einige Calc-Funktionen übergeben werden. Sie können auch verwendet werden, um Suchkriterien im Dialog <emph>Suchen und Ersetzen</emph> zu definieren. Die Verwendung von Platzhaltern ermöglicht die Definition erweiterter Suchparameter mit einer einzelnen Suchzeichenfolge."
#. vQrdp
#: wildcards.xhp
@@ -13559,7 +13559,7 @@ msgctxt ""
"par_id391629156224638\n"
"help.text"
msgid "%PRODUCTNAME Calc supports either <emph>wildcards</emph> or <emph>regular expressions</emph> as arguments depending on the current application settings. By default %PRODUCTNAME Calc is set to support wildcards instead of regular expressions."
-msgstr ""
+msgstr "%PRODUCTNAME-Calc unterstützt abhängig von den aktuellen Anwendungseinstellungen entweder <emph>Platzhalter</emph> oder <emph>reguläre Ausdrücke</emph> als Argumente. Standardmäßig unterstützt %PRODUCTNAME-Calc Platzhalter statt regulärer Ausdrücke."
#. GVpD7
#: wildcards.xhp
@@ -13568,7 +13568,7 @@ msgctxt ""
"par_id551629156504794\n"
"help.text"
msgid "To make sure wildcards are supported, go to <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - %PRODUCTNAME Calc - Calculate</menuitem></caseinline><defaultinline><menuitem>Tools - Options - %PRODUCTNAME Calc - Calculate</menuitem></defaultinline></switchinline> and check if the option <emph>Enable wildcards in formulas</emph> is selected. Note that you can use this dialog to switch to regular expressions by choosing <emph>Enable regular expressions in formulas</emph> or choose to support neither wildcards nor regular expressions."
-msgstr ""
+msgstr "Damit Platzhalter unterstützt werden, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen – %PRODUCTNAME Calc – Berechnen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen… – %PRODUCTNAME Calc – Berechnen</menuitem></defaultinline></switchinline> und prüfen Sie, ob die Option <emph>Platzhalter in Formeln ermöglichen</emph> ausgewählt ist. Beachten Sie, dass Sie diesen Dialog auch zum Umschalten zu regulären Ausdrücken verwenden können. Wählen Sie hierzu die Option <emph>Reguläre Ausdrücke in Formeln ermöglichen</emph> aus. Sie können auch auswählen, dass weder Platzhalter noch reguläre Ausdrücke unterstützt werden sollen."
#. BHJzs
#: wildcards.xhp
@@ -13577,7 +13577,7 @@ msgctxt ""
"par_id141629156913731\n"
"help.text"
msgid "The following wildcards are supported:"
-msgstr ""
+msgstr "Die folgenden Platzhalter werden unterstützt:"
#. tbbPM
#: wildcards.xhp
@@ -13586,7 +13586,7 @@ msgctxt ""
"par_id801629209195110\n"
"help.text"
msgid "Wildcard"
-msgstr ""
+msgstr "Platzhalter"
#. 7PmfG
#: wildcards.xhp
@@ -13595,7 +13595,7 @@ msgctxt ""
"par_id861629209212608\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. DfkJA
#: wildcards.xhp
@@ -13604,7 +13604,7 @@ msgctxt ""
"par_id591629209073388\n"
"help.text"
msgid "<emph>? (question mark)</emph>"
-msgstr ""
+msgstr "<emph>? (Fragezeichen)</emph>"
#. F2wmk
#: wildcards.xhp
@@ -13613,7 +13613,7 @@ msgctxt ""
"par_id31629209073388\n"
"help.text"
msgid "Matches any single character. For example, the search string \"b?g\" matches “bag” and “beg” but will not match \"boog\" or \"mug\"."
-msgstr ""
+msgstr "Entspricht einem einzelnen Zeichen. Beispielsweise stimmt die Suchzeichenfolge \"T?r\" mit \"Tor\" und \"Tür\" überein, jedoch nicht mit \"Tier\" oder \"Ohr\"."
#. pi9ik
#: wildcards.xhp
@@ -13622,7 +13622,7 @@ msgctxt ""
"par_id121629209114452\n"
"help.text"
msgid "Note that it will not match \"bg\" as well, since \"?\" must match exactly <emph>one</emph> character. The \"?\" wildcard does not correspond to a zero-character match."
-msgstr ""
+msgstr "Beachten Sie, dass sie auch nicht mit \"Tr\" übereinstimmt, da \"?\" mit genau <emph>einem</emph> Zeichen übereinstimmen muss. Der Platzhalter \"?\" entspricht nicht einer Übereinstimmung mit null Zeichen."
#. PmsQL
#: wildcards.xhp
@@ -13631,7 +13631,7 @@ msgctxt ""
"par_id981629209073388\n"
"help.text"
msgid "<emph>* (asterisk)</emph>"
-msgstr ""
+msgstr "<emph>* (Sternchen)</emph>"
#. 6V7SE
#: wildcards.xhp
@@ -13640,7 +13640,7 @@ msgctxt ""
"par_id51629209073388\n"
"help.text"
msgid "Matches any sequence of characters, including an empty string. For example, the search string \"*cast\" will match “cast”, “forecast”, and “outcast”, but will not match \"forecaster\" using default %PRODUCTNAME settings."
-msgstr ""
+msgstr "Entspricht einer beliebigen Zeichenfolge, einschließlich einer leeren Zeichenfolge. Beispielsweise stimmt die Suchzeichenfolge \"*bahn\" mit \"Bahn\", \"Eisenbahn\" und \"Landebahn\" überein, jedoch nicht mit \"Bahnsteig\", wenn die Standardeinstellungen von %PRODUCTNAME verwendet werden."
#. fDuhF
#: wildcards.xhp
@@ -13649,7 +13649,7 @@ msgctxt ""
"par_id351629209153307\n"
"help.text"
msgid "If the option <menuitem>Search criteria = and <> must apply to whole cells</menuitem> is disabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - %PRODUCTNAME Calc - Calculate</menuitem></caseinline><defaultinline><menuitem>Tools - Options - %PRODUCTNAME Calc - Calculate</menuitem></defaultinline></switchinline>, then \"forecaster\" will be a match using the \"*cast\" search string."
-msgstr ""
+msgstr "Wenn die Option <menuitem>Suchkriterien = und <> müssen auf ganze Zellen zutreffen</menuitem> unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen – %PRODUCTNAME Calc – Berechnen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen… – %PRODUCTNAME Calc – Berechnen</menuitem></defaultinline></switchinline> deaktiviert ist, wird \"Bahnsteig\" eine Übereinstimmung mit der Suchzeichenfolge \"*bahn\" sein."
#. ek6t7
#: wildcards.xhp
@@ -13658,7 +13658,7 @@ msgctxt ""
"par_id181629209277556\n"
"help.text"
msgid "<emph>~ (tilde)</emph>"
-msgstr ""
+msgstr "<emph>~ (Tilde)</emph>"
#. F3Tuy
#: wildcards.xhp
@@ -13667,7 +13667,7 @@ msgctxt ""
"par_id881629209280877\n"
"help.text"
msgid "Escapes the special meaning of a question mark, asterisk, or tilde character that follows immediately after the tilde character."
-msgstr ""
+msgstr "Hebt die besondere Bedeutung eines Fragezeichens, Sternchens oder einer Tilde auf, das/die unmittelbar nach der Tilde folgt."
#. P35Fo
#: wildcards.xhp
@@ -13676,7 +13676,7 @@ msgctxt ""
"par_id861629209431020\n"
"help.text"
msgid "For example, the search string \"why~?\" matches “why?” but will not match \"whys\" nor \"why~s\"."
-msgstr ""
+msgstr "Beispielsweise stimmt die Suchzeichenfolge \"Wie~?\" mit \"Wie?\" überein, jedoch nicht mit \"Wies\" oder \"Wie~s\"."
#. aCtpj
#: wildcards.xhp
@@ -13685,7 +13685,7 @@ msgctxt ""
"par_id1001629157561261\n"
"help.text"
msgid "Wildcards are supported in %PRODUCTNAME Calc and in Microsoft Excel. Therefore, if interoperability between both applications is needed, choose to work with wildcards instead of regular expressions. Conversely, if interoperability is not necessary, consider using regular expressions for more powerful search capabilities."
-msgstr ""
+msgstr "Platzhalter werden in %PRODUCTNAME Calc und in Microsoft Excel unterstützt. Wenn Interoperabilität zwischen beiden Anwendungen erforderlich ist, sollten Sie daher mit Platzhaltern anstelle von regulären Ausdrücken arbeiten. Wenn Interoperabilität nicht erforderlich ist, sollten Sie die Verwendung regulärer Ausdrücke für leistungsfähigere Suchfunktionen in Betracht ziehen."
#. Dwt2G
#: wildcards.xhp
@@ -13694,7 +13694,7 @@ msgctxt ""
"hd_id671629158766165\n"
"help.text"
msgid "Supported Spreadsheet Functions"
-msgstr ""
+msgstr "Unterstützte Tabellenfunktionen"
#. YF9FB
#: wildcards.xhp
@@ -13703,7 +13703,7 @@ msgctxt ""
"par_id161629158785887\n"
"help.text"
msgid "Wildcards are supported by the following spreadsheet functions:"
-msgstr ""
+msgstr "Platzhalter werden von den folgenden Tabellenfunktionen unterstützt:"
#. rRPbf
#: wildcards.xhp
@@ -13712,7 +13712,7 @@ msgctxt ""
"par_id441629158810517\n"
"help.text"
msgid "<emph>Database functions:</emph> DAVERAGE, DCOUNT, DCOUNTA, DGET, DMAX, DMIN, DPRODUCT, DSTDEV, DSTDEVP, DSUM, DVAR and DVARP."
-msgstr ""
+msgstr "<emph>Datenbankfunktionen:</emph> DBMITTELWERT, DBANZAHL, DBANZAHL2, DBAUSZUG, DBMAX, DBMIN, DBPRODUKT, DBSTDABW, DBSTDABWN, DBSUMME, DBVARIANZ und DBVARIANZEN."
#. gfUGT
#: wildcards.xhp
@@ -13721,7 +13721,7 @@ msgctxt ""
"par_id321629158810916\n"
"help.text"
msgid "<emph>Conditional functions:</emph> AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, MAXIFS, MINIFS, SUMIF and SUMIFS."
-msgstr ""
+msgstr "<emph>Statistikfunktionen:</emph> MITTELWERTWENN, MITTELWERTWENNS, ZÄHLENWENN, ZÄHLENWENNS, MAXWENNS, MINWENNS, SUMMEWENN und SUMMEWENNS."
#. oUwuB
#: wildcards.xhp
@@ -13730,7 +13730,7 @@ msgctxt ""
"par_id941629158811325\n"
"help.text"
msgid "<emph>Lookup functions:</emph> HLOOKUP, LOOKUP and VLOOKUP."
-msgstr ""
+msgstr "<emph>Tabellenfunktionen:</emph> WVERWEIS, VERWEIS und SVERWEIS."
#. Ka6SK
#: wildcards.xhp
@@ -13739,7 +13739,7 @@ msgctxt ""
"par_id41629158919808\n"
"help.text"
msgid "<emph>Other functions:</emph> MATCH and SEARCH."
-msgstr ""
+msgstr "<emph>Andere Funktionen:</emph> VERGLEICH und SUCHEN."
#. 2ZGuQ
#: wildcards.xhp
@@ -13748,7 +13748,7 @@ msgctxt ""
"hd_id701629159564269\n"
"help.text"
msgid "Examples of Wildcards in Formulas"
-msgstr ""
+msgstr "Beispiele für Platzhalter in Formeln"
#. 3WVEm
#: wildcards.xhp
@@ -13757,7 +13757,7 @@ msgctxt ""
"par_id121629289062103\n"
"help.text"
msgid "The following examples consider that the options <menuitem>Enable wildcards in formulas</menuitem> and <menuitem>Search criteria = and <> must apply to whole cells</menuitem> are enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences - %PRODUCTNAME Calc - Calculate</menuitem></caseinline><defaultinline><menuitem>Tools - Options - %PRODUCTNAME Calc - Calculate</menuitem></defaultinline></switchinline>."
-msgstr ""
+msgstr "In den folgenden Beispielen wird unterstellt, dass die Optionen <menuitem>Platzhalter in Formeln ermöglichen</menuitem> und <menuitem>Suchkriterien = und <> müssen auf ganze Zellen zutreffen</menuitem> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen – %PRODUCTNAME Calc – Berechnen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen… – %PRODUCTNAME Calc – Berechnen</menuitem></defaultinline></switchinline> aktiviert sind."
#. znKay
#: wildcards.xhp
@@ -13766,7 +13766,7 @@ msgctxt ""
"par_id271629159111490\n"
"help.text"
msgid "<input>=COUNTIF(A1:A10;\"Chi*\")</input> counts the number of cells in the range <emph>A1:A10</emph> containing strings that start with \"Chi\" followed by zero or more characters."
-msgstr ""
+msgstr "<input>=ZÄHLENWENN(A1:A10;\"Chi*\")</input> zählt die Anzahl der Zellen im Bereich <emph>A1:A10</emph>, die Zeichenfolgen beinhalten, welche mit \"Chi\" beginnen, gefolgt von keinem oder mehreren Zeichen."
#. TPRuA
#: wildcards.xhp
@@ -13775,7 +13775,7 @@ msgctxt ""
"par_id741629159343415\n"
"help.text"
msgid "<input>=SUMIF(A1:A5;\"A??\";B1:B5)</input> sums the values in <emph>B1:B5</emph> whose corresponding values in <emph>A1:A5</emph> start with \"A\" followed by exactly two other characters."
-msgstr ""
+msgstr "<input>=SUMMEWENN(A1:A5;\"A??\";B1:B5)</input> summiert die Werte in <emph>B1:B5</emph>, deren entsprechende Werte in <emph>A1:A5</emph> mit \"A\" beginnen, gefolgt von genau zwei Zeichen."
#. 7GqMs
#: wildcards.xhp
@@ -13784,7 +13784,7 @@ msgctxt ""
"par_id141629159465592\n"
"help.text"
msgid "Wildcard comparisons are <emph>not</emph> case sensitive, hence \"A?\" will match both \"A1\" and \"a1\"."
-msgstr ""
+msgstr "Bei Vergleichen mit Platzhalter wird <emph>nicht</emph> zwischen Groß- und Kleinschreibung unterschieden, daher stimmt \"A?\" sowohl mit \"A1\" als auch mit \"a1\" überein."
#. ysgCC
#: year2000.xhp
diff --git a/source/de/helpcontent2/source/text/sdatabase.po b/source/de/helpcontent2/source/text/sdatabase.po
index e4c6417ef6b..777e39621df 100644
--- a/source/de/helpcontent2/source/text/sdatabase.po
+++ b/source/de/helpcontent2/source/text/sdatabase.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-11-19 15:44+0100\n"
-"PO-Revision-Date: 2022-02-03 15:39+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsdatabase/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
#. ugSgG
#: 02000000.xhp
@@ -3010,7 +3010,7 @@ msgctxt ""
"par_id3147102\n"
"help.text"
msgid "Table data edit mode allows you to see your data as rows of records, with optional filtering and sorting of that data. In this mode, you can also enter new records, make changes to, and delete existing records."
-msgstr ""
+msgstr "Im Bearbeitungsmodus für Tabellendaten können Sie Ihre Daten als Datensatzzeilen anzeigen, mit optionalem Filtern und Sortieren dieser Daten. In diesem Modus können Sie auch neue Datensätze eingeben, Änderungen an bestehenden Datensätzen vornehmen und diese löschen."
#. ZdcXQ
#: 05000000.xhp
@@ -3028,7 +3028,7 @@ msgctxt ""
"hd_id3152425\n"
"help.text"
msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new or edit table design\">Create new or edit table design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010000.xhp\" name=\"Create new or edit table design\">Neues Tabellendesign erstellen oder bearbeiten</link>"
#. Hk4Jz
#: 05000000.xhp
@@ -3046,7 +3046,7 @@ msgctxt ""
"hd_id3154288\n"
"help.text"
msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations, Primary and External Key\">Relationen, primärer und externer Schlüssel</link>"
#. fAyEi
#: 05000001.xhp
@@ -3064,7 +3064,7 @@ msgctxt ""
"hd_id3148983\n"
"help.text"
msgid "<link href=\"text/sdatabase/05000001.xhp\" name=\"Table Context Menus\">Table Context Menus</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05000001.xhp\" name=\"Table Context Menus\">Kontextmenüs von Tabellen</link>"
#. PFkAG
#: 05000001.xhp
@@ -3073,7 +3073,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "The context menu of the table container offers various functions that apply to all database tables. To edit a particular table within the database, select the corresponding table and open its context menu."
-msgstr ""
+msgstr "Das Kontextmenü des Tabellencontainers bietet verschiedene Funktionen, die für alle Datenbanktabellen gelten. Um eine bestimmte Tabelle innerhalb der Datenbank zu bearbeiten, wählen Sie die entsprechende Tabelle aus und öffnen Sie ihr Kontextmenü."
#. MLxCc
#: 05000001.xhp
@@ -3082,7 +3082,7 @@ msgctxt ""
"par_id3146958\n"
"help.text"
msgid "Depending on the context, it is possible that not all the functions for your current database will be listed in the context menus. For example, the <emph>Relationships</emph> command for defining relationships between various tables is only available with relational databases."
-msgstr ""
+msgstr "Kontextabhängig ist es möglich, dass in den Kontextmenüs nicht alle Funktionen Ihrer aktuellen Datenbank aufgeführt werden. Beispielsweise ist der Befehl <emph>Relationen</emph> zum Definieren von Relationen zwischen verschiedenen Tabellen nur bei relationalen Datenbanken verfügbar."
#. B6Az2
#: 05000001.xhp
@@ -3100,7 +3100,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "If a <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\">table is open</link>, there are several functions available to edit the data."
-msgstr ""
+msgstr "Wenn eine <link href=\"text/shared/01/05340400.xhp\" name=\"table is open\">Tabelle geöffnet ist</link>, stehen mehrere Funktionen zum Bearbeiten der Daten zur Verfügung."
#. Rqydv
#: 05000003.xhp
@@ -3208,7 +3208,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table Design"
-msgstr ""
+msgstr "Tabellenentwurf"
#. DKzbA
#: 05010000.xhp
@@ -3217,7 +3217,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "<link href=\"text/sdatabase/05010000.xhp\" name=\"Table Design\">Table Design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010000.xhp\" name=\"Table Design\">Tabellenentwurf</link>"
#. fQvmC
#: 05010000.xhp
@@ -3226,7 +3226,7 @@ msgctxt ""
"par_id3152363\n"
"help.text"
msgid "In the <emph>Table Design</emph> window you define new tables or edit the structure of an existing table."
-msgstr ""
+msgstr "Im Fenster <emph>Tabellenentwurf</emph> definieren Sie neue Tabellen oder bearbeiten die Struktur einer bestehenden Tabelle."
#. 3skAk
#: 05010000.xhp
@@ -3235,7 +3235,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "The window has its own menu bar. It also contains the following new command: <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Index Design</emph></link>"
-msgstr ""
+msgstr "Das Fenster hat eine eigene Menüleiste. Es enthält auch den folgenden neuen Befehl: <link href=\"text/sdatabase/05010100.xhp\" name=\"Index Design\"><emph>Indexentwurf</emph></link>"
#. z6hA5
#: 05010000.xhp
@@ -3244,7 +3244,7 @@ msgctxt ""
"hd_id3152551\n"
"help.text"
msgid "Table definition area"
-msgstr ""
+msgstr "Tabellendefinitionsbereich"
#. xmBqj
#: 05010000.xhp
@@ -3253,7 +3253,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_BACKGROUND\">This area is where you define the table structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_BACKGROUND\">In diesem Bereich definieren Sie die Tabellenstruktur.</ahelp>"
#. FfuwA
#: 05010000.xhp
@@ -3262,7 +3262,7 @@ msgctxt ""
"hd_id3153031\n"
"help.text"
msgid "Field Name"
-msgstr ""
+msgstr "Feldname"
#. GiHyW
#: 05010000.xhp
@@ -3271,7 +3271,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_NAMECELL\">Specifies the name of the data field. The database engine may impose restrictions on the length of the table name, and the use of special characters and spaces within the table name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_NAMECELL\">Legt den Namen des Datenfeldes fest. Die Datenbank-Engine kann Einschränkungen hinsichtlich der Länge des Tabellennamens und der Verwendung von Sonderzeichen und Leerzeichen innerhalb des Tabellennamens auferlegen.</ahelp>"
#. QNg69
#: 05010000.xhp
@@ -3280,7 +3280,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Feldtyp"
#. eK4to
#: 05010000.xhp
@@ -3289,7 +3289,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_TYPECELL\">Specifies the field type. The available field types are limited by the database engine being used.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_TYPECELL\">Legt den Feldtyp fest. Die verfügbaren Feldtypen werden durch die verwendete Datenbank-Engine eingeschränkt.</ahelp>"
#. Ehy3n
#: 05010000.xhp
@@ -3298,7 +3298,7 @@ msgctxt ""
"hd_id3156119\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. 96xiG
#: 05010000.xhp
@@ -3307,7 +3307,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "<ahelp hid=\"HID_TABDESIGN_COMMENTCELL\">Specifies an optional description for each field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABDESIGN_COMMENTCELL\">Legt eine optionale Beschreibung für jedes Feld fest.</ahelp>"
#. A99ei
#: 05010000.xhp
@@ -3316,7 +3316,7 @@ msgctxt ""
"par_id3155630\n"
"help.text"
msgid "The row headers contain the following context menu commands:"
-msgstr ""
+msgstr "Die Zeilenköpfe enthalten die folgenden Kontextmenübefehle:"
#. rd8Zn
#: 05010000.xhp
@@ -3325,7 +3325,7 @@ msgctxt ""
"hd_id3156330\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Ausschneiden"
#. GVxeZ
#: 05010000.xhp
@@ -3334,7 +3334,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "Cuts the selected row to the clipboard."
-msgstr ""
+msgstr "Schneidet die ausgewählte Zeile aus und legt sie in der Zwischenablage ab."
#. JxTSq
#: 05010000.xhp
@@ -3343,7 +3343,7 @@ msgctxt ""
"hd_id3159177\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Kopieren"
#. ZAjhE
#: 05010000.xhp
@@ -3352,7 +3352,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "Copies the selected row to the clipboard."
-msgstr ""
+msgstr "Kopiert die ausgewählte Zeile in die Zwischenablage."
#. Q8awG
#: 05010000.xhp
@@ -3361,7 +3361,7 @@ msgctxt ""
"hd_id3156327\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Einfügen"
#. 5AQBL
#: 05010000.xhp
@@ -3370,7 +3370,7 @@ msgctxt ""
"par_id3152472\n"
"help.text"
msgid "Pastes the content of the clipboard."
-msgstr ""
+msgstr "Fügt den Inhalt der Zwischenablage ein."
#. aQCGh
#: 05010000.xhp
@@ -3379,7 +3379,7 @@ msgctxt ""
"hd_id3144511\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Löschen"
#. fbZPb
#: 05010000.xhp
@@ -3388,7 +3388,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "<ahelp hid=\".uno:Delete\">Deletes the selected row.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Delete\">Löscht die ausgewählte Zeile.</ahelp>"
#. pD5B3
#: 05010000.xhp
@@ -3397,7 +3397,7 @@ msgctxt ""
"hd_id3147303\n"
"help.text"
msgid "Insert Rows"
-msgstr ""
+msgstr "Zeile einfügen"
#. kfUXp
#: 05010000.xhp
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "<ahelp hid=\"SID_TABLEDESIGN_INSERTROWS\">Inserts an empty row above the current row, if the table has not been saved. Inserts an empty row at the end of the table if the table has already been saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SID_TABLEDESIGN_INSERTROWS\">Fügt eine leere Zeile über der aktuellen Zeile ein, wenn die Tabelle noch nicht gespeichert wurde. Fügt eine leere Zeile am Ende der Tabelle ein, wenn die Tabelle bereits gespeichert wurde.</ahelp>"
#. XMDuJ
#: 05010000.xhp
@@ -3415,7 +3415,7 @@ msgctxt ""
"hd_id3153524\n"
"help.text"
msgid "Primary Key"
-msgstr ""
+msgstr "Primärschlüssel"
#. mmwbs
#: 05010000.xhp
@@ -3424,7 +3424,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<ahelp hid=\"SID_TABLEDESIGN_TABED_PRIMARYKEY\">If this command has a check mark, the data field is defined as a primary key.</ahelp> By clicking the command you activate/deactivate the primary key definition of the field. The command is only visible if the data source supports primary keys."
-msgstr ""
+msgstr "<ahelp hid=\"SID_TABLEDESIGN_TABED_PRIMARYKEY\">Ist dieser Befehl mit einem Häkchen versehen, ist das Datenfeld als Primärschlüssel definiert.</ahelp> Durch Anklicken des Befehls aktivieren/deaktivieren Sie die Primärschlüsselfestlegung des Feldes. Der Befehl ist nur sichtbar, wenn die Datenquelle Primärschlüssel unterstützt."
#. kDbYY
#: 05010000.xhp
@@ -3433,7 +3433,7 @@ msgctxt ""
"hd_id3153104\n"
"help.text"
msgid "Field properties"
-msgstr ""
+msgstr "Feldeigenschaften"
#. BZPWE
#: 05010000.xhp
@@ -3442,7 +3442,7 @@ msgctxt ""
"par_id3148922\n"
"help.text"
msgid "Defines the field properties of the currently selected field."
-msgstr ""
+msgstr "Legt die Feldeigenschaften des aktuell ausgewählten Felds fest."
#. bRsW9
#: 05010000.xhp
@@ -3451,7 +3451,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "Length"
-msgstr ""
+msgstr "Länge"
#. D58RK
#: 05010000.xhp
@@ -3460,7 +3460,7 @@ msgctxt ""
"par_id3144761\n"
"help.text"
msgid "Specifies the maximum number of characters allowed for data entry of the corresponding data field including any spaces or special characters."
-msgstr ""
+msgstr "Legt die maximal zulässige Anzahl von Zeichen für die Dateneingabe des entsprechenden Datenfelds fest, einschließlich etwaiger Leerzeichen oder Sonderzeichen."
#. fJknL
#: 05010000.xhp
@@ -3469,7 +3469,7 @@ msgctxt ""
"hd_id3154948\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Dezimalstellen"
#. FgVqm
#: 05010000.xhp
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_id3149203\n"
"help.text"
msgid "Specifies the number of decimal places for a numerical field or decimal field."
-msgstr ""
+msgstr "Legt die Anzahl der Dezimalstellen für ein numerisches Feld oder Dezimalfeld fest."
#. mW3AN
#: 05010000.xhp
@@ -3487,7 +3487,7 @@ msgctxt ""
"hd_id3156422\n"
"help.text"
msgid "Default value"
-msgstr ""
+msgstr "Standardwert"
#. HYW5B
#: 05010000.xhp
@@ -3496,7 +3496,7 @@ msgctxt ""
"par_id3125863\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_DEFAULT\">Specifies the value that is the default in new data records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_DEFAULT\">Legt den Wert fest, der in neuen Datensätzen voreingestellt ist.</ahelp>"
#. vQcGG
#: 05010000.xhp
@@ -3505,7 +3505,7 @@ msgctxt ""
"hd_id3147289\n"
"help.text"
msgid "Format example"
-msgstr ""
+msgstr "Formatbeispiel"
#. CrqiQ
#: 05010000.xhp
@@ -3514,7 +3514,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT_SAMPLE\">Displays a sample of the format code of the field by applying it to the default value. Select the format code with the <emph>Format Field</emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_FORMAT_SAMPLE\">Zeigt ein Beispiel des Formatcodes des Felds an, indem es auf den Standardwert angewendet wird. Wählen Sie den Formatcode mit der Schaltfläche <emph>Feld formatieren</emph> aus.</ahelp>"
#. A2jGQ
#: 05010000.xhp
@@ -3523,7 +3523,7 @@ msgctxt ""
"hd_id3154129\n"
"help.text"
msgid "Format Field"
-msgstr ""
+msgstr "Feld Formatieren"
#. 8GHDz
#: 05010000.xhp
@@ -3532,7 +3532,7 @@ msgctxt ""
"par_id3154146\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT\">This button opens the <link href=\"text/shared/01/05340405.xhp\" name=\"Field Format\"><emph>Format Field</emph></link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_FORMAT\">Diese Schaltfläche öffnet den Dialog <link href=\"text/shared/01/05340405.xhp\" name=\"Field Format\"><emph>Feld formatieren</emph></link>.</ahelp>"
#. CgbCE
#: 05010000.xhp
@@ -3541,7 +3541,7 @@ msgctxt ""
"hd_id3152576\n"
"help.text"
msgid "Help area"
-msgstr ""
+msgstr "Hilfebereich"
#. Gg783
#: 05010000.xhp
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "<ahelp hid=\"HID_TABLE_DESIGN_HELP_WINDOW\">Displays a help string or hint defined by the database designer for the given field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TABLE_DESIGN_HELP_WINDOW\">Zeigt eine Hilfszeichenfolge oder einen Hinweis an, der vom Datenbankdesigner für das angegebene Feld festgelegt wurde.</ahelp>"
#. hzJ3Q
#: 05010100.xhp
@@ -3559,7 +3559,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index design"
-msgstr ""
+msgstr "Indexentwurf"
#. q4EEe
#: 05010100.xhp
@@ -3568,7 +3568,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sdatabase/05010100.xhp\" name=\"Index design\">Index design</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05010100.xhp\" name=\"Index design\">Indexentwurf</link>"
#. 98zvT
#: 05010100.xhp
@@ -3577,7 +3577,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".uno:DBIndexDesign\">The <emph>Index Design </emph>dialog allows you to define and edit the indexes for the current table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DBIndexDesign\">Der Dialog <emph>Indexentwurf</emph> ermöglicht es, die Indizes für die aktuelle Tabelle zu definieren und zu bearbeiten.</ahelp>"
#. N85Yq
#: 05010100.xhp
@@ -3586,7 +3586,7 @@ msgctxt ""
"hd_id3149578\n"
"help.text"
msgid "Index list"
-msgstr ""
+msgstr "Indexliste"
#. JQ5ws
#: 05010100.xhp
@@ -3595,7 +3595,7 @@ msgctxt ""
"par_id3155342\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/INDEX_LIST\">Displays a list of available indexes. Select an index from the list to edit. The details of the selected index are displayed in the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/INDEX_LIST\">Zeigt eine Liste verfügbarer Indizes an. Wählen Sie einen Index zum Bearbeiten aus der Liste aus. Die Details des ausgewählten Indexes werden im Dialog angezeigt.</ahelp>"
#. GNgfV
#: 05010100.xhp
@@ -3604,7 +3604,7 @@ msgctxt ""
"hd_id3149795\n"
"help.text"
msgid "New Index"
-msgstr ""
+msgstr "Neuer Index"
#. hbmc3
#: 05010100.xhp
@@ -3613,7 +3613,7 @@ msgctxt ""
"par_id3150085\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_NEW\">Creates a new index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_NEW\">Erstellt einen neuen Index.</ahelp>"
#. CraTD
#: 05010100.xhp
@@ -3622,7 +3622,7 @@ msgctxt ""
"hd_id3145317\n"
"help.text"
msgid "Delete Current Index"
-msgstr ""
+msgstr "Aktuellen Index löschen"
#. CLtrt
#: 05010100.xhp
@@ -3631,7 +3631,7 @@ msgctxt ""
"par_id3154860\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_DROP\">Deletes the current index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_DROP\">Löscht den aktuellen Index.</ahelp>"
#. qxQaG
#: 05010100.xhp
@@ -3640,7 +3640,7 @@ msgctxt ""
"hd_id3150986\n"
"help.text"
msgid "Rename Current Index"
-msgstr ""
+msgstr "Aktuellen Index umbenennen"
#. Me7m2
#: 05010100.xhp
@@ -3649,7 +3649,7 @@ msgctxt ""
"par_id3148685\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RENAME\">Renames the current index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RENAME\">Benennt den aktuellen Index um.</ahelp>"
#. h5vTM
#: 05010100.xhp
@@ -3658,7 +3658,7 @@ msgctxt ""
"hd_id3153628\n"
"help.text"
msgid "Save Current Index"
-msgstr ""
+msgstr "Aktuellen Index speichern"
#. GEBFr
#: 05010100.xhp
@@ -3667,7 +3667,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_SAVE\">Saves the current index in the data source.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_SAVE\">Speichert den aktuellen Index in der Datenquelle.</ahelp>"
#. JxS8c
#: 05010100.xhp
@@ -3676,7 +3676,7 @@ msgctxt ""
"hd_id3154924\n"
"help.text"
msgid "Reset Current Index"
-msgstr ""
+msgstr "Aktuellen Index zurücksetzen"
#. AkcRe
#: 05010100.xhp
@@ -3685,7 +3685,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RESET\">Resets the current index to the setting that it had when the dialog was started.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/ID_INDEX_RESET\">Setzt den aktuellen Index auf die Einstellung zurück, die er beim Start des Dialogs hatte.</ahelp>"
#. kpk89
#: 05010100.xhp
@@ -3694,7 +3694,7 @@ msgctxt ""
"hd_id3152812\n"
"help.text"
msgid "Index details"
-msgstr ""
+msgstr "Indexdetails"
#. whVGR
#: 05010100.xhp
@@ -3703,7 +3703,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "As soon as you change a detail of the current index and then select another index, the change is immediately passed on to the data source. You can only leave the dialog, or select another index, if the change has been successfully acknowledged by the data source. However, you can undo the change by clicking the <emph>Reset Current Index </emph>icon."
-msgstr ""
+msgstr "Sobald Sie ein Detail des aktuellen Index ändern und anschließend einen anderen Index auswählen, wird die Änderung sofort an die Datenquelle weitergegeben. Erst wenn die Änderung erfolgreich von der Datenquelle bestätigt wurde, können Sie den Dialog verlassen oder einen anderen Index auswählen. Sie können die Änderung jedoch rückgängig machen, indem Sie auf das Symbol <emph>Aktuellen Index zurücksetzen </emph> klicken."
#. rEFpa
#: 05010100.xhp
@@ -3712,7 +3712,7 @@ msgctxt ""
"hd_id3154138\n"
"help.text"
msgid "Unique"
-msgstr ""
+msgstr "Eindeutig"
#. wqFaL
#: 05010100.xhp
@@ -3721,7 +3721,7 @@ msgctxt ""
"par_id3156282\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/UNIQUE\">Specifies whether the current index allows only unique values.</ahelp> Checking the <emph>Unique </emph>option prevents duplicate data from being entered in the field and ensures data integrity."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/UNIQUE\">Legt fest, ob der aktuelle Index nur eindeutige Werte zulässt.</ahelp> Durch Aktivieren der Option <emph>Eindeutig</emph> wird verhindert, dass doppelte Daten in das Feld eingegeben werden, und es wird die Datenintegrität sichergestellt."
#. SFD2p
#: 05010100.xhp
@@ -3730,7 +3730,7 @@ msgctxt ""
"hd_id3150448\n"
"help.text"
msgid "Fields"
-msgstr ""
+msgstr "Felder"
#. KGRnz
#: 05010100.xhp
@@ -3739,7 +3739,7 @@ msgctxt ""
"par_id3147085\n"
"help.text"
msgid "The<emph> Fields</emph> area displays a list of fields in the current table. You can also select multiple fields. In order to remove a field from the selection, select the empty entry at the start of the list."
-msgstr ""
+msgstr "Der Bereich <emph>Felder</emph> zeigt eine Liste der Felder in der aktuellen Tabelle an. Sie können auch mehrere Felder auswählen. Um ein Feld aus der Auswahl zu entfernen, markieren Sie den leeren Eintrag am Anfang der Liste."
#. ALC5T
#: 05010100.xhp
@@ -3748,7 +3748,7 @@ msgctxt ""
"hd_id3149765\n"
"help.text"
msgid "Index field"
-msgstr ""
+msgstr "Indexfeld"
#. 2oDE4
#: 05010100.xhp
@@ -3757,7 +3757,7 @@ msgctxt ""
"par_id3158408\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_FIELD\">Displays a list of the fields in the current table. You can select more than one field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_FIELD\">Zeigt eine Liste der Felder in der aktuellen Tabelle an. Sie können mehr als ein Feld auswählen.</ahelp>"
#. CmQtE
#: 05010100.xhp
@@ -3766,7 +3766,7 @@ msgctxt ""
"hd_id3153192\n"
"help.text"
msgid "Sort order"
-msgstr ""
+msgstr "Sortierreihenfolge"
#. MXzBy
#: 05010100.xhp
@@ -3775,7 +3775,7 @@ msgctxt ""
"par_id3149561\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_SORTORDER\">Determines the sort order of the indexes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_SORTORDER\">Legt die Sortierreihenfolge der Indizes fest.</ahelp>"
#. cEYAF
#: 05010100.xhp
@@ -3784,7 +3784,7 @@ msgctxt ""
"hd_id3155132\n"
"help.text"
msgid "Close"
-msgstr ""
+msgstr "Schließen"
#. NuXdU
#: 05010100.xhp
@@ -3793,7 +3793,7 @@ msgctxt ""
"par_id3154190\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Closes the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/close\">Schließt den Dialog.</ahelp>"
#. n4gFz
#: 05020000.xhp
@@ -3802,7 +3802,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Relations"
-msgstr ""
+msgstr "Relationen"
#. sQwNc
#: 05020000.xhp
@@ -3811,7 +3811,7 @@ msgctxt ""
"hd_id3153323\n"
"help.text"
msgid "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relations</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05020000.xhp\" name=\"Relations\">Relationen</link>"
#. GxBiD
#: 05020000.xhp
@@ -3820,7 +3820,7 @@ msgctxt ""
"bm_id3146957\n"
"help.text"
msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Relationale Datenbanken (Base)</bookmark_value>"
#. YYXkm
#: 05020000.xhp
@@ -3829,7 +3829,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr ""
+msgstr "Dieser Befehl öffnet das Fenster <emph>Relationenentwurf</emph>, in dem Sie Relationen zwischen verschiedenen Datenbanktabellen festlegen können."
#. vMuED
#: 05020000.xhp
@@ -3838,7 +3838,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\"HID_CTL_RELATIONTAB\">Here you can link together tables from the current database through common data fields.</ahelp> Click the <emph>New Relation</emph> icon to create the relationships, or simply drag-and-drop with the mouse."
-msgstr ""
+msgstr "<ahelp hid=\"HID_CTL_RELATIONTAB\">Hier können Sie Tabellen aus der aktuellen Datenbank über gemeinsame Datenfelder miteinander verknüpfen.</ahelp> Klicken Sie auf das Symbol <emph>Neue Relation</emph>, um die Relationen zu erstellen, oder erzeugen Sie sie einfach per Ziehen-und-Ablegen mit der Maus."
#. zHWMJ
#: 05020000.xhp
@@ -3847,7 +3847,7 @@ msgctxt ""
"par_id3145316\n"
"help.text"
msgid "This function is only available if you are working with a relational database."
-msgstr ""
+msgstr "Diese Funktion ist nur verfügbar, wenn Sie mit einer relationalen Datenbank arbeiten."
#. 5MXvo
#: 05020000.xhp
@@ -3856,7 +3856,7 @@ msgctxt ""
"par_id3149235\n"
"help.text"
msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click on the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables with which to create a relation."
-msgstr ""
+msgstr "Wählen Sie <emph>Extras – Relationen…</emph>, um ein Fenster zu öffnen, in dem alle bestehenden Relationen zwischen den Tabellen der aktuellen Datenbank angezeigt werden. Wenn keine Relationen definiert wurden oder Sie andere Tabellen der Datenbank miteinander in Relation setzen möchten, klicken Sie auf das Symbol <emph>Tabellen hinzufügen</emph>. Der Dialog <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Tabellen hinzufügen</link> wird geöffnet, in dem Sie die Tabellen auswählen können, zu denen eine Relation erstellt werden soll."
#. krxTw
#: 05020000.xhp
@@ -3865,7 +3865,7 @@ msgctxt ""
"par_id3152812\n"
"help.text"
msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
-msgstr ""
+msgstr "Wenn das Fenster <emph>Relationenentwurf</emph> geöffnet ist, können die ausgewählten Tabellen nicht geändert werden, auch nicht im Modus Tabellenentwurf. Dadurch wird sichergestellt, dass Tabellen nicht geändert werden, während die Relationen erstellt werden."
#. zZFEP
#: 05020000.xhp
@@ -3874,7 +3874,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "The selected tables are shown in the top area of the relation design view. You can close a table window through the context menu or with the Delete key."
-msgstr ""
+msgstr "Die ausgewählten Tabellen werden im oberen Bereich der Ansicht Relationenentwurf angezeigt. Sie können ein Tabellenfenster über das Kontextmenü oder mit der Taste Entf schließen."
#. uJVYH
#: 05020000.xhp
@@ -3883,7 +3883,7 @@ msgctxt ""
"bm_id3148922\n"
"help.text"
msgid "<bookmark_value>primary keys;inserting (Base)</bookmark_value><bookmark_value>keys;primary keys (Base)</bookmark_value><bookmark_value>external keys (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Primärschlüssel; Einfügen (Base)</bookmark_value><bookmark_value>Schlüssel; Primärschlüssel (Base)</bookmark_value><bookmark_value>Externe Schlüssel (Base)</bookmark_value>"
#. ek2aE
#: 05020000.xhp
@@ -3892,7 +3892,7 @@ msgctxt ""
"hd_id3148922\n"
"help.text"
msgid "Primary key and foreign keys"
-msgstr ""
+msgstr "Primärschlüssel und Fremdschlüssel"
#. BDbWF
#: 05020000.xhp
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id3147085\n"
"help.text"
msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
-msgstr ""
+msgstr "Alle Datenfelder, die auf einen Primärschlüssel verweisen, werden im Tabellenfenster durch ein kleines Schlüsselsymbol gekennzeichnet."
#. vro8F
#: 05020000.xhp
@@ -3919,7 +3919,7 @@ msgctxt ""
"hd_id3153193\n"
"help.text"
msgid "Define relations"
-msgstr ""
+msgstr "Relationen definieren"
#. wmwWU
#: 05020000.xhp
@@ -3928,7 +3928,7 @@ msgctxt ""
"bm_id3155430\n"
"help.text"
msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Relationen; Erstellen und Löschen (Base)</bookmark_value>"
#. pGNLA
#: 05020000.xhp
@@ -3937,7 +3937,7 @@ msgctxt ""
"par_id3155430\n"
"help.text"
msgid "All existing relations are shown in the relations windows by a line that connects the primary and foreign key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
-msgstr ""
+msgstr "Alle bestehenden Relationen werden im Fenster Relationen durch eine Linie angezeigt, welche die Primär- und Fremdschlüsselfelder verbindet. Sie können eine Relation hinzufügen, indem Sie das Feld einer Tabelle per Ziehen-und-Ablegen auf das Feld einer anderen Tabelle ziehen. Eine Relation wird wieder entfernt, indem Sie diese auswählen und die Taste Entf drücken."
#. EF2rg
#: 05020000.xhp
@@ -3946,7 +3946,7 @@ msgctxt ""
"par_id3149984\n"
"help.text"
msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
+msgstr "Alternativ können Sie auch auf das Symbol <emph>Neue Relation</emph> im oberen Bereich des Felds Relation klicken und die Relation zwischen zwei Tabellen im Dialog <link href=\"text/sdatabase/05020100.xhp\" name=\"Relations\"><emph>Relationen</emph></link> festlegen."
#. yTadX
#: 05020000.xhp
@@ -3955,7 +3955,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the database."
-msgstr ""
+msgstr "Wenn Sie $[officename] als Frontend für eine relationale Datenbank verwenden, wird das Anlegen und Löschen von Beziehungen nicht von $[officename] in einen Zwischenspeicher gelegt, sondern direkt an die Datenbank weitergeleitet."
#. bnCjW
#: 05020000.xhp
@@ -3964,7 +3964,7 @@ msgctxt ""
"par_id3155856\n"
"help.text"
msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
-msgstr ""
+msgstr "Per Doppelklick auf eine Verbindungslinie können Sie der Relation bestimmte Eigenschaften zuweisen. Der Dialog <emph>Relationen</emph> öffnet sich."
#. zaiku
#: 05020100.xhp
@@ -3973,7 +3973,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Relations"
-msgstr ""
+msgstr "Relationen"
#. BAAZE
#: 05020100.xhp
@@ -3982,7 +3982,7 @@ msgctxt ""
"bm_id3150499\n"
"help.text"
msgid "<bookmark_value>relations; properties (Base)</bookmark_value><bookmark_value>key fields for relations (Base)</bookmark_value><bookmark_value>cascading update (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Relationen; Eigenschaften (Base)</bookmark_value><bookmark_value>Schlüsselfelder für Relationen (Base)</bookmark_value><bookmark_value>Kaskadierende Aktualisierung (Base)</bookmark_value>"
#. tDgC3
#: 05020100.xhp
@@ -3991,7 +3991,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "Relations"
-msgstr ""
+msgstr "Relationen"
#. 5fAEp
#: 05020100.xhp
@@ -4000,7 +4000,7 @@ msgctxt ""
"par_id3150499\n"
"help.text"
msgid "<ahelp hid=\".uno:DBAddRelation\">Allows you to define and edit a relation between two tables.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DBAddRelation\">Ermöglicht es Ihnen, eine Relation zwischen zwei Tabellen festzulegen und zu bearbeiten.</ahelp>"
#. yHc9N
#: 05020100.xhp
@@ -4009,7 +4009,7 @@ msgctxt ""
"par_id3155136\n"
"help.text"
msgid "The update and delete options are only available if they are supported by the database used."
-msgstr ""
+msgstr "Die Optionen \"Aktualisieren\" und \"Löschen\" sind nur verfügbar, wenn sie von der verwendeten Datenbank unterstützt werden."
#. gdhcZ
#: 05020100.xhp
@@ -4018,7 +4018,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "Tables involved"
-msgstr ""
+msgstr "Beteiligte Tabellen"
#. P78bc
#: 05020100.xhp
@@ -4027,7 +4027,7 @@ msgctxt ""
"par_id3153880\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">Hier werden die beiden verknüpften Tabellen aufgelistet.</ahelp> Wenn Sie eine neue Relation erstellen, können Sie aus jedem der Kombinationsfelder im oberen Bereich des Dialogs eine Tabelle auswählen."
#. 4UCC7
#: 05020100.xhp
@@ -4036,7 +4036,7 @@ msgctxt ""
"par_id3154047\n"
"help.text"
msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
-msgstr ""
+msgstr "Wenn Sie den Dialog <emph>Relationen</emph> für eine bestehende Relation durch Doppelklick auf die Verbindungslinien im Fenster Relationen geöffnet haben, können die an der Relation beteiligten Tabellen nicht geändert werden."
#. VBeNf
#: 05020100.xhp
@@ -4045,7 +4045,7 @@ msgctxt ""
"hd_id3153822\n"
"help.text"
msgid "Key fields"
-msgstr ""
+msgstr "Schlüsselfelder"
#. CnkB6
#: 05020100.xhp
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Defines the key fields for the relation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/joindialog/relations\">Legt die Schlüsselfelder für die Relation fest.</ahelp>"
#. tG7Wy
#: 05020100.xhp
@@ -4063,7 +4063,7 @@ msgctxt ""
"par_id3149235\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">Die Namen der für den Link ausgewählten Tabellen erscheinen hier als Spaltennamen.</ahelp> Wenn Sie auf ein Feld klicken, können Sie mit den Pfeilschaltflächen ein Feld aus der Tabelle auswählen. Jede Relation wird in eine Zeile geschrieben."
#. ECqps
#: 05020100.xhp
@@ -4072,7 +4072,7 @@ msgctxt ""
"hd_id3145609\n"
"help.text"
msgid "Update options"
-msgstr ""
+msgstr "Updateoptionen"
#. TcZQE
#: 05020100.xhp
@@ -4081,7 +4081,7 @@ msgctxt ""
"par_id3153061\n"
"help.text"
msgid "Here you can select options that take effect when there are changes to a primary key field."
-msgstr ""
+msgstr "Hier können Sie Optionen auswählen, die wirksam werden, wenn Änderungen an einem Primärschlüsselfeld vorgenommen werden."
#. SNgAC
#: 05020100.xhp
@@ -4090,7 +4090,7 @@ msgctxt ""
"hd_id3149046\n"
"help.text"
msgid "No action"
-msgstr ""
+msgstr "Keine Aktion"
#. BQgh9
#: 05020100.xhp
@@ -4099,7 +4099,7 @@ msgctxt ""
"par_id3152360\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Legt fest, dass sich Änderungen an einem Primärschlüssel nicht auf andere externe Schlüsselfelder auswirken.</ahelp>"
#. UzK5q
#: 05020100.xhp
@@ -4108,7 +4108,7 @@ msgctxt ""
"hd_id3148664\n"
"help.text"
msgid "Updating cascade"
-msgstr ""
+msgstr "Kaskadierende Aktualisierung"
#. GFtru
#: 05020100.xhp
@@ -4117,7 +4117,7 @@ msgctxt ""
"par_id3154073\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Aktualisiert alle externen Schlüsselfelder, wenn der Wert des entsprechenden Primärschlüssels geändert wurde (Kaskadierende Aktualisierung).</ahelp>"
#. xydLE
#: 05020100.xhp
@@ -4126,7 +4126,7 @@ msgctxt ""
"hd_id3145171\n"
"help.text"
msgid "Set null"
-msgstr ""
+msgstr "Null setzen"
#. ksYnw
#: 05020100.xhp
@@ -4135,7 +4135,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\">Verwenden Sie diese Option, um, wenn der entsprechende Primärschlüssel geändert wird, den Wert \"IS NULL\" für alle externen Schlüsselfelder festzulegen. IS NULL bedeutet, dass das Feld leer ist.</ahelp>"
#. FGxMC
#: 05020100.xhp
@@ -4144,7 +4144,7 @@ msgctxt ""
"hd_id3150448\n"
"help.text"
msgid "Set default"
-msgstr ""
+msgstr "Standard setzen"
#. T7dEQ
#: 05020100.xhp
@@ -4153,7 +4153,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\">Verwenden Sie diese Option, um, wenn der entsprechende Primärschlüssel geändert wurde, einen Standardwert für alle externen Schlüsselfelder festzulegen.</ahelp> Während der Erstellung der entsprechenden Tabelle wird der Standardwert eines externen Schlüsselfelds bei der Zuweisung der Feldeigenschaften festgelegt."
#. AvWBL
#: 05020100.xhp
@@ -4162,7 +4162,7 @@ msgctxt ""
"hd_id3125863\n"
"help.text"
msgid "Delete options"
-msgstr ""
+msgstr "Löschoptionen"
#. ayyns
#: 05020100.xhp
@@ -4171,7 +4171,7 @@ msgctxt ""
"par_id3153193\n"
"help.text"
msgid "Here you can select options that take effect when a primary key field is deleted."
-msgstr ""
+msgstr "Hier können Sie Optionen auswählen, die wirksam werden, wenn ein Primärschlüsselfeld gelöscht wird."
#. jTCSL
#: 05020100.xhp
@@ -4180,7 +4180,7 @@ msgctxt ""
"hd_id3159252\n"
"help.text"
msgid "No action"
-msgstr ""
+msgstr "Keine Aktion"
#. PgDqt
#: 05020100.xhp
@@ -4189,7 +4189,7 @@ msgctxt ""
"par_id3145785\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Legt fest, dass das Löschen eines Primärschlüssels keine Auswirkung auf andere externe Schlüsselfelder hat.</ahelp>"
#. hFmB4
#: 05020100.xhp
@@ -4198,7 +4198,7 @@ msgctxt ""
"hd_id3154146\n"
"help.text"
msgid "Delete cascade"
-msgstr ""
+msgstr "Kaskadierendes Löschen"
#. ESpAp
#: 05020100.xhp
@@ -4207,7 +4207,7 @@ msgctxt ""
"par_id3155309\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Legt fest, dass alle externen Schlüsselfelder gelöscht werden, wenn Sie das entsprechende Primärschlüsselfeld löschen.</ahelp>"
#. ZaNTh
#: 05020100.xhp
@@ -4216,7 +4216,7 @@ msgctxt ""
"par_id3153140\n"
"help.text"
msgid "When you delete a primary key field with the<emph> Delete cascade </emph>option, all records from other tables that have this key as their foreign key are also deleted. Use this option with great care; it is possible that a major portion of the database can be deleted."
-msgstr ""
+msgstr "Wenn Sie ein Primärschlüsselfeld mit der Option <emph>Kaskadierendes Löschen</emph> löschen, werden alle Datensätze aus anderen Tabellen, die diesen Schlüssel als Fremdschlüssel haben, ebenfalls gelöscht. Verwenden Sie diese Option mit großer Sorgfalt; Es ist möglich, dass ein Großteil der Datenbank gelöscht wird."
#. mAu9C
#: 05020100.xhp
@@ -4225,7 +4225,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "Set null"
-msgstr ""
+msgstr "Null setzen"
#. dAtCx
#: 05020100.xhp
@@ -4234,7 +4234,7 @@ msgctxt ""
"par_id3153363\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">If you delete the corresponding primary key, the \"IS NULL\" value will be assigned to all external key fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delnull\">Wenn Sie den entsprechenden Primärschlüssel löschen, wird allen externen Schlüsselfeldern der Wert \"IS NULL\" zugewiesen.</ahelp>"
#. 474LG
#: 05020100.xhp
@@ -4243,7 +4243,7 @@ msgctxt ""
"hd_id3145272\n"
"help.text"
msgid "Set Default"
-msgstr ""
+msgstr "Standard setzen"
#. ktJ6K
#: 05020100.xhp
@@ -4252,7 +4252,7 @@ msgctxt ""
"par_id3154320\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">If you delete the corresponding primary key, a set value will be set to all external key fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/deldefault\">Wenn Sie den entsprechenden Primärschlüssel löschen, wird ein Standardwert für alle externen Schlüsselfelder gesetzt.</ahelp>"
#. x8A6E
#: 05030000.xhp
@@ -4261,7 +4261,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copy a Table by Drag-and-Drop"
-msgstr ""
+msgstr "Kopieren einer Tabelle per Ziehen-und-Ablegen"
#. VdcaB
#: 05030000.xhp
@@ -4270,7 +4270,7 @@ msgctxt ""
"hd_id3154894\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Copy Query or Table by Drag-and-Drop</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030000.xhp\" name=\"Copy Query or Table by Drag-and-Drop\">Eine Abfrage oder Tabelle per Kopieren-und-Ablegen kopieren</link>"
#. nDG9W
#: 05030000.xhp
@@ -4279,7 +4279,7 @@ msgctxt ""
"bm_id3155535\n"
"help.text"
msgid "<bookmark_value>queries; copying (Base)</bookmark_value><bookmark_value>tables in databases; copying database tables (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Abfragen; Kopieren (Base)</bookmark_value><bookmark_value>Tabellen in Datenbanken; Kopieren von Datenbanktabellen (Base)</bookmark_value>"
#. n82rc
#: 05030000.xhp
@@ -4288,7 +4288,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "Dragging-and-dropping a query or table opens the <emph>Copy Table </emph>dialog, which allows you to define the options for copying a query or a table."
-msgstr ""
+msgstr "Durch Ziehen-und-Ablegen einer Abfrage oder Tabelle wird der Dialog <emph>Tabelle kopieren</emph> geöffnet, in dem Sie die Optionen zum Kopieren einer Abfrage oder Tabelle festlegen können."
#. CzRJq
#: 05030000.xhp
@@ -4297,7 +4297,7 @@ msgctxt ""
"par_id3148539\n"
"help.text"
msgid "With the <emph>Copy Table </emph>dialog you can:"
-msgstr ""
+msgstr "Mit dem Dialog <emph>Tabelle kopieren </emph> können Sie:"
#. G45TE
#: 05030000.xhp
@@ -4306,7 +4306,7 @@ msgctxt ""
"par_id3153147\n"
"help.text"
msgid "copy the data from the table into another table,"
-msgstr ""
+msgstr "die Daten aus der Tabelle in eine andere Tabelle kopieren,"
#. 9Kvqa
#: 05030000.xhp
@@ -4315,7 +4315,7 @@ msgctxt ""
"par_id3150504\n"
"help.text"
msgid "use the structure of the table as the basis for creating a new table."
-msgstr ""
+msgstr "die Struktur der Tabelle als Grundlage für die Erstellung einer neuen Tabelle verwenden."
#. dDRmD
#: 05030000.xhp
@@ -4324,7 +4324,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "You can copy within the same database or between different databases."
-msgstr ""
+msgstr "Sie können innerhalb derselben Datenbank oder zwischen verschiedenen Datenbanken kopieren."
#. Ed5rp
#: 05030100.xhp
@@ -4333,7 +4333,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copy Table"
-msgstr ""
+msgstr "Tabelle kopieren"
#. kkUkn
#: 05030100.xhp
@@ -4342,7 +4342,7 @@ msgctxt ""
"hd_id3085157\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Copy Table</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030100.xhp\" name=\"Copy Table\">Tabelle kopieren</link>"
#. sBC76
#: 05030100.xhp
@@ -4351,7 +4351,7 @@ msgctxt ""
"par_id3149264\n"
"help.text"
msgid "You can copy a table by dragging and dropping the table onto the table area of a database file window. The <emph>Copy table </emph>dialog appears."
-msgstr ""
+msgstr "Sie können eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen in den Tabellenbereich des Fensters einer Datenbankdatei ziehen. Der Dialog <emph>Tabelle kopieren</emph> wird geöffnet."
#. ciK5F
#: 05030100.xhp
@@ -4360,7 +4360,7 @@ msgctxt ""
"hd_id3154926\n"
"help.text"
msgid "Table name"
-msgstr ""
+msgstr "Tabellenname"
#. iFF9F
#: 05030100.xhp
@@ -4369,7 +4369,7 @@ msgctxt ""
"par_id3144740\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/name\">Specifies a name for the copy.</ahelp> Some databases only accept names containing eight or fewer characters."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/name\">Geben Sie einen Namen für die Kopie ein.</ahelp> Einige Datenbanken akzeptieren nur Namen mit acht oder weniger Zeichen."
#. x78x3
#: 05030100.xhp
@@ -4378,7 +4378,7 @@ msgctxt ""
"hd_id3154228\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Optionen"
#. JvNbF
#: 05030100.xhp
@@ -4387,7 +4387,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "Definition and data"
-msgstr ""
+msgstr "Definition und Daten"
#. TqTmF
#: 05030100.xhp
@@ -4396,7 +4396,7 @@ msgctxt ""
"par_id3150178\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/defdata\">Creates a 1:1 copy of the database table.</ahelp> The table definition and the complete data are copied. The table definition includes the table structure and format from different data fields, including special field properties. The field contents supply the data."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/defdata\">Erzeugt eine 1:1 Kopie der Datenbanktabelle.</ahelp> Die Tabellendefinition und die kompletten Daten werden kopiert. Die Tabellendefinition umfasst die Tabellenstruktur und das Format aus verschiedenen Datenfeldern, einschließlich spezieller Feldeigenschaften. Die Feldinhalte liefern die Daten."
#. hezaD
#: 05030100.xhp
@@ -4405,7 +4405,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definition"
#. b2GpC
#: 05030100.xhp
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/def\">Copies only the table definition and not the corresponding data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/def\">Kopiert nur die Tabellendefinition und nicht die zugehörigen Daten.</ahelp>"
#. RCvEj
#: 05030100.xhp
@@ -4423,7 +4423,7 @@ msgctxt ""
"hd_id3143267\n"
"help.text"
msgid "As table view"
-msgstr ""
+msgstr "Als Tabellenansicht"
#. BNNHr
#: 05030100.xhp
@@ -4432,7 +4432,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/view\">If the database supports Views and you selected this option, a query will be created in the table container as a table. This option allows you to view the query results as a normal table view.</ahelp> The table will be filtered in the view with a \"Select\" SQL statement."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/view\">Wenn die Datenbank Ansichten unterstützt und Sie diese Option ausgewählt haben, wird eine Abfrage im Tabellencontainer als Tabelle erstellt. Mit dieser Option können Sie die Abfrageergebnisse als normale Tabellenansicht anzeigen.</ahelp> Die Tabelle wird in der Ansicht mit der SQL-Anweisung \"Select\" gefiltert."
#. yJmgp
#: 05030100.xhp
@@ -4441,7 +4441,7 @@ msgctxt ""
"hd_id3155535\n"
"help.text"
msgid "Append data"
-msgstr ""
+msgstr "Daten anhängen"
#. aB4JD
#: 05030100.xhp
@@ -4450,7 +4450,7 @@ msgctxt ""
"par_id3166410\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/data\">Appends the data of the table to be copied to an existing table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/data\">Hängt die Daten der zu kopierenden Tabelle an eine bestehende Tabelle an.</ahelp>"
#. AnYQg
#: 05030100.xhp
@@ -4459,7 +4459,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table."
-msgstr ""
+msgstr "Die Tabellendefinition muss genau gleich sein, damit Daten kopiert werden können. Daten können nicht kopiert werden, wenn ein Datenfeld in der Zieltabelle ein anderes Format hat als das Datenfeld in der Quelltabelle."
#. ADGPK
#: 05030100.xhp
@@ -4468,7 +4468,7 @@ msgctxt ""
"par_id3156117\n"
"help.text"
msgid "Match the data field names in the<emph> Copy Table</emph> dialog on the <link href=\"text/sdatabase/05030400.xhp\" name=\"Apply Columns\">Apply Columns</link> page."
-msgstr ""
+msgstr "Gleichen Sie die Datenfeldnamen im Dialog <emph>Tabelle kopieren</emph> auf der Seite <link href=\"text/sdatabase/05030400.xhp\" name=\"Apply Columns\">Spalten anwenden</link> ab."
#. toArF
#: 05030100.xhp
@@ -4477,7 +4477,7 @@ msgctxt ""
"par_id3153252\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/data\">If the data cannot be attached, you will see a list of fields in the <emph>Column Info</emph> dialog whose data cannot be copied.</ahelp> If you confirm this dialog with OK, only the data that does not appear in the list will be attached."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/data\">Wenn die Daten nicht angehängt werden können, sehen Sie im Dialog <emph>Spalteninfo</emph> eine Liste der Felder, deren Daten nicht kopiert werden können.</ahelp> Bestätigen Sie diesen Dialog mit OK, werden nur die Daten angehängt, die nicht in der Liste erscheinen."
#. 8JYz8
#: 05030100.xhp
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table."
-msgstr ""
+msgstr "Wenn die Felder der Zieltabelle beim Anhängen von Daten eine kleinere Feldlänge haben als in der Quelltabelle, werden die Quelldatenfelder automatisch auf die Feldlängen in der Zieltabelle gekürzt."
#. 6oNSE
#: 05030100.xhp
@@ -4495,7 +4495,7 @@ msgctxt ""
"bm_id3149164\n"
"help.text"
msgid "<bookmark_value>primary keys; defining</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Primärschlüssel; definieren</bookmark_value>"
#. odQAJ
#: 05030100.xhp
@@ -4504,7 +4504,7 @@ msgctxt ""
"hd_id3149164\n"
"help.text"
msgid "Create primary key"
-msgstr ""
+msgstr "Primärschlüssel erstellen"
#. T7Dmr
#: 05030100.xhp
@@ -4513,7 +4513,7 @@ msgctxt ""
"par_id3155922\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Automatically generates a primary key data field and fills it with values.</ahelp> You should always use this field, since a primary key must always be available in order to edit the table."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/primarykey\">Erzeugt automatisch ein Datenfeld \"Primärschlüssel\" und füllt es mit Werten.</ahelp> Dieses Feld sollten Sie immer verwenden, da zum Bearbeiten der Tabelle immer ein Primärschlüssel vorhanden sein muss."
#. EhRtD
#: 05030100.xhp
@@ -4522,7 +4522,7 @@ msgctxt ""
"hd_id3146794\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. v9USa
#: 05030100.xhp
@@ -4531,7 +4531,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/copytablepage/keyname\">Specifies a name for the primary key generated. This name is optional.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/copytablepage/keyname\">Legt einen Namen für den generierten Primärschlüssel fest. Dieser Name ist optional.</ahelp>"
#. seBiB
#: 05030100.xhp
@@ -4540,7 +4540,7 @@ msgctxt ""
"par_id3151056\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Next page\">Nächste Seite</link>"
#. DDJC9
#: 05030200.xhp
@@ -4549,7 +4549,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Apply columns"
-msgstr ""
+msgstr "Spalten anwenden"
#. FnB9J
#: 05030200.xhp
@@ -4558,7 +4558,7 @@ msgctxt ""
"hd_id3150445\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Apply columns</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030200.xhp\" name=\"Apply columns\">Spalten anwenden</link>"
#. 6b9Li
#: 05030200.xhp
@@ -4567,7 +4567,7 @@ msgctxt ""
"par_id3147143\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The <emph>Apply columns </emph>dialog is the second window of the <emph>Copy table</emph> dialog."
-msgstr ""
+msgstr "Im Datenquellen-Explorer können Sie eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen auf den Tabellencontainer ziehen. Der Dialog <emph>Spalten anwenden</emph> ist das zweite Fenster des Dialogs <emph>Tabelle kopieren</emph>."
#. 8r9yc
#: 05030200.xhp
@@ -4576,7 +4576,7 @@ msgctxt ""
"hd_id3155552\n"
"help.text"
msgid "Existing columns"
-msgstr ""
+msgstr "Vorhandene Spalten"
#. NDcVA
#: 05030200.xhp
@@ -4585,7 +4585,7 @@ msgctxt ""
"hd_id3154751\n"
"help.text"
msgid "Left list box"
-msgstr ""
+msgstr "Listenfeld links"
#. AkHFX
#: 05030200.xhp
@@ -4594,7 +4594,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/from\">Lists the available data fields that you can include in the copied table. To copy a data field, click its name, and then click the > button. To copy all of the fields, click the <emph>>></emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/from\">Listet die verfügbaren Datenfelder auf, die Sie in die kopierte Tabelle aufnehmen können. Um ein Datenfeld zu kopieren, klicken Sie auf seinen Namen und dann auf die Schaltfläche \">\". Um alle Felder zu kopieren, klicken Sie auf die Schaltfläche <emph>>></emph>.</ahelp>"
#. FYG4i
#: 05030200.xhp
@@ -4603,7 +4603,7 @@ msgctxt ""
"hd_id3154823\n"
"help.text"
msgid "Right list box"
-msgstr ""
+msgstr "Listenfeld rechts"
#. KgGGQ
#: 05030200.xhp
@@ -4612,7 +4612,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Lists the fields that you want to include in the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/applycolpage/to\">Listet die Felder auf, die Sie in die kopierte Tabelle aufnehmen möchten.</ahelp>"
#. VyQwS
#: 05030200.xhp
@@ -4621,7 +4621,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Buttons"
-msgstr ""
+msgstr "Schaltflächen"
#. NT8C3
#: 05030200.xhp
@@ -4630,7 +4630,7 @@ msgctxt ""
"par_id3146797\n"
"help.text"
msgid "<ahelp hid=\".\">Adds or removes the selected field (> or < button) or all of the fields (<< or >> button).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fügt das ausgewählte Feld (Schaltfläche \">\" oder \"<\") oder alle Felder (Schaltfläche \"<<\" oder \">>\") hinzu oder entfernt es/sie.</ahelp>"
#. CuqBd
#: 05030200.xhp
@@ -4639,7 +4639,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Next page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Next page\">Nächste Seite</link>"
#. gTg68
#: 05030300.xhp
@@ -4648,7 +4648,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Type formatting"
-msgstr ""
+msgstr "Typformatierung"
#. ybz5D
#: 05030300.xhp
@@ -4657,7 +4657,7 @@ msgctxt ""
"hd_id3163829\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Type formatting</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030300.xhp\" name=\"Type formatting\">Typformatierung</link>"
#. EkSPG
#: 05030300.xhp
@@ -4666,7 +4666,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The<emph> Type formatting </emph>dialog is the third window of the <emph>Copy table</emph> dialog."
-msgstr ""
+msgstr "Im Datenquellen-Explorer können Sie eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen auf den Tabellencontainer ziehen. Der Dialog <emph>Typformatierung</emph> ist das dritte Fenster des Dialogs <emph>Tabelle kopieren</emph>."
#. mnHDq
#: 05030300.xhp
@@ -4675,7 +4675,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "List box"
-msgstr ""
+msgstr "Listenfeld"
#. EqDjY
#: 05030300.xhp
@@ -4684,7 +4684,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/columnnames\">Lists the data fields that will be included in to the copied table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/columnnames\">Listet die Datenfelder auf, die in die kopierte Tabelle aufgenommen werden.</ahelp>"
#. NCTje
#: 05030300.xhp
@@ -4693,7 +4693,7 @@ msgctxt ""
"hd_id3155535\n"
"help.text"
msgid "Column information"
-msgstr ""
+msgstr "Spalteninformationen"
#. eiXTf
#: 05030300.xhp
@@ -4702,7 +4702,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "Field name"
-msgstr ""
+msgstr "Feldname"
#. MNzaq
#: 05030300.xhp
@@ -4711,7 +4711,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the name of the selected data field. If you want, you can enter a new name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt den Namen des ausgewählten Datenfeldes an. Wenn Sie möchten, können Sie einen neuen Namen eingeben.</ahelp>"
#. GhbYj
#: 05030300.xhp
@@ -4720,7 +4720,7 @@ msgctxt ""
"hd_id3156113\n"
"help.text"
msgid "Field type"
-msgstr ""
+msgstr "Feldtyp"
#. MmakP
#: 05030300.xhp
@@ -4729,7 +4729,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field type.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wählen Sie einen Feldtyp aus.</ahelp>"
#. E9Z9q
#: 05030300.xhp
@@ -4738,7 +4738,7 @@ msgctxt ""
"hd_id3149763\n"
"help.text"
msgid "Length"
-msgstr ""
+msgstr "Länge"
#. BE8Ct
#: 05030300.xhp
@@ -4747,7 +4747,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of characters for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geben Sie die Anzahl der Zeichen für das Datenfeld ein.</ahelp>"
#. FqaDj
#: 05030300.xhp
@@ -4756,7 +4756,7 @@ msgctxt ""
"hd_id3159176\n"
"help.text"
msgid "Decimal places"
-msgstr ""
+msgstr "Dezimalstellen"
#. 4pH6B
#: 05030300.xhp
@@ -4765,7 +4765,7 @@ msgctxt ""
"par_id3153666\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the number of decimal places for the data field. This option is only available for numerical or decimal data fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geben Sie die Anzahl der Dezimalstellen für das Datenfeld ein. Diese Option ist nur für numerische oder dezimale Datenfelder verfügbar.</ahelp>"
#. 8H7Yy
#: 05030300.xhp
@@ -4774,7 +4774,7 @@ msgctxt ""
"hd_id3150276\n"
"help.text"
msgid "Default value"
-msgstr ""
+msgstr "Standardwert"
#. uF2x5
#: 05030300.xhp
@@ -4783,7 +4783,7 @@ msgctxt ""
"par_id3147620\n"
"help.text"
msgid "<ahelp hid=\".\">Select the default value for a Yes/No field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wählen Sie den Standardwert für ein Ja/Nein-Feld aus.</ahelp>"
#. H7JCy
#: 05030300.xhp
@@ -4792,7 +4792,7 @@ msgctxt ""
"hd_id3153087\n"
"help.text"
msgid "Automatic type recognition"
-msgstr ""
+msgstr "Automatische Typerkennung"
#. KTPFP
#: 05030300.xhp
@@ -4801,7 +4801,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "$[officename] can automatically recognize field contents when you copy database tables by drag and drop."
-msgstr ""
+msgstr "$[officename] kann Feldinhalte automatisch erkennen, wenn Sie Datenbanktabellen per Ziehen-und-Ablegen kopieren."
#. XbBEn
#: 05030300.xhp
@@ -4810,7 +4810,7 @@ msgctxt ""
"hd_id3156023\n"
"help.text"
msgid "(max.) lines"
-msgstr ""
+msgstr "(max.) Zeilen"
#. 9uGo7
#: 05030300.xhp
@@ -4819,7 +4819,7 @@ msgctxt ""
"par_id3155923\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/auto\">Enter the number of lines to use for automatic type recognition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/auto\">Geben Sie die Anzahl der Zeilen ein, die für die automatische Typerkennung verwendet werden sollen.</ahelp>"
#. ZojMW
#: 05030300.xhp
@@ -4828,7 +4828,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "Auto"
-msgstr ""
+msgstr "Automatisch"
#. KXrRC
#: 05030300.xhp
@@ -4837,7 +4837,7 @@ msgctxt ""
"par_id3152361\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/autobutton\">Enables automatic type recognition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/autobutton\">Aktiviert die automatische Typerkennung.</ahelp>"
#. U6GAf
#: 05030400.xhp
@@ -4846,7 +4846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Assign columns"
-msgstr ""
+msgstr "Spalten zuweisen"
#. qFHro
#: 05030400.xhp
@@ -4855,7 +4855,7 @@ msgctxt ""
"hd_id3151100\n"
"help.text"
msgid "<link href=\"text/sdatabase/05030400.xhp\" name=\"Assign columns\">Assign columns</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05030400.xhp\" name=\"Assign columns\">Spalten zuweisen</link>"
#. EkAFg
#: 05030400.xhp
@@ -4864,7 +4864,7 @@ msgctxt ""
"par_id3156027\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. If you select the <emph>Attach data </emph>check box on the first page of the <emph>Copy table </emph>dialog, the <emph>Assign columns </emph>dialog opens as the second window. You can use this dialog to map the contents of a data field in the source table to a different data field in the destination table."
-msgstr ""
+msgstr "Im Datenquellen-Explorer können Sie eine Tabelle kopieren, indem Sie die Tabelle per Ziehen-und-Ablegen auf den Tabellencontainer ziehen. Wenn Sie das Markierfeld <emph>Daten anhängen</emph> auf der ersten Seite des Dialogs <emph>Tabelle kopieren</emph> aktivieren, öffnet sich der Dialog <emph>Spalten zuweisen</emph> als zweites Fenster. Sie können diesen Dialog verwenden, um den Inhalt eines Datenfelds in der Quelltabelle einem anderen Datenfeld in der Zieltabelle zuzuordnen."
#. fGrH7
#: 05030400.xhp
@@ -4873,7 +4873,7 @@ msgctxt ""
"hd_id3157958\n"
"help.text"
msgid "Source table"
-msgstr ""
+msgstr "Quelltabelle"
#. XA5ur
#: 05030400.xhp
@@ -4882,7 +4882,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/left\">Lists the data fields in the source table. To include a data field from the source table in the destination table, select the check box in front of the data field name. To map the contents of a data field in the source table to a different data field in the destination table, click the data field in the source table list, and then click the up or down arrow.</ahelp> To include all of the source data fields in the destination table, click <emph>All</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/left\">Listet die Datenfelder in der Quelltabelle auf. Um ein Datenfeld aus der Quelltabelle in die Zieltabelle aufzunehmen, aktivieren Sie das Markierfeld vor dem Datenfeldnamen. Um den Inhalt eines Datenfelds in der Quelltabelle einem anderen Datenfeld in der Zieltabelle zuzuordnen, klicken Sie auf das Datenfeld in der Quelltabellenliste und dann auf den Aufwärts- oder Abwärtspfeil.</ahelp> Um alle Quelldatenfelder in der Zieltabelle einzuschließen, klicken Sie auf <emph>Alle</emph>."
#. Kn5tW
#: 05030400.xhp
@@ -4891,7 +4891,7 @@ msgctxt ""
"hd_id3166410\n"
"help.text"
msgid "Destination table"
-msgstr ""
+msgstr "Zieltabelle"
#. CHq7j
#: 05030400.xhp
@@ -4900,7 +4900,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/right\">Lists the possible data fields in the destination table. Only the data fields that are selected in the source table list will be included the destination table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/right\">Listet die möglichen Datenfelder in der Zieltabelle auf. Nur die in der Quelltabellenliste ausgewählten Datenfelder werden in die Zieltabelle aufgenommen.</ahelp>"
#. yGCzC
#: 05030400.xhp
@@ -4909,7 +4909,7 @@ msgctxt ""
"hd_id3150670\n"
"help.text"
msgid "up"
-msgstr ""
+msgstr "Nach oben"
#. AoHnF
#: 05030400.xhp
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id3155628\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected entry up one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bewegt den ausgewählten Eintrag in der Liste um eine Position nach oben.</ahelp>"
#. BsfZK
#: 05030400.xhp
@@ -4927,7 +4927,7 @@ msgctxt ""
"hd_id3149580\n"
"help.text"
msgid "down"
-msgstr ""
+msgstr "Nach unten"
#. XUyNh
#: 05030400.xhp
@@ -4936,7 +4936,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "<ahelp hid=\".\">Moves the selected entry down one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bewegt den ausgewählten Eintrag in der Liste um eine Position nach unten.</ahelp>"
#. DqTjR
#: 05030400.xhp
@@ -4945,7 +4945,7 @@ msgctxt ""
"hd_id3156156\n"
"help.text"
msgid "all"
-msgstr ""
+msgstr "Alle"
#. FBk6i
#: 05030400.xhp
@@ -4954,7 +4954,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/all\">Selects all of the data fields in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/all\">Wählt alle Datenfelder in der Liste aus.</ahelp>"
#. eFJ6S
#: 05030400.xhp
@@ -4963,7 +4963,7 @@ msgctxt ""
"hd_id3153541\n"
"help.text"
msgid "none"
-msgstr ""
+msgstr "Keine"
#. LYsDF
#: 05030400.xhp
@@ -4972,7 +4972,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">Clears all of the check boxes in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">Deaktiviert alle Markierfelder in der Liste.</ahelp>"
#. rxCsN
#: 05040000.xhp
@@ -4981,7 +4981,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "General"
-msgstr ""
+msgstr "Allgemein"
#. DmCQD
#: 05040000.xhp
@@ -4990,7 +4990,7 @@ msgctxt ""
"hd_id3149031\n"
"help.text"
msgid "<link href=\"text/sdatabase/05040000.xhp\" name=\"General\">General</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05040000.xhp\" name=\"General\">Allgemein</link>"
#. 7ithV
#: 05040100.xhp
@@ -4999,7 +4999,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "General"
-msgstr ""
+msgstr "Allgemein"
#. 5uLP9
#: 05040100.xhp
@@ -5008,7 +5008,7 @@ msgctxt ""
"hd_id3153255\n"
"help.text"
msgid "<link href=\"text/sdatabase/05040100.xhp\" name=\"General\">General</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05040100.xhp\" name=\"General\">Allgemein</link>"
#. LsG3R
#: 05040100.xhp
@@ -5017,7 +5017,7 @@ msgctxt ""
"par_id3157898\n"
"help.text"
msgid "When you create a database table as an administrator, you can use this tab to determine user access, and to edit the data or the table structure."
-msgstr ""
+msgstr "Wenn Sie als Administrator eine Datenbanktabelle erstellen, können Sie auf diesem Register den Benutzerzugriff festlegen und die Daten oder Tabellenstruktur bearbeiten."
#. CydBA
#: 05040100.xhp
@@ -5026,7 +5026,7 @@ msgctxt ""
"bm_id3152594\n"
"help.text"
msgid "<bookmark_value>access rights for database tables (Base)</bookmark_value><bookmark_value>tables in databases; access rights to (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Zugriffsrechte auf Datenbanktabellen (Base)</bookmark_value><bookmark_value>Tabellen in Datenbanken; Zugriffsrechte (Base)</bookmark_value>"
#. VFwEY
#: 05040100.xhp
@@ -5035,7 +5035,7 @@ msgctxt ""
"par_id3152594\n"
"help.text"
msgid "If you are not the administrator, you can use the <emph>General</emph> tab to view your access rights for the selected table."
-msgstr ""
+msgstr "Wenn Sie nicht der Administrator sind, können Sie das Register <emph>Allgemein</emph> verwenden, um Ihre Zugriffsrechte für die ausgewählte Tabelle anzuzeigen."
#. ZGqED
#: 05040100.xhp
@@ -5044,7 +5044,7 @@ msgctxt ""
"hd_id3145669\n"
"help.text"
msgid "Table name"
-msgstr ""
+msgstr "Tabellenname"
#. hfNJd
#: 05040100.xhp
@@ -5053,7 +5053,7 @@ msgctxt ""
"par_id3147834\n"
"help.text"
msgid "Displays the name of the selected database table."
-msgstr ""
+msgstr "Zeigt den Namen der ausgewählten Datenbanktabelle an."
#. mxdWQ
#: 05040100.xhp
@@ -5062,7 +5062,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Typ"
#. cGosS
#: 05040100.xhp
@@ -5071,7 +5071,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "Displays the type of database."
-msgstr ""
+msgstr "Zeigt den Datenbanktyp an."
#. jCSC3
#: 05040100.xhp
@@ -5080,7 +5080,7 @@ msgctxt ""
"hd_id3149095\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Ort"
#. GjS2M
#: 05040100.xhp
@@ -5089,7 +5089,7 @@ msgctxt ""
"par_id3153311\n"
"help.text"
msgid "Displays the complete path of the database table."
-msgstr ""
+msgstr "Zeigt den vollständigen Pfad der Datenbanktabelle an."
#. gA9FG
#: 05040100.xhp
@@ -5098,7 +5098,7 @@ msgctxt ""
"hd_id3153528\n"
"help.text"
msgid "Read data"
-msgstr ""
+msgstr "Daten lesen"
#. YB94i
#: 05040100.xhp
@@ -5107,7 +5107,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to read the data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer, die Daten zu lesen.</ahelp>"
#. MFSk5
#: 05040100.xhp
@@ -5116,7 +5116,7 @@ msgctxt ""
"hd_id3150355\n"
"help.text"
msgid "Insert data"
-msgstr ""
+msgstr "Daten einfügen"
#. XFubg
#: 05040100.xhp
@@ -5125,7 +5125,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to insert new data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer das Einfügen neuer Daten.</ahelp>"
#. EW2bD
#: 05040100.xhp
@@ -5134,7 +5134,7 @@ msgctxt ""
"hd_id3155420\n"
"help.text"
msgid "Change data"
-msgstr ""
+msgstr "Daten ändern"
#. U9WwE
#: 05040100.xhp
@@ -5143,7 +5143,7 @@ msgctxt ""
"par_id3158430\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to change data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer, Daten zu ändern.</ahelp>"
#. DqoTz
#: 05040100.xhp
@@ -5152,7 +5152,7 @@ msgctxt ""
"hd_id3149516\n"
"help.text"
msgid "Delete data"
-msgstr ""
+msgstr "Daten löschen"
#. VRspq
#: 05040100.xhp
@@ -5161,7 +5161,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to delete data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer, Daten zu löschen.</ahelp>"
#. WAXNP
#: 05040100.xhp
@@ -5170,7 +5170,7 @@ msgctxt ""
"hd_id3145674\n"
"help.text"
msgid "Change table structure"
-msgstr ""
+msgstr "Tabellenstruktur ändern"
#. NAwCj
#: 05040100.xhp
@@ -5179,7 +5179,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to change the table structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer, die Tabellenstruktur zu ändern.</ahelp>"
#. rTzQj
#: 05040100.xhp
@@ -5188,7 +5188,7 @@ msgctxt ""
"hd_id3143270\n"
"help.text"
msgid "Definition"
-msgstr ""
+msgstr "Definition"
#. zAByc
#: 05040100.xhp
@@ -5197,7 +5197,7 @@ msgctxt ""
"par_id3154897\n"
"help.text"
msgid "<ahelp hid=\".\">Allows the user to delete the table structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer, die Tabellenstruktur zu löschen.</ahelp>"
#. gFhhG
#: 05040100.xhp
@@ -5206,7 +5206,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Modify references"
-msgstr ""
+msgstr "Verweise ändern"
#. qx3NS
#: 05040100.xhp
@@ -5215,7 +5215,7 @@ msgctxt ""
"par_id3159399\n"
"help.text"
msgid "<ahelp hid=\".\">Allows the user to modify the defined references, for example, to enter new relations for the table or to delete existing relations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt einem Benutzer, die definierten Verweise zu ändern, zum Beispiel neue Relationen für die Tabelle einzugeben oder bestehende Relationen zu löschen.</ahelp>"
#. 2sbVx
#: 05040200.xhp
@@ -5224,7 +5224,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. EwUEa
#: 05040200.xhp
@@ -5233,7 +5233,7 @@ msgctxt ""
"hd_id3109850\n"
"help.text"
msgid "<link href=\"text/sdatabase/05040200.xhp\" name=\"Description\">Description</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05040200.xhp\" name=\"Description\">Beschreibung</link>"
#. h4VES
#: 05040200.xhp
@@ -5242,7 +5242,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "Table description"
-msgstr ""
+msgstr "Tabellenbeschreibung"
#. ABb4R
#: 05040200.xhp
@@ -5251,7 +5251,7 @@ msgctxt ""
"par_id3154422\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the description for the selected table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt die Beschreibung für die ausgewählte Tabelle an.</ahelp>"
#. jpgRA
#: 11000002.xhp
@@ -5260,7 +5260,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Data sources in $[officename]"
-msgstr ""
+msgstr "Datenquellen in $[officename]"
#. w4Ehh
#: 11000002.xhp
@@ -5269,7 +5269,7 @@ msgctxt ""
"bm_id3155449\n"
"help.text"
msgid "<bookmark_value>databases;drag and drop (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Datenbanken; Ziehen-und-Ablegen (Base)</bookmark_value>"
#. HwcVW
#: 11000002.xhp
@@ -5278,7 +5278,7 @@ msgctxt ""
"hd_id3151299\n"
"help.text"
msgid "<link href=\"text/sdatabase/05040200.xhp\" name=\"Data sources in $[officename]\">Data sources in $[officename]</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/05040200.xhp\" name=\"Data sources in $[officename]\">Datenquellen in $[officename]</link>"
#. PNBCF
#: 11000002.xhp
@@ -5287,7 +5287,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "Selecting the Address Book"
-msgstr ""
+msgstr "Ein Adressbuch auswählen"
#. GeoEc
#: 11000002.xhp
@@ -5296,7 +5296,7 @@ msgctxt ""
"par_id3153049\n"
"help.text"
msgid "To select the address book that you want to use, choose <link href=\"text/shared/01/01110101.xhp\" name=\"Tools - Address Book Source\"><emph>Tools - Address Book Source</emph></link>."
-msgstr ""
+msgstr "Um das Adressbuch auszuwählen, das Sie verwenden möchten, wählen Sie <link href=\"text/shared/01/01110101.xhp\" name=\"Tools - Address Book Source\"><emph>Extras – Adressbuchquelle…</emph></link>."
#. hdhBt
#: 11000002.xhp
@@ -5305,7 +5305,7 @@ msgctxt ""
"hd_id3147275\n"
"help.text"
msgid "Opening a Data Source"
-msgstr ""
+msgstr "Eine Datenquelle öffnen"
#. C7ppK
#: 11000002.xhp
@@ -5314,7 +5314,7 @@ msgctxt ""
"par_id3154143\n"
"help.text"
msgid "To open the data source view, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F4</keycode> in a text, spreadsheet or form document."
-msgstr ""
+msgstr "Um die Datenquellenansicht zu öffnen, drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Befehl</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+Umschalt+F4</keycode> in einem Text-, Tabellen- oder Formulardokument."
#. qiyEE
#: 11000002.xhp
@@ -5323,7 +5323,7 @@ msgctxt ""
"par_id3154046\n"
"help.text"
msgid "To view the contents of a database, click the plus sign (+) in front of the name in the data source view."
-msgstr ""
+msgstr "Um den Inhalt einer Datenbank anzuzeigen, klicken Sie in der Datenquellenansicht auf das Pluszeichen (+) vor dem Namen."
#. 884eA
#: 11020000.xhp
@@ -5332,7 +5332,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ODBC"
-msgstr ""
+msgstr "ODBC"
#. GCT7W
#: 11020000.xhp
@@ -5341,7 +5341,7 @@ msgctxt ""
"hd_id3149031\n"
"help.text"
msgid "<link href=\"text/sdatabase/11020000.xhp\" name=\"ODBC\">ODBC</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/11020000.xhp\" name=\"ODBC\">ODBC</link>"
#. kyqcm
#: 11020000.xhp
@@ -5350,7 +5350,7 @@ msgctxt ""
"par_id3150499\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the settings for <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> databases. This includes your user access data, driver settings, and font definitions.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die Einstellungen für <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link>-Datenbanken fest. Dazu gehören Ihre Benutzerzugangsdaten, Treibereinstellungen und Schriftdefinitionen.</ahelp>"
#. Dbr2C
#: 11020000.xhp
@@ -5359,7 +5359,7 @@ msgctxt ""
"hd_id3148642\n"
"help.text"
msgid "User Name"
-msgstr ""
+msgstr "Benutzername"
#. WBXTJ
#: 11020000.xhp
@@ -5368,7 +5368,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "<ahelp hid=\".\">Type the user name for accessing the database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geben Sie den Benutzernamen für den Zugriff auf die Datenbank ein.</ahelp>"
#. DpZgn
#: 11020000.xhp
@@ -5377,7 +5377,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "Password required"
-msgstr ""
+msgstr "Kennwort erforderlich"
#. HaYKD
#: 11020000.xhp
@@ -5386,7 +5386,7 @@ msgctxt ""
"par_id3145119\n"
"help.text"
msgid "<ahelp hid=\".\">Prevents an unauthorized user from accessing the database. You only need to enter the password once per session.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Verhindert, dass ein nicht autorisierter Benutzer auf die Datenbank zugreift. Sie müssen das Kennwort nur einmal pro Sitzung eingeben.</ahelp>"
#. QWAfC
#: 11020000.xhp
@@ -5395,7 +5395,7 @@ msgctxt ""
"hd_id3153087\n"
"help.text"
msgid "Driver Settings"
-msgstr ""
+msgstr "Treibereinstellungen"
#. FFBSB
#: 11020000.xhp
@@ -5404,7 +5404,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/odbcpage/options\">Use this text field to enter additional optional driver settings if this is necessary.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/odbcpage/options\">Verwenden Sie dieses Textfeld, um zusätzliche optionale Treibereinstellungen einzugeben, falls dies erforderlich ist.</ahelp>"
#. ETNaE
#: 11020000.xhp
@@ -5413,7 +5413,7 @@ msgctxt ""
"hd_id3152472\n"
"help.text"
msgid "Character Set"
-msgstr ""
+msgstr "Zeichensatz"
#. SCzpp
#: 11020000.xhp
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "<ahelp hid=\"HID_DSADMIN_CHARSET_ODBC\">Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database.</ahelp> Choose \"System\" to use the default character set of your operating system. Text and dBASE databases are restricted to character sets with a fixed-size character length, where all characters are encoded with the same number of bytes."
-msgstr ""
+msgstr "<ahelp hid=\"HID_DSADMIN_CHARSET_ODBC\">Wählen Sie die Codekonvertierung aus, die Sie verwenden möchten, um die Datenbank in $[officename] anzuzeigen. Dies wirkt sich nicht auf die Datenbank aus.</ahelp> Wählen Sie \"System\", um den Standardzeichensatz Ihres Betriebssystems zu verwenden. Text- und dBASE-Datenbanken sind auf Zeichensätze mit einer festen Zeichenlänge beschränkt, wobei alle Zeichen mit der gleichen Anzahl von Bytes codiert sind."
#. xBEZv
#: 11020000.xhp
@@ -5431,7 +5431,7 @@ msgctxt ""
"hd_id3149669\n"
"help.text"
msgid "General"
-msgstr ""
+msgstr "Allgemein"
#. REocx
#: 11020000.xhp
@@ -5440,7 +5440,7 @@ msgctxt ""
"hd_id3147265\n"
"help.text"
msgid "Retrieve generated values"
-msgstr ""
+msgstr "Generierte Werte abrufen"
#. ToEkf
#: 11020000.xhp
@@ -5449,7 +5449,7 @@ msgctxt ""
"par_id3151054\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/generatedvaluespage/autoretrieve\">Enables $[officename] support of auto-incremented data fields for the current ODBC or JDBC data source.</ahelp> Select this check box if the database does not support the auto-increment feature in its SDBCX layer. In general, the auto-increment is selected for the primary key field."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/generatedvaluespage/autoretrieve\">Aktiviert $[officename]-Unterstützung von automatisch inkrementierten Datenfeldern für die aktuelle ODBC- oder JDBC-Datenquelle.</ahelp> Aktivieren Sie dieses Markierfeld, wenn die Datenbank die Funktion Autoinkrement in seiner SDBCX-Schicht nicht unterstützt. Im Allgemeinen wird das Autoinkrement für das Primärschlüsselfeld ausgewählt."
#. aokLy
#: 11020000.xhp
@@ -5458,7 +5458,7 @@ msgctxt ""
"hd_id3150400\n"
"help.text"
msgid "Auto-increment statement"
-msgstr ""
+msgstr "Autoinkrement-Anweisung"
#. HFuC7
#: 11020000.xhp
@@ -5467,7 +5467,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/generatedvaluespage/statement\">Enter the SQL command specifier that instructs the data source to auto-increment a specified Integer data field.</ahelp> For example, a typical SQL statement to create a data field is:"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/generatedvaluespage/statement\">Geben Sie den SQL-Befehlsbezeichner ein, der die Datenquelle anweist, ein angegebenes Integer-Datenfeld automatisch zu inkrementieren.</ahelp> Zum Beispiel eine typische SQL-Anweisung zum Erstellen eines Datenfelds ist:"
#. C5Mvn
#: 11020000.xhp
@@ -5476,7 +5476,7 @@ msgctxt ""
"par_id3159149\n"
"help.text"
msgid "CREATE TABLE \"table1\" (\"id\" INTEGER)"
-msgstr ""
+msgstr "CREATE TABLE \"Tablle 1\" (\"ID\" INTEGER)"
#. M4YsG
#: 11020000.xhp
@@ -5485,7 +5485,7 @@ msgctxt ""
"par_id3147084\n"
"help.text"
msgid "To auto-increment the \"id\" data field in a MySQL database, change the statement to:"
-msgstr ""
+msgstr "Um das Datenfeld \"ID\" in einer MySQL-Datenbank automatisch zu inkrementieren, ändern Sie die Anweisung in:"
#. 2pPyd
#: 11020000.xhp
@@ -5494,7 +5494,7 @@ msgctxt ""
"par_id3154909\n"
"help.text"
msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)"
-msgstr ""
+msgstr "CREATE TABLE \"Tablle 1\" (\"ID\" INTEGER AUTO_INCREMENT)"
#. wyFqp
#: 11020000.xhp
@@ -5503,7 +5503,7 @@ msgctxt ""
"par_id3152933\n"
"help.text"
msgid "In other words, enter AUTO_INCREMENT into <emph>Auto-increment statement</emph> box."
-msgstr ""
+msgstr "Mit anderen Worten, geben Sie AUTO_INCREMENT in das Feld <emph>Autoinkrement-Anweisung</emph> ein."
#. cFjbY
#: 11020000.xhp
@@ -5512,7 +5512,7 @@ msgctxt ""
"hd_id3149765\n"
"help.text"
msgid "Query of generated values"
-msgstr ""
+msgstr "Abfrage von generierten Werten"
#. EnHXJ
#: 11020000.xhp
@@ -5521,7 +5521,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/generatedvaluespage/query\">Enter an SQL statement that returns the last auto-incremented value for the primary key data field.</ahelp> For example:"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/generatedvaluespage/query\">Geben Sie eine SQL-Anweisung ein, die den letzten automatisch inkrementierten Wert für das Primärschlüssel-Datenfeld zurückgibt.</ahelp> Beispielsweise:"
#. KdqAK
#: 11020000.xhp
@@ -5530,7 +5530,7 @@ msgctxt ""
"par_id3150769\n"
"help.text"
msgid "SELECT LAST_INSERT_D();"
-msgstr ""
+msgstr "SELECT LAST_INSERT_D();"
#. UcUfT
#: 11020000.xhp
@@ -5539,7 +5539,7 @@ msgctxt ""
"hd_id3157892\n"
"help.text"
msgid "Use SQL92 naming constraints"
-msgstr ""
+msgstr "Verwenden Sie die Namenseinschränkungen von SQL92"
#. nvCRa
#: 11020000.xhp
@@ -5548,7 +5548,7 @@ msgctxt ""
"par_id3153368\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/specialsettingspage/usesql92\">Only allows names that use characters that conform to the SQL92 naming constraints in the data source. All other characters are rejected.</ahelp> Each name must begin with a lower or upper case letter, or an underline ( _ ). The remaining characters can be ASCII letters, underlines, and numbers."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/specialsettingspage/usesql92\">Lässt nur Namen zu, die Zeichen verwenden, die den Namenseinschränkungen von SQL92 in der Datenquelle entsprechen. Alle anderen Zeichen werden abgelehnt.</ahelp> Jeder Name muss mit einem Klein- oder Großbuchstaben oder einem Unterstrich ( _ ) beginnen. Die restlichen Zeichen können ASCII-Buchstaben, Unterstriche und Zahlen sein."
#. 9BNi4
#: 11020000.xhp
@@ -5557,7 +5557,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "Use Catalog for file-based databases"
-msgstr ""
+msgstr "Katalog für dateibasierte Datenbanken verwenden"
#. BaWgu
#: 11020000.xhp
@@ -5566,7 +5566,7 @@ msgctxt ""
"par_id3148618\n"
"help.text"
msgid "<ahelp hid=\"HID_DSADMIN_USECATALOG\">Uses the current data source of the Catalog. This is useful when the ODBC data source is a database server. If the ODBC data source is a dBASE driver, leave this check box clear.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DSADMIN_USECATALOG\">Verwendet die aktuelle Datenquelle des Katalogs. Dies ist nützlich, wenn die ODBC-Datenquelle ein Datenbankserver ist. Wenn die ODBC-Datenquelle ein dBASE-Treiber ist, lassen Sie dieses Markierfeld leer.</ahelp>"
#. RBCN4
#: 11030000.xhp
@@ -5575,7 +5575,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#. jQexT
#: 11030000.xhp
@@ -5584,7 +5584,7 @@ msgctxt ""
"hd_id3153539\n"
"help.text"
msgid "<link href=\"text/sdatabase/11030000.xhp\" name=\"dBase\">dBASE</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/11030000.xhp\" name=\"dBase\">dBASE</link>"
#. EFxxW
#: 11030000.xhp
@@ -5593,7 +5593,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the settings for a dBASE database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Legt die Einstellungen für eine dBASE-Datenbank fest.</ahelp>"
#. bSnXm
#: 11030000.xhp
@@ -5602,7 +5602,7 @@ msgctxt ""
"par_id3151110\n"
"help.text"
msgid "To be able to define relations between tables, use JDBC or ODBC from within $[officename]."
-msgstr ""
+msgstr "Um Beziehungen zwischen Tabellen definieren zu können, verwenden Sie JDBC oder ODBC innerhalb von $[officename]."
#. irtxH
#: 11030000.xhp
@@ -5611,7 +5611,7 @@ msgctxt ""
"hd_id3149233\n"
"help.text"
msgid "Display inactive records"
-msgstr ""
+msgstr "Inaktive Datensätze anzeigen"
#. Y4AnV
#: 11030000.xhp
@@ -5620,7 +5620,7 @@ msgctxt ""
"par_id3153823\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbasepage/showDelRowsCheckbutton\">Displays all the records in a file, including those marked as deleted. If you select this check box, you cannot delete records.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/showDelRowsCheckbutton\">Zeigt alle Datensätze in einer Datei an, einschließlich der als gelöscht markierten. Wenn Sie dieses Markierfeld aktivieren, können Sie keine Datensätze löschen.</ahelp>"
#. 7vpRc
#: 11030000.xhp
@@ -5629,7 +5629,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "In dBASE format, deleted records remain in the file."
-msgstr ""
+msgstr "Im dBASE-Format verbleiben gelöschte Datensätze in der Datei."
#. ZYefW
#: 11030000.xhp
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "To view any changes that you make to the database, close the connection to the database, and then reconnect the database."
-msgstr ""
+msgstr "Um alle Änderungen anzuzeigen, die Sie an der Datenbank vornehmen, schließen Sie die Verbindung zur Datenbank, und verbinden Sie die Datenbank dann erneut."
#. 5LBSi
#: 11030000.xhp
@@ -5647,7 +5647,7 @@ msgctxt ""
"par_id0904200811094971\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the code conversion that you want to use to view the database in $[officename]. This does not affect the database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Wählen Sie die Codekonvertierung aus, die Sie verwenden möchten, um die Datenbank in $[officename] anzuzeigen. Dies wirkt sich nicht auf die Datenbank aus.</ahelp>"
#. Gmun9
#: 11030000.xhp
@@ -5656,7 +5656,7 @@ msgctxt ""
"hd_id3149047\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Indizes"
#. BjWsR
#: 11030000.xhp
@@ -5665,7 +5665,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Öffnet den Dialog <link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\"><emph>Indizes</emph></link>, in dem Sie die Tabellenindizes in der aktuellen dBASE-Datenbank organisieren können.</ahelp>"
#. vMA8w
#: 11030100.xhp
@@ -5674,7 +5674,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Indexes"
-msgstr ""
+msgstr "Indizes"
#. x4TDi
#: 11030100.xhp
@@ -5683,7 +5683,7 @@ msgctxt ""
"hd_id3148983\n"
"help.text"
msgid "<link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\">Indexes</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/11030100.xhp\" name=\"Indexes\">Indizes</link>"
#. DmGsN
#: 11030100.xhp
@@ -5692,7 +5692,7 @@ msgctxt ""
"par_id3150247\n"
"help.text"
msgid "<ahelp hid=\".\">Lets you organize dBASE database indexes.</ahelp> An index allows you to access a database quickly, provided that you query the data in the selection that was defined through the index. When you design a table, you can define the indexes on the <emph>Indexes </emph>tab page."
-msgstr ""
+msgstr "<ahelp hid=\".\">Lässt Sie dBASE-Datenbankindizes organisieren.</ahelp> Ein Index ermöglicht Ihnen den schnellen Zugriff auf eine Datenbank, vorausgesetzt, Sie fragen die Daten in der Auswahl ab, die durch den Index definiert wurde. Wenn Sie eine Tabelle entwerfen, können Sie die Indizes auf dem Register <emph>Indizes </emph> festlegen."
#. Aj5Uz
#: 11030100.xhp
@@ -5701,7 +5701,7 @@ msgctxt ""
"hd_id3155339\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Tabelle"
#. bzzGv
#: 11030100.xhp
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3152551\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/table\">Select the database table that you want to index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/table\">Wählen Sie die Datenbanktabelle aus, die Sie indizieren möchten.</ahelp>"
#. eyouE
#: 11030100.xhp
@@ -5719,7 +5719,7 @@ msgctxt ""
"hd_id3159233\n"
"help.text"
msgid "Table Indexes"
-msgstr ""
+msgstr "Tabellenindizes"
#. hyCqp
#: 11030100.xhp
@@ -5728,7 +5728,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/tableindex\">Lists the current indexes for the selected database table.</ahelp> To remove an index from the list, click the index, and then click the right arrow."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/tableindex\">Listet die aktuellen Indizes für die ausgewählte Datenbanktabelle auf.</ahelp> Um einen Index aus der Liste zu entfernen, klicken Sie auf den Index und dann auf den Pfeil nach rechts."
#. scWXw
#: 11030100.xhp
@@ -5737,7 +5737,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "Free Indexes"
-msgstr ""
+msgstr "Freie Indizes"
#. mtGqS
#: 11030100.xhp
@@ -5746,7 +5746,7 @@ msgctxt ""
"par_id3151110\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available indexes that you can assign to a table.</ahelp> To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Listet die verfügbaren Indizes auf, die Sie einer Tabelle zuweisen können.</ahelp> Um einer ausgewählten Tabelle einen Index zuzuweisen, klicken Sie auf das Symbol mit dem Pfeil nach links. Der Doppelpfeil nach links ordnet alle verfügbaren Indizes zu."
#. U4FQh
#: 11030100.xhp
@@ -5755,7 +5755,7 @@ msgctxt ""
"hd_id3156152\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#. sxDJi
#: 11030100.xhp
@@ -5764,7 +5764,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">Moves the selected index to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">Verschiebt den ausgewählten Index in die Liste <emph>Tabellenindizes</emph>.</ahelp>"
#. FPRFh
#: 11030100.xhp
@@ -5773,7 +5773,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#. 45Vrm
#: 11030100.xhp
@@ -5782,7 +5782,7 @@ msgctxt ""
"par_id3145315\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Verschiebt alle freien Indizes in die Liste <emph>Tabellenindizes</emph>.</ahelp>"
#. Ba8Z9
#: 11030100.xhp
@@ -5791,7 +5791,7 @@ msgctxt ""
"hd_id3149579\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#. EP9GN
#: 11030100.xhp
@@ -5800,7 +5800,7 @@ msgctxt ""
"par_id3149795\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Verschiebt die ausgewählten Tabellenindizes in die Liste <emph>Freie Indizes</emph>.</ahelp>"
#. sAASQ
#: 11030100.xhp
@@ -5809,7 +5809,7 @@ msgctxt ""
"hd_id3155629\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#. t2gbA
#: 11030100.xhp
@@ -5818,7 +5818,7 @@ msgctxt ""
"par_id3151245\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">Moves all of the table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">Verschiebt alle Tabellenindizes in die Liste <emph>Freie Indizes</emph>.</ahelp>"
#. LQcMC
#: 11080000.xhp
@@ -5827,7 +5827,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Execute SQL statement"
-msgstr ""
+msgstr "SQL-Anweisung ausführen"
#. GDjji
#: 11080000.xhp
@@ -5836,7 +5836,7 @@ msgctxt ""
"bm_id3148983\n"
"help.text"
msgid "<bookmark_value>SQL; executing SQL statements (Base)</bookmark_value><bookmark_value>databases; administration through SQL (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SQL; Ausführen von SQL-Anweisungen (Base)</bookmark_value><bookmark_value>Datenbanken; Verwaltung über SQL (Base)</bookmark_value>"
#. JsqKF
#: 11080000.xhp
@@ -5845,7 +5845,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sdatabase/11080000.xhp\" name=\"Execute SQL statement\">Execute SQL statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/11080000.xhp\" name=\"Execute SQL statement\">SQL-Anweisung ausführen</link>"
#. BtQ2b
#: 11080000.xhp
@@ -5854,7 +5854,7 @@ msgctxt ""
"par_id3154288\n"
"help.text"
msgid "<variable id=\"sqltext\"><ahelp hid=\".\">Opens a dialog where you can enter an SQL command for administering a database.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"sqltext\"><ahelp hid=\".\">Öffnet einen Dialog, in dem Sie einen SQL-Befehl zur Verwaltung einer Datenbank eingeben können.</ahelp></variable>"
#. jhBMm
#: 11080000.xhp
@@ -5863,7 +5863,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "You can only enter administration commands in this dialog, such as Grant, Create Table, or Drop Table, and not filter commands. The commands that you can enter depend on the data source, for example, dBASE can only run some of the SQL commands list here."
-msgstr ""
+msgstr "Sie können in diesem Dialog nur Verwaltungsbefehle eingeben, beispielsweise \"Grant\", \"Create Table\" oder \"Drop Table\", aber keine Filterbefehle. Die Befehle, die Sie eingeben können, hängen von der Datenquelle ab, beispielsweise kann dBASE nur einige der hier aufgelisteten SQL-Befehle ausführen."
#. JZmCZ
#: 11080000.xhp
@@ -5872,7 +5872,7 @@ msgctxt ""
"par_id3154860\n"
"help.text"
msgid "To run an SQL query for filtering data in the database, use the <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Query Design View</link>."
-msgstr ""
+msgstr "Um eine SQL-Abfrage zum Filtern von Daten in der Datenbank auszuführen, verwenden Sie die Ansicht <link href=\"text/sdatabase/02010100.xhp\" name=\"Query Design\">Abfrageentwurf</link>."
#. Ck9G4
#: 11080000.xhp
@@ -5881,7 +5881,7 @@ msgctxt ""
"hd_id3149514\n"
"help.text"
msgid "Command to execute"
-msgstr ""
+msgstr "Befehl zum Ausführen"
#. BHLbE
#: 11080000.xhp
@@ -5890,7 +5890,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/directsqldialog/sql\">Enter the SQL administration command that you want to run.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/directsqldialog/sql\">Geben Sie den auszuführenden SQL-Verwaltungsbefehl ein.</ahelp>"
#. 5DFEP
#: 11080000.xhp
@@ -5899,7 +5899,7 @@ msgctxt ""
"par_id3153087\n"
"help.text"
msgid "For example, for a \"Bibliography\" data source, you can enter the following SQL command:"
-msgstr ""
+msgstr "Beispielsweise können Sie für eine Datenquelle \"Bibliografie\" den folgenden SQL-Befehl eingeben:"
#. XDWsR
#: 11080000.xhp
@@ -5908,7 +5908,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "SELECT \"Address\" FROM \"biblio\" \"biblio\""
-msgstr ""
+msgstr "SELECT \"Adresse\" FROM \"biblio\" \"biblio\""
#. LjEvw
#: 11080000.xhp
@@ -5917,7 +5917,7 @@ msgctxt ""
"par_id3145611\n"
"help.text"
msgid "For more information on SQL commands, please consult the documentation that came with the database."
-msgstr ""
+msgstr "Weitere Informationen zu SQL-Befehlen finden Sie in der mit der Datenbank gelieferten Dokumentation."
#. BQmT9
#: 11080000.xhp
@@ -5926,7 +5926,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "Previous commands"
-msgstr ""
+msgstr "Vorherige Befehle"
#. hkxBT
#: 11080000.xhp
@@ -5935,7 +5935,7 @@ msgctxt ""
"par_id3149045\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/directsqldialog/sqlhistory\">Lists the previously executed SQL commands. To run a command again, click the command, and then click <emph>Run</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/directsqldialog/sqlhistory\">Listet die zuvor ausgeführten SQL-Befehle auf. Um einen Befehl erneut auszuführen, klicken Sie auf den Befehl und dann auf <emph>Ausführen</emph>.</ahelp>"
#. AvXck
#: 11080000.xhp
@@ -5944,7 +5944,7 @@ msgctxt ""
"hd_id3154348\n"
"help.text"
msgid "Status"
-msgstr ""
+msgstr "Status"
#. yhCpt
#: 11080000.xhp
@@ -5953,7 +5953,7 @@ msgctxt ""
"par_id3151054\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/directsqldialog/status\">Displays the results, including errors, of the SQL command that you ran.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/directsqldialog/status\">Zeigt die Ergebnisse, einschließlich Fehler, des von Ihnen ausgeführten SQL-Befehls an.</ahelp>"
#. BUpxX
#: 11080000.xhp
@@ -5962,7 +5962,7 @@ msgctxt ""
"hd_id3154071\n"
"help.text"
msgid "Run"
-msgstr ""
+msgstr "Ausführen"
#. qDYRx
#: 11080000.xhp
@@ -5971,7 +5971,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/directsqldialog/execute\">Runs the command that you entered in the <emph>Command to execute </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/directsqldialog/execute\">Führt den Befehl aus, den Sie in das Feld <emph>Auszuführender Befehl</emph> eingegeben haben.</ahelp>"
#. 93Xfs
#: 11090000.xhp
@@ -5980,7 +5980,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Table Filter"
-msgstr ""
+msgstr "Tabellenfilter"
#. bG74E
#: 11090000.xhp
@@ -5989,7 +5989,7 @@ msgctxt ""
"hd_id3150702\n"
"help.text"
msgid "<link href=\"text/sdatabase/11090000.xhp\" name=\"Tables\">Table Filter</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/11090000.xhp\" name=\"Tables\">Tabellenfilter</link>"
#. NLCCV
#: 11090000.xhp
@@ -5998,7 +5998,7 @@ msgctxt ""
"par_id3149164\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Some databases track changes to each record by assigning version number to fields that are changed. This number is incremented by 1 each time the field is changed. Displays the internal version number of the record in the database table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Einige Datenbanken verfolgen Änderungen an jedem Datensatz, indem sie den geänderten Feldern eine Versionsnummer zuweisen. Diese Zahl wird bei jeder Feldänderung um 1 erhöht. Zeigt die interne Versionsnummer des Datensatzes in der Datenbanktabelle an.</ahelp>"
#. axsoU
#: 11090000.xhp
@@ -6007,7 +6007,7 @@ msgctxt ""
"hd_id3154923\n"
"help.text"
msgid "Sort Ascending"
-msgstr ""
+msgstr "Aufsteigend sortieren"
#. XFbZd
#: 11090000.xhp
@@ -6016,7 +6016,7 @@ msgctxt ""
"par_id3147559\n"
"help.text"
msgid "<ahelp hid=\".\">Sorts the list of table names in ascending order starting at the beginning of the alphabet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sortiert die Liste der Tabellennamen in aufsteigender Reihenfolge beginnend am Anfang des Alphabets.</ahelp>"
#. SaBHA
#: dabaadvprop.xhp
@@ -6025,7 +6025,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Advanced Properties"
-msgstr ""
+msgstr "Erweiterte Eigenschaften"
#. xBcXZ
#: dabaadvprop.xhp
@@ -6034,7 +6034,7 @@ msgctxt ""
"par_idN10550\n"
"help.text"
msgid "<link href=\"text/sdatabase/dabaadvprop.xhp\">Advanced Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/dabaadvprop.xhp\">Erweiterte Eigenschaften</link>"
#. 5dCC5
#: dabaadvprop.xhp
@@ -6043,7 +6043,7 @@ msgctxt ""
"par_idN10560\n"
"help.text"
msgid "Specifies advanced properties for the database."
-msgstr ""
+msgstr "Legt erweiterte Eigenschaften für die Datenbank fest."
#. FGvho
#: dabaadvprop.xhp
@@ -6052,7 +6052,7 @@ msgctxt ""
"par_id3998840\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Properties</emph>, click <emph>Advanced Properties</emph> tab"
-msgstr ""
+msgstr "Wählen Sie in einem Datenbankfenster <emph>Bearbeiten – Datenbank – Eigenschaften…</emph> und klicken Sie auf das Register <emph>Erweiterte Eigenschaften</emph>"
#. ssTZY
#: dabaadvpropdat.xhp
@@ -6061,7 +6061,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Special Settings"
-msgstr ""
+msgstr "Spezielle Einstellungen"
#. pCkAh
#: dabaadvpropdat.xhp
@@ -6079,7 +6079,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "<link href=\"text/sdatabase/dabaadvpropdat.xhp\">Special Settings</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/dabaadvpropdat.xhp\">Spezielle Einstellungen</link>"
#. nv4Nn
#: dabaadvpropdat.xhp
@@ -6088,7 +6088,7 @@ msgctxt ""
"par_idN10566\n"
"help.text"
msgid "Specifies the way you can work with data in a database."
-msgstr ""
+msgstr "Legt fest, wie Sie mit Daten in einer Datenbank arbeiten können."
#. nVTwF
#: dabaadvpropdat.xhp
@@ -6097,7 +6097,7 @@ msgctxt ""
"par_id7679372\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Advanced Settings</emph>"
-msgstr ""
+msgstr "Wählen Sie in einem Datenbankfenster <emph>Bearbeiten – Datenbank – Erweiterte Einstellungen…</emph>"
#. mEAfH
#: dabaadvpropdat.xhp
@@ -6106,7 +6106,7 @@ msgctxt ""
"par_id4572283\n"
"help.text"
msgid "The availability of the following controls depends on the type of database:"
-msgstr ""
+msgstr "Die Verfügbarkeit der folgenden Steuerelemente hängt vom Datenbanktyp ab:"
#. 8pnWD
#: dabaadvpropdat.xhp
@@ -6115,7 +6115,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "Use SQL92 naming constraints"
-msgstr ""
+msgstr "Namenseinschränkungen von SQL92 verwenden"
#. CZ3vk
#: dabaadvpropdat.xhp
@@ -6124,7 +6124,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "<ahelp hid=\".\">Only allows characters that conform to the SQL92 naming convention in a name in a data source. All other characters are rejected. Each name must begin with a lowercase letter, an uppercase letter, or an underscore ( _ ). The remaining characters can be ASCII letters, numbers, and underscores.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erlaubt in einem Namen in einer Datenquelle nur Zeichen, die der SQL92-Namenskonvention entsprechen. Alle anderen Zeichen werden abgelehnt. Jeder Name muss mit einem Kleinbuchstaben, einem Großbuchstaben oder einem Unterstrich (_) beginnen. Die restlichen Zeichen können ASCII-Buchstaben, Zahlen und Unterstriche sein.</ahelp>"
#. UDWZ7
#: dabaadvpropdat.xhp
@@ -6133,7 +6133,7 @@ msgctxt ""
"par_idN1059E\n"
"help.text"
msgid "Append the table alias name in SELECT statements"
-msgstr ""
+msgstr "Aliasnamen der Tabelle in SELECT-Anweisungen anhängen"
#. v2ZEZ
#: dabaadvpropdat.xhp
@@ -6142,7 +6142,7 @@ msgctxt ""
"par_idN105A2\n"
"help.text"
msgid "<ahelp hid=\".\">Appends the alias to the table name in SELECT statements.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hängt den Alias an den Tabellennamen in SELECT-Anweisungen an.</ahelp>"
#. wHaBn
#: dabaadvpropdat.xhp
@@ -6151,7 +6151,7 @@ msgctxt ""
"par_idN105907\n"
"help.text"
msgid "Use keyword AS before table alias names"
-msgstr ""
+msgstr "Schlüsselwort AS vor Tabellenaliasnamen verwenden"
#. xEpbm
#: dabaadvpropdat.xhp
@@ -6160,7 +6160,7 @@ msgctxt ""
"par_idN105947\n"
"help.text"
msgid "<ahelp hid=\".\">Some databases use the keyword \"AS\" between a name and its alias, while other databases use a whitespace. Enable this option to insert AS before the alias.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Einige Datenbanken verwenden das Schlüsselwort \"AS\" zwischen einem Namen und seinem Alias, während andere Datenbanken Leerzeichen verwenden. Aktivieren Sie diese Option, um \"AS\" vor dem Alias einzufügen.</ahelp>"
#. 6kz2C
#: dabaadvpropdat.xhp
@@ -6169,7 +6169,7 @@ msgctxt ""
"par_idN105A5\n"
"help.text"
msgid "Use Outer Join syntax '{OJ }'"
-msgstr ""
+msgstr "Outer-Join-Syntax '{OJ }' verwenden"
#. 9PDve
#: dabaadvpropdat.xhp
@@ -6178,7 +6178,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "<ahelp hid=\".\">Use escape sequences for outer joins. The syntax for this escape sequence is {oj outer-join}</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escape-Sequenzen für Outer-Joins verwenden. Die Syntax für diese Escape-Sequenz ist {oj outer-join}</ahelp>"
#. xahKj
#: dabaadvpropdat.xhp
@@ -6187,7 +6187,7 @@ msgctxt ""
"par_idN105BE\n"
"help.text"
msgid "Example:"
-msgstr ""
+msgstr "Beispielsweise:"
#. 8rHyA
#: dabaadvpropdat.xhp
@@ -6196,7 +6196,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "select Article.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
-msgstr ""
+msgstr "select Artikel.* from {oj item LEFT OUTER JOIN orders ON item.no=orders.ANR}"
#. yARgJ
#: dabaadvpropdat.xhp
@@ -6205,7 +6205,7 @@ msgctxt ""
"par_idN105C4\n"
"help.text"
msgid "Ignore the privileges from the database driver"
-msgstr ""
+msgstr "Berechtigungen des Datenbanktreibers ignorieren"
#. GoiGX
#: dabaadvpropdat.xhp
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_idN105C8\n"
"help.text"
msgid "<ahelp hid=\".\">Ignores access privileges that are provided by the database driver.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ignoriert Zugriffsrechte, die vom Datenbanktreiber bereitgestellt werden.</ahelp>"
#. CcsGn
#: dabaadvpropdat.xhp
@@ -6223,7 +6223,7 @@ msgctxt ""
"par_idN105CB\n"
"help.text"
msgid "Replace named parameters with ?"
-msgstr ""
+msgstr "Benannte Parameter durch ? ersetzen"
#. finzM
#: dabaadvpropdat.xhp
@@ -6232,7 +6232,7 @@ msgctxt ""
"par_idN105CF\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces named parameters in a data source with a question mark (?).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ersetzt benannte Parameter in einer Datenquelle durch ein Fragezeichen (?).</ahelp>"
#. LypD3
#: dabaadvpropdat.xhp
@@ -6241,7 +6241,7 @@ msgctxt ""
"par_idN105D2\n"
"help.text"
msgid "Display version columns (when available)"
-msgstr ""
+msgstr "Versionsspalten anzeigen (falls verfügbar)"
#. gJR4a
#: dabaadvpropdat.xhp
@@ -6250,7 +6250,7 @@ msgctxt ""
"par_idN105D6\n"
"help.text"
msgid "Some databases assign version numbers to fields to track changes to records. The version number of a field is incremented by one each time the contents of the field are changed. <ahelp hid=\"dbaccess/ui/specialsettingspage/displayver\">Displays the internal version number of the record in the database table.</ahelp>"
-msgstr ""
+msgstr "Einige Datenbanken weisen Feldern Versionsnummern zu, um Änderungen an Datensätzen nachzuverfolgen. Die Versionsnummer eines Feldes wird jedes Mal um eins erhöht, wenn der Inhalt des Feldes geändert wird. <ahelp hid=\"dbaccess/ui/specialsettingspage/displayver\">Zeigt die interne Versionsnummer des Datensatzes in der Datenbanktabelle an.</ahelp>"
#. HLoGa
#: dabaadvpropdat.xhp
@@ -6259,7 +6259,7 @@ msgctxt ""
"par_idN105FA\n"
"help.text"
msgid "Use the catalog name in SELECT statements"
-msgstr ""
+msgstr "Katalognamen in SELECT-Anweisungen verwenden"
#. uqBBN
#: dabaadvpropdat.xhp
@@ -6268,7 +6268,7 @@ msgctxt ""
"par_idN105FE\n"
"help.text"
msgid "<ahelp hid=\".\">Uses the current data source of the catalog. This option is useful when the ODBC data source is a database server. Do not select this option if the ODBC data source is a dBASE driver.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Verwendet die aktuelle Datenquelle des Katalogs. Diese Option ist nützlich, wenn die ODBC-Datenquelle ein Datenbankserver ist. Wählen Sie diese Option nicht aus, wenn die ODBC-Datenquelle ein dBASE-Treiber ist.</ahelp>"
#. uTnnA
#: dabaadvpropdat.xhp
@@ -6277,7 +6277,7 @@ msgctxt ""
"par_idN10613\n"
"help.text"
msgid "Use the schema name in SELECT statements"
-msgstr ""
+msgstr "Schemanamen in SELECT-Anweisungen verwenden"
#. EVDZk
#: dabaadvpropdat.xhp
@@ -6286,7 +6286,7 @@ msgctxt ""
"par_idN10617\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to use the schema name in SELECT statements.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ermöglicht es Ihnen, den Schemanamen in SELECT-Anweisungen zu verwenden.</ahelp>"
#. JgvBE
#: dabaadvpropdat.xhp
@@ -6295,7 +6295,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "Create index with ASC or DESC statement"
-msgstr ""
+msgstr "Index mit ASC- oder DESC-Anweisung erstellen"
#. BgkNz
#: dabaadvpropdat.xhp
@@ -6304,7 +6304,7 @@ msgctxt ""
"par_idN1061E\n"
"help.text"
msgid "<ahelp hid=\".\">Creates an index with ASC or DESC statements.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Erzeugt einen Index mit ASC- oder DESC-Anweisungen.</ahelp>"
#. NbAt4
#: dabaadvpropdat.xhp
@@ -6313,7 +6313,7 @@ msgctxt ""
"hd_id3534958\n"
"help.text"
msgid "End text lines with CR + LF"
-msgstr ""
+msgstr "Textzeilen mit CR + LF beenden"
#. NKKsC
#: dabaadvpropdat.xhp
@@ -6322,7 +6322,7 @@ msgctxt ""
"par_id6151921\n"
"help.text"
msgid "<ahelp hid=\".\">Select to use the CR + LF code pair to end every text line (preferred for DOS and Windows operating systems).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wählen Sie diese Option, um das Codepaar \"CR + LF\" zum Beenden jeder Textzeile zu verwenden (bevorzugt für DOS- und Windows-Betriebssysteme).</ahelp>"
#. T9wrt
#: dabaadvpropdat.xhp
@@ -6331,7 +6331,7 @@ msgctxt ""
"hd_id0909200811170166\n"
"help.text"
msgid "Ignore currency field information"
-msgstr ""
+msgstr "Währungsfeldinformationen ignorieren"
#. MWpZD
#: dabaadvpropdat.xhp
@@ -6340,7 +6340,7 @@ msgctxt ""
"par_id0909200811170221\n"
"help.text"
msgid "<ahelp hid=\".\">Only for Oracle JDBC connections. When enabled it specifies that no column is treated as a currency field. The field type returned from the database driver is discarded.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Nur für Oracle JDBC-Verbindungen. Wenn es aktiviert ist, legt es fest, dass keine Spalte als Währungsfeld behandelt wird. Der vom Datenbanktreiber zurückgegebene Feldtyp wird verworfen.</ahelp>"
#. X2cuQ
#: dabaadvpropdat.xhp
@@ -6349,7 +6349,7 @@ msgctxt ""
"hd_id1101718\n"
"help.text"
msgid "Form data input checks for required fields"
-msgstr ""
+msgstr "Formulardaten-Eingabeprüfungen für erforderliche Felder"
#. 8FD9D
#: dabaadvpropdat.xhp
@@ -6358,7 +6358,7 @@ msgctxt ""
"par_id3783989\n"
"help.text"
msgid "<ahelp hid=\".\">When you enter a new record or update an existing record in a form, and you leave a field empty which is bound to a database column which requires input, then you will see a message complaining about the empty field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wenn Sie einen neuen Datensatz eingeben oder einen bestehenden Datensatz in einem Formular aktualisieren und ein Feld leer lassen, das an eine Datenbankspalte gebunden ist, die Eingaben erfordert, dann sehen Sie eine Meldung, die sich über das leere Feld beschwert.</ahelp>"
#. LPJKD
#: dabaadvpropdat.xhp
@@ -6367,7 +6367,7 @@ msgctxt ""
"par_id6684163\n"
"help.text"
msgid "If this control box is not enabled, then the forms in the current database will not be checked for required fields."
-msgstr ""
+msgstr "Wenn dieses Markierfeld nicht aktiviert ist, werden die Formulare in der aktuellen Datenbank nicht auf erforderliche Felder überprüft."
#. fZAwm
#: dabaadvpropdat.xhp
@@ -6376,7 +6376,7 @@ msgctxt ""
"par_id3837397\n"
"help.text"
msgid "The control box is available for all data source types which support write access to their data. The control box does not exist for spreadsheets, text, csv, and the various read-only address books."
-msgstr ""
+msgstr "Das Markierfeld ist für alle Datenquellentypen verfügbar, die einen Schreibzugriff auf ihre Daten unterstützen. Das Markierfeld ist für Tabellenkalkulationen, Text, CSV und die verschiedenen schreibgeschützten Adressbücher nicht vorhanden."
#. ykjaM
#: dabaadvpropdat.xhp
@@ -6385,7 +6385,7 @@ msgctxt ""
"hd_id040920092139524\n"
"help.text"
msgid "Use ODBC conformant date/time literals"
-msgstr ""
+msgstr "Verwenden Sie ODBC-konforme Datums-/Zeitliterale"
#. AFvyx
#: dabaadvpropdat.xhp
@@ -6394,7 +6394,7 @@ msgctxt ""
"par_id040920092139526\n"
"help.text"
msgid "<ahelp hid=\".\">Use date/time literals that conform to ODBC standard.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Verwenden Sie Datums-/Zeitliterale, die dem ODBC-Standard entsprechen.</ahelp>"
#. 9PTAJ
#: dabaadvpropdat.xhp
@@ -6403,7 +6403,7 @@ msgctxt ""
"hd_id04092009442139524\n"
"help.text"
msgid "Supports primary keys"
-msgstr ""
+msgstr "Unterstützt Primärschlüssel"
#. BVmAU
#: dabaadvpropdat.xhp
@@ -6412,7 +6412,7 @@ msgctxt ""
"par_id04096620092139526\n"
"help.text"
msgid "<ahelp hid=\".\">Enable to overrule Base's heuristics used to detect whether the database supports primary keys.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aktiviert die Heuristik von Base, die verwendet wird, um festzustellen, ob die Datenbank Primärschlüssel unterstützt.</ahelp>"
#. WCkDd
#: dabaadvpropdat.xhp
@@ -6421,7 +6421,7 @@ msgctxt ""
"par_id66841631\n"
"help.text"
msgid "When connecting to a database using a generic API like ODBC, JDBC, or ADO, Base currently applies heuristics to determine whether this database supports primary keys. None of those APIs has dedicated support to retrieve this information."
-msgstr ""
+msgstr "Beim Herstellen einer Verbindung zu einer Datenbank über eine generische API wie ODBC, JDBC oder ADO wendet Base derzeit Heuristiken an, um festzustellen, ob diese Datenbank Primärschlüssel unterstützt. Keine dieser APIs bietet spezielle Unterstützung zum Abrufen dieser Informationen."
#. U5ssy
#: dabaadvpropdat.xhp
@@ -6430,7 +6430,7 @@ msgctxt ""
"par_id66841632\n"
"help.text"
msgid "The heuristics sometimes fails. This tri-state check box by default is set to the undetermined state, which means \"apply the heuristics\". If the check box is enabled, primary key support is assumed. If the check box is disabled, no primary key support is assumed."
-msgstr ""
+msgstr "Die Heuristik versagt manchmal. Dieses Markierfeld mit drei Zuständen ist standardmäßig auf den unbestimmten Zustand eingestellt, was bedeutet, dass die Heuristik angewendet wird. Bei aktiviertem Markierfeld wird von der Primärschlüsselunterstützung ausgegangen. Wenn das Markierfeld deaktiviert ist, wird keine Primärschlüsselunterstützung angenommen."
#. vdH4q
#: dabaadvpropdat.xhp
@@ -6439,7 +6439,7 @@ msgctxt ""
"par_id66841633\n"
"help.text"
msgid "Note that if this option is just for overruling the heuristics. If you enable the check box for a database which actually does not support primary keys, you will see some errors."
-msgstr ""
+msgstr "Beachten Sie, dass diese Option nur zum Überstimmen der Heuristik dient. Wenn Sie das Markierfeld für eine Datenbank aktivieren, die eigentlich keine Primärschlüssel unterstützt, werden einige Fehler angezeigt."
#. SbhkD
#: dabaadvpropdat.xhp
@@ -6466,7 +6466,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "Comparison of Boolean values"
-msgstr ""
+msgstr "Vergleich von booleschen Werten"
#. rgzfK
#: dabaadvpropdat.xhp
@@ -6475,7 +6475,7 @@ msgctxt ""
"par_idN10625\n"
"help.text"
msgid "<ahelp hid=\".\">Select the type of Boolean comparison that you want to use.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wählen Sie den Typ des booleschen Vergleichs aus, den Sie verwenden möchten.</ahelp>"
#. CAkyk
#: dabaadvpropdat.xhp
@@ -6502,7 +6502,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Generated Values"
-msgstr ""
+msgstr "Generierte Werte"
#. kGZBa
#: dabaadvpropgen.xhp
@@ -6511,7 +6511,7 @@ msgctxt ""
"bm_id521623154765032\n"
"help.text"
msgid "<bookmark_value>database advanced properties;autoincrement values</bookmark_value> <bookmark_value>database advanced properties;automatic generated values</bookmark_value> <bookmark_value>database advanced properties;retrieve generated values</bookmark_value> <bookmark_value>database advanced properties;query generated values</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Erweiterte Datenbankeigenschaften; Werte automatisch erhöhen</bookmark_value><bookmark_value>Erweiterte Datenbankeigenschaften; automatisch generierte Werte</bookmark_value><bookmark_value>Erweiterte Datenbankeigenschaften; generierte Werte abrufen</bookmark_value><bookmark_value>Erweiterte Datenbankeigenschaften; Abfrage generiert Werte</bookmark_value>"
#. kqFCk
#: dabaadvpropgen.xhp
@@ -6520,7 +6520,7 @@ msgctxt ""
"par_idN10553\n"
"help.text"
msgid "<link href=\"text/sdatabase/dabaadvpropgen.xhp\">Generated Values</link>"
-msgstr ""
+msgstr "<link href=\"text/sdatabase/dabaadvpropgen.xhp\">Generierte Werte</link>"
#. x7uc3
#: dabaadvpropgen.xhp
@@ -6529,7 +6529,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "Specifies the options for automatically generated values for new data records."
-msgstr ""
+msgstr "Legt die Optionen für automatisch generierte Werte für neue Datensätze fest."
#. Dpncz
#: dabaadvpropgen.xhp
@@ -6538,7 +6538,7 @@ msgctxt ""
"par_id7684560\n"
"help.text"
msgid "The availability of the following controls depends on the type of database:"
-msgstr ""
+msgstr "Die Verfügbarkeit der folgenden Steuerelemente hängt vom Datenbanktyp ab:"
#. moLhP
#: dabaadvpropgen.xhp
@@ -6547,7 +6547,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "Retrieve generated values"
-msgstr ""
+msgstr "Generierte Werte abrufen"
#. KGEf3
#: dabaadvpropgen.xhp
@@ -6556,7 +6556,7 @@ msgctxt ""
"par_idN10590\n"
"help.text"
msgid "<ahelp hid=\".\">Enables $[officename] support for auto-incremented data fields in the current ODBC or JDBC data source. Select this option if the auto-increment feature in the SDBCX layer of the database is not supported. In general, the auto-increment is selected for the primary key field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aktiviert die $[officename]-Unterstützung für automatisch inkrementierte Datenfelder in der aktuellen ODBC- oder JDBC-Datenquelle. Wählen Sie diese Option aus, wenn die Autoinkrement-Funktion in der SDBCX-Schicht der Datenbank nicht unterstützt wird. Im Allgemeinen wird für das Primärschlüsselfeld das Autoinkrement ausgewählt.</ahelp>"
#. x4VQL
#: dabaadvpropgen.xhp
@@ -6565,7 +6565,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "Auto-increment statement"
-msgstr ""
+msgstr "Autoinkrement-Anweisung"
#. Hskow
#: dabaadvpropgen.xhp
@@ -6574,7 +6574,7 @@ msgctxt ""
"par_idN10597\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the SQL command specifier that instructs the data source to auto-increment a specified Integer data field.</ahelp> For example, the following MySQL statement used the AUTO_INCREMENT statement to increase the \"id\" field each time the statement creates a data field:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geben Sie den SQL-Befehlsbezeichner ein, der die Datenquelle anweist, ein angegebenes Integer-Datenfeld automatisch zu inkrementieren.</ahelp> Beispielsweise verwendete die folgende MySQL-Anweisung die Anweisung AUTO_INCREMENT, um das Feld \"ID\" jedes Mal zu erhöhen, wenn die Anweisung ein Datenfeld erstellt:"
#. Vi6CV
#: dabaadvpropgen.xhp
@@ -6583,7 +6583,7 @@ msgctxt ""
"par_idN105A0\n"
"help.text"
msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)"
-msgstr ""
+msgstr "CREATE TABLE \"Tablle 1\" (\"ID\" INTEGER AUTO_INCREMENT)"
#. rDQtm
#: dabaadvpropgen.xhp
@@ -6592,7 +6592,7 @@ msgctxt ""
"par_idN10634\n"
"help.text"
msgid "For this example, you must enter AUTO_INCREMENT into the <emph>Auto-increment statement</emph> box."
-msgstr ""
+msgstr "Für dieses Beispiel müssen Sie AUTO_INCREMENT in das Feld <emph>Autoinkrement-Anweisung</emph> eingeben."
#. GSfGJ
#: dabaadvpropgen.xhp
@@ -6601,7 +6601,7 @@ msgctxt ""
"par_idN105AA\n"
"help.text"
msgid "Query of generated values"
-msgstr ""
+msgstr "Abfrage von generierten Werten"
#. gCRhF
#: dabaadvpropgen.xhp
@@ -6610,7 +6610,7 @@ msgctxt ""
"par_idN10645\n"
"help.text"
msgid "<ahelp hid=\".\">Enter an SQL statement that returns the last auto-incremented value for the primary key data field.</ahelp> For example:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geben Sie eine SQL-Anweisung ein, die den letzten automatisch inkrementierten Wert für das Primärschlüssel-Datenfeld zurückgibt.</ahelp> Beispielsweise:"
#. BzyHv
#: dabaadvpropgen.xhp
@@ -6619,7 +6619,7 @@ msgctxt ""
"par_idN105B1\n"
"help.text"
msgid "SELECT LAST_INSERT_D();"
-msgstr ""
+msgstr "SELECT LAST_INSERT_D();"
#. xUFRA
#: dabadoc.xhp
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index ca352d50339..ad27da41c40 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-03-11 13:07+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared00/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1563509840.000000\n"
#. 3B8ZN
@@ -311,7 +311,7 @@ msgctxt ""
"par_id3153087\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Shrink</emph> icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Expand</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klicken Sie auf das Symbol <emph>Verkleinern</emph>, um den Dialog auf die Größe des Eingabefelds zu verkleinern. So lässt sich der benötigte Bezug in der Tabelle leichter auswählen. Das Symbol wird automatisch zum Symbol <emph>Vergrößern</emph>. Klicken Sie darauf, um die Originalgröße des Dialogs wiederherzustellen.</ahelp>"
#. XBrSB
#: 00000001.xhp
@@ -2885,7 +2885,7 @@ msgctxt ""
"par_id61624628294382\n"
"help.text"
msgid "In a form document, a control must receive focus from the user in order to become active and perform its tasks. For example, users must give focus to a text box in order to enter text into it."
-msgstr ""
+msgstr "In einem Formulardokument muss ein Steuerelement den Fokus vom Benutzers erhalten, um aktiv zu werden und seine Aufgaben auszuführen. Beispielsweise müssen Benutzer einem Textfeld den Fokus geben, um Text einzugeben."
#. DasRP
#: 00000005.xhp
@@ -2912,7 +2912,7 @@ msgctxt ""
"par_id191624628327510\n"
"help.text"
msgid "Navigate from one control to the next with the keyboard. The document's author may define a tabbing order that specifies the order in which controls will receive focus if the user navigates the document with the keyboard. Once selected, a control may be activated by some other key sequence."
-msgstr ""
+msgstr "Navigieren Sie mit der Tastatur von einem Steuerelement zum nächsten. Der Autor des Dokuments kann eine Aktivierungsreihenfolge festlegen, welche die Reihenfolge angibt, in der Steuerelemente den Fokus erhalten, wenn der Benutzer mit der Tastatur durch das Dokument navigiert. Nach der Auswahl kann ein Steuerelement durch eine andere Tastenfolge aktiviert werden."
#. PEbNU
#: 00000005.xhp
@@ -2921,7 +2921,7 @@ msgctxt ""
"par_id351624628336039\n"
"help.text"
msgid "Select a control through an access key (sometimes called \"keyboard shortcut\" or \"keyboard accelerator\")."
-msgstr ""
+msgstr "Wählen Sie ein Steuerelement über eine Zugriffstaste aus (manchmal auch als \"Tastenkombination\" oder \"Schnellzugriff\" bezeichnet)."
#. KRQQF
#: 00000005.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"hd_id911633520416200\n"
"help.text"
msgid "Include byte-order mark"
-msgstr ""
+msgstr "Byte-Reihenfolge-Markierung einschließen"
#. 5G2v5
#: 00000215.xhp
@@ -6134,7 +6134,7 @@ msgctxt ""
"par_id211633520423767\n"
"help.text"
msgid "For Unicode character set only, a byte order mark (BOM) is a sequence of bytes used to indicate Unicode encoding of a text file. The presence of the UTF-8 BOM is optional and may cause problems with some software, especially legacy software not designed to handle UTF-8."
-msgstr ""
+msgstr "Nur für den Unicode-Zeichensatz: Eine Byte-Reihenfolge-Markierung (Byte Order Mark, BOM) ist eine Folge von Bytes, die verwendet wird, um die Unicode-Codierung einer Textdatei anzuzeigen. Das Vorhandensein der UTF-8 BOM ist optional und kann Probleme mit einiger Software verursachen, insbesondere mit älterer Software, die nicht für die Verarbeitung von UTF-8 ausgelegt ist."
#. PSvbB
#: 00000215.xhp
@@ -7754,7 +7754,7 @@ msgctxt ""
"par_idN1091B\n"
"help.text"
msgid "<variable id=\"grid\">Choose <menuitem>View - Grid and Helplines</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"grid\">Wählen Sie <menuitem>Ansicht – Raster und Hilfslinien</menuitem>.</variable>"
#. rWXdw
#: 00000403.xhp
@@ -7799,7 +7799,7 @@ msgctxt ""
"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>"
-msgstr ""
+msgstr "<variable id=\"notizkbd\">Drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Befehl</keycode>+<keycode>Option</keycode></caseinline><defaultinline><keycode>Strg</keycode>+<keycode>Alt</keycode></defaultinline></switchinline>+<keycode>C</keycode>.</variable>"
#. 8FMuh
#: 00000404.xhp
@@ -8069,7 +8069,7 @@ msgctxt ""
"par_id3156005\n"
"help.text"
msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153739\">Icon Chart</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153739\">Symbol für Diagramm einfügen</alt></image>"
#. ge7Bf
#: 00000404.xhp
@@ -8213,7 +8213,7 @@ msgctxt ""
"par_idN10EA9\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_basicshapes\">Icon Basic shapes</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_basicshapes\">Symbol für Standardformen</alt></image>"
#. cRUvF
#: 00000404.xhp
@@ -8231,7 +8231,7 @@ msgctxt ""
"par_idN10EEE\n"
"help.text"
msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_symbolshapes\">Icon Symbol Shapes</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_symbolshapes\">Symbol für Symbolformen</alt></image>"
#. raBMx
#: 00000404.xhp
@@ -8249,7 +8249,7 @@ msgctxt ""
"par_idN10F33\n"
"help.text"
msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_blockarrows\">Icon Block arrows</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_blockarrows\">Symbol für Blockpfeile</alt></image>"
#. 8mq6j
#: 00000404.xhp
@@ -8267,7 +8267,7 @@ msgctxt ""
"par_idN10F78\n"
"help.text"
msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_flowcharts\">Icon Flowcharts</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_flowcharts\">Symbol für Flussdiagramme</alt></image>"
#. kmLGo
#: 00000404.xhp
@@ -8285,7 +8285,7 @@ msgctxt ""
"par_idN10FBD\n"
"help.text"
msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_callouts\">Icon Callouts</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_callouts\">Symbol für Legenden</alt></image>"
#. 437R9
#: 00000404.xhp
@@ -8294,7 +8294,7 @@ msgctxt ""
"par_idN10FEC\n"
"help.text"
msgid "Callouts"
-msgstr "Legende"
+msgstr "Legenden"
#. zGDAy
#: 00000404.xhp
@@ -8303,7 +8303,7 @@ msgctxt ""
"par_idN11002\n"
"help.text"
msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_stars\">Icon Stars</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_stars\">Symbol für Sterne</alt></image>"
#. fBLRJ
#: 00000404.xhp
@@ -10652,7 +10652,7 @@ msgctxt ""
"par_id3133357\n"
"help.text"
msgid "Choose <menuitem>Format - Page Style - Page</menuitem> tab (Writer)."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Format – Seitenvorlage… – Register: Seite</menuitem> (Writer)."
#. w3yEG
#: 00040500.xhp
@@ -12902,7 +12902,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<variable id=\"image\">Choose <menuitem>Format - </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Text Box and Shape - </menuitem> </caseinline><caseinline select=\"CALC\"><menuitem>Object - </menuitem></caseinline></switchinline><menuitem>Area - Image</menuitem> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"image\">Wählen Sie <menuitem>Format – </menuitem><switchinline select=\"appl\"><caseinline select=\"WRITER\"><menuitem>Textfeld und Form – </menuitem></caseinline><caseinline select=\"CALC\"><menuitem>Objekt – </menuitem></caseinline></switchinline><menuitem>Register: Fläche – Schaltfläche: Bild</menuitem>.</variable>"
#. VRoLs
#: 00040502.xhp
@@ -13973,7 +13973,7 @@ msgctxt ""
"par_id3149948\n"
"help.text"
msgid "Every <link href=\"text/shared/00/00000005.xhp#docking\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
-msgstr ""
+msgstr "Jedes <link href=\"text/shared/00/00000005.xhp#docking\" name=\"docked\">angedockte</link> Fenster besitzt ein Symbol, mit dem Sie die Eigenschaften der Anzeige des Fensters steuern können."
#. jJcsB
#: 01000000.xhp
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index f8ef896562e..21aeba77bcc 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.po
@@ -4,16 +4,16 @@ 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: 2022-01-20 08:38+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/de/>\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
+"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textshared02/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565413604.000000\n"
#. Edm6o
@@ -851,7 +851,7 @@ msgctxt ""
"par_id3148483\n"
"help.text"
msgid "<image id=\"img_id3156380\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Icon Check Box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156380\" src=\"cmd/sc_checkbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156380\">Symbol für Markierfeld</alt></image>"
#. fbJjh
#: 01170000.xhp
@@ -878,7 +878,7 @@ msgctxt ""
"par_id3163665\n"
"help.text"
msgid "<image id=\"img_id3153266\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Icon Text Box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153266\" src=\"cmd/sc_edit.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153266\">Symbol für Textfeld</alt></image>"
#. p3BAw
#: 01170000.xhp
@@ -905,7 +905,7 @@ msgctxt ""
"par_id3154836\n"
"help.text"
msgid "<image id=\"img_id3143277\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Icon Formatted Field</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3143277\" src=\"cmd/sc_formattedfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3143277\">Symbol für Formatiertes Feld</alt></image>"
#. W4Jis
#: 01170000.xhp
@@ -941,7 +941,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<image id=\"img_id3151073\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Icon Push Button</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151073\" src=\"cmd/sc_insertpushbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151073\">Symbol für Schaltfläche</alt></image>"
#. KTA7G
#: 01170000.xhp
@@ -977,7 +977,7 @@ msgctxt ""
"par_id3152971\n"
"help.text"
msgid "<image id=\"img_id3152999\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Icon Option Button</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152999\" src=\"cmd/sc_radiobutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152999\">Symbol für Optionsfeld</alt></image>"
#. DJdqY
#: 01170000.xhp
@@ -1004,7 +1004,7 @@ msgctxt ""
"par_id3154326\n"
"help.text"
msgid "<image id=\"img_id3154135\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Icon List Box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154135\" src=\"cmd/sc_listbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154135\">Symbol für Listenfeld</alt></image>"
#. Dbwav
#: 01170000.xhp
@@ -1031,7 +1031,7 @@ msgctxt ""
"par_id3149981\n"
"help.text"
msgid "<image id=\"img_id3148817\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Icon Combo Box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148817\" src=\"cmd/sc_combobox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148817\">Symbol für Kombinationsfeld</alt></image>"
#. bUeTF
#: 01170000.xhp
@@ -1058,7 +1058,7 @@ msgctxt ""
"par_id3145295\n"
"help.text"
msgid "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Icon Label Field</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151017\" src=\"cmd/sc_insertfixedtext.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151017\">Symbol für Beschriftungsfeld</alt></image>"
#. xAedG
#: 01170000.xhp
@@ -1103,7 +1103,7 @@ msgctxt ""
"par_idN11B65\n"
"help.text"
msgid "<image id=\"img_id6128727\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id6128727\" src=\"cmd/sc_usewizards.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id6128727\">Symbol für Assistenten ein/aus</alt></image>"
#. ySzEv
#: 01170000.xhp
@@ -1148,7 +1148,7 @@ msgctxt ""
"par_idN11A64\n"
"help.text"
msgid "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id7816400\" src=\"cmd/sc_spinbutton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id7816400\">Symbol für Drehfeld</alt></image>"
#. rY5Pe
#: 01170000.xhp
@@ -1184,7 +1184,7 @@ msgctxt ""
"par_idN11ACA\n"
"help.text"
msgid "<image id=\"img_id8203985\" src=\"cmd/sc_scrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id8203985\" src=\"cmd/sc_scrollbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id8203985\">Symbol für Bildlaufleisten</alt></image>"
#. RNigC
#: 01170000.xhp
@@ -1418,7 +1418,7 @@ msgctxt ""
"par_id3159622\n"
"help.text"
msgid "<image id=\"img_id3154378\" src=\"cmd/sc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Icon image button</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154378\" src=\"cmd/sc_imagebutton.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154378\">Symbol für Grafische Schaltfläche</alt></image>"
#. B9Era
#: 01170000.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id3155869\n"
"help.text"
msgid "<image id=\"img_id3152381\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Icon Image Control</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152381\" src=\"cmd/sc_objectcatalog.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152381\">Symbol für Grafisches Steuerelement</alt></image>"
#. ZJDNH
#: 01170000.xhp
@@ -1481,7 +1481,7 @@ msgctxt ""
"par_id3149423\n"
"help.text"
msgid "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150096\" src=\"cmd/sc_adddatefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150096\">Symbol für Datumsfeld</alt></image>"
#. sSv2y
#: 01170000.xhp
@@ -1535,7 +1535,7 @@ msgctxt ""
"par_id3153687\n"
"help.text"
msgid "<image id=\"img_id3155949\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155949\" src=\"cmd/sc_timefield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155949\">Symbol für Zeitfeld</alt></image>"
#. 7apBh
#: 01170000.xhp
@@ -1571,7 +1571,7 @@ msgctxt ""
"par_id3150531\n"
"help.text"
msgid "<image id=\"img_id3154344\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Icon File Selection</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154344\" src=\"cmd/sc_filecontrol.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154344\">Symbol für Dateiauswahl</alt></image>"
#. 4CELT
#: 01170000.xhp
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3149396\n"
"help.text"
msgid "<image id=\"img_id3153012\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153012\" src=\"cmd/sc_insertnumericfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153012\">Symbol für Numerisches Feld</alt></image>"
#. 3jPvp
#: 01170000.xhp
@@ -1625,7 +1625,7 @@ msgctxt ""
"par_id3145324\n"
"help.text"
msgid "<image id=\"img_id3152866\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152866\" src=\"cmd/sc_currencyfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152866\">Symbol für Währungsfeld</alt></image>"
#. dc7AD
#: 01170000.xhp
@@ -1652,7 +1652,7 @@ msgctxt ""
"par_id3149742\n"
"help.text"
msgid "<image id=\"img_id3148924\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148924\" src=\"cmd/sc_insertpatternfield.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148924\">Symbol für Maskiertes Feld</alt></image>"
#. 4SYQW
#: 01170000.xhp
@@ -1688,7 +1688,7 @@ msgctxt ""
"par_id3159334\n"
"help.text"
msgid "<image id=\"img_id3153790\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Icon Group Box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153790\" src=\"cmd/sc_groupbox.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153790\">Symbol für Gruppierungsrahmen</alt></image>"
#. 3Suwy
#: 01170000.xhp
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3156402\n"
"help.text"
msgid "<image id=\"img_id3146324\" src=\"cmd/sc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Icon Table Control</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3146324\" src=\"cmd/sc_grid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3146324\">Symbol für Tabellen-Steuerelement</alt></image>"
#. YNpAD
#: 01170000.xhp
@@ -1778,7 +1778,7 @@ msgctxt ""
"par_idN11B2C\n"
"help.text"
msgid "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Icon Navigation bar</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id5074922\" src=\"cmd/sc_navigationbar.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id5074922\">Symbol für Navigationsleiste</alt></image>"
#. dmjpG
#: 01170000.xhp
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id3150261\n"
"help.text"
msgid "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149351\" src=\"cmd/sc_autocontrolfocus.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149351\">Symbol für Automatischer Steuerelement-Fokus</alt></image>"
#. iDFFL
#: 01170000.xhp
@@ -7349,7 +7349,7 @@ msgctxt ""
"par_id3148755\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Changed</emph> event takes place when the control loses the <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">focus</link> and the content of the control has changed since it lost the focus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Das Ereignis <emph>Modifiziert</emph> tritt ein, wenn das Steuerelement den <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">Fokus</link> verliert und sich sein Inhalt seit Erhalt des Fokus geändert hat.</ahelp>"
#. pW2Ah
#: 01170103.xhp
@@ -7385,7 +7385,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "The <emph>Item status changed</emph> event takes place if the status of the control field has changed, for example, from checked to unchecked."
-msgstr ""
+msgstr "Das Ereignis <emph>Status geändert</emph> tritt bei einer Änderung des Steuerelement-Zustands ein, beispielsweise von ausgewählt zu nicht ausgewählt."
#. CRguq
#: 01170103.xhp
@@ -7403,7 +7403,7 @@ msgctxt ""
"par_id3154218\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>When receiving focus</emph> event takes place if a control field receives the <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">focus</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Das Ereignis <emph>Bei Fokuserhalt</emph> tritt ein, wenn das Steuerelement den <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">Fokus</link> erhält.</ahelp>"
#. NrRE4
#: 01170103.xhp
@@ -7421,7 +7421,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>When losing focus</emph> event takes place if a control field loses the <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">focus</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Das Ereignis <emph>Bei Fokusverlust</emph> tritt ein, wenn ein Steuerelement den <link href=\"text/shared/00/00000005.xhp#form_focus\" name=\"focus\">Fokus</link> verliert.</ahelp>"
#. JkyEm
#: 01170103.xhp
@@ -9140,7 +9140,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Activation Order"
-msgstr ""
+msgstr "Aktivierungsreihenfolge"
#. LWAYe
#: 01170300.xhp
@@ -9149,7 +9149,7 @@ msgctxt ""
"hd_id3146959\n"
"help.text"
msgid "<link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Activation Order</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/01170300.xhp\" name=\"Tab Order\">Aktivierungsreihenfolge</link>"
#. ds3GH
#: 01170300.xhp
@@ -9158,7 +9158,7 @@ msgctxt ""
"par_id3150347\n"
"help.text"
msgid "<variable id=\"text\"><ahelp hid=\".uno:TabDialog\">Opens the <emph>Tab Order</emph> dialog so you can modify the order in which control fields get the focus when the user presses the tab key.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"text\"><ahelp hid=\".uno:TabDialog\">Öffnet den Dialog <emph>Tabulatorreihenfolge</emph>, in dem Sie die Reihenfolge ändern können, in der die Steuerelemente den Fokus erhalten, wenn der Benutzer die Taste Tabulator drückt.</ahelp></variable>"
#. oEDQP
#: 01170300.xhp
@@ -15017,7 +15017,7 @@ msgctxt ""
"hd_id3151097\n"
"help.text"
msgid "<variable id=\"StandardFilter_h1\"><link href=\"text/shared/02/12090100.xhp\" name=\"StandardFilter_link\">Standard Filter</link></variable>"
-msgstr ""
+msgstr "<variable id=\"StandardFilter_h1\"><link href=\"text/shared/02/12090100.xhp\" name=\"StandardFilter_link\">Standardfilter</link></variable>"
#. u4zmZ
#: 12090100.xhp
@@ -17897,7 +17897,7 @@ msgctxt ""
"bm_id3148668\n"
"help.text"
msgid "<bookmark_value>selection modes in text</bookmark_value> <bookmark_value>text; selection modes</bookmark_value> <bookmark_value>extending selection mode</bookmark_value> <bookmark_value>adding selection mode</bookmark_value> <bookmark_value>block selection mode</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Auswahlmodi in Text</bookmark_value><bookmark_value>Text; Auswahlmodi </bookmark_value><bookmark_value>Modus Auswahl erweitern</bookmark_value><bookmark_value>Modus Auswahl hinzufügen</bookmark_value><bookmark_value>Modus Blockauswahl</bookmark_value>"
#. ntcAk
#: 20050000.xhp
@@ -17915,7 +17915,7 @@ msgctxt ""
"par_id3146130\n"
"help.text"
msgid "<ahelp hid=\".\">Switches between different selection modes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wechselt zwischen verschiedenen Auswahlmodi.</ahelp>"
#. iyCEv
#: 20050000.xhp
@@ -17924,7 +17924,7 @@ msgctxt ""
"par_id3153894\n"
"help.text"
msgid "Click this field to open a popup menu with the following options:"
-msgstr ""
+msgstr "Klicken Sie auf dieses Feld, um ein Popup-Menü mit den folgenden Optionen zu öffnen:"
#. FVGbB
#: 20050000.xhp
@@ -17969,7 +17969,7 @@ msgctxt ""
"par_id3149580\n"
"help.text"
msgid "Extending selection"
-msgstr ""
+msgstr "Auswahl erweitern"
#. 8V8BG
#: 20050000.xhp
@@ -17978,7 +17978,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "Use the mouse, arrow keys or the <keycode>Home</keycode> and <keycode>End</keycode> keys to extend or crop the current selection. Clicking anywhere in the text selects the region between the current cursor position and the click position."
-msgstr ""
+msgstr "Verwenden Sie die Maus, die Pfeiltasten oder die Tasten <keycode>Pos1</keycode> und <keycode>Ende</keycode>, um die aktuelle Auswahl zu erweitern oder zu beschneiden. Wenn Sie auf eine beliebige Stelle im Text klicken, wird der Bereich zwischen der aktuellen Cursorposition und der Klickposition ausgewählt."
#. Jwb3c
#: 20050000.xhp
@@ -17987,7 +17987,7 @@ msgctxt ""
"par_id821630330412209\n"
"help.text"
msgid "Hold the <keycode>Shift</keycode> key to temporarily activate the Extending selection mode."
-msgstr ""
+msgstr "Drücken Sie die Taste <keycode>Umschalt</keycode>, um den Auswahlmodus \"Auswahl erweitern\" vorübergehend zu aktivieren."
#. dL6uZ
#: 20050000.xhp
@@ -17996,7 +17996,7 @@ msgctxt ""
"par_id3147620\n"
"help.text"
msgid "Adding selection (<keycode>Shift+F8</keycode>)"
-msgstr ""
+msgstr "Auswahl hinzufügen (<keycode>Umschalt+F8</keycode>)"
#. YjCCD
#: 20050000.xhp
@@ -18005,7 +18005,7 @@ msgctxt ""
"par_id3154307\n"
"help.text"
msgid "Use this mode to select multiple ranges of text. Each new selection using the mouse or keyboard is added as a new selection."
-msgstr ""
+msgstr "Verwenden Sie diesen Modus, um mehrere Textbereiche auszuwählen. Jede neue Auswahl mit der Maus oder Tastatur wird als neue Auswahl hinzugefügt."
#. CFmAA
#: 20050000.xhp
@@ -18014,7 +18014,7 @@ msgctxt ""
"par_id941630331257314\n"
"help.text"
msgid "Hold the <keycode>Ctrl</keycode> key to temporarily activate the Adding selection mode."
-msgstr ""
+msgstr "Drücken Sie die Taste <keycode>Strg</keycode>, um den Auswahlmodus \"Auswahl hinzufügen\" vorübergehend zu aktivieren."
#. vSETC
#: 20050000.xhp
@@ -18023,7 +18023,7 @@ msgctxt ""
"par_id6971037\n"
"help.text"
msgid "Block selection (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+F8</keycode>)"
-msgstr ""
+msgstr "Blockauswahl (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Befehl</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline><keycode>+Umschalt+F8</keycode>)"
#. qAeGQ
#: 20050000.xhp
@@ -18032,7 +18032,7 @@ msgctxt ""
"par_id5258644\n"
"help.text"
msgid "Use this mode to select a non-contiguous block of text."
-msgstr ""
+msgstr "Verwenden Sie diesen Modus, um einen nicht zusammenhängenden Textblock auszuwählen."
#. tcCu3
#: 20050000.xhp
@@ -18041,7 +18041,7 @@ msgctxt ""
"par_id41630331461837\n"
"help.text"
msgid "Hold the <keycode>Alt</keycode> key to temporarily activate the Block selection mode."
-msgstr ""
+msgstr "Drücken Sie die Taste <keycode>Alt</keycode>, um den Auswahlmodus \"Blockauswahl\" vorübergehend zu aktivieren."
#. ubD2w
#: 20060000.xhp
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index a6f3b35b21e..47143cdba7b 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-02-28 17:35+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsharedguide/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565411466.000000\n"
#. iharT
@@ -21290,7 +21290,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copying Attributes With the Clone Formatting Tool"
-msgstr "Attribute mit der Funktion Formatierungen übertragen kopieren"
+msgstr "Attribute mit der Funktion Formatierung übertragen kopieren"
#. 7Frig
#: paintbrush.xhp
@@ -21299,7 +21299,7 @@ msgctxt ""
"bm_id380260\n"
"help.text"
msgid "<bookmark_value>Format Paintbrush</bookmark_value> <bookmark_value>clone formatting</bookmark_value> <bookmark_value>formatting;copying</bookmark_value> <bookmark_value>copying;formatting</bookmark_value> <bookmark_value>Paintbrush</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pinsel; formatieren</bookmark_value><bookmark_value>Formatierung übertragen</bookmark_value><bookmark_value>Formatierung; kopieren</bookmark_value><bookmark_value>Kopieren; Formatierung</bookmark_value><bookmark_value>Pinsel</bookmark_value>"
#. 7BBrB
#: paintbrush.xhp
@@ -21308,7 +21308,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "<variable id=\"formatpaintbrush\"><link href=\"text/shared/guide/paintbrush.xhp\">Copying Formatting With the Clone Formatting Tool</link></variable>"
-msgstr "<variable id=\"formatpaintbrush\"><link href=\"text/shared/guide/paintbrush.xhp\">Formatierungen mit der Funktion \"Formatierungen übertragen\" kopieren</link></variable>"
+msgstr "<variable id=\"formatpaintbrush\"><link href=\"text/shared/guide/paintbrush.xhp\">Formatierungen mit der Funktion \"Formatierung übertragen\" kopieren</link></variable>"
#. KdqKE
#: paintbrush.xhp
@@ -21317,7 +21317,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "Use the <emph>Clone Formatting</emph> tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object."
-msgstr ""
+msgstr "Mit dem Werkzeug <emph>Formatierung übertragen</emph> können Sie die Formatierung einer Textauswahl oder eines Objekts kopieren und auf eine andere Textauswahl oder ein anderes Objekt anwenden."
#. F7Fcd
#: paintbrush.xhp
@@ -21335,7 +21335,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "On the <emph>Standard Bar</emph>, click the <emph>Clone Formatting</emph> icon. The mouse cursor will change to a paint bucket."
-msgstr ""
+msgstr "Klicken Sie in der Symbolleiste <emph>Standard</emph> auf das Symbol <emph>Formatierung übertragen</emph>. Der Mauszeiger verwandelt sich in einen Farbeimer."
#. AZjCv
#: paintbrush.xhp
@@ -21353,7 +21353,7 @@ msgctxt ""
"par_id291629997756899\n"
"help.text"
msgid "If you want to apply the formatting to more than one selection, double-click the <emph>Clone Formatting</emph> icon <image id=\"img_id209967\" src=\"cmd/sc_formatpaintbrush.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id209967\">Icon</alt></image>. After you apply all the formatting, click the icon again."
-msgstr ""
+msgstr "Wenn Sie die Formatierung auf mehr als eine Auswahl anwenden möchten, doppelklicken Sie auf das Symbol <emph>Formatierung übertragen</emph> <image id=\"img_id209967\" src=\"cmd/sc_formatpaintbrush.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id209967\">Symbol für Formatierung übertragen</alt></image>. Nachdem Sie alle Formatierungen angewendet haben, klicken Sie erneut auf das Symbol."
#. 9ivCF
#: paintbrush.xhp
@@ -21371,7 +21371,7 @@ msgctxt ""
"par_id1001629997571404\n"
"help.text"
msgid "In Calc, the Clone Formatting tool only copies formatting applied using the <menuitem>Format - Cells</menuitem> dialog or other equivalent methods. Therefore, any formatting applied directly to characters by selecting text inside a cell and then going to the <menuitem>Format - Character</menuitem> dialog will not be copied using the Clone Formatting tool."
-msgstr ""
+msgstr "In Calc kopiert das Werkzeug \"Formatierung übertragen\" nur Formatierungen, die über den Dialog <menuitem>Format – Zellen…</menuitem> oder andere gleichwertige Methoden angewendet wurden. Daher werden Formatierungen, die direkt auf Zeichen angewendet werden, indem Sie Text in einer Zelle markieren und dann den Dialog <menuitem>Format – Zeichen…</menuitem> aufrufen, nicht mit dem Werkzeug \"Formatierung übertragen\" kopiert."
#. pjGa2
#: paintbrush.xhp
@@ -21569,7 +21569,7 @@ msgctxt ""
"par_idN1070C\n"
"help.text"
msgid "Copies cell formatting specified using the <menuitem>Format - Cells</menuitem> dialog."
-msgstr ""
+msgstr "Kopiert die im Dialog <menuitem>Format – Zellen…</menuitem> festgelegte Zellformatierung."
#. LFKkc
#: pasting.xhp
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index d153275be78..5947d01c72f 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.po
@@ -4,16 +4,16 @@ 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-10-25 12:49+0200\n"
-"PO-Revision-Date: 2022-01-20 08:38+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsharedoptionen/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565411576.000000\n"
#. PzSYs
@@ -5999,7 +5999,7 @@ msgctxt ""
"bm_id411624631841785\n"
"help.text"
msgid "<bookmark_value>outline folding buttons;settings</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Schaltflächen für Gliederungsfaltung; Einstellungen</bookmark_value>"
#. AyGcm
#: 01040200.xhp
@@ -6008,7 +6008,7 @@ msgctxt ""
"hd_id751624630367767\n"
"help.text"
msgid "Outline folding"
-msgstr ""
+msgstr "Gliederungsfaltung"
#. ZLHPa
#: 01040200.xhp
@@ -6017,7 +6017,7 @@ msgctxt ""
"hd_id671624630372163\n"
"help.text"
msgid "Show outline-folding buttons"
-msgstr ""
+msgstr "Schaltflächen zur Gliederungsfaltung anzeigen"
#. tbuLW
#: 01040200.xhp
@@ -6026,7 +6026,7 @@ msgctxt ""
"par_id261624630524895\n"
"help.text"
msgid "Displays outline folding buttons on the left of the outline headings."
-msgstr ""
+msgstr "Zeigt die Schaltflächen für die Gliederungsfaltung links neben den Gliederungsüberschriften an."
#. G6sDV
#: 01040200.xhp
@@ -6035,7 +6035,7 @@ msgctxt ""
"hd_id211624630375989\n"
"help.text"
msgid "Include sub levels"
-msgstr ""
+msgstr "Unterebenen einschließen"
#. GyAV9
#: 01040200.xhp
@@ -6044,7 +6044,7 @@ msgctxt ""
"par_id231624630529145\n"
"help.text"
msgid "Also displays the folding buttons of the outline sub levels."
-msgstr ""
+msgstr "Zeigt auch die Schaltflächen für die Unterebenen der Gliederung an."
#. jH6p8
#: 01040200.xhp
@@ -9833,7 +9833,7 @@ msgctxt ""
"bm_id3151110\n"
"help.text"
msgid "<bookmark_value>metrics;in sheets</bookmark_value> <bookmark_value>tab stops; setting in sheets</bookmark_value> <bookmark_value>cells; cursor positions after input (Calc)</bookmark_value> <bookmark_value>edit mode; through Enter key (Calc)</bookmark_value> <bookmark_value>formatting; expanding (Calc)</bookmark_value> <bookmark_value>expanding formatting (Calc)</bookmark_value> <bookmark_value>references; expanding (Calc)</bookmark_value> <bookmark_value>column headers; highlighting (Calc)</bookmark_value> <bookmark_value>row headers; highlighting (Calc)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Metriken; in Tabellen</bookmark_value><bookmark_value>Tabulatoren; Einstellungen in Tabellen</bookmark_value><bookmark_value>Zellen; Cursor-Position nach Eingabe (Calc)</bookmark_value><bookmark_value>Bearbeitungsmodus; durch Eingabetaste (Calc)</bookmark_value><bookmark_value>Formatierung; erweitern (Calc)</bookmark_value><bookmark_value>Erweitern der Formatierung (Calc)</bookmark_value><bookmark_value>Referenzen; erweitern (Calc)</bookmark_value><bookmark_value>Spaltenköpfe; Hervorhebung (Calc)</bookmark_value><bookmark_value>Zeilenköpfe; Hervorhebung (Calc)</bookmark_value>"
#. ViFyA
#: 01060300.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id3148943\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/scgeneralpage/editmodecb\">Determines the behavior of the Enter key in a spreadsheet. Checking this option causes Enter to open cell contents for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/scgeneralpage/editmodecb\">Bestimmt das Verhalten der Eingabetaste in einer Tabelle. Wenn Sie diese Option aktivieren, öffnet die Eingabetaste den Zellinhalt zur Bearbeitung.</ahelp>"
#. NMaGC
#: 01060300.xhp
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id291629751925288\n"
"help.text"
msgid "Uncheck this option to make the Enter key select the cell below the current cell."
-msgstr ""
+msgstr "Deaktivieren Sie diese Option, damit durch die Eingabetaste die Zelle unter der aktuellen Zelle auswählt wird."
#. msttp
#: 01060300.xhp
@@ -9959,7 +9959,7 @@ msgctxt ""
"par_id391629752077203\n"
"help.text"
msgid "If a range of cells is selected, each time Enter is pressed will select the next cell inside the range. Hence, enabling this option is useful when entering values into a range of cells sequentially."
-msgstr ""
+msgstr "Wenn ein Zellbereich ausgewählt ist, wird bei jedem Drücken der Eingabetaste die nächste Zelle innerhalb des Bereichs ausgewählt. Daher ist das Aktivieren dieser Option nützlich, wenn Sie Werte nacheinander in einen Zellbereich eingeben möchten."
#. zqG2F
#: 01060300.xhp
@@ -11939,7 +11939,7 @@ msgctxt ""
"par_id3153877\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/sdviewpage/handlesbezier\">Displays the control points of all Bézier points if you have previously selected a <link href=\"text/shared/00/00000005.xhp#bezierobject\" name=\"Bézier curve\">Bézier curve</link>. If the <emph>All control points in Bézier</emph> editor option is not marked, only the control points of the selected Bézier points will be visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/sdviewpage/handlesbezier\">Wenn eine <link href=\"text/shared/00/00000005.xhp#bezierobject\" name=\"Bézier curve\">Bézierkurve</link> ausgewählt ist, werden die Steuerpunkte aller Bézierpunkte angezeigt. Ist die Option <emph>Alle Steuerpunkte im Bézier-Editor</emph> nicht aktiviert, sind nur die Steuerpunkte der ausgewählten Bézierpunkte sichtbar.</ahelp>"
#. aDatu
#: 01070100.xhp
@@ -12263,7 +12263,7 @@ msgctxt ""
"bm_id3155450\n"
"help.text"
msgid "<bookmark_value>printing; drawings defaults</bookmark_value> <bookmark_value>drawings; printing defaults</bookmark_value> <bookmark_value>pages;printing page names in presentations</bookmark_value> <bookmark_value>printing; dates in presentations</bookmark_value> <bookmark_value>dates; printing in presentations</bookmark_value> <bookmark_value>times; inserting when printing presentations</bookmark_value> <bookmark_value>printing; hidden pages of presentations</bookmark_value> <bookmark_value>hidden pages; printing in presentations</bookmark_value> <bookmark_value>printing; without scaling in presentations</bookmark_value> <bookmark_value>scaling; when printing presentations</bookmark_value> <bookmark_value>printing; fitting to pages in presentations</bookmark_value> <bookmark_value>fitting to pages; print settings in presentations</bookmark_value> <bookmark_value>printing; tiling pages in presentations</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Drucken; Voreinstellungen für Zeichnungen</bookmark_value><bookmark_value>Zeichnungen; Voreinstellungen fürs Drucken</bookmark_value><bookmark_value>Seiten; Seitennamen in Präsentationen drucken</bookmark_value><bookmark_value>Drucken; Datum in Präsentationen</bookmark_value><bookmark_value>Datum; Präsentationen drucken</bookmark_value><bookmark_value>Uhrzeit; Präsentationen drucken</bookmark_value><bookmark_value>Drucken; Ausgeblendete Folien in Präsentationen</bookmark_value><bookmark_value>Ausgeblendete Folien; Präsentationen drucken</bookmark_value><bookmark_value>Drucken; ohne Skalierung in Präsentationen</bookmark_value><bookmark_value>Skalierung; Präsentationen drucken</bookmark_value><bookmark_value>Drucken; an Seitengröße anpassen in Präsentationen</bookmark_value><bookmark_value>An Seitengröße anpassen; Druckeinstellungen in Präsentationen</bookmark_value><bookmark_value>Drucken; Folien kacheln in Präsentationen</bookmark_value>"
#. iFJBG
#: 01070400.xhp
@@ -12389,7 +12389,7 @@ msgctxt ""
"par_id3147229\n"
"help.text"
msgid "See also <link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"print_blackwhite_link\">Printing in Black and White</link>."
-msgstr ""
+msgstr "Siehe auch <link href=\"text/shared/guide/print_blackwhite.xhp\" name=\"print_blackwhite_link\">Drucken in schwarz-weiß</link>."
#. KK8qW
#: 01070400.xhp
@@ -12911,7 +12911,7 @@ msgctxt ""
"par_id3153965\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/scaleBox\">Determines the drawing scale on the status bar.</ahelp> Right-click on the scale factor in the status bar to open a list of possible values."
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/scaleBox\">Bestimmt den Zeichnungsmaßstab in der Statusleiste.</ahelp> Klicken Sie mit der rechten Maustaste auf den Maßstab in der Statusleiste, um eine Liste mit möglichen Werten zu öffnen."
#. CVDi7
#: 01070500.xhp
@@ -15467,7 +15467,7 @@ msgctxt ""
"bm_id3146799\n"
"help.text"
msgid "<bookmark_value>string;conversion to number settings</bookmark_value> <bookmark_value>string conversion to number options</bookmark_value> <bookmark_value>string;conversion to date settings</bookmark_value> <bookmark_value>string conversion to date options</bookmark_value> <bookmark_value>string;conversion to reference settings</bookmark_value> <bookmark_value>string conversion to reference options</bookmark_value> <bookmark_value>string;setting in spreadsheet formulas</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel R1C1</bookmark_value> <bookmark_value>cell reference syntax in strings;Excel A1</bookmark_value> <bookmark_value>cell reference syntax in strings;Calc A1</bookmark_value> <bookmark_value>Excel R1C1;cell reference syntax in strings</bookmark_value> <bookmark_value>Excel A1;cell reference syntax in strings</bookmark_value> <bookmark_value>Calc A1;cell reference syntax in strings</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Zeichenfolgen; Konvertierung in Zahlen</bookmark_value><bookmark_value>Optionen; Zeichenfolgen-Konvertierung in Zahlen</bookmark_value><bookmark_value>Zeichenfolgen; Konvertierung in Datum</bookmark_value><bookmark_value>Optionen; Zeichenfolgen-Konvertierung in Datum</bookmark_value><bookmark_value>Zeichenfolgen; Konvertierung in Bezügen</bookmark_value><bookmark_value>Optionen; Zeichenfolgen-Konvertierung in Bezügen</bookmark_value><bookmark_value>Zeichenfolgen; Einstellungen in Tabellen-Formeln</bookmark_value><bookmark_value>Zellbezugs-Syntax in Zeichenfolgen; Excel R1C1</bookmark_value> <bookmark_value>Zellbezugs-Syntax in Zeichenfolgen; Excel A1</bookmark_value><bookmark_value>Zellbezugs-Syntax in Zeichenfolgen; Calc A1</bookmark_value><bookmark_value>Excel R1C1; Zellbezugs-Syntax in Zeichenfolgen</bookmark_value><bookmark_value>Excel A1; Zellbezugs-Syntax in Zeichenfolgen</bookmark_value><bookmark_value>Calc A1; Zellbezugs-Syntax in Zeichenfolgen</bookmark_value>"
#. jZZNb
#: detailedcalculation.xhp
@@ -15548,7 +15548,7 @@ msgctxt ""
"par_id3067110\n"
"help.text"
msgid "<emph>Convert only if unambiguous:</emph> If the text represents a valid and unambiguous numeric value, convert it. Example: <item type=\"input\">\"123.456\"</item> will generate a #VALUE! error because the text contains a separator, while <item type=\"input\">\"123456\"</item> will not.<br/>See <link href=\"text/scalc/guide/numbers_text.xhp\" name=\"numbers_text_link\">Converting Text to Numbers</link> for details."
-msgstr ""
+msgstr "<emph>Nur eindeutige umwandeln:</emph> Wenn der Text einen gültigen und eindeutigen numerischen Wert darstellt, wird dieser konvertiert. Beispielsweise generiert <item type=\"input\">\"123.456\"</item> einen Fehler #WERT!, weil der Text ein Trennzeichen enthält, während <item type=\"input\">\"123456\"</item> keinen Fehler generiert.<br/>Siehe für Details <link href=\"text/scalc/guide/numbers_text.xhp\" name=\"numbers_text_link\">Umwandeln von Text zu Zahlen</link>."
#. Eo47W
#: detailedcalculation.xhp
@@ -17312,7 +17312,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Search Commands"
-msgstr ""
+msgstr "Befehle suchen"
#. LBGY4
#: search_commands.xhp
@@ -17321,7 +17321,7 @@ msgctxt ""
"bm_id8215627973621527\n"
"help.text"
msgid "<bookmark_value>search commands</bookmark_value> <bookmark_value>head-up display (hud)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Befehle suchen</bookmark_value><bookmark_value>Head-up display (HUD)</bookmark_value>"
#. n8hsF
#: search_commands.xhp
@@ -17330,7 +17330,7 @@ msgctxt ""
"hd_id951627860296699\n"
"help.text"
msgid "<variable id=\"SearchCommands_h1\"><link href=\"text/shared/optionen/search_commands.xhp\" name=\"SearchCommands_help\">Search Commands</link></variable>"
-msgstr ""
+msgstr "<variable id=\"SearchCommands_h1\"><link href=\"text/shared/optionen/search_commands.xhp\" name=\"SearchCommands_help\">Befehle suchen</link></variable>"
#. fVXLC
#: search_commands.xhp
@@ -17339,7 +17339,7 @@ msgctxt ""
"par_id3155069\n"
"help.text"
msgid "<variable id=\"SearchCommands_intro\"><ahelp hid=\".uno:CommandPopup\">Allows to search and execute all commands available in application menus by their names.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"SearchCommands_intro\"><ahelp hid=\".uno:CommandPopup\">Ermöglicht das Suchen und Ausführen aller Befehle, anhand ihrer Namen, die in Anwendungsmenüs verfügbar sind.</ahelp></variable>"
#. rgr85
#: search_commands.xhp
@@ -17348,7 +17348,7 @@ msgctxt ""
"par_id961562795750725\n"
"help.text"
msgid "Choose <menuitem>Help - Search Commands</menuitem>"
-msgstr ""
+msgstr "Wählen Sie <menuitem>Hilfe – Befehle suchen</menuitem>"
#. 2jAJE
#: search_commands.xhp
@@ -17357,7 +17357,7 @@ msgctxt ""
"par_id961562795754587\n"
"help.text"
msgid "Use the shortcut <emph>Shift + Esc</emph>"
-msgstr ""
+msgstr "Drücken Sie <emph>Umschalt+Esc</emph>"
#. 9gqGJ
#: search_commands.xhp
@@ -17366,7 +17366,7 @@ msgctxt ""
"par_id631628621951493\n"
"help.text"
msgid "When the <emph>Search Commands</emph> feature is activated, a head-up display (HUD) is shown and can be used to quickly search commands by their names. As the search string is typed, all matching commands are shown in a list below the search field."
-msgstr ""
+msgstr "Wenn die Funktion <emph>Befehle suchen</emph> aktiv ist, wird ein Head-up display (HUD) angezeigt und es kann verwendet werden, um Befehle schnell nach ihren Namen zu suchen. Wenn die Such-Zeichenfolge eingegeben wird, werden alle übereinstimmenden Befehle in einer Liste unter dem Suchfeld angezeigt."
#. LBa6c
#: search_commands.xhp
@@ -17375,7 +17375,7 @@ msgctxt ""
"par_id991628622249416\n"
"help.text"
msgid "To execute a command:"
-msgstr ""
+msgstr "Um einen Befehl auszuführen:"
#. CJ4EC
#: search_commands.xhp
@@ -17384,7 +17384,7 @@ msgctxt ""
"par_id521628622272041\n"
"help.text"
msgid "Use the mouse to click on one of the items shown in the list. This will immediately run the selected command."
-msgstr ""
+msgstr "Klicken Sie mit der Maus auf eines der in der Liste angezeigten Elemente. Dadurch wird der ausgewählte Befehl sofort ausgeführt."
#. uEWNu
#: search_commands.xhp
@@ -17393,7 +17393,7 @@ msgctxt ""
"par_id551628622272467\n"
"help.text"
msgid "Use the arrow keys in the keyboard to navigate through the items shown in the list and press <emph>Enter</emph> to run the desired command."
-msgstr ""
+msgstr "Verwenden Sie die Pfeiltasten der Tastatur, um durch die in der Liste angezeigten Elemente zu navigieren, und drücken Sie <emph>Eingabe</emph>, um den gewünschten Befehl auszuführen."
#. XFXXZ
#: search_commands.xhp
@@ -17402,7 +17402,7 @@ msgctxt ""
"par_id41628622450782\n"
"help.text"
msgid "This feature is available in Writer, Calc, Impress and Draw."
-msgstr ""
+msgstr "Diese Funktion ist in Writer, Calc, Impress und Draw verfügbar."
#. uqPJR
#: securityoptionsdialog.xhp
@@ -17420,7 +17420,7 @@ msgctxt ""
"bm_id2322154\n"
"help.text"
msgid "<bookmark_value>selecting;security warnings</bookmark_value> <bookmark_value>selecting;security options</bookmark_value> <bookmark_value>options;security</bookmark_value> <bookmark_value>warnings;security</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Auswählen; Sicherheitswarnungen</bookmark_value><bookmark_value>Auswählen; Sicherheitsoptionen</bookmark_value><bookmark_value>Optionen; Sicherheit</bookmark_value><bookmark_value>Warnungen; Sicherheit</bookmark_value>"
#. EsBEH
#: securityoptionsdialog.xhp
@@ -17546,7 +17546,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/securityoptionsdialog/removepersonal\">Select to always remove user data from file properties, comments and tracked changes. The names of authors in comments and changes will be replaced by generic values as \"Author1\", \"Author2\" and so forth. Time values will also be reset to a single standard value. If this option is not selected, you can still remove the personal information for the current document with the <emph>Reset Properties</emph> button on <emph>File - Properties - General</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/securityoptionsdialog/removepersonal\">Wählen Sie diese Option, um Benutzerdaten immer aus Dateieigenschaften, Kommentaren und aufgezeichneten Änderungen zu entfernen. Die Namen der Autoren in Kommentaren und Änderungen werden durch allgemeine Werte wie \"Autor1\", \"Autor2\", … ersetzt. Zeitwerte werden auch auf einen einzelnen Standardwert zurückgesetzt. Wenn diese Option nicht ausgewählt ist, können Sie die persönlichen Informationen für das aktuelle Dokument weiterhin über die Schaltfläche <emph>Eigenschaften zurücksetzen</emph> unter <emph>Datei – Eigenschaften… – Register: Allgemein</emph> entfernen.</ahelp>"
#. HJEQF
#: securityoptionsdialog.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index 496b1b91e95..2ca3a7d0b19 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/01.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-10-25 12:49+0200\n"
-"PO-Revision-Date: 2022-03-11 13:07+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsimpress01/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565593584.000000\n"
#. mu9aV
@@ -464,7 +464,7 @@ msgctxt ""
"par_id3154015\n"
"help.text"
msgid "You can <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">dock</link> the Navigator to the edge of your workspace."
-msgstr ""
+msgstr "Sie können den Navigator an den Rand Ihres Arbeitsbereichs <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">andocken</link>."
#. C3o34
#: 02110000.xhp
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3149979\n"
"help.text"
msgid "Drag Mode"
-msgstr "Dragmodus"
+msgstr "Ziehmodus"
#. yNjjZ
#: 02110000.xhp
@@ -761,7 +761,7 @@ msgctxt ""
"par_id3153747\n"
"help.text"
msgid "Inserts slides as a <link href=\"text/shared/00/00000005.xhp#link\" name=\"link\">link</link> into the active slide."
-msgstr ""
+msgstr "Fügt eine Folie als <link href=\"text/shared/00/00000005.xhp#link\" name=\"link\">Verknüpfung</link> in die aktive Folie ein."
#. 3RHDp
#: 02110000.xhp
@@ -3902,7 +3902,7 @@ msgctxt ""
"hd_id3164253\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Master Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Change Slide Master\">Masterfolie</link>"
#. Pz8J7
#: 05120000.xhp
@@ -3911,7 +3911,7 @@ msgctxt ""
"par_id3108485\n"
"help.text"
msgid "<variable id=\"masterpagetext\"><ahelp hid=\".uno:PresentationLayout\">Displays the <emph>Available Master Slides</emph> dialog, where you can select a layout scheme for the current page. Any objects in the page design are inserted behind objects in the current page.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"masterpagetext\"><ahelp hid=\".uno:PresentationLayout\">Zeigt den Dialog <emph>Verfügbare Masterfolien</emph> an, in dem Sie eine Folienvorlage für die aktuelle Folie auswählen können. Alle Objekte im Foliendesign werden hinter Objekten in der aktuellen Folie eingefügt.</ahelp></variable>"
#. Jg7LJ
#: 05120000.xhp
@@ -4001,7 +4001,7 @@ msgctxt ""
"par_id3956020\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Page</emph></link> dialog, where you can select additional page designs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Zeigt den Dialog <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Masterfolie laden</emph></link> an, in dem Sie weitere Folienvorlagen auswählen können.</ahelp>"
#. LZr7A
#: 05120000.xhp
@@ -4010,7 +4010,7 @@ msgctxt ""
"par_id3156020\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Displays the <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Load Master Slide</emph></link> dialog, where you can select additional slide designs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/slidedesigndialog/load\">Zeigt den Dialog <link href=\"text/swriter/01/05170000.xhp\" name=\"Load Master Slide\"><emph>Masterfolie laden</emph></link> an, in dem Sie weitere Folienvorlagen auswählen können.</ahelp>"
#. BLSEy
#: 05120500m.xhp
@@ -4568,7 +4568,7 @@ msgctxt ""
"hd_id291634825392062\n"
"help.text"
msgid "Line spacing"
-msgstr ""
+msgstr "Linienabstand"
#. t5Pe9
#: 05170000.xhp
@@ -4658,7 +4658,7 @@ msgctxt ""
"hd_id3147369\n"
"help.text"
msgid "Reset line skew"
-msgstr "Linienverlauf zurücksetzen"
+msgstr "Linienversatz zurücksetzen"
#. Y3yHa
#: 05170000.xhp
@@ -4667,7 +4667,7 @@ msgctxt ""
"par_id3159205\n"
"help.text"
msgid "<ahelp hid=\".uno:NewRouting\">Resets the line skew values to the default.</ahelp> (This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">context menu</link>)."
-msgstr ""
+msgstr "<ahelp hid=\".uno:NewRouting\">Setzt den Linienversatz auf die Standardwerte zurück.</ahelp> (Dieser Befehl ist nur über das <link href=\"text/shared/00/00000005.xhp#contextmenu\" name=\"context menu\">Kontextmenü</link> erreichbar)."
#. JLBKm
#: 05250000.xhp
@@ -6971,7 +6971,7 @@ msgctxt ""
"hd_id3154659\n"
"help.text"
msgid "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\" name=\"CustomShow_link\">Custom Slide Shows</link></variable>"
-msgstr ""
+msgstr "<variable id=\"CustomShow_h1\"><link href=\"text/simpress/01/06100000.xhp\" name=\"CustomShow_link\">Individuelle Präsentationen</link></variable>"
#. EB558
#: 06100000.xhp
@@ -6980,7 +6980,7 @@ msgctxt ""
"par_id3149207\n"
"help.text"
msgid "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Defines a custom slide show using slides within the current presentation. You can then pick slides to meet the needs of your audience. You can create as many custom slide shows as you want.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"indipraesent\"><ahelp hid=\".uno:CustomShowDialog\">Legt eine individuelle Präsentation auf Grundlage von Folien der aktuellen Präsentation fest. Sie können dann Folien auswählen, die den Bedürfnissen Ihres Publikums entsprechen. Sie können beliebig viele individuelle Präsentationen erstellen.</ahelp></variable>"
#. YgWfS
#: 06100000.xhp
@@ -6989,7 +6989,7 @@ msgctxt ""
"par_id641634164174393\n"
"help.text"
msgid "Read the help page <link href=\"text/simpress/guide/individual.xhp#individual\">Creating a Custom Slide Show</link> to learn more about how to set up your own custom slide shows."
-msgstr ""
+msgstr "Lesen Sie die Hilfeseite <link href=\"text/simpress/guide/individual.xhp#individual\">Erstellen einer benutzerdefinierten Präsentation</link>, um mehr darüber zu erfahren, wie Sie Ihre eigenen benutzerdefinierten Präsentationen einrichten."
#. JyjJt
#: 06100000.xhp
@@ -6998,7 +6998,7 @@ msgctxt ""
"hd_id3155530\n"
"help.text"
msgid "List of custom slide shows"
-msgstr ""
+msgstr "Liste der individuellen Präsentationen"
#. 9WeMN
#: 06100000.xhp
@@ -7007,7 +7007,7 @@ msgctxt ""
"par_id3156449\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Lists the custom slide shows that are available in the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/customshowlist\">Listet die individuellen Präsentationen auf, die im Dokument verfügbar sind.</ahelp>"
#. T3UBF
#: 06100000.xhp
@@ -7034,7 +7034,7 @@ msgctxt ""
"par_id3153250\n"
"help.text"
msgid "Select a custom slide show from the list."
-msgstr ""
+msgstr "Wählen Sie eine individuelle Präsentation aus der Liste aus."
#. yFmBx
#: 06100000.xhp
@@ -7106,7 +7106,7 @@ msgctxt ""
"par_id3157907\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the selected custom slide show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Startet die ausgewählte individuelle Präsentation.</ahelp>"
#. u5kLV
#: 06100100.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/02.po b/source/de/helpcontent2/source/text/simpress/02.po
index 292668d30f1..63f302d6ee0 100644
--- a/source/de/helpcontent2/source/text/simpress/02.po
+++ b/source/de/helpcontent2/source/text/simpress/02.po
@@ -4,16 +4,16 @@ 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-20 13:03+0200\n"
-"PO-Revision-Date: 2022-01-06 07:38+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress02/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsimpress02/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1557892821.000000\n"
#. AiACn
@@ -761,7 +761,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "Choose <menuitem>View - Toolbars - Transformations</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Ansicht – Symbolleisten – Anpassen…</menuitem>"
#. iDvMV
#: 10030000.xhp
@@ -770,7 +770,7 @@ msgctxt ""
"par_id401626114053741\n"
"help.text"
msgid "Click the arrow next to the <emph>Transformations</emph> icon on the <emph>Standard</emph> bar."
-msgstr ""
+msgstr "Klicken Sie auf den Pfeil neben dem Symbol <emph>Übergänge</emph> in der Symbolleiste <emph>Standard</emph>."
#. QAxua
#: 10030000.xhp
@@ -833,7 +833,7 @@ msgctxt ""
"par_id3146962\n"
"help.text"
msgid "<image id=\"img_id3153811\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153811\">Icon Rotate</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153811\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153811\">Symbol für Drehen</alt></image>"
#. WCPSb
#: 10030000.xhp
@@ -914,7 +914,7 @@ msgctxt ""
"par_id3150928\n"
"help.text"
msgid "<image id=\"img_id3145295\" src=\"svx/res/rotate3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145295\">Icon In 3D rotation object</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145295\" src=\"svx/res/rotate3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3145295\">Symbol für In 3D-Rotationskörper</alt></image>"
#. vCf5c
#: 10030000.xhp
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<image id=\"img_id3083443\" src=\"cmd/sc_crookslant.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3083443\">Icon Set in circle</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3083443\" src=\"cmd/sc_crookslant.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3083443\">Symbol für Setzen auf Kreis (perspektivisch)</alt></image>"
#. jQBPp
#: 10030000.xhp
@@ -986,7 +986,7 @@ msgctxt ""
"par_id3150875\n"
"help.text"
msgid "<image id=\"img_id3150882\" src=\"cmd/sc_crookrotate.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150882\">Icon Set to circle</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150882\" src=\"cmd/sc_crookrotate.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150882\">Symbol für Setzen auf Kreis (schräg stellen)</alt></image>"
#. CHQyt
#: 10030000.xhp
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id3154693\n"
"help.text"
msgid "<image id=\"img_id3154933\" src=\"cmd/sc_shear.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154933\">Icon Distort</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154933\" src=\"cmd/sc_shear.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154933\">Symbol für Verzerren</alt></image>"
#. 5Fh3F
#: 10030000.xhp
@@ -1076,7 +1076,7 @@ msgctxt ""
"par_id3154602\n"
"help.text"
msgid "<image id=\"img_id3154790\" src=\"cmd/sc_interactivetransparence.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154790\">Icon Transparency</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154790\" src=\"cmd/sc_interactivetransparence.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154790\">Symbol für Transparenz</alt></image>"
#. xZb79
#: 10030000.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id3150990\n"
"help.text"
msgid "<image id=\"img_id3151102\" src=\"cmd/sc_interactivegradient.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151102\">Icon Gradient</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151102\" src=\"cmd/sc_interactivegradient.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151102\">Symbol für Farbverlauf</alt></image>"
#. nVb58
#: 10030000.xhp
@@ -1148,7 +1148,7 @@ msgctxt ""
"bm_id3149948\n"
"help.text"
msgid "<bookmark_value>object bars; editing gluepoints</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Symbolleisten für Objekte; Klebepunkte bearbeiten</bookmark_value>"
#. GWD99
#: 10030200.xhp
@@ -1157,7 +1157,7 @@ msgctxt ""
"hd_id3149948\n"
"help.text"
msgid "<variable id=\"gluepointsbar\"><link href=\"text/simpress/02/10030200.xhp\">Gluepoints Bar</link></variable>"
-msgstr ""
+msgstr "<variable id=\"gluepointsbar\"><link href=\"text/simpress/02/10030200.xhp\">Symbolleiste Klebepunkte</link></variable>"
#. CjR3U
#: 10030200.xhp
@@ -1175,7 +1175,7 @@ msgctxt ""
"hd_id3149876\n"
"help.text"
msgid "Insert Gluepoint"
-msgstr ""
+msgstr "Klebepunkt einfügen"
#. ddyBH
#: 10030200.xhp
@@ -1355,7 +1355,7 @@ msgctxt ""
"hd_id3150875\n"
"help.text"
msgid "Gluepoint Relative"
-msgstr ""
+msgstr "Relativer Kebepunkt"
#. eaDid
#: 10030200.xhp
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3149286\n"
"help.text"
msgid "Gluepoint Relative"
-msgstr ""
+msgstr "Relativer Kebepunkt"
#. SpABR
#: 10030200.xhp
@@ -1391,7 +1391,7 @@ msgctxt ""
"hd_id3149755\n"
"help.text"
msgid "Gluepoint Horizontal Left"
-msgstr ""
+msgstr "Klebepunkt horizontal links"
#. 3QrV9
#: 10030200.xhp
@@ -1418,7 +1418,7 @@ msgctxt ""
"par_id3158405\n"
"help.text"
msgid "Gluepoint Horizontal Left"
-msgstr ""
+msgstr "Klebepunkt horizontal links"
#. Wwiiy
#: 10030200.xhp
@@ -1427,7 +1427,7 @@ msgctxt ""
"hd_id3154214\n"
"help.text"
msgid "Gluepoint Horizontal Center"
-msgstr ""
+msgstr "Klebepunkt horizontal zentriert"
#. sFGAs
#: 10030200.xhp
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id3150706\n"
"help.text"
msgid "Gluepoint Horizontal Center"
-msgstr ""
+msgstr "Klebepunkt horizontal zentriert"
#. pGdhP
#: 10030200.xhp
@@ -1463,7 +1463,7 @@ msgctxt ""
"hd_id3153748\n"
"help.text"
msgid "Gluepoint Horizontal Right"
-msgstr ""
+msgstr "Klebepunkt horizontal rechts"
#. j57kW
#: 10030200.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"par_id3154799\n"
"help.text"
msgid "Gluepoint Horizontal Right"
-msgstr ""
+msgstr "Klebepunkt horizontal rechts"
#. CqkDB
#: 10030200.xhp
@@ -1499,7 +1499,7 @@ msgctxt ""
"hd_id3153540\n"
"help.text"
msgid "Gluepoint Vertical Top"
-msgstr ""
+msgstr "Klebepunkt vertikal oben"
#. HTixw
#: 10030200.xhp
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id3148681\n"
"help.text"
msgid "Gluepoint Vertical Top"
-msgstr ""
+msgstr "Klebepunkt vertikal oben"
#. V5AvY
#: 10030200.xhp
@@ -1535,7 +1535,7 @@ msgctxt ""
"hd_id3153678\n"
"help.text"
msgid "Gluepoint Vertical Center"
-msgstr ""
+msgstr "Klebepunkt vertikal mittig"
#. M5aQi
#: 10030200.xhp
@@ -1562,7 +1562,7 @@ msgctxt ""
"par_id3146130\n"
"help.text"
msgid "Gluepoint Vertical Center"
-msgstr ""
+msgstr "Klebepunkt vertikal mittig"
#. MbCWi
#: 10030200.xhp
@@ -1571,7 +1571,7 @@ msgctxt ""
"hd_id3147529\n"
"help.text"
msgid "Gluepoint Vertical Bottom"
-msgstr ""
+msgstr "Klebepunkt vertikal unten"
#. azpMi
#: 10030200.xhp
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id3156204\n"
"help.text"
msgid "Gluepoint Vertical Bottom"
-msgstr ""
+msgstr "Klebepunkt vertikal unten"
#. dkHqv
#: 10050000.xhp
@@ -3416,7 +3416,7 @@ msgctxt ""
"par_id3148604\n"
"help.text"
msgid "When you click a connector and move your mouse pointer over a filled object, or the edge of an unfilled object, gluepoints appear. A gluepoint is a fixed point where you can attach a connector line. You can add custom <link href=\"text/simpress/02/10030200.xhp\" name=\"gluepoint\">gluepoints</link> to an object."
-msgstr ""
+msgstr "Wenn Sie auf einen Verbinder klicken und den Mauszeiger über ein gefülltes Objekt oder den Rand eines ungefüllten Objekts bewegen, werden Klebepunkte angezeigt. Ein Klebepunkt ist ein fester Punkt, an dem Sie einen Verbinder verankert können. Sie können auch benutzerdefinierte <link href=\"text/simpress/02/10030200.xhp\" name=\"gluepoint\">Klebepunkte</link> zu einem Objekt hinzufügen."
#. qX29Y
#: 10100000.xhp
@@ -5297,7 +5297,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Gluepoints"
-msgstr ""
+msgstr "Klebepunkte"
#. 6MNBW
#: 13010000.xhp
@@ -5306,7 +5306,7 @@ msgctxt ""
"hd_id3153144\n"
"help.text"
msgid "<link href=\"text/simpress/02/13010000.xhp\" name=\"Gluepoints\">Gluepoints</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/13010000.xhp\" name=\"Gluepoints\">Klebepunkte</link>"
#. 9qUBf
#: 13010000.xhp
@@ -5315,7 +5315,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:GlueEditMode\">Insert or modify the properties of a gluepoint. A gluepoint is a custom connection point where you can attach a <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">connector</link> line.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:GlueEditMode\">Fügt einen Klebepunkt ein oder ändert dessen Eigenschaften. Ein Klebepunkt ist ein benutzerdefinierter Verbindungspunkt, an dem Sie einen <link href=\"text/simpress/02/10100000.xhp\" name=\"connector\">Verbinder</link> verankern können.</ahelp>"
#. cSpbQ
#: 13010000.xhp
@@ -5333,7 +5333,7 @@ msgctxt ""
"par_id3147339\n"
"help.text"
msgid "Show Gluepoints Functions"
-msgstr ""
+msgstr "Klebepunkt-Funktionen anzeigen"
#. FipQc
#: 13020000.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/guide.po b/source/de/helpcontent2/source/text/simpress/guide.po
index 6af27570313..54bb9d2bf3d 100644
--- a/source/de/helpcontent2/source/text/simpress/guide.po
+++ b/source/de/helpcontent2/source/text/simpress/guide.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-10-25 12:49+0200\n"
-"PO-Revision-Date: 2022-05-18 09:27+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textsimpressguide/de/>\n"
"Language: de\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1561609713.000000\n"
#. S83CC
@@ -995,7 +995,7 @@ msgctxt ""
"par_id3155067\n"
"help.text"
msgid "You can change the background color or the background fill of the current slide or all of the slides in your document. For a background fill, you can use hatching, a gradient, or an image."
-msgstr ""
+msgstr "Sie können die Hintergrundfarbe oder -füllung der aktuellen Folie oder aller Folien eines Dokuments ändern. Als Hintergrundfüllung ist eine Schraffur, ein Farbverlauf oder ein Bild möglich."
#. SEPCz
#: background.xhp
@@ -1013,7 +1013,7 @@ msgctxt ""
"par_id624713\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click Set Background Picture for Slide in the context menu of a slide in Normal view to select an image file. This file is used as a background picture.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klicken Sie in der Normalansicht im Kontextmenü einer Folie auf »Hintergrundgrafik der Folie festlegen…«, um eine Bild-Datei auszuwählen. Diese Datei wird als Hintergrundbild verwendet.</ahelp>"
#. 6eFDv
#: background.xhp
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id4155067\n"
"help.text"
msgid "You can change the background color or the background fill of the current page or all of the pages in your document. For a background fill, you can use hatching, a gradient, or an image."
-msgstr ""
+msgstr "Sie können die Hintergrundfarbe oder -füllung der aktuellen Folie oder aller Folien eines Dokuments ändern. Als Hintergrundfüllung ist eine Schraffur, ein Farbverlauf oder ein Bild möglich."
#. BUHu6
#: background.xhp
@@ -1040,7 +1040,7 @@ msgctxt ""
"par_id644713\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click Set Background Picture for Page in the context menu of a page in Normal view to select an image file. This file is used as a background picture.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Klicken Sie in der Normalansicht im Kontextmenü einer Folie auf »Hintergrundgrafik der Folie festlegen…«, um eine Bild-Datei auszuwählen. Diese Datei wird als Hintergrundbild verwendet.</ahelp>"
#. KuE3E
#: background.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id3145356\n"
"help.text"
msgid "In the <emph>Fill </emph>area, select <emph>Image</emph>, and then click an image in the list."
-msgstr ""
+msgstr "Im Bereich <emph>Füllung </emph>wählen Sie <emph>Bild</emph> und klicken dann auf ein Bild in der Liste."
#. 8yUQT
#: background.xhp
@@ -1625,7 +1625,7 @@ msgctxt ""
"bm_id0919200803534995\n"
"help.text"
msgid "<bookmark_value>gluepoints;using</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Klebepunkte; Verwenden</bookmark_value>"
#. W457q
#: gluepoints.xhp
@@ -1661,7 +1661,7 @@ msgctxt ""
"par_id091920080304108\n"
"help.text"
msgid "Do one of the following to get existing gluepoints visible for all elements:"
-msgstr ""
+msgstr "Führen Sie einen der folgenden Schritte aus, um vorhandene Klebepunkte für alle Elemente sichtbar zu machen:"
#. YAFf7
#: gluepoints.xhp
@@ -1670,7 +1670,7 @@ msgctxt ""
"par_id0919200803041082\n"
"help.text"
msgid "Click the <emph>Gluepoints</emph> icon on the Drawing toolbar; or"
-msgstr ""
+msgstr "Klicken Sie auf das Symbol <emph>Klebpunkte</emph> in der Symbolleiste Zeichnung; oder"
#. R7Yw9
#: gluepoints.xhp
@@ -1679,7 +1679,7 @@ msgctxt ""
"par_id0919200803041186\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Gluepoints</item>."
-msgstr ""
+msgstr "Wählen Sie <item type=\"menuitem\">Bearbeiten – Klebepunkte</item>."
#. bdm6Q
#: gluepoints.xhp
@@ -1688,7 +1688,7 @@ msgctxt ""
"par_id0919200803041160\n"
"help.text"
msgid "Click the <emph>Insert Gluepoint</emph> icon on the Gluepoints toolbar."
-msgstr ""
+msgstr "Klicken Sie auf das Symbol <emph>Klebepunkt einfügen</emph> in der Symbolleiste Klebepunkte."
#. CEpWX
#: gluepoints.xhp
@@ -1697,7 +1697,7 @@ msgctxt ""
"par_id09192008030411601\n"
"help.text"
msgid "Select element on slide where you want to add gluepoints."
-msgstr ""
+msgstr "Wählen Sie das Element auf der Folie aus, dem Sie Klebepunkte hinzufügen möchten."
#. si9dG
#: gluepoints.xhp
@@ -1715,7 +1715,7 @@ msgctxt ""
"par_id0919200803041133\n"
"help.text"
msgid "If the shape is filled, you can click anywhere inside the shape. If the shape is unfilled, you can click the border to insert a gluepoint. Once inserted, you can drag the gluepoint to another position inside the shape."
-msgstr ""
+msgstr "Wenn die Form gefüllt ist, können Sie auf eine beliebige Stelle innerhalb der Form klicken. Wenn die Form nicht gefüllt ist, können Sie auf den Rahmen klicken, um einen Klebepunkt einzufügen. Nach dem Einfügen können Sie den Klebepunkt an eine andere Position innerhalb der Form ziehen."
#. bPCgi
#: gluepoints.xhp
@@ -1724,7 +1724,7 @@ msgctxt ""
"par_id0919200803041250\n"
"help.text"
msgid "With the four icons next to the <emph>Insert Gluepoint</emph> icon, you choose the directions which will be permitted for a connector at this gluepoint. You can choose one or more directions for a particular gluepoint."
-msgstr ""
+msgstr "Mit den vier Symbolen neben dem Symbol <emph>Klebepunkt einfügen</emph> wählen Sie die Richtungen aus, die für einen Verbinder an diesem Klebepunkt zulässig sind. Sie können eine oder mehrere Richtungen für einen bestimmten Klebepunkt auswählen."
#. 88UhH
#: gluepoints.xhp
@@ -1733,7 +1733,7 @@ msgctxt ""
"par_id0919200803041298\n"
"help.text"
msgid "If the <emph>Gluepoint Relative</emph> icon is active, the gluepoint moves when you resize the object to keep its position relative to the object borders."
-msgstr ""
+msgstr "Wenn das Symbol <emph>Relativer Klebepunkt</emph> aktiv ist, bewegt sich der Klebepunkt, wenn Sie die Größe des Objektes verändern, um seine relative Position zum Objektrahmen beizubehalten."
#. qqnmk
#: gluepoints.xhp
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id0919200803041223\n"
"help.text"
msgid "If the <emph>Gluepoint Relative</emph> icon is not active, the icons next to it are no longer grayed out. With these icons you can decide where a gluepoint will be placed when the size of the object is changed."
-msgstr ""
+msgstr "Wenn das Symbol <emph>Relativer Klebepunkt</emph> nicht aktiv ist, sind die Symbole daneben nicht mehr ausgegraut. Mit diesen Symbolen können Sie entscheiden, wo ein Klebepunkt platziert wird, wenn Sie die Größe des Objektes verändern."
#. bvoTQ
#: html_export.xhp
@@ -3776,7 +3776,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "Select <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Slide - Change Slide Master</menuitem></caseinline><defaultinline><menuitem>Page - Master Page</menuitem></defaultinline></switchinline>."
-msgstr ""
+msgstr "Wählen Sie <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><menuitem>Folie – Folienmaster ändern…</menuitem></caseinline><defaultinline><menuitem>Folie – Masterfolie…</menuitem></defaultinline></switchinline>."
#. AvkGN
#: masterpage.xhp
@@ -3866,7 +3866,7 @@ msgctxt ""
"par_id21631211553150\n"
"help.text"
msgid "Check <emph>Delete unused backgrounds</emph> to remove unreferenced background slides and presentation layouts from the document."
-msgstr ""
+msgstr "Markieren Sie <emph>Nicht verwendete Hintergründe löschen</emph>, um nicht verwendete Hintergründe und Präsentations-Layouts zu entfernen."
#. rnFQF
#: masterpage.xhp
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id3156257\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Gluepoints</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Gluepoints\">Klebepunkte</link>"
#. 3LhEr
#: page_copy.xhp
@@ -4424,7 +4424,7 @@ msgctxt ""
"bm_id3149871\n"
"help.text"
msgid "<bookmark_value>colors; default colors</bookmark_value><bookmark_value>colors; LibreOffice colors</bookmark_value><bookmark_value>LibreOffice colors</bookmark_value><bookmark_value>colors; HLC colors</bookmark_value><bookmark_value>Material Design colors</bookmark_value><bookmark_value>colors; web</bookmark_value><bookmark_value>colors; freieFarbe</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Farben; Standardfarben</bookmark_value><bookmark_value>Farben; LibreOffice-Farben</bookmark_value><bookmark_value>LibreOffice-Farben</bookmark_value><bookmark_value>Farben; HLC-Farben</bookmark_value><bookmark_value>Material-Design; Farben</bookmark_value><bookmark_value>Farben; Web</bookmark_value><bookmark_value>Farben; FreeColour</bookmark_value>"
#. eBU5D
#: palette_files.xhp
@@ -4433,7 +4433,7 @@ msgctxt ""
"par_id3149871\n"
"help.text"
msgid "The freieFarbe HLC color list is based on the CIELAB model and is optimized for professional CMYK printing. The colors in the Compatibility and HTML lists are optimized for displays using a resolution of 256 colors. The palettes “LibreOffice” and “Material” contain the official LibreOffice and Material Design palettes respectively. The tonal.soc palette provides a set of colors organized by luminance contrast that work across different hardware."
-msgstr ""
+msgstr "Die Farbpalette \"FreeColour-HLC\" basiert auf dem CIELAB-Modell und ist für den professionellen CMYK-Druck optimiert. Die Farbpaletten \"Compatibility\" und \"HTML\" sind für Anzeigen mit einer Auflösung von 256 Farben optimiert. Die Farbpaletten \"LibreOffice\" und \"Material\" enthalten die offiziellen Farbpaletten von LibreOffice bzw. Material-Design. Die Farbpalette \"Tonal\" bietet eine Reihe von Farben, die nach Helligkeitskontrast organisiert sind und auf unterschiedlicher Hardware funktionieren."
#. zAWpj
#: palette_files.xhp
@@ -5585,7 +5585,7 @@ msgctxt ""
"bm_id5592516\n"
"help.text"
msgid "<bookmark_value>running slide shows</bookmark_value> <bookmark_value>showing;slide shows</bookmark_value> <bookmark_value>slide shows; starting</bookmark_value> <bookmark_value>presentations; starting</bookmark_value> <bookmark_value>starting; slide shows</bookmark_value> <bookmark_value>automatic slide shows</bookmark_value> <bookmark_value>slide transitions;automatic</bookmark_value> <bookmark_value>automatic slide transition</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Präsentationen ausführen</bookmark_value><bookmark_value>Zeigen; Präsentationen</bookmark_value><bookmark_value>Diashows; starten</bookmark_value><bookmark_value>Präsentationen; starten</bookmark_value><bookmark_value>Starten; Präsentationen</bookmark_value><bookmark_value>Automatische Präsentation</bookmark_value><bookmark_value>Folienübergänge; automatisch</bookmark_value><bookmark_value>automatischer Folienübergang</bookmark_value>"
#. ZwZRH
#: show.xhp
@@ -5648,7 +5648,7 @@ msgctxt ""
"par_id391634159318692\n"
"help.text"
msgid "Press <keycode>Esc</keycode> to abort the slide show before its end."
-msgstr ""
+msgstr "Drücken Sie <keycode>Esc</keycode>, um die Bildschirmpräsentation vor ihrem Ende abzubrechen."
#. yF4a5
#: show.xhp
@@ -5693,7 +5693,7 @@ msgctxt ""
"par_id9168980\n"
"help.text"
msgid "In the <emph>Advance Slide</emph> area, click <emph>After</emph> and enter a time duration."
-msgstr ""
+msgstr "Im Bereich <emph>Folienwechsel</emph> klicken Sie auf <emph>Nach</emph> und geben eine Zeitdauer ein."
#. HfVRx
#: show.xhp
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_id9766533\n"
"help.text"
msgid "Click <emph>Apply Transition to All Slides</emph>."
-msgstr ""
+msgstr "Klicken Sie auf <emph>Übergang für alle Folien übernehmen</emph>."
#. yfpGu
#: show.xhp
@@ -5738,7 +5738,7 @@ msgctxt ""
"par_id1336405\n"
"help.text"
msgid "In the <emph>Presentation Mode</emph> area, choose <emph>Loop and repeat after</emph> and set the duration of the pause between shows."
-msgstr ""
+msgstr "Im Bereich <emph>Präsentationsmodus</emph> wählen Sie <emph>Schleife und wiederholen nach</emph> und geben die Länge der Pause zwischen den Wiederholungen ein."
#. A4BCr
#: show.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index c8ef81a210a..4e5428d6924 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.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-11-24 12:03+0100\n"
-"PO-Revision-Date: 2022-01-26 12:49+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter01/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565411718.000000\n"
#. sZfWF
@@ -698,7 +698,7 @@ msgctxt ""
"par_id3149802\n"
"help.text"
msgid "<ahelp hid=\".\">Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents.</ahelp> To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">dock</link> the Navigator at the edge of your workspace."
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt oder verbirgt den Navigator, in dem Sie schnell zu verschiedenen Teilen Ihres Dokuments springen können. Der Navigator ist auch als Bereich in der Seitenleiste verfügbar. Sie können den Navigator auch verwenden, um Elemente aus dem aktuellen Dokument oder anderen geöffneten Dokumenten einzufügen und Masterdokumente zu organisieren.</ahelp> Um ein Element im Navigator zu bearbeiten, klicken Sie mit der rechten Maustaste auf das Element und wählen Sie dann einen Befehl aus dem Kontextmenü. Wenn Sie möchten, können Sie den Navigator am Rand Ihres Arbeitsbereichs <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">andocken</link>."
#. 3Bt3V
#: 02110000.xhp
@@ -4469,7 +4469,7 @@ msgctxt ""
"hd_id3145827\n"
"help.text"
msgid "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\" name=\"04010000_link\">Insert Manual Break</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ManualBreak_h1\"><link href=\"text/swriter/01/04010000.xhp\" name=\"04010000_link\">Manuellen Umbruch einfügen</link></variable>"
#. BMEC5
#: 04010000.xhp
@@ -4604,7 +4604,7 @@ msgctxt ""
"par_id71633464502255\n"
"help.text"
msgid "To switch between landscape and portrait orientation, choose the <emph>Default Page Style</emph> to apply portrait orientation or the <emph>Landscape</emph> style to apply landscape orientation."
-msgstr ""
+msgstr "Um zwischen Quer- und Hochformat zu wechseln, wählen Sie die Seitenvorlage <emph>Standard</emph>, um die Ausrichtung Hochformat anzuwenden, oder die Seitenvorlage <emph>Querformat</emph>, um die Ausrichtung Querformat anzuwenden."
#. iEpne
#: 04010000.xhp
@@ -7403,7 +7403,7 @@ msgctxt ""
"par_id7374187\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, select a format in the \"Refer using\" list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Listet die verfügbaren Felder für den Feldtyp auf, der in der Liste <emph>Typ</emph> ausgewählt wurde. Um ein Feld einzufügen, klicken Sie auf das Feld, wählen Sie ein Format in der Liste „Verweis verwenden“ und klicken Sie dann auf <emph>Einfügen</emph>.</ahelp>"
#. ABxYv
#: 04090002.xhp
@@ -7421,7 +7421,7 @@ msgctxt ""
"par_id2171086\n"
"help.text"
msgid "In the <emph>Refer using</emph> list, click the format that you want to use."
-msgstr ""
+msgstr "Klicken Sie in der Liste <emph>Verweis verwenden</emph> auf das Format, das Sie verwenden möchten."
#. ESKFM
#: 04090002.xhp
@@ -7430,7 +7430,7 @@ msgctxt ""
"hd_id3154333\n"
"help.text"
msgid "Refer using"
-msgstr ""
+msgstr "Verweis verwenden"
#. hvMHh
#: 04090002.xhp
@@ -7466,7 +7466,7 @@ msgctxt ""
"par_id3150039\n"
"help.text"
msgid "Page number (unstyled)"
-msgstr ""
+msgstr "Seitennummer (ohne Vorlage)"
#. 3G7sS
#: 04090002.xhp
@@ -7484,7 +7484,7 @@ msgctxt ""
"par_id3150681\n"
"help.text"
msgid "Referenced text"
-msgstr ""
+msgstr "Verweisender Text"
#. Fbhp8
#: 04090002.xhp
@@ -7520,7 +7520,7 @@ msgctxt ""
"par_id3148705\n"
"help.text"
msgid "Page number (styled)"
-msgstr ""
+msgstr "Seitennummer (mit Vorlage)"
#. NsCLY
#: 04090002.xhp
@@ -15575,7 +15575,7 @@ msgctxt ""
"hd_id3149804\n"
"help.text"
msgid "Maximum consecutive hyphenated lines"
-msgstr ""
+msgstr "Maximal aufeinanderfolgende Bindestriche"
#. Yv4JU
#: 05030200.xhp
@@ -15809,7 +15809,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<link href=\"text/shared/00/00000005.xhp#widows_and_orphans\" name=\"Orphans\">Orphans</link>."
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000005.xhp#widows_and_orphans\" name=\"Orphans\">Schusterjungen</link>."
#. ZG3Lb
#: 05030400.xhp
@@ -17546,7 +17546,7 @@ msgctxt ""
"bm_id9646290\n"
"help.text"
msgid "<bookmark_value>resizing;aspect ratio</bookmark_value> <bookmark_value>aspect ratio;resizing objects</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Größe ändern; Seitenverhältnis</bookmark_value><bookmark_value>Seitenverhältnis; Größe von Objekten ändern</bookmark_value>"
#. aWPDS
#: 05060100.xhp
@@ -17915,7 +17915,7 @@ msgctxt ""
"par_id3149213\n"
"help.text"
msgid "<ahelp hid=\".\">Select the reference point for the selected horizontal alignment option.</ahelp> The following options are available:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wählen Sie den Referenzpunkt für die ausgewählte horizontale Positionierung aus.</ahelp> Die folgenden Optionen sind verfügbar:"
#. pSgnp
#: 05060100.xhp
@@ -17924,7 +17924,7 @@ msgctxt ""
"par_id521629211712372\n"
"help.text"
msgid "<emph>Paragraph area:</emph> the object is positioned considering the whole width available for the paragraph, including indent spaces."
-msgstr ""
+msgstr "<emph>Absatzbereich:</emph> Das Objekt wird unter Berücksichtigung der gesamten für den Absatz verfügbaren Breite positioniert, einschließlich der Einzüge."
#. iWFAw
#: 05060100.xhp
@@ -17933,7 +17933,7 @@ msgctxt ""
"par_id761629211713907\n"
"help.text"
msgid "<emph>Paragraph text area:</emph> the object is positioned considering the whole width available for text in the paragraph, excluding indent spaces."
-msgstr ""
+msgstr "<emph>Absatztextbereich:</emph> Das Objekt wird unter Berücksichtigung der gesamten für Text im Absatz verfügbaren Breite positioniert, ohne Einzüge."
#. ANQo2
#: 05060100.xhp
@@ -17942,7 +17942,7 @@ msgctxt ""
"par_id821629211714199\n"
"help.text"
msgid "<emph>Left paragraph border:</emph> the object is positioned considering the width of the indent space available to the left of the paragraph."
-msgstr ""
+msgstr "<emph>Absatzrand links:</emph> Das Objekt wird unter Berücksichtigung der Breite des verfügbaren Einzugsraums links vom Absatz positioniert."
#. sChkG
#: 05060100.xhp
@@ -17951,7 +17951,7 @@ msgctxt ""
"par_id741629211714572\n"
"help.text"
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
-msgstr ""
+msgstr "<emph>Absatzrand rechts:</emph> Das Objekt wird unter Berücksichtigung der Breite des verfügbaren Einzugsraums rechts vom Absatz positioniert."
#. UWViJ
#: 05060100.xhp
@@ -17960,7 +17960,7 @@ msgctxt ""
"par_id171629211714933\n"
"help.text"
msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
-msgstr ""
+msgstr "<emph>Seitenrand links:</emph> Das Objekt wird unter Berücksichtigung des verfügbaren Platzes zwischen dem linken Seitenrand und dem linken Absatzrand positioniert."
#. F9qZf
#: 05060100.xhp
@@ -17969,7 +17969,7 @@ msgctxt ""
"par_id131629211715280\n"
"help.text"
msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
-msgstr ""
+msgstr "<emph>Seitenrand rechts:</emph> Das Objekt wird unter Berücksichtigung des verfügbaren Platzes zwischen dem rechten Seitenrand und dem rechten Absatzrand positioniert."
#. norkq
#: 05060100.xhp
@@ -17978,7 +17978,7 @@ msgctxt ""
"par_id691629211796237\n"
"help.text"
msgid "<emph>Entire page:</emph> the object is positioned considering the whole width of the page, from the left to the right page borders."
-msgstr ""
+msgstr "<emph>Ganze Seite:</emph> Das Objekt wird über die gesamte Breite der Seite positioniert, vom linken bis zum rechten Seitenrand."
#. CmKyb
#: 05060100.xhp
@@ -17987,7 +17987,7 @@ msgctxt ""
"par_id981629211796563\n"
"help.text"
msgid "<emph>Page text area:</emph> the object is positioned considering the whole width available for text in the page, from the left to the right page margins."
-msgstr ""
+msgstr "<emph>Seitentextbereich:</emph> Das Objekt wird unter Berücksichtigung der gesamten für Text auf der Seite verfügbaren Breite positioniert, vom linken bis zum rechten Seitenrand."
#. JuoS4
#: 05060100.xhp
@@ -17996,7 +17996,7 @@ msgctxt ""
"par_id811629211796776\n"
"help.text"
msgid "<emph>Character:</emph> the object is positioned considering the horizontal space used by the character."
-msgstr ""
+msgstr "<emph>Zeichen:</emph> Das Objekt wird unter Berücksichtigung des horizontalen Raums positioniert, der von dem Zeichen verwendet wird."
#. cAAkt
#: 05060100.xhp
@@ -18005,7 +18005,7 @@ msgctxt ""
"par_id701629220055018\n"
"help.text"
msgid "Beware that the set of options available depend on the Anchor settings. Therefore, not all options listed above may be shown due to the current Anchor choice."
-msgstr ""
+msgstr "Beachten Sie, dass die verfügbaren Optionen von der Verankerung abhängen. Daher werden aufgrund der aktuellen Verankerung möglicherweise nicht alle oben aufgeführten Optionen angezeigt."
#. eBQAz
#: 05060100.xhp
@@ -18014,7 +18014,7 @@ msgctxt ""
"par_id741629211922065\n"
"help.text"
msgid "You can see the result of the alignments options that you select in the Preview box."
-msgstr ""
+msgstr "Sie können das Ergebnis der ausgewählten Positionierung im Vorschaufeld sehen."
#. EUGc6
#: 05060100.xhp
@@ -18104,7 +18104,7 @@ msgctxt ""
"par_id3155075\n"
"help.text"
msgid "<ahelp hid=\".\">Select the reference point for the selected vertical alignment option.</ahelp> The following options are available:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Wählen Sie den Referenzpunkt für die ausgewählte vertikale Positionierung aus.</ahelp> Die folgenden Optionen sind verfügbar:"
#. 5GxHP
#: 05060100.xhp
@@ -18113,7 +18113,7 @@ msgctxt ""
"par_id551629212019498\n"
"help.text"
msgid "<emph>Margin:</emph> Depending on the anchoring type, the object is positioned considering the space between the top margin and the character (\"To character\" anchoring) or bottom edge of the paragraph (\"To paragraph\" anchoring) where the anchor is placed."
-msgstr ""
+msgstr "<emph>Rand:</emph> Je nach Verankerung wird das Objekt unter Berücksichtigung des Abstands zwischen dem oberen Rand und dem Zeichen (Verankerung \"Am Zeichen\") oder dem unteren Rand des Absatzes (Verankerung \"Am Absatz\") positioniert, in dem der Anker platziert ist."
#. vKwer
#: 05060100.xhp
@@ -18122,7 +18122,7 @@ msgctxt ""
"par_id481629212019833\n"
"help.text"
msgid "<emph>Paragraph text area:</emph> the object is positioned considering the height of the paragraph where the anchor is placed."
-msgstr ""
+msgstr "<emph>Absatztextbereich:</emph> Das Objekt wird unter Berücksichtigung der Höhe des Absatzes positioniert, in dem der Anker platziert ist."
#. 2i9ic
#: 05060100.xhp
@@ -18131,7 +18131,7 @@ msgctxt ""
"par_id521629212020113\n"
"help.text"
msgid "<emph>Entire page:</emph> the object is positioned considering the full page height, from top to bottom page borders."
-msgstr ""
+msgstr "<emph>Ganze Seite:</emph> Das Objekt wird unter Berücksichtigung der gesamten Seitenhöhe positioniert, vom oberen bis zum unteren Seitenrand."
#. WvDZQ
#: 05060100.xhp
@@ -18140,7 +18140,7 @@ msgctxt ""
"par_id691629212020466\n"
"help.text"
msgid "<emph>Page text area:</emph> the object is positioned considering the full height available for text, from top to bottom margins."
-msgstr ""
+msgstr "<emph>Seitentextbereich:</emph> Das Objekt wird unter Berücksichtigung der gesamten für Text verfügbaren Höhe positioniert, vom oberen bis zum unteren Rand."
#. R8syf
#: 05060100.xhp
@@ -18149,7 +18149,7 @@ msgctxt ""
"par_id951629212020860\n"
"help.text"
msgid "<emph>Character:</emph> the object is positioned considering the vertical space used by the character."
-msgstr ""
+msgstr "<emph>Zeichen:</emph> Das Objekt wird unter Berücksichtigung des vom Zeichen verwendeten vertikalen Raums positioniert."
#. 76CzL
#: 05060100.xhp
@@ -18158,7 +18158,7 @@ msgctxt ""
"par_id631629212021233\n"
"help.text"
msgid "<emph>Line of text:</emph> the object is positioned considering the height of the line of text where the anchor is placed."
-msgstr ""
+msgstr "<emph>Textzeile:</emph> Das Objekt wird unter Berücksichtigung der Höhe der Textzeile positioniert, in der der Anker platziert ist."
#. ywYwM
#: 05060100.xhp
@@ -18167,7 +18167,7 @@ msgctxt ""
"par_id631629220309961\n"
"help.text"
msgid "<emph>Baseline:</emph> available only for \"As character\" anchoring, this option will position the object considering the text baseline over which all characters are placed."
-msgstr ""
+msgstr "<emph>Grundlinie:</emph> Nur für die Verankerung \"Als Zeichen\" verfügbar. Diese Option positioniert das Objekt unter Berücksichtigung der Textgrundlinie, über der alle Zeichen platziert werden."
#. xYbGQ
#: 05060100.xhp
@@ -18176,7 +18176,7 @@ msgctxt ""
"par_id811629220310472\n"
"help.text"
msgid "<emph>Row:</emph> available only for \"As character\" anchoring, this option will position the object considering the height of the row where the anchor is placed."
-msgstr ""
+msgstr "<emph>Zeile:</emph> Nur für Verankerung \"Als Zeichen\" verfügbar. Diese Option positioniert das Objekt unter Berücksichtigung der Höhe der Zeile, in der der Anker platziert ist."
#. bQXrs
#: 05060100.xhp
@@ -22955,7 +22955,7 @@ msgctxt ""
"par_idN106EF\n"
"help.text"
msgid "To <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">dock</link> the Styles window, drag its title bar to the left or to the right side of the workspace. To undock the window, double-click a free space on its toolbar."
-msgstr ""
+msgstr "Um das Fenster Formatvorlagen <link href=\"text/shared/00/00000005.xhp#docking\" name=\"dock\">anzudocken</link>, ziehen Sie seine Titelleiste auf die linke oder rechte Seite des Arbeitsbereichs. Um das Fenster abzudocken, doppelklicken Sie auf eine freie Stelle in seiner Symbolleiste."
#. rnJBS
#: 05140000.xhp
@@ -23000,7 +23000,7 @@ msgctxt ""
"par_id3149800\n"
"help.text"
msgid "<ahelp hid=\".\">Displays formatting styles for paragraphs.</ahelp> Use paragraph styles to apply the same <link href=\"text/shared/00/00000005.xhp#formatting\" name=\"formatting\">formatting</link>, such as font, numbering, and layout to the paragraphs in your document."
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt Formatvorlagen für Absätze an.</ahelp> Verwenden Sie Absatzvorlagen, um dieselben <link href=\"text/shared/00/00000005.xhp#formatting\" name=\"formatting\">Formatierungen</link> (wie Schriftart, Nummerierung und Layout) wie zu den Absätzen in Ihrem Dokument anzuwenden."
#. ataNf
#: 05140000.xhp
@@ -24071,7 +24071,7 @@ msgctxt ""
"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\" name=\"Load Styles\">Load Styles</link></variable></defaultinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Masterfolie laden</caseinline><caseinline select=\"DRAW\">Masterfolie laden</caseinline><defaultinline><variable id=\"load_styles_header\"><link href=\"text/swriter/01/05170000.xhp\" name=\"Load Styles\">Formatvorlagen laden</link></variable></defaultinline></switchinline>"
#. 27Nd8
#: 05170000.xhp
@@ -24080,7 +24080,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "Load additional slide designs for your presentation."
-msgstr ""
+msgstr "Lädt zusätzliche Foliendesigns für Ihre Präsentation."
#. 7mftZ
#: 05170000.xhp
@@ -24089,7 +24089,7 @@ msgctxt ""
"par_id2150717\n"
"help.text"
msgid "Load additional page designs for your drawing."
-msgstr ""
+msgstr "Lädt zusätzliche Foliendesigns für Ihre Zeichnung."
#. FBAJG
#: 05170000.xhp
@@ -24107,7 +24107,7 @@ msgctxt ""
"hd_id3150327\n"
"help.text"
msgid "Categories"
-msgstr ""
+msgstr "Kategorien"
#. hfCSA
#: 05170000.xhp
@@ -24116,7 +24116,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available slide design categories.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Zeigt die verfügbaren Foliendesign-Kategorien an.</ahelp>"
#. WGb32
#: 05170000.xhp
@@ -24125,7 +24125,7 @@ msgctxt ""
"hd_id3155962\n"
"help.text"
msgid "Templates"
-msgstr ""
+msgstr "Dokumentvorlagen"
#. MVgRk
#: 05170000.xhp
@@ -24134,7 +24134,7 @@ msgctxt ""
"par_id3155337\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the templates for the selected design category.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Zeigt die Dokumentvorlagen für die ausgewählte Designkategorie an.</ahelp>"
#. zu7wC
#: 05170000.xhp
@@ -24143,7 +24143,7 @@ msgctxt ""
"hd_id241634052550343\n"
"help.text"
msgid "Preview"
-msgstr ""
+msgstr "Vorschau"
#. VD5pq
#: 05170000.xhp
@@ -24152,7 +24152,7 @@ msgctxt ""
"par_id3150344\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected master slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Zeigt oder verbirgt eine Vorschau einer ausgewählten Masterfolie.</ahelp>"
#. M5edi
#: 05170000.xhp
@@ -24161,7 +24161,7 @@ msgctxt ""
"par_id9159206\n"
"help.text"
msgid "Some master slides may not contain visible text objects or drawing objects."
-msgstr ""
+msgstr "Einige Masterfolien enthalten möglicherweise keine sichtbaren Text- oder Zeichnungsobjekte."
#. bFUri
#: 05170000.xhp
@@ -24170,7 +24170,7 @@ msgctxt ""
"hd_id3150427\n"
"help.text"
msgid "Categories"
-msgstr ""
+msgstr "Kategorien"
#. BhDDL
#: 05170000.xhp
@@ -24179,7 +24179,7 @@ msgctxt ""
"par_id3157338\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Displays the available page design categories.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/categories\">Zeigt die verfügbaren Foliendesign-Kategorien an.</ahelp>"
#. wYRwi
#: 05170000.xhp
@@ -24188,7 +24188,7 @@ msgctxt ""
"hd_id3155952\n"
"help.text"
msgid "Templates"
-msgstr ""
+msgstr "Dokumentvorlagen"
#. hjKgq
#: 05170000.xhp
@@ -24197,7 +24197,7 @@ msgctxt ""
"par_id3155837\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Displays the pages designs for the selected design category.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/templates\">Zeigt die Foliendesigns für die ausgewählte Designkategorie an.</ahelp>"
#. FLsVG
#: 05170000.xhp
@@ -24206,7 +24206,7 @@ msgctxt ""
"hd_id241634052520343\n"
"help.text"
msgid "Preview"
-msgstr ""
+msgstr "Vorschau"
#. APNcz
#: 05170000.xhp
@@ -24215,7 +24215,7 @@ msgctxt ""
"par_id315054\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Shows or hides a preview of a selected page design.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/loadtemplatedialog/expander\">Zeigt oder verbirgt die Vorschau eines ausgewählten Foliendesigns.</ahelp>"
#. fYaPW
#: 05170000.xhp
@@ -24224,7 +24224,7 @@ msgctxt ""
"par_id3159206\n"
"help.text"
msgid "Some page designs may not contain visible text objects or drawing objects."
-msgstr ""
+msgstr "Einige Foliendesigns enthalten möglicherweise keine sichtbaren Text- oder Zeichenobjekte."
#. uooXD
#: 05170000.xhp
@@ -27185,7 +27185,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Accessibility Check"
-msgstr ""
+msgstr "Zugänglichkeitsprüfung"
#. bFVzE
#: accessibility_check.xhp
@@ -27194,7 +27194,7 @@ msgctxt ""
"bm_id551630942369429\n"
"help.text"
msgid "<bookmark_value>accessibility;check in text document</bookmark_value> <bookmark_value>PDF/UA;check</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Zugänglichkeit; in Textdokumenten prüfen</bookmark_value><bookmark_value>PDF/UA; prüfen</bookmark_value>"
#. M96s3
#: accessibility_check.xhp
@@ -27203,7 +27203,7 @@ msgctxt ""
"hd_id771630940172827\n"
"help.text"
msgid "<variable id=\"accessibilitycheckh1\"><link href=\"text/swriter/01/accessibility_check.xhp\" name=\"Accessibility Check\">Accessibility Check</link></variable>"
-msgstr ""
+msgstr "<variable id=\"accessibilitycheckh1\"><link href=\"text/swriter/01/accessibility_check.xhp\" name=\"Accessibility Check\">Zugänglichkeitsprüfung</link></variable>"
#. yT4uv
#: accessibility_check.xhp
@@ -27212,7 +27212,7 @@ msgctxt ""
"par_id951630940172830\n"
"help.text"
msgid "Review common accessibility problems in the document, and support for PDF/UA specifications in the PDF export dialog."
-msgstr ""
+msgstr "Überprüt häufige Zugänglichkeitsprobleme im Dokument und unterstützt PDF/UA-Spezifikationen im Dialog PDF-Export."
#. EYLLt
#: accessibility_check.xhp
@@ -27221,7 +27221,7 @@ msgctxt ""
"par_id311630940367510\n"
"help.text"
msgid "Choose <menuitem>Tools - Accessibility Check</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Zugänglichkeitsprüfung…</menuitem>"
#. MChEF
#: accessibility_check.xhp
@@ -27230,7 +27230,7 @@ msgctxt ""
"par_id521630941308319\n"
"help.text"
msgid "Select <menuitem>File - Export as PDF - General - Universal Accessibility (PDF/UA)</menuitem> and click <emph>OK</emph>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Datei – Exportieren als – Als PDF exportieren… – Register: Allgemein – Markierfeld: Universelle Zugänglichkeit (PDF/UA)</menuitem> und klicken Sie auf <emph>OK</emph>."
#. FvnEV
#: accessibility_check.xhp
@@ -27239,7 +27239,7 @@ msgctxt ""
"par_id901630941406987\n"
"help.text"
msgid "The Accessibility Check tool traverses the document structure and gather all possible accessibility issues. The check can be run manually through the menu or it will be triggered after PDF export dialog, when the PDF/UA support is enabled."
-msgstr ""
+msgstr "Die Zugänglichkeitsprüfung durchläuft die Dokumentstruktur und sammelt alle möglichen Zugänglichkeitsprobleme. Die Prüfung kann manuell über das Menü ausgeführt werden oder wird nach dem Dialog PDF-Export ausgelöst, wenn die PDF/UA-Unterstützung aktiviert ist."
#. RpbFj
#: accessibility_check.xhp
@@ -27248,7 +27248,7 @@ msgctxt ""
"hd_id271630943848307\n"
"help.text"
msgid "The Accessibility Check dialog"
-msgstr ""
+msgstr "Der Dialog Zugänglichkeitsprüfung"
#. FAFuD
#: accessibility_check.xhp
@@ -27257,7 +27257,7 @@ msgctxt ""
"par_id681630943858371\n"
"help.text"
msgid "The Accessibility Check dialog shows a list of all issues found in the text document."
-msgstr ""
+msgstr "Der Dialog Zugänglichkeitsprüfung zeigt eine Liste aller Probleme, die im Textdokument gefunden wurden."
#. RPhYG
#: accessibility_check.xhp
@@ -27266,7 +27266,7 @@ msgctxt ""
"hd_id841630943833924\n"
"help.text"
msgid "Go to Issue"
-msgstr ""
+msgstr "Zum Problem gehen"
#. fquGN
#: accessibility_check.xhp
@@ -27275,7 +27275,7 @@ msgctxt ""
"par_id41630943863594\n"
"help.text"
msgid "Click the button to jump to the page and select the object or issue that requires attention for accessibility."
-msgstr ""
+msgstr "Klicken Sie auf die Schaltfläche, um zur Seite zu springen, und wählen Sie das Objekt oder Problem aus, das für die Zugänglichkeit beachtet werden muss."
#. WgpUi
#: accessibility_check.xhp
@@ -27284,7 +27284,7 @@ msgctxt ""
"hd_id121630943721145\n"
"help.text"
msgid "Common accessibility checks"
-msgstr ""
+msgstr "Gemeinsame Zugänglichkeitsprüfungen"
#. 9u7no
#: accessibility_check.xhp
@@ -27293,7 +27293,7 @@ msgctxt ""
"par_id31630941412046\n"
"help.text"
msgid "The checks that are currently implemented are:"
-msgstr ""
+msgstr "Die derzeit implementierten Prüfungen sind:"
#. sxkkp
#: accessibility_check.xhp
@@ -27302,7 +27302,7 @@ msgctxt ""
"par_id191630941836904\n"
"help.text"
msgid "Check that the document title is set."
-msgstr ""
+msgstr "Überprüfung, ob der Dokumenttitel festgelegt ist."
#. B3GtS
#: accessibility_check.xhp
@@ -27311,7 +27311,7 @@ msgctxt ""
"par_id1001630941860410\n"
"help.text"
msgid "Check that the document language is set, or that all styles that are in use, have the language set."
-msgstr ""
+msgstr "Überprüfung, ob die Dokumentsprache eingestellt ist oder ob alle verwendeten Formatvorlagen die Sprache eingestellt haben."
#. EhNJE
#: accessibility_check.xhp
@@ -27320,7 +27320,7 @@ msgctxt ""
"par_id1001630941880414\n"
"help.text"
msgid "Check all images, graphics, OLE objects for the alt (or title in some objects) text."
-msgstr ""
+msgstr "Überprüfung aller Bilder, Grafiken und OLE-Objekte auf den Alternativtext (oder Titel in einigen Objekten)."
#. AKxvB
#: accessibility_check.xhp
@@ -27329,7 +27329,7 @@ msgctxt ""
"par_id491630941907745\n"
"help.text"
msgid "Check that tables do not include split or merged cells, which could be disorienting for users with visual impairments."
-msgstr ""
+msgstr "Überprüfung, dass Tabellen keine geteilten oder verbundenen Zellen enthalten, die für Benutzer mit Sehbehinderungen verwirrend sein könnten."
#. wkEAD
#: accessibility_check.xhp
@@ -27338,7 +27338,7 @@ msgctxt ""
"par_id901630941949974\n"
"help.text"
msgid "Check for fake/manual numbering (not using integrated numbering). For example writing \"1.\" \"2.\" \"3.\" at the beginning of the paragraphs."
-msgstr ""
+msgstr "Überprüfung auf falsche/manuelle Nummerierung (ohne Verwendung der integrierte Nummerierung). Beispielsweise, ob Sie \"1\". \"2.\" \"3.\" am Anfang der Absätze geschrieben haben."
#. 9e7Xi
#: accessibility_check.xhp
@@ -27347,7 +27347,7 @@ msgctxt ""
"par_id981630941970321\n"
"help.text"
msgid "Check that hyperlink text is not a hyperlink itself - hyperlink should be described."
-msgstr ""
+msgstr "Überprüfung, dass der Text eines Hyperlinks nicht selbst ein Hyperlink ist – der Hyperlink sollte beschrieben werden."
#. DRKCs
#: accessibility_check.xhp
@@ -27356,7 +27356,7 @@ msgctxt ""
"par_id421630941989099\n"
"help.text"
msgid "Check for the contrast between text and the background. The algorithm is described in the WCAG specification."
-msgstr ""
+msgstr "Überprüfung des Kontrastes zwischen Text und Hintergrund. Der Algorithmus ist in der WCAG-Spezifikation beschrieben."
#. dVG2r
#: accessibility_check.xhp
@@ -27365,7 +27365,7 @@ msgctxt ""
"par_id781630942005022\n"
"help.text"
msgid "Check for blinking text, which can be problematic for people with cognitive disabilities or photosensitive epilepsy."
-msgstr ""
+msgstr "Überprüfung auf blinkenden Text, der für Menschen mit kognitiven Behinderungen oder lichtempfindlicher Epilepsie problematisch sein kann."
#. QgCco
#: accessibility_check.xhp
@@ -27374,7 +27374,7 @@ msgctxt ""
"par_id651630942022847\n"
"help.text"
msgid "Check for footnotes and endnotes, which should be avoided."
-msgstr ""
+msgstr "Überprüfung auf Fußnoten und Endnoten, die vermieden werden sollten."
#. uoggD
#: accessibility_check.xhp
@@ -27383,7 +27383,7 @@ msgctxt ""
"par_id531630942039864\n"
"help.text"
msgid "Check for heading order. Order of the headings must increase incrementally with no skips (for example Heading 1 to Heading 3, skipping Heading 2)."
-msgstr ""
+msgstr "Überprüfung der Reihenfolge der Überschriften. Die Reihenfolge der Überschriften muss ohne Sprünge schrittweise erhöht werden (beispielsweise \"Überschrift 1\" bis \"Überschrift 3\", aber Fehlen von \"Überschrift 2\")."
#. LdMWG
#: accessibility_check.xhp
@@ -27392,7 +27392,7 @@ msgctxt ""
"par_id221630942064725\n"
"help.text"
msgid "Check, if text conveys additional meaning with (direct) formatting."
-msgstr ""
+msgstr "Überprüfung, ob Text durch (direkte) Formatierung zusätzliche Bedeutung vermittelt."
#. k5UDL
#: edit_reference_submenu.xhp
@@ -30848,7 +30848,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Protect Document"
-msgstr ""
+msgstr "Dokument schützen"
#. 2VVFB
#: protectdocument.xhp
@@ -30857,7 +30857,7 @@ msgctxt ""
"bm_id71630957701819\n"
"help.text"
msgid "<bookmark_value>protection;fields in text documents</bookmark_value><bookmark_value>protection;bookmarks in text documents</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Schützen; Felder in Textdokumenten</bookmark_value><bookmark_value>Schützen; Lesezeichen in Textdokumenten</bookmark_value>"
#. iNpsr
#: protectdocument.xhp
@@ -30866,7 +30866,7 @@ msgctxt ""
"hd_id631630954633446\n"
"help.text"
msgid "<link href=\"text/swriter/01/protectdocument.xhp\" name=\"Protect Document\">Protect Document</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/protectdocument.xhp\" name=\"Protect Document\">Dokument schützen</link>"
#. NTd9C
#: protectdocument.xhp
@@ -30875,7 +30875,7 @@ msgctxt ""
"par_id491630954633448\n"
"help.text"
msgid "Toggles write protection for fields and bookmarks in the document."
-msgstr ""
+msgstr "Schaltet den Schreibschutz für Felder und Lesezeichen im Dokument um."
#. 9CfQn
#: protectdocument.xhp
@@ -30884,7 +30884,7 @@ msgctxt ""
"par_id18112016398104\n"
"help.text"
msgid "<embedvar href=\"text/swriter/guide/protection.xhp#protwarn\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/swriter/guide/protection.xhp#protwarn\"/>"
#. ZeFv5
#: protectdocument.xhp
@@ -30893,7 +30893,7 @@ msgctxt ""
"hd_id431630956035026\n"
"help.text"
msgid "Protect Fields"
-msgstr ""
+msgstr "Felder schützen"
#. wRf6V
#: protectdocument.xhp
@@ -30902,7 +30902,7 @@ msgctxt ""
"par_id851630956050636\n"
"help.text"
msgid "Toggles fields write protection. When checked, the fields cannot be edited or deleted."
-msgstr ""
+msgstr "Schaltet den Schreibschutz für Felder um. Wenn diese Option aktiviert ist, können die Felder nicht bearbeitet oder gelöscht werden."
#. DBkt8
#: protectdocument.xhp
@@ -30911,7 +30911,7 @@ msgctxt ""
"hd_id871630956040154\n"
"help.text"
msgid "Protect Bookmarks"
-msgstr ""
+msgstr "Lesezeichen schützen"
#. PxAHD
#: protectdocument.xhp
@@ -30920,7 +30920,7 @@ msgctxt ""
"par_id631630956055502\n"
"help.text"
msgid "Toggles bookmark write protection. When checked, the bookmarks cannot be deleted or renamed."
-msgstr ""
+msgstr "Schaltet den Schreibschutz für Lesezeichen um. Wenn diese Option aktiviert ist, können die Lesezeichen nicht gelöscht oder umbenannt werden."
#. 96cqF
#: protectdocument.xhp
@@ -30929,7 +30929,7 @@ msgctxt ""
"par_id281630957530212\n"
"help.text"
msgid "<embedvar href=\"text/swriter/guide/protection.xhp#protection\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/swriter/guide/protection.xhp#protection\"/>"
#. KadxR
#: selection_mode.xhp
@@ -30983,7 +30983,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Show Whitespace"
-msgstr ""
+msgstr "Zwischenräume anzeigen"
#. Bb74x
#: show_whitespace.xhp
@@ -30992,7 +30992,7 @@ msgctxt ""
"hd_id11629893531856\n"
"help.text"
msgid "<link href=\"text/swriter/01/show_whitespace.xhp\" name=\"show_whitespace\">Show Whitespace</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/show_whitespace.xhp\" name=\"show_whitespace\">Zwischenräume anzeigen</link>"
#. 9GHq6
#: show_whitespace.xhp
@@ -31001,7 +31001,7 @@ msgctxt ""
"par_id102720150854012820\n"
"help.text"
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 ""
+msgstr "Zeigt das Dokument mit oberem und unterem Rand, Kopf- und Fußzeile und einem Abstand zwischen den Seiten an. Deaktivieren Sie diese Option, um alle genannten Elemente zu reduzieren und das Dokument in einem kontinuierlichen Seitenfluss anzuzeigen. Das Ausblenden von Zwischenräumen ist nur in der Einzelseitenansicht möglich."
#. wDniB
#: title_page.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/02.po b/source/de/helpcontent2/source/text/swriter/02.po
index 1e7e333e983..124d7623d01 100644
--- a/source/de/helpcontent2/source/text/swriter/02.po
+++ b/source/de/helpcontent2/source/text/swriter/02.po
@@ -4,16 +4,16 @@ 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-10-25 12:49+0200\n"
-"PO-Revision-Date: 2022-01-08 14:38+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriter02/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1524890654.000000\n"
#. sqxGb
@@ -158,7 +158,7 @@ msgctxt ""
"bm_id3151188\n"
"help.text"
msgid "<bookmark_value>frames;unlinking</bookmark_value><bookmark_value>unlinking frames</bookmark_value>"
-msgstr "<bookmark_value>Rahmen; Verankerung aufheben</bookmark_value><bookmark_value>Verankerung von Rahmen aufheben</bookmark_value>"
+msgstr "<bookmark_value>Rahmen; Verkettung lösen</bookmark_value><bookmark_value>Verkettung von Rahmen lösen</bookmark_value>"
#. bzyeh
#: 03220000.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index 7299e5745d1..ec896adb83c 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/helpcontent2/source/text/swriter/guide.po
@@ -4,16 +4,16 @@ 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-12-20 13:21+0100\n"
-"PO-Revision-Date: 2022-01-21 18:38+0000\n"
+"PO-Revision-Date: 2022-07-01 10:09+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-7-3/textswriterguide/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565411835.000000\n"
#. XAt2Y
@@ -50,7 +50,7 @@ msgctxt ""
"par_id181634295881266\n"
"help.text"
msgid "An object, such as an image, is positioned within a document using anchors attached to other elements."
-msgstr ""
+msgstr "Ein Objekt, beispielsweise ein Bild, wird innerhalb eines Dokuments mithilfe von Ankern positioniert, die an anderen Elementen angebracht sind."
#. rrmfz
#: anchor_object.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"par_id41634291500513\n"
"help.text"
msgid "An anchor determines the reference point for an object. The reference point could be the page or frame where the object is, a paragraph, or even a character. An image always has an anchor and therefore a reference point."
-msgstr ""
+msgstr "Ein Anker bestimmt den Bezugspunkt für ein Objekt. Der Referenzpunkt könnte die Seite oder der Rahmen sein, wo sich das Objekt befindet, ein Absatz oder sogar ein Zeichen. Ein Bild hat immer einen Anker und damit einen Bezugspunkt."
#. czeNu
#: anchor_object.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"par_id3147251\n"
"help.text"
msgid "An anchor moves with the element it is attached to as the document is edited. An object retains its position relative to the reference point determined by its anchor, such that, whenever the reference point moves or changes, the object moves relative to it."
-msgstr ""
+msgstr "Ein Anker bewegt sich mit dem Element, an das er angehängt ist, während das Dokument bearbeitet wird. Ein Objekt behält seine Position relativ zu dem durch seinen Anker bestimmten Referenzpunkt bei, sodass sich das Objekt immer dann relativ zu ihm bewegt, wenn sich der Referenzpunkt bewegt oder ändert."
#. ELWph
#: anchor_object.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"par_id441634291545244\n"
"help.text"
msgid "The following anchoring options are available:"
-msgstr ""
+msgstr "Folgende Verankerungen stehen zur Verfügung:"
#. mWome
#: anchor_object.xhp
@@ -113,7 +113,7 @@ msgctxt ""
"par_id3151181\n"
"help.text"
msgid "Anchors the selected object as a character in the current text. If the height of the selected object is greater than the current font size, the height of the line containing the object is increased."
-msgstr ""
+msgstr "Verankert das ausgewählte Objekt als Zeichen im aktuellen Text. Wenn die Höhe des ausgewählten Objekts größer als die aktuelle Schriftgröße ist, wird die Höhe der Zeile, die das Objekt enthält, erhöht."
#. SNGPX
#: anchor_object.xhp
@@ -140,7 +140,7 @@ msgctxt ""
"par_id3151235\n"
"help.text"
msgid "Anchors the selected object to the paragraph that contains the character to which the anchor is attached. The reference point for the object is the start of the paragraph that contains the character."
-msgstr ""
+msgstr "Verankert das ausgewählte Objekt an dem Absatz, der das Zeichen enthält, an das der Anker angehängt ist. Der Bezugspunkt für das Objekt ist der Beginn des Absatzes, der das Zeichen enthält."
#. Awa37
#: anchor_object.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"par_id261634292505179\n"
"help.text"
msgid "For example, if you split the paragraph at a point before the anchor, the reference point moves to the start of the new paragraph and the object moves relative to that point. If you join the paragraph to the one before it, the reference point moves to the start of the combined paragraph and the object moves to a position relative to that."
-msgstr ""
+msgstr "Wenn Sie beispielsweise den Absatz an einer Stelle vor dem Anker teilen, wird der Referenzpunkt an den Anfang des neuen Absatzes verschoben und das Objekt relativ zu diesem Punkt verschoben. Wenn Sie den Absatz mit dem vorhergehenden verbinden, bewegt sich der Referenzpunkt zum Anfang des kombinierten Absatzes und das Objekt wird an eine Position relativ dazu verschoben."
#. ekiBZ
#: anchor_object.xhp
@@ -167,7 +167,7 @@ msgctxt ""
"par_id3155094\n"
"help.text"
msgid "Anchors the selected object to the current paragraph."
-msgstr ""
+msgstr "Verankert das ausgewählte Objekt im aktuellen Absatz."
#. MWaB5
#: anchor_object.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"par_id3155144\n"
"help.text"
msgid "Anchors the selected object to the current page."
-msgstr ""
+msgstr "Verankert das ausgewählte Objekt an der aktuellen Seite."
#. ZEdjj
#: anchor_object.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id3145715\n"
"help.text"
msgid "When you insert an object, graphic, or frame, an anchor icon appears where the object is anchored. You can move an anchor or, keeping other object constraints in mind, position an object relative to the anchor's reference point by dragging the object. To change the anchoring options of an item, right-click the item, and then choose an option from the <item type=\"menuitem\">Anchor</item> submenu."
-msgstr ""
+msgstr "Wenn Sie ein Objekt, eine Grafik oder einen Rahmen einfügen, wird an der Stelle, an der das Objekt verankert ist, ein Ankersymbol angezeigt. Sie können einen Anker verschieben oder, unter Berücksichtigung anderer Objektbeschränkungen, ein Objekt relativ zum Referenzpunkt des Ankers positionieren, indem Sie das Objekt ziehen. Um die Verankerung eines Elements zu ändern, klicken Sie mit der rechten Maustaste auf das Element und wählen Sie dann eine Option aus dem Untermenü <item type=\"menuitem\">Anker</item> aus."
#. EkgCv
#: arrange_chapters.xhp
@@ -7790,7 +7790,7 @@ msgctxt ""
"par_id501639661322712\n"
"help.text"
msgid "The inserted formatting mark will be shown in gray. To remove it, simply place the cursor over the formatting mark and press the <keycode>Del</keycode> key."
-msgstr ""
+msgstr "Das eingefügte Formatierungszeichen wird grau dargestellt. Um es zu entfernen, platzieren Sie einfach den Cursor auf dem Formatierungszeichen und drücken Sie <keycode>Entf</keycode>."
#. skDHA
#: hyphen_prevent.xhp
@@ -9932,7 +9932,7 @@ msgctxt ""
"bm_id3145086\n"
"help.text"
msgid "<bookmark_value>formatting styles; importing</bookmark_value> <bookmark_value>styles; importing from other files</bookmark_value> <bookmark_value>importing;styles from other files</bookmark_value> <bookmark_value>loading;styles from other files</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Formatvorlagen; Importieren</bookmark_value><bookmark_value>Vorlagen; Importieren aus anderen Dateien</bookmark_value><bookmark_value>Importieren; Formatvorlagen aus anderen Dateien</bookmark_value><bookmark_value>Laden; Formatvorlagen aus anderen Dateien</bookmark_value>"
#. poRMw
#: load_styles.xhp
@@ -9986,7 +9986,7 @@ msgctxt ""
"par_id441529889103330\n"
"help.text"
msgid "Choose <emph>Styles - Manage Styles</emph> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <emph>Styles</emph> sidebar deck."
-msgstr ""
+msgstr "Wählen Sie <emph>Formatvorlagen – Formatvorlagen verwalten</emph> oder Drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Befehl+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>, um die Seitenleiste <emph>Formatvorlagen</emph> zu öffnen."
#. mHDNg
#: load_styles.xhp
@@ -10544,7 +10544,7 @@ msgctxt ""
"bm_id3150101\n"
"help.text"
msgid "<bookmark_value>line numbers</bookmark_value> <bookmark_value>text; line numbers</bookmark_value> <bookmark_value>paragraphs;line numbers</bookmark_value> <bookmark_value>lines of text; numbering</bookmark_value> <bookmark_value>numbering; lines</bookmark_value> <bookmark_value>numbers; line numbering</bookmark_value> <bookmark_value>marginal numbers on text pages</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Zeilennummern</bookmark_value><bookmark_value>Text; Zeilennummern</bookmark_value><bookmark_value>Absätze; Zeilennummern</bookmark_value><bookmark_value>Textzeilen; Nummerierung</bookmark_value><bookmark_value>Nummerierung; Zeilen</bookmark_value><bookmark_value>Zahlen; Zeilennummerierung</bookmark_value><bookmark_value>Randnummern auf Textseiten</bookmark_value>"
#. qVEcP
#: numbering_lines.xhp
@@ -10643,7 +10643,7 @@ msgctxt ""
"par_id3154248\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T </caseinline><defaultinline>F11</defaultinline></switchinline> to open the <emph>Styles</emph> window, and then click the <emph>Paragraph Styles</emph> icon."
-msgstr ""
+msgstr "Drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl+T</caseinline><defaultinline>F11</defaultinline></switchinline>, um die Seitenleiste <emph>Formatvorlagen</emph> zu öffnen, und klicken Sie dann auf das Symbol <emph>Absatzvorlagen</emph>."
#. Fwn8P
#: numbering_lines.xhp
@@ -10814,7 +10814,7 @@ msgctxt ""
"par_id3153960\n"
"help.text"
msgid "Format - Paragraph - <link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Outline & List</link>"
-msgstr ""
+msgstr "Wählen Sie »Format – Absatz… – Register: <link href=\"text/swriter/01/05030800.xhp\" name=\"Numbering_link\">Gliederung & Liste</link>«"
#. foq8S
#: numbering_lines.xhp
@@ -10976,7 +10976,7 @@ msgctxt ""
"bm_id3155183\n"
"help.text"
msgid "<bookmark_value>inserting; page breaks</bookmark_value> <bookmark_value>deleting;page breaks</bookmark_value> <bookmark_value>pages; inserting/deleting page breaks</bookmark_value> <bookmark_value>manual page breaks</bookmark_value> <bookmark_value>tables;deleting page breaks before</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Einfügen; Seitenumbrüche</bookmark_value><bookmark_value>Löschen; Seitenumbrüche</bookmark_value><bookmark_value>Seiten; Einfügen/Löschen von Seitenumbrüchen</bookmark_value><bookmark_value>Manuelle Seitenumbrüche</bookmark_value><bookmark_value>Tabellen; Löschen von Seitenumbrüchen vor</bookmark_value>"
#. eCabG
#: page_break.xhp
@@ -11084,7 +11084,7 @@ msgctxt ""
"hd_id151633462071702\n"
"help.text"
msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
-msgstr ""
+msgstr "Um schnell zwischen Hoch- und Querformat zu wechseln"
#. xLfpN
#: page_break.xhp
@@ -11093,7 +11093,7 @@ msgctxt ""
"par_id121633463140208\n"
"help.text"
msgid "Read the help page <link href=\"text/swriter/guide/pageorientation.xhp\" name=\"pageorientation_link\">Changing Page Orientation</link> to learn more about advanced configurations that can be defined concerning page orientation."
-msgstr ""
+msgstr "Lesen Sie die Hilfeseite <link href=\"text/swriter/guide/pageorientation.xhp\" name=\"pageorientation_link\">Ändern der Seitenausrichtung</link>, um mehr über erweiterte Konfigurationen zu erfahren, die bezüglich der Seitenausrichtung definiert werden können."
#. 5GEmu
#: pagebackground.xhp
@@ -11750,7 +11750,7 @@ msgctxt ""
"bm_id9683828\n"
"help.text"
msgid "<bookmark_value>page styles;orientation/scope</bookmark_value> <bookmark_value>page formats; changing individual pages</bookmark_value> <bookmark_value>formatting; changing individual pages</bookmark_value> <bookmark_value>portrait and landscape</bookmark_value> <bookmark_value>landscape and portrait</bookmark_value> <bookmark_value>printing;portrait/landscape format</bookmark_value> <bookmark_value>orientation of pages</bookmark_value> <bookmark_value>paper orientation</bookmark_value> <bookmark_value>pages;orientation</bookmark_value> <bookmark_value>sideways orientation of pages</bookmark_value> <bookmark_value>scope of page styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Seitenvorlagen; Ausrichtung/Umfang</bookmark_value><bookmark_value>Seitenformate; Ändern einzelner Seiten</bookmark_value><bookmark_value>Formatierung; Ändern einzelner Seiten</bookmark_value><bookmark_value>Hoch- und Querformat</bookmark_value><bookmark_value>Quer- und Hochformat</bookmark_value><bookmark_value>Drucken; Hoch-/Querformat</bookmark_value><bookmark_value>Ausrichtung der Seiten</bookmark_value><bookmark_value>Papierorientierung</bookmark_value><bookmark_value>Seiten; Orientierung</bookmark_value><bookmark_value>Orientierung der Seiten</bookmark_value><bookmark_value>Umfang der Seitenvorlagen</bookmark_value>"
#. ETQJ7
#: pageorientation.xhp
@@ -11966,7 +11966,7 @@ msgctxt ""
"hd_id151633462071702\n"
"help.text"
msgid "To Quickly Switch Between Portrait and Landscape Page Layout"
-msgstr ""
+msgstr "Um schnell zwischen Hoch- und Querformat zu wechseln"
#. EEW2C
#: pageorientation.xhp
@@ -11975,7 +11975,7 @@ msgctxt ""
"par_id51633462108943\n"
"help.text"
msgid "The default template provided by %PRODUCTNAME Writer offers several page layout styles, among which the <emph>Default Page Style</emph> has Portrait orientation and the <emph>Landscape</emph> style has landscape orientation."
-msgstr ""
+msgstr "Die von %PRODUCTNAME Writer bereitgestellte Dokumentvorlage bietet mehrere Seitenvorlagen, darunter die <emph>Seitenvorlage Standard</emph> im Hochformat und die Seitenvorlage <emph>Querformat</emph> im Querformat."
#. aMkMn
#: pageorientation.xhp
@@ -11984,7 +11984,7 @@ msgctxt ""
"par_id321633462254730\n"
"help.text"
msgid "These styles can be used to quickly switch between portrait and landscape orientation by inserting manual breaks and choosing the appropriate page styles as described below:"
-msgstr ""
+msgstr "Diese Formatvorlagen können verwendet werden, um schnell zwischen Hoch- und Querformat zu wechseln, indem Sie manuelle Umbrüche einfügen und die entsprechenden Seitenvorlagen wie unten beschrieben auswählen:"
#. dQpYD
#: pageorientation.xhp
@@ -11993,7 +11993,7 @@ msgctxt ""
"par_id21633462303911\n"
"help.text"
msgid "Place the cursor where the page break is to be inserted."
-msgstr ""
+msgstr "Platzieren Sie den Cursor dort, wo der Seitenumbruch eingefügt werden soll."
#. sTgyV
#: pageorientation.xhp
@@ -12002,7 +12002,7 @@ msgctxt ""
"par_id841633462305362\n"
"help.text"
msgid "Go to <menuitem>Insert - More Breaks - Manual Break</menuitem>. The <emph>Insert Break</emph> dialog will open."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Einfügen – Umbrüche – Manueller Umbruch…</menuitem>. Der Dialog <emph>Umbruch einfügen</emph> wird geöffnet."
#. fpcnD
#: pageorientation.xhp
@@ -12011,7 +12011,7 @@ msgctxt ""
"par_id31633462305839\n"
"help.text"
msgid "Choose the option <emph>Page break</emph> and in the <emph>Page Style</emph> drop-down list choose the page style to be applied to the page after the break (Default Page Style, Landscape, etc)."
-msgstr ""
+msgstr "Wählen Sie den Typ <emph>Seitenumbruch</emph> und in der Dropdown-Liste <emph>Seitenvorlage</emph> die Seitenvorlage, der auf die Seite nach dem Umbruch angewendet werden soll (Seitenvorlage Standard, Querformat, …)."
#. z3nCn
#: pageorientation.xhp
@@ -12020,7 +12020,7 @@ msgctxt ""
"par_id51633462306574\n"
"help.text"
msgid "If the applied has to be changed again at a certain point in the document (for instance, to switch back from landscape to portrait orientation), place the cursor at this point and repeat the steps previously described."
-msgstr ""
+msgstr "Wenn an einer bestimmten Stelle des Dokuments die Anwendung erneut geändert werden muss (beispielsweise um vom Quer- ins Hochformat zurückzukehren), platzieren Sie den Cursor an dieser Stelle und wiederholen Sie die zuvor beschriebenen Schritte."
#. JyqRA
#: pageorientation.xhp
@@ -13163,7 +13163,7 @@ msgctxt ""
"hd_id6007263\n"
"help.text"
msgid "<variable id=\"protection\"><link href=\"text/swriter/guide/protection.xhp\" name=\"Protecting Content in %PRODUCTNAME Writer\">Protecting Contents in %PRODUCTNAME Writer</link></variable>"
-msgstr ""
+msgstr "<variable id=\"protection\"><link href=\"text/swriter/guide/protection.xhp\" name=\"Protecting Content in %PRODUCTNAME Writer\">Inhalte in %PRODUCTNAME Writer schützen</link></variable>"
#. PooUV
#: protection.xhp
@@ -13370,7 +13370,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "<variable id=\"firstof\">If necessary, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Writer - Formatting Aids</item> and select <emph>Enable cursor</emph> under the <emph>Protected Areas</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"firstof\">Wählen Sie bei Bedarf <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME – Einstellungen</item></caseinline><defaultinline><item type=\"menuitem\">Extras – Optionen…</item></defaultinline></switchinline><item type=\"menuitem\"> – %PRODUCTNAME Writer – Formatierungshilfen</item> und wählen Sie <emph>Cursor aktivieren </emph> unter <emph>Geschützten Bereichen</emph>.</variable>"
#. bYNoc
#: protection.xhp
@@ -13451,7 +13451,7 @@ msgctxt ""
"hd_id641630957309611\n"
"help.text"
msgid "Protecting fields and bookmarks from changes"
-msgstr ""
+msgstr "Felder und Lesezeichen vor Änderungen schützen"
#. KGn3f
#: protection.xhp
@@ -13460,7 +13460,7 @@ msgctxt ""
"par_id621630957319188\n"
"help.text"
msgid "Choose <menuitem>Tools - Protect Document - Protect Fields</menuitem> to protect all fields against changes. Use this protection to prevent accidental changes in fields."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Dokument schützen – Felder schützen</menuitem>, um alle Felder vor Änderungen zu schützen. Verwenden Sie diesen Schutz, um versehentliche Änderungen in Feldern zu verhindern."
#. DDDVG
#: protection.xhp
@@ -13469,7 +13469,7 @@ msgctxt ""
"par_id111630957324575\n"
"help.text"
msgid "Choose <menuitem>Tools - Protect Document - Protect Bookmarks</menuitem> to protect all bookmarks against changes. Use this protection to prevent accidental bookmark changes."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Dokument schützen – Lesezeichen schützen</menuitem>, um alle Lesezeichen vor Änderungen zu schützen. Verwenden Sie diesen Schutz, um versehentliche Lesezeichenänderungen zu verhindern."
#. 8pBwt
#: protection.xhp
@@ -13685,7 +13685,7 @@ msgctxt ""
"par_id3154856\n"
"help.text"
msgid "In the <emph>Refer using</emph> list, select the format for the cross-reference. The <link href=\"text/swriter/01/04090002.xhp\" name=\"format\">format</link> specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the target text, and \"Page\" inserts the page number where the target is located. For footnotes the footnote number is inserted."
-msgstr ""
+msgstr "Wählen Sie in der Liste <emph>Verweis verwenden</emph> das Format für den Querverweis aus. Das <link href=\"text/swriter/01/04090002.xhp\" name=\"format\">Format</link> gibt den Informationstyp an, der als Querverweis angezeigt wird. Beispielsweise fügt \"Verweis\" den Zieltext ein und \"Seite\" fügt die Seitennummer ein, auf der sich das Ziel befindet. Bei Fußnoten wird die Fußnotennummer eingefügt."
#. kcmB3
#: references.xhp
@@ -13766,7 +13766,7 @@ msgctxt ""
"par_id3150968\n"
"help.text"
msgid "In the <emph>Refer using</emph> list, select the format of the cross-reference. The <link href=\"text/swriter/01/04090002.xhp\" name=\"format\">format</link> specifies the type of information that is displayed as the cross-reference. For example, \"Reference\" inserts the caption category and caption text of the object."
-msgstr ""
+msgstr "Wählen Sie in der Liste <emph>Verweis verwenden</emph> das Format des Querverweises aus. Das <link href=\"text/swriter/01/04090002.xhp\" name=\"format\">Format</link> gibt den Informationstyp an, der als Querverweis angezeigt wird. Beispielsweise fügt \"Verweis\" die Beschriftungskategorie und den Beschriftungstext des Objekts ein."
#. umWdg
#: references.xhp
@@ -14360,7 +14360,7 @@ msgctxt ""
"bm_id3150099\n"
"help.text"
msgid "<bookmark_value>searching; with regular expressions</bookmark_value> <bookmark_value>regular expressions;searching</bookmark_value> <bookmark_value>examples for regular expressions</bookmark_value> <bookmark_value>characters;finding all</bookmark_value> <bookmark_value>invisible characters;finding</bookmark_value> <bookmark_value>paragraph marks;searching</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Suchen; mit regulären Ausdrücken</bookmark_value><bookmark_value>Reguläre Ausdrücke; suchen</bookmark_value><bookmark_value>Beispiele für reguläre Ausdrücke</bookmark_value><bookmark_value>Zeichen; alle</bookmark_value><bookmark_value>Unsichtbaren Zeichen; suchen</bookmark_value><bookmark_value>Absatzzeichen; suchen</bookmark_value>"
#. Q5Xoa
#: search_regexp.xhp
@@ -15863,7 +15863,7 @@ msgctxt ""
"par_id3149205\n"
"help.text"
msgid "In the <menuitem>Properties</menuitem> deck of the sidebar, go to the <menuitem>Character</menuitem> area and click the <menuitem>Superscript</menuitem> or <menuitem>Subscript</menuitem> buttons."
-msgstr ""
+msgstr "In der Seitenleiste <menuitem>Eigenschaften</menuitem> im Bereich <menuitem>Zeichen</menuitem> klicken Sie auf die Schaltflächen <menuitem>Hochgestellt</menuitem> oder <menuitem>Tiefgestellt</menuitem>."
#. VwZA6
#: subscript.xhp
@@ -17267,7 +17267,7 @@ msgctxt ""
"par_idN106A3\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> bar, click the <menuitem>Direct Cursor</menuitem> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Icon</alt></image>. Alternatively, enable <emph>Direct Cursor</emph> by going to <menuitem>Edit - Direct Cursor Mode</menuitem>."
-msgstr ""
+msgstr "Klicken Sie in der Symbolleiste <menuitem>Extras</menuitem> auf das Symbol <menuitem>Direktcursor-Modus</menuitem> <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149846\">Symbol für Direktcursor-Modus</alt></image>. Alternativ können Sie den <emph>Direktcursor</emph> aktivieren, indem Sie <menuitem>Bearbeiten – Direkt-Cursor-Modus</menuitem> wählen."
#. AmitQ
#: text_direct_cursor.xhp
@@ -17285,7 +17285,7 @@ msgctxt ""
"par_id561637758600046\n"
"help.text"
msgid "<image src=\"media/helpimg/dircursleft.png\" id=\"img_id961637758600046\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311637758600046\">Align left</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/dircursleft.png\" id=\"img_id961637758600046\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311637758600046\">Symbol für Links ausrichten</alt></image>"
#. mVyJu
#: text_direct_cursor.xhp
@@ -17294,7 +17294,7 @@ msgctxt ""
"par_id321637758600046\n"
"help.text"
msgid "Align left"
-msgstr ""
+msgstr "Links ausrichten"
#. Q8zi2
#: text_direct_cursor.xhp
@@ -17303,7 +17303,7 @@ msgctxt ""
"par_id561637758600047\n"
"help.text"
msgid "<image src=\"media/helpimg/dircurscent.png\" id=\"img_id961637758600047\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311637758600047\">Centered</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/dircurscent.png\" id=\"img_id961637758600047\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311637758600047\">Symbol für Zentriert ausrichten</alt></image>"
#. cHvxC
#: text_direct_cursor.xhp
@@ -17312,7 +17312,7 @@ msgctxt ""
"par_id321637758600047\n"
"help.text"
msgid "Centered"
-msgstr ""
+msgstr "Zentriert ausrichten"
#. AvKq7
#: text_direct_cursor.xhp
@@ -17321,7 +17321,7 @@ msgctxt ""
"par_id561637758600048\n"
"help.text"
msgid "<image src=\"media/helpimg/dircursright.png\" id=\"img_id961637758600048\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311637758600048\">Align right</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/dircursright.png\" id=\"img_id961637758600048\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311637758600048\">Symbol für Rechts ausrichten</alt></image>"
#. EzADx
#: text_direct_cursor.xhp
@@ -17330,7 +17330,7 @@ msgctxt ""
"par_id321637758600048\n"
"help.text"
msgid "Align right"
-msgstr ""
+msgstr "Rechts ausrichten"
#. EuMGF
#: text_direct_cursor.xhp
@@ -18788,7 +18788,7 @@ msgctxt ""
"bm_id3155174\n"
"help.text"
msgid "<bookmark_value>numbering;manually/by styles</bookmark_value> <bookmark_value>list styles</bookmark_value> <bookmark_value>manual numbering in text</bookmark_value> <bookmark_value>paragraph styles;numbering</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Nummerierung; manuell/mit Formatvorlagen</bookmark_value><bookmark_value>Listenvorlagen</bookmark_value><bookmark_value>manuelle Nummerierung im Text</bookmark_value><bookmark_value>Absatzvorlagen; Nummerierung</bookmark_value>"
#. FizBP
#: using_numbering.xhp
@@ -18815,7 +18815,7 @@ msgctxt ""
"par_id31616154131555\n"
"help.text"
msgid "If you want numbered headings, use <menuitem>Tools - </menuitem><link href=\"text/swriter/01/06060000.xhp\" name=\"chap_num_link\">Chapter Numbering</link>, instead of numbering manually."
-msgstr ""
+msgstr "Wenn Sie nummerierte Überschriften wünschen, verwenden Sie <menuitem>Extras – </menuitem><link href=\"text/swriter/01/06060000.xhp\" name=\"chap_num_link\">Kapitelnummerierung</link>, anstatt sie manuell zu nummerieren."
#. Dh8sW
#: using_numbering.xhp
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index d7b2fb80f87..f3dde7349c5 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/de/>\n"
"Language: de\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1565256511.000000\n"
#. W5ukN
@@ -3174,7 +3174,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unmerge Cells"
-msgstr "Zellen tei~len"
+msgstr "Zellen ~trennen"
#. qJGdH
#: CalcCommands.xcu
@@ -21966,7 +21966,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr "Übertragen"
+msgstr "Formatierung übertragen"
#. YGsYs
#: GenericCommands.xcu
@@ -21986,7 +21986,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clone Formatting (double click for multi-selection)"
-msgstr "Format übertragen (Doppelklick für Mehrfachauswahl)"
+msgstr "Formatierung übertragen (Doppelklick für Mehrfachauswahl)"
#. Kx4N5
#: GenericCommands.xcu
@@ -30296,7 +30296,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show change authorship in tooltips"
-msgstr "Autor der Änderung in Tooltips anzeigen"
+msgstr "Autor der Änderung in Tooltipps anzeigen"
#. rYNAa
#: WriterCommands.xcu
@@ -31136,7 +31136,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Field"
-msgstr "Feld einfügen"
+msgstr "Feldbefehl einfügen"
#. vfTmp
#: WriterCommands.xcu
@@ -34486,7 +34486,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr "Übertragen"
+msgstr "Formatierung übertragen"
#. oZiqw
#: WriterCommands.xcu
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index f60e00ff296..a9635567f7b 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-03-31 21:49+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/de/>\n"
"Language: de\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565592942.000000\n"
#. kBovX
@@ -68,7 +68,7 @@ msgstr "Statistik"
#: sc/inc/compiler.hrc:36
msgctxt "RID_FUNCTION_CATEGORIES"
msgid "Spreadsheet"
-msgstr "Tabellendokument"
+msgstr "Tabelle"
#. ZUnEM
#: sc/inc/compiler.hrc:37
@@ -25253,97 +25253,97 @@ msgid "~View"
msgstr "~Ansicht"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "_Bild"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Zeichnen"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medien"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Drucken"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~Drucken"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "_Formular"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -25702,139 +25702,139 @@ msgid "Im_age"
msgstr "_Bild"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Anordnen"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "_Farbe"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Gitter"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Sprache"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "Ä_nderungen"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "K_ommentare"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "_Vergleichen"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Ansicht"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "_Zeichnen"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "_Bearbeiten"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Anordnen"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Ansicht"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "_Gruppieren"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "_3D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "_Schriftart"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "_Ausrichtung"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Ansicht"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Einfügen"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medien"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "_Rahmen"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Anordnen"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Gitter"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Ansicht"
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index b2285766bfa..5a546d62910 100644
--- a/source/de/sd/messages.po
+++ b/source/de/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: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-03-11 14:07+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562386789.000000\n"
#. WDjkB
@@ -4173,109 +4173,109 @@ msgid "~Table"
msgstr "~Tabelle"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Bild"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Zeichnen"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Medien"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "_Formular"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Master"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~Master"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "_3D"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "~3D"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~Extras"
@@ -7062,109 +7062,109 @@ msgid "~Table"
msgstr "~Tabelle"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Bild"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Zeichnen"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Zeichnen"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Medien"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Medien"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "_Formular"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Master"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~Master"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "_3D"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "~3D"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "E_xtension"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "E~xtension"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "E_xtras"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -9710,7 +9710,7 @@ msgstr "Aktivieren, um mit einem Mausklick zur nächsten Folie zu wechseln."
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:275
msgctxt "slidetransitionspanel|rb_auto_after"
msgid "After:"
-msgstr "Danach:"
+msgstr "Nach:"
#. rJJQy
#: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:287
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index 0cedddb5725..d6e4a9ea684 100644
--- a/source/de/svx/messages.po
+++ b/source/de/svx/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: 2021-11-25 19:34+0100\n"
-"PO-Revision-Date: 2022-03-23 11:35+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/svxmessages/de/>\n"
"Language: de\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.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1559619898.000000\n"
#. 3GkZj
@@ -7012,7 +7012,7 @@ msgstr "Die Submission muss einen Namen haben."
#: include/svx/strings.hrc:1259
msgctxt "RID_STR_METHOD_POST"
msgid "Post"
-msgstr "Senden"
+msgstr "Post"
#. XGRQA
#: include/svx/strings.hrc:1260
@@ -12905,7 +12905,7 @@ msgstr "Zugänglichkeitsprüfung"
#: svx/uiconfig/ui/accessibilitycheckentry.ui:30
msgctxt "accessibilitycheckentry|accessibilityCheckEntryGotoButton"
msgid "Go to Issue"
-msgstr "Zum Fehler gehen"
+msgstr "Zum Problem gehen"
#. k4D3g
#: svx/uiconfig/ui/addconditiondialog.ui:8
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index da4d058db07..d3e56dd70a9 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/de/>\n"
"Language: de\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: 1562387341.000000\n"
#. v3oJv
@@ -10499,19 +10499,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Verschiebt die ausgewählte Absatzvorlage in der Verzeichnishierarchie eine Ebene nach unten."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Vorlage"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Vorlagen"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Erstellt Verzeichniseinträge aus bestimmten Absatzvorlagen."
@@ -11624,7 +11624,7 @@ msgstr "Erstellt ein Etikett mit Ihrem Absender. Sollte das Feld Aufschrift eine
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:82
msgctxt "cardmediumpage|label2"
msgid "Label text:"
-msgstr "Beschriftungstext:"
+msgstr "Etikettentext:"
#. RczQE
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:113
@@ -11684,7 +11684,7 @@ msgstr "Um ein bestimmtes Datenbankfeld in das Feld Aufschrift zu übertragen, w
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:301
msgctxt "cardmediumpage|label6"
msgid "Inscription"
-msgstr "Beschriftung"
+msgstr "Aufschrift"
#. iFCWn
#: sw/uiconfig/swriter/ui/cardmediumpage.ui:347
@@ -13955,37 +13955,37 @@ msgid "Exchange Databases"
msgstr "Datenbank austauschen"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Festlegen"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Verwendete Datenbanken"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "Verfügbare _Datenbanken"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Durchsuchen…"
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Öffnet einen Dateiauswahldialog zum Öffnen von Datenbankdateien (*.odb). Die ausgewählte Datei wird der Liste der verfügbaren Datenbanken hinzugefügt."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -13995,31 +13995,31 @@ msgstr ""
"Benutzen Sie Durchsuchen, um eine Datenbankdatei auszuwählen."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Führt die momentan verwendeten Datenbanken auf."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Listet die Datenbanken auf, die in %PRODUCTNAME registriert sind."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Datenbank austauschen"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Datenbank im Dokument:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Ändert die Datenquellen für das aktuelle Dokument."
@@ -20073,109 +20073,109 @@ msgid "Use the current _document"
msgstr "Aktuelles _Dokument verwenden"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Verwendet das aktuelle Writer-Dokument als Grundlage für das Serienbriefdokument."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "_Neues Dokument erstellen"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Erstellt ein neues Writer-Dokument zur Verwendung als Serienbrief."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "_Bestehendes Dokument verwenden"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Wählen Sie ein vorhandenes Writer-Dokument, das als Grundlage für das Serienbriefdokument verwendet werden soll."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Aus _Vorlage erstellen"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Wählen Sie die Vorlage, mit der das Serienbriefdokument erstellt werden soll."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "_Gespeichertes Ausgangsdokument verwenden"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Verwenden Sie ein vorhandenes Serienbriefdokument als Grundlage für ein neues Serienbriefdokument."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Wählen Sie das Dokument."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "_Durchsuchen…"
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Suchen Sie das gewünschte Writer-Dokument und klicken Sie auf »Öffnen«."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "D_urchsuchen…"
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Öffnet einen Dialog zur Dokumentvorlagenauswahl."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Die Datenquelle des aktuellen Dokuments ist nicht registriert. Bitte tauschen Sie die Datenquelle aus."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Datenquelle austauschen…"
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Wählen Sie das Ausgangsdokument des Serienbriefes aus"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Geben Sie das Dokument an, das als Grundlage für das Serienbriefdokument verwendet werden soll."
@@ -22318,49 +22318,49 @@ msgid "Object"
msgstr "Objekt"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Position und Größe"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Optionen"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Umlauf"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Umrandung"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Fläche"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27056,7 +27056,7 @@ msgid "Update"
msgstr "Aktualisieren"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Zeigt Statistiken der aktuellen Datei."
@@ -29483,7 +29483,7 @@ msgstr "Zeigt Text an, der durch Felder für bedingten Text oder versteckten Tex
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:309
msgctxt "viewoptionspage|changestooltip"
msgid "_Tooltips on tracked changes"
-msgstr "_Tooltips für aufgezeichnete Änderungen"
+msgstr "_Tooltipps für aufgezeichnete Änderungen"
#. 8no6x
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:327
diff --git a/source/de/vcl/messages.po b/source/de/vcl/messages.po
index f109adec216..32ed3e75c6e 100644
--- a/source/de/vcl/messages.po
+++ b/source/de/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: 2021-11-16 12:10+0100\n"
-"PO-Revision-Date: 2022-02-28 03:39+0000\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/de/>\n"
"Language: de\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562387351.000000\n"
#. k5jTM
@@ -1451,7 +1451,7 @@ msgstr "Initialen"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:38
msgctxt "STR_FONT_FEATURE_ID_DLIG"
msgid "Discretionary Ligatures"
-msgstr "Ersetzungs-Ligaturen"
+msgstr "Ersetzungsligaturen"
#. N7Q8C
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:39
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Druckt mehrere Seiten auf ein Blatt."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Benutzerdefiniert"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Wählen Sie, wie viele Seiten auf ein Blatt gedruckt werden sollen."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Seiten:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Wählen Sie die Anzahl der Zeilen."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "zu"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Wählen Sie die Anzahl der Spalten."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Abstand:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Geben Sie den Abstand zwischen den einzelnen Seiten auf einem Blatt an."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "zwischen Seiten"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Abstand:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Geben Sie den Abstand zwischen den gedruckten Seiten und dem Papierrand an."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "zum Blattrand"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Reihenfolge:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Von links nach rechts, dann nach unten"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Von oben nach unten, dann nach rechts"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Von oben nach unten, dann nach links"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Von rechts nach links, dann nach unten"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Wählen Sie die Reihenfolge, in der die Seiten gedruckt werden sollen."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Einen Rahmen um jede Seite zeichnen"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Druckt einen Rahmen um jede Seite."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Broschüre"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Wählen Sie diese Option, um das Dokument im Format einer Broschüre zu drucken."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Sortierungsvorschau"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Ändern Sie die Anordnung der Seiten, die auf jedes Blatt Papier gedruckt werden sollen. Die Vorschau zeigt, wie jedes letzte Blatt aussehen wird."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "Weitere"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Seitenlayout"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Standard"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Druckt das aktuelle Dokument, die Auswahl oder die angegebenen Seiten. Sie können auch die Druckoptionen für das aktuelle Dokument vorgeben."
diff --git a/source/dgo/chart2/messages.po b/source/dgo/chart2/messages.po
index 84b7515c91f..ab8eb16a07b 100644
--- a/source/dgo/chart2/messages.po
+++ b/source/dgo/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3709,7 +3709,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index 0b5241e158c..0b220bc44a8 100644
--- a/source/dgo/cui/messages.po
+++ b/source/dgo/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17656,177 +17656,153 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr " स्वचलत"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "High-contrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr ""
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Screen font anti-aliasin_g"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
#, fuzzy
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "सूचियें गी छांटो"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/dgo/dbaccess/messages.po b/source/dgo/dbaccess/messages.po
index 6194ff0ac34..61c52090122 100644
--- a/source/dgo/dbaccess/messages.po
+++ b/source/dgo/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: dgo (generated) <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/dgo/>\n"
@@ -3455,75 +3455,75 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "जड़त डैटाबेस"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
#, fuzzy
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "तौलै गै बरते दा "
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "खोह्‌ल्लो"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3531,7 +3531,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/dgo/extensions/messages.po b/source/dgo/extensions/messages.po
index a47398d0517..11984af44ff 100644
--- a/source/dgo/extensions/messages.po
+++ b/source/dgo/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -307,600 +307,588 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "फ़ार्म सजराकरण करो"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "थ्होना"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "जवाब डाका पाओ/ डाक"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "बहुभागी"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "इबारत"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "मानक (छुट्टा) "
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "मानक (छुट्टा) "
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "मानक (छुट्टा) "
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "मानक (लम्मा) "
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "चुनेआ नेईं"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "चुनो "
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "परिभाशत नेईं"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "सब रकाडें"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "क्रियाशील रकाड"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "चालू तरीक "
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "नेईं "
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "हां "
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "उद्‌गम रूप"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "कोरा"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr " रोको\t"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "कोई नेईं"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "केह्‌रा "
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "बहु"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "फलाऽ"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "आडा "
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "खड़ोतमां"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "बिलानिर्देश"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "ठीक ऐ "
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
#, fuzzy
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "रद्द करो"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
#, fuzzy
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "मदद "
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "चुने दे टिप्पणी"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "चुनंदा प्रविश्टी दी स्थिति"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "केह्‌री -लकीर"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "बहु-लकीर "
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "रूप-रचना सनैं बहु-लकीर "
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "कोई नेईं"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "आडा "
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "खड़ोतमां"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "दोऐ "
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "त्रै आयामी"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "पद्धरा"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "खब्बा धुर उप्पर "
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "खब्बा केंदरत "
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "खब्बा थल्ला"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "सज्जा धुर उप्पर"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "सज्जा केंदरत"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "सज्जा थल्ला"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "उप्पर खब्बै"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "उप्पर केंदरत "
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "उप्पर सज्जै"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "ख’ल्ल खब्बै "
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "ख’ल्ल केंदरत"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "ख’ल्ल सज्जै "
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "केंदरतCentred"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "सांभी-सम्हाली रक्खो "
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "प्रतिस्थापन करो"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "तैह् करो"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "नेईं "
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "अनुपात रक्खो"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr ""
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "खब्बे-शा-सज्जै "
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "सज्जेआ खब्बै"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "सुपरआर्डिनेट चीज सैट्टिंगां बरतो"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "कदें नेईं"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
#, fuzzy
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "जिसलै फोकस"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "म्हेशा (~t)"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "पैह्‌रा "
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "संप्रतीक"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "सफे च"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "चगाठ "
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "संप्रतीक"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "सफे च"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/dgo/fpicker/messages.po b/source/dgo/fpicker/messages.po
index 09447bfe218..0ade8550158 100644
--- a/source/dgo/fpicker/messages.po
+++ b/source/dgo/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -217,61 +217,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "फाइल नांऽ "
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "फाइल ~किस्म:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "~सिर्फ-पढ़नजोग"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "पासवर्ड सनैं बचाइयै रक्खो "
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "स्वचलत फाइल नांऽ विस्तार "
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "पूनी सैट्टिंगें दा संपादन करो"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/dgo/sc/messages.po b/source/dgo/sc/messages.po
index 238d9b9c470..f46bf374775 100644
--- a/source/dgo/sc/messages.po
+++ b/source/dgo/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25932,97 +25932,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26411,158 +26411,158 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "बनकाओ\t"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "C_olour"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "ग्रिड "
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "भाशा"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "समीक्षा"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "नोट(बहु.)"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr " द्रिश्श\t"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "संपादन करो\t"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "बनकाओ\t"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr " द्रिश्श\t"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "समूह्"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "फांट"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "समायोजन"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr " द्रिश्श\t"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "समावेश करो "
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "मीडिया"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr " चगाठ "
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "बनकाओ\t"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
#, fuzzy
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "ग्रिड "
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/dgo/sd/messages.po b/source/dgo/sd/messages.po
index 47879fce749..415bd5ec10a 100644
--- a/source/dgo/sd/messages.po
+++ b/source/dgo/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4261,109 +4261,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7245,109 +7245,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index 064212a412f..caa0220932d 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10772,20 +10772,20 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr ""
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
#, fuzzy
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "शैलियां "
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr ""
@@ -14364,38 +14364,38 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
#, fuzzy
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "परिभाशत करो\t"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "तपाश करो... "
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr ""
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14405,31 +14405,31 @@ msgstr ""
" Use the browse button to select a database file."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr ""
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr ""
@@ -20748,112 +20748,112 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr ""
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr ""
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr ""
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr ""
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr ""
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr ""
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "तपाश करो... "
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "तपाश करो... "
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "मेल विलय लेई शुरुआती दस्तावेज चुनो"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23040,52 +23040,52 @@ msgid "Object"
msgstr "चीज"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "किस्म "
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
#, fuzzy
msgctxt "objectdialog|options"
msgid "Options"
msgstr "विकल्प(बहु.) "
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "लपेट (~k)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपरलिंक "
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "बाडर (बहु.)किनारा"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "मैक्रो"
@@ -28013,7 +28013,7 @@ msgid "Update"
msgstr "अपडेट करो"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/dgo/vcl/messages.po b/source/dgo/vcl/messages.po
index d33e5595318..df19b4bff10 100644
--- a/source/dgo/vcl/messages.po
+++ b/source/dgo/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2355,171 +2355,171 @@ msgid "Print multiple pages per sheet of paper."
msgstr ""
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
#, fuzzy
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "विशेश: "
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr ""
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr ""
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "आसेआ"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr ""
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr ""
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "सफें बशक्हार"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr ""
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "शीट बाडर गी"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr ""
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "हर सफे दे दोआलै बाडर खिच्चो"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr ""
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
#, fuzzy
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "जानकारी पोथी "
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr ""
diff --git a/source/dsb/chart2/messages.po b/source/dsb/chart2/messages.po
index d7db3d5bcae..106afcff146 100644
--- a/source/dsb/chart2/messages.po
+++ b/source/dsb/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-04-12 11:43+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547385228.000000\n"
#. NCRDD
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Póstaja licbu linijow za słupowe a linijowe diagramy."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Wubjeŕśo zakładny diagramowy typ."
diff --git a/source/dsb/cui/messages.po b/source/dsb/cui/messages.po
index 451be37d54c..d9e184e015a 100644
--- a/source/dsb/cui/messages.po
+++ b/source/dsb/cui/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: 2022-01-10 12:20+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564571080.000000\n"
#. GyY9M
@@ -9680,7 +9680,7 @@ msgstr "Radialny"
#: cui/uiconfig/ui/gradientpage.ui:222
msgctxt "gradientpage|gradienttypelb"
msgid "Ellipsoid"
-msgstr "Ellipsoid"
+msgstr "Elipsojty"
#. 7FRe4
#: cui/uiconfig/ui/gradientpage.ui:223
@@ -16187,7 +16187,7 @@ msgstr "1.2 rozšyrjony (modus kompatibelnosći)"
#: cui/uiconfig/ui/optsavepage.ui:355
msgctxt "optsavepage|odfversion"
msgid "1.2 Extended"
-msgstr "1.2 Extended"
+msgstr "1.2 rozšyrjony"
#. vLmeZ
#: cui/uiconfig/ui/optsavepage.ui:356
@@ -17137,176 +17137,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Awtomatiski"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Galaxy"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Wusoki kontrast"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Oxygen"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Klasiski"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Breeze"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Pódawa symbolowy stil za symbole w symbolowych rědkach a dialogach."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Sy_mbolowy stil:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Pśidajśo dalšne symbolowe drastwy pśez rozšyrjenja"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Symbolowy stil"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Pomina se nowy start"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Hard_warowe póspěšenje wužywaś"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Direktny pśistup k funkcijam hardwary grafiskego wózjawjeńskego adaptera, aby se zwobraznjenje na wobrazowce pólěpšyło."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Wugł_aźenje kantow wužywaś"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Gaž se pódpěra, móžośo antialiasing grafiki zmóžniś abo znjemóžniś. Ze zmóžnjonym antialiasingom, zwobraznjenje nejwěcej grafiskich objektow gładše wuglěda, a z mjenjej artefaktami."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Skia za kreslenje wužywaś"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Skia za kreslenje softwary wunuźiś"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Pomina se nowy start. To móžo wužywanjeju grafikowych gónjakow zajźowaś."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Skia jo tuchylu zmóžnjona."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Skia jo tuchylu znjemóžnjona."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Wudaśe grafiki"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Pśeg_lěd pismow pokazaś"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Pokazujo mjenja wuběrajobnych pismow we wótpowědnym pismje, na pśikład pisma w pólu „Pismo“ w rědce „Formatěrowanje“."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "W_ugłaźenje pismow wobrazowki"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Wubjeŕśo toś to nastajenje, aby tekst na wobrazowce gładšy wuglědał."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "wó_t:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Zapódajśo nejmjeńšu pismowu wjelikosć, na kótaruž se ma antialiasing nałožyś."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Lisćina pismow"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Grafikowe testy pśewjasć"
@@ -21564,7 +21540,7 @@ msgstr "Radialny"
#: cui/uiconfig/ui/transparencytabpage.ui:291
msgctxt "transparencytabpage|liststoreTYPE"
msgid "Ellipsoid"
-msgstr "Ellipsoid"
+msgstr "Elipsojty"
#. GDBS5
#: cui/uiconfig/ui/transparencytabpage.ui:292
diff --git a/source/dsb/dbaccess/messages.po b/source/dsb/dbaccess/messages.po
index f5410ed5b67..d971511e403 100644
--- a/source/dsb/dbaccess/messages.po
+++ b/source/dsb/dbaccess/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: 2021-11-16 12:08+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562264362.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "_Nowu datowu banku napóraś"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Wubjeŕśo toś to nastajenje, aby nowu datowu banku załožył."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "_Zasajźona datowa banka:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Eksistěrujucu _dataju datoweje banki wócyniś"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Wubjeŕśo, aby dataju datoweje banki z lisćiny njedawno wužytych datajow wócynił abo z dialoga datajowego wuběranja."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_Ako slědna wužyta:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Wubjeŕśo dataju datoweje banki z lisćiny njedawno wužytych datajow. Klikniśo na Dokóńcyś, ay dataju ned wócynił a asistent spušćił."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Wócyniś"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Wócynja dialog wuběranja datajow, źož móžośo dataju datoweje banki wubraś. Klikniśo na „Öffnen“ abo na „OK“ w dialogu wuběranja datajow, aby dataju ned wócynił a asistent spušćił."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Z e_ksistěrujuceju datoweju banku zwězaś"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Wubjeŕśo, aby dokument datoweje banki za eksistěrujucy zwisk datoweje banki napórał."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Wubjeŕśo typ datoweje banki za eksistěrujucy zwisk datoweje banki."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3471,7 +3471,7 @@ msgstr ""
"njejo daniž HSQLDB daniž Firebird k dispoziciji."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Asistent datoweje banki dataju datoweje banki napórajo, kótaraž informacije wó datowej bance wopśimujo."
@@ -3786,7 +3786,7 @@ msgstr "Wěsty zwisk (TLS/SSL) w_užywaś"
#: dbaccess/uiconfig/ui/ldappage.ui:44
msgctxt "ldappage|label1"
msgid "_Base DN:"
-msgstr "_Base DN:"
+msgstr "_BaseDN:"
#. iAAWx
#: dbaccess/uiconfig/ui/ldappage.ui:69
diff --git a/source/dsb/editeng/messages.po b/source/dsb/editeng/messages.po
index 4f303f46709..03c872e0da7 100644
--- a/source/dsb/editeng/messages.po
+++ b/source/dsb/editeng/messages.po
@@ -4,16 +4,16 @@ 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-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-01-28 07:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/dsb/>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/editengmessages/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1540667124.000000\n"
#. BHYB4
@@ -939,7 +939,7 @@ msgstr "cm"
#: include/editeng/editrids.hrc:167
msgctxt "RID_SVXITEMS_METRIC_INCH"
msgid "inch"
-msgstr "inch"
+msgstr "col"
#. QMd2A
#: include/editeng/editrids.hrc:168
diff --git a/source/dsb/extensions/messages.po b/source/dsb/extensions/messages.po
index 4e665956efb..0d2422f26ff 100644
--- a/source/dsb/extensions/messages.po
+++ b/source/dsb/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2022-04-26 12:46+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/extensionsmessages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554904016.000000\n"
#. cBx8W
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Formular aktualizěrowaś"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Wótwołaś"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Pósłaś"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Wěcejźělny"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Tekst"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Standard (krotki)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Standard (krotki LL)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Standard (krotki LLLL)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Standard (dłujki)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "ŹŹ/MM/LL"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/ŹŹ/LL"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "LL/MM/ŹŹ"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "ŹŹ/MM/LLLL"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/ŹŹ/LLLL"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "LLLL/MM/ŹŹ"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "LL-MM-ŹŹ"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "LLLL-MM-ŹŹ"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Njewubrany"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Wubrany"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Njedefiněrowany"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Wšykne datowe sajźby"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Aktualna datowa sajźba"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Aktualny bok"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Ně"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Jo"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Nadrědowany formular"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_blank"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_parent"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "_self"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_top"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Žeden"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Jadnory"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Wěcejrazowy"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Wobceŕk"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Horicontalny"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Wertikalny"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Standard"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "W pórěźe"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Pśetergnuś"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Pomoc"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Wubrany zapisk"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Pozicija wubranego zapiska"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "jadnosmužkowy"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Wěcejsmužkowy"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Wěcejsmužkowy z formatěrowanim"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Žeden"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Horicontalny"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Wertikalny"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Wobej"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Płony"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Nalěwo górjejce"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Nalěwo w srjejźi"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Nalěwo dołojce"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Napšawo górjejce"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Napšawo w srjejźi"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Napšawo dołojce"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Górjejce nalěwo"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Górjejce w srjejźi"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Górjejce napšawo"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Dołojce nalěwo"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Dołojce w srjejźi"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Dołojce napšawo"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Centrěrowane"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Wobchowaś"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Wuměniś"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Schowaś"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Ně"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Poměr bokow wobchowaś"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Wjelikosći pśiměriś"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Wótlěwa napšawo"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Wótpšawa nalěwo"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Nastajenja nadrědowanego objekta wužywaś"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Nigda"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Gaž jo wubrany"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Pśecej"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "K wótstawkoju"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Ako znamuško"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "K bokoju"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "K wobłukoju"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "K znamuškoju"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "K bokoju"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "K celi"
diff --git a/source/dsb/extras/source/autocorr/emoji.po b/source/dsb/extras/source/autocorr/emoji.po
index 3d55af599ef..0609eed228e 100644
--- a/source/dsb/extras/source/autocorr/emoji.po
+++ b/source/dsb/extras/source/autocorr/emoji.po
@@ -4,15 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2018-11-17 16:56+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/extrassourceautocorremoji/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542473760.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
@@ -743,7 +744,7 @@ msgctxt ""
"DOUBLE_PRIME\n"
"LngText.text"
msgid "inch"
-msgstr "inch"
+msgstr "col"
#. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji
#. yALTE
@@ -2773,7 +2774,7 @@ msgctxt ""
"UNIVERSAL_RECYCLING_SYMBOL\n"
"LngText.text"
msgid "recycling"
-msgstr "recycling, běły"
+msgstr "recycling"
#. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji
#. SWE9X
@@ -2783,7 +2784,7 @@ msgctxt ""
"BLACK_UNIVERSAL_RECYCLING_SYMBOL\n"
"LngText.text"
msgid "recycling2"
-msgstr "recycling"
+msgstr "recycling2"
#. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji
#. 9FCXo
@@ -13483,7 +13484,7 @@ msgctxt ""
"PERSON_CARTWHEELING\n"
"LngText.text"
msgid "gymnast"
-msgstr "gymnast"
+msgstr "turnaŕ"
#. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji
#. wDcBh
diff --git a/source/dsb/formula/messages.po b/source/dsb/formula/messages.po
index f4a6062c8ac..c2e09c9fc58 100644
--- a/source/dsb/formula/messages.po
+++ b/source/dsb/formula/messages.po
@@ -4,16 +4,16 @@ 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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-01-28 07:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/dsb/>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/formulamessages/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
#. YfKFn
#: formula/inc/core_resource.hrc:2277
@@ -72,7 +72,7 @@ msgstr "#Totals"
#: formula/inc/core_resource.hrc:2290
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "#This Row"
-msgstr "#This Row"
+msgstr "#Toś ta smužka"
#. kHXXq
#: formula/inc/core_resource.hrc:2291
diff --git a/source/dsb/fpicker/messages.po b/source/dsb/fpicker/messages.po
index 6a99a6c03ce..a5a91109c60 100644
--- a/source/dsb/fpicker/messages.po
+++ b/source/dsb/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-01-28 07:36+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/dsb/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Slědna změna"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "Wó_cyniś"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "Wótg_raś"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Datajowe _mě:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "Datajowy _typ:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "_Jano za cytanje"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Z gronidłom składowaś"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Awtomatiska datajowa kóńcowka"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "_Filtrowe nastajenja wobźěłać"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Z GPG-klucom koděrowaś"
diff --git a/source/dsb/officecfg/registry/data/org/openoffice.po b/source/dsb/officecfg/registry/data/org/openoffice.po
index 7c5f274d67a..e2aee22665f 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice.po
@@ -4,15 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2018-10-02 18:15+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenoffice/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1538504131.000000\n"
#. foAxC
@@ -103,4 +104,4 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Report Builder"
-msgstr "Base: Report Builder"
+msgstr "Base: Designer rozpšawow"
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office.po b/source/dsb/officecfg/registry/data/org/openoffice/Office.po
index 420d98f112b..44a904da0a9 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice/Office.po
@@ -4,16 +4,16 @@ 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-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-02-07 23:36+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/dsb/>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeoffice/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1547386603.000000\n"
#. HhMVS
@@ -1004,7 +1004,7 @@ msgctxt ""
"STR_SUN_OPTIMIZATION_WIZARD2\n"
"value.text"
msgid "Presentation Minimizer"
-msgstr "Presentation Minimizer"
+msgstr "Miniměrowak prezentacijow"
#. sH2AP
#: PresentationMinimizer.xcu
diff --git a/source/dsb/sc/messages.po b/source/dsb/sc/messages.po
index d0dae6cd827..f368aec158b 100644
--- a/source/dsb/sc/messages.po
+++ b/source/dsb/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-04-26 12:46+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565009164.000000\n"
#. kBovX
@@ -25261,97 +25261,97 @@ msgid "~View"
msgstr "~Naglěd"
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr "Wobr_az"
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "K_resliś"
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medije"
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Śišćaś"
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Ś~išćaś"
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ro_zšyrjenje"
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -25710,139 +25710,139 @@ msgid "Im_age"
msgstr "Wobr_az"
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "_Rědowaś"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "Ba_rwa"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "_Kśidno"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "_Rěc"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "_Pśeglědanje"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "_Komentary"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr "Pśi_rownaś"
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "_Naglěd"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr "K_resliś"
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "Wo_bźěłaś"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "_Rědowaś"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "_Naglěd"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "Ku kupce _zestajiś"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr "_3D"
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "P_ismo"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "W_usměrjenje"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "_Naglěd"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "_Zasajźiś"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "_Medije"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "Wobłu_k"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "_Rědowaś"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "_Kśidno"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
msgstr "_Naglěd"
diff --git a/source/dsb/sccomp/messages.po b/source/dsb/sccomp/messages.po
index baeeab855de..26b3b1a4ed5 100644
--- a/source/dsb/sccomp/messages.po
+++ b/source/dsb/sccomp/messages.po
@@ -4,16 +4,16 @@ 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-03-29 16:03+0200\n"
-"PO-Revision-Date: 2021-01-28 07:37+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sccompmessages/dsb/>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/sccompmessages/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1522610561.000000\n"
#. whDxm
@@ -26,13 +26,13 @@ msgstr "%PRODUCTNAME linearny solwer"
#: sccomp/inc/strings.hrc:25
msgctxt "RID_COINMP_SOLVER_COMPONENT"
msgid "%PRODUCTNAME CoinMP Linear Solver"
-msgstr "%PRODUCTNAME CoinMP Linear Solver"
+msgstr "%PRODUCTNAME CoinMP Linearny solver"
#. 22ZBP
#: sccomp/inc/strings.hrc:26
msgctxt "RID_SWARM_SOLVER_COMPONENT"
msgid "%PRODUCTNAME Swarm Non-Linear Solver (experimental)"
-msgstr "Njelinearny solwer %PRODUCTNAME z rojom (eksperimentelny)"
+msgstr "Njelinearny solver %PRODUCTNAME z rojom (eksperimentelny)"
#. 8TGKo
#: sccomp/inc/strings.hrc:27
diff --git a/source/dsb/scp2/source/base.po b/source/dsb/scp2/source/base.po
index 80ab391bbd8..85d48910f73 100644
--- a/source/dsb/scp2/source/base.po
+++ b/source/dsb/scp2/source/base.po
@@ -4,15 +4,16 @@ 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: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2018-08-22 20:54+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/scp2sourcebase/dsb/>\n"
"Language: dsb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1534971263.000000\n"
#. cbtbu
@@ -85,7 +86,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC\n"
"LngText.text"
msgid "PostgreSQL Connector"
-msgstr "PostgreSQL Connector"
+msgstr "Zwězowak PostgreSQL"
#. Kfv2H
#: postgresqlsdbc.ulf
@@ -94,7 +95,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_EXTENSIONS_POSTGRESQLSDBC\n"
"LngText.text"
msgid "PostgreSQL Connector"
-msgstr "PostgreSQL Connector"
+msgstr "Zwězowak PostgreSQL"
#. DXpPd
#: registryitem_base.ulf
diff --git a/source/dsb/sd/messages.po b/source/dsb/sd/messages.po
index 450e7471e5f..f50cc23308b 100644
--- a/source/dsb/sd/messages.po
+++ b/source/dsb/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2022-04-26 12:46+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/sdmessages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562269141.000000\n"
#. WDjkB
@@ -4175,109 +4175,109 @@ msgid "~Table"
msgstr "~Tabela"
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr "Wobraz"
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr "K_resliś"
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr "_Medije"
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Globalny dokument"
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr "~Pśedłoga"
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ro_zšyrjenje"
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -7064,109 +7064,109 @@ msgid "~Table"
msgstr "~Tabela"
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr "Wobraz"
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr "K_resliś"
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresliś"
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr "_Medije"
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr "~Medije"
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rma"
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr "_Globalny dokument"
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr "~Pśedłoga"
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr "3_d"
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr "3~d"
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr "Ro_zšyrjenje"
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr "Ro~zšyrjenje"
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
diff --git a/source/dsb/starmath/messages.po b/source/dsb/starmath/messages.po
index 1a2d3592162..e762abaca01 100644
--- a/source/dsb/starmath/messages.po
+++ b/source/dsb/starmath/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: 2021-09-10 23:12+0200\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/starmathmessages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1562269165.000000\n"
#. GrDhX
@@ -2330,7 +2330,7 @@ msgstr "cerwjeny"
#: starmath/inc/strings.hrc:340
msgctxt "STR_AQUA"
msgid "aqua"
-msgstr "aqua"
+msgstr "tirkis"
#. GLy7q
#: starmath/inc/strings.hrc:341
diff --git a/source/dsb/svx/messages.po b/source/dsb/svx/messages.po
index 2b706d496f2..0d213539944 100644
--- a/source/dsb/svx/messages.po
+++ b/source/dsb/svx/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: 2021-11-25 19:34+0100\n"
-"PO-Revision-Date: 2022-04-12 11:43+0000\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/svxmessages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1559381585.000000\n"
#. 3GkZj
@@ -7691,7 +7691,7 @@ msgstr "$(WIDTH) x $(HEIGHT) pśi $(DPI) DPI"
#: include/svx/strings.hrc:1386
msgctxt "STR_IMAGE_CAPACITY"
msgid "$(CAPACITY) kiB"
-msgstr "$(CAPACITY) kB"
+msgstr "$(CAPACITY) kiB"
#. Xgeqc
#: include/svx/strings.hrc:1387
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index e8bf61b468c..58c1a29c0ce 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/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: 2022-01-10 12:22+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
+"PO-Revision-Date: 2022-07-01 09:59+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562269173.000000\n"
#. v3oJv
@@ -3673,7 +3673,7 @@ msgstr "Pytaś..."
#: sw/inc/strings.hrc:274
msgctxt "STR_STATSTR_LETTER"
msgid "Letter"
-msgstr "Letter"
+msgstr "List"
#. LuH5F
#: sw/inc/strings.hrc:275
@@ -10513,19 +10513,19 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "Pśesunjo wubranu wótstawkowu pśedłogu wó jadnu rowninu w zapisowej hierarchiji dołoj."
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr "Pśedłoga"
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "Pśedłogi"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "Napórajo zapisowe zapiski z wěstych wótstawkowych pśedłogow."
@@ -13969,37 +13969,37 @@ msgid "Exchange Databases"
msgstr "Datowe banki wuměniś"
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "Definěrowaś"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr "Wužywane datowe banki"
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr "K _dispoziciji stojece datowe banki"
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "Pśepytaś..."
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "Wócynja dialog „Öffnen/Wočinić“, aby dataju datoweje banki (*.odb) wubrał. Wubrana dataja se lisćinje k dispoziciji stojecych datowych bankow pśidawa."
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14009,31 +14009,31 @@ msgstr ""
"Wužywajśo tłocašk pśepytaś, aby dataju datoweje banki wubrał."
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "Naliscyjo datowe banki, kótarež se tuchylu wužywaju."
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr "Nalicyjo datowe banki, kótarež su we %PRODUCTNAME zregistrěrowane."
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr "Datowe banki wuměniś"
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr "Datowa banka nałožona na dokument:"
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "Změńśo datowe žrědła za aktualny dokument."
@@ -20087,109 +20087,109 @@ msgid "Use the current _document"
msgstr "Aktualny _dokument wužywaś"
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "Wužywa aktualny dokument Writer ako zakład za dokument serijowego lista."
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr "No_wy dokument napóraś"
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "Napórajo nowy dokument Writer, aby se za serijowy list wužywał."
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr "Z _eksistěrujucym dokumentom zachopiś"
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "Wubjeŕśo eksistěrujucy dokument Writer, kótaryž se ma ako zakład za dokument serijowego lista wužywaś."
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr "Z pśedł_ogu zachopiś"
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "Wubjeŕśo pśedłogu, z kótarejuž se ma dokument serijowego lista napóraś."
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr "_Njedawno skłaźony startowy dokument wužywaś"
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "Wužywajśo eksistěrujucy dokument serijowego lista ako zakład za nowy dokument serijowego lista."
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "Wubjeŕśo dokument."
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "Pśepy_taś..."
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr "Pytajśo za dokumentom Writer, kótaryž cośo wužywaś a klikniśo pón na „Wócyniś“."
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "Pśepy_taś..."
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Wócynja dialog za wuběranje pśedłogow."
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr "Datowe žrědło aktualnego dokumenta njejo zregistrěrowane. Pšosym wuměńśo datowu banku."
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr "Datowu~banku wuměniś…"
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Wubjeŕśo startowy dokument za serijowy list"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Pódajśo dokument, kótaryž cośo ako zakład za dokument serijowego lista wužywaś."
@@ -22332,49 +22332,49 @@ msgid "Object"
msgstr "Objekt"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "Typ"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Nastajenja"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Woběg"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperwótkaz"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Płonina"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -27070,7 +27070,7 @@ msgid "Update"
msgstr "Aktualizěrowaś"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr "Pokazujo statistiku za aktualnu dataju."
diff --git a/source/dsb/vcl/messages.po b/source/dsb/vcl/messages.po
index 9b39b9b511f..a11efd029b2 100644
--- a/source/dsb/vcl/messages.po
+++ b/source/dsb/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: 2021-11-16 12:10+0100\n"
-"PO-Revision-Date: 2022-04-26 12:46+0000\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
+"PO-Revision-Date: 2022-07-01 09:58+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562269177.000000\n"
#. k5jTM
@@ -70,7 +70,7 @@ msgstr "B5 (ISO)"
#: vcl/inc/print.hrc:41
msgctxt "RID_STR_PAPERNAMES"
msgid "Letter"
-msgstr "Letter"
+msgstr "List"
#. GJoaX
#: vcl/inc/print.hrc:42
@@ -166,7 +166,7 @@ msgstr "Executive"
#: vcl/inc/print.hrc:57
msgctxt "RID_STR_PAPERNAMES"
msgid "German Legal Fanfold"
-msgstr "German Legal Fanfold"
+msgstr "Nimska legalna bźezkóńcna papjera"
#. A48FP
#: vcl/inc/print.hrc:58
@@ -244,7 +244,7 @@ msgstr "B6 (JIS)"
#: vcl/inc/print.hrc:70
msgctxt "RID_STR_PAPERNAMES"
msgid "Ledger"
-msgstr "Ledger"
+msgstr "Głowne knigły"
#. nD5vU
#: vcl/inc/print.hrc:71
@@ -286,13 +286,13 @@ msgstr "Italska wobalka"
#: vcl/inc/print.hrc:77
msgctxt "RID_STR_PAPERNAMES"
msgid "U.S. Standard Fanfold"
-msgstr "U.S. Standard Fanfold"
+msgstr "U.S. standardna bźezkóńcna papjera"
#. EnDDT
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
msgid "German Standard Fanfold"
-msgstr "German Standard Fanfold"
+msgstr "Nimska standardna bźezkóńcna papjera"
#. PbPaG
#: vcl/inc/print.hrc:79
@@ -322,7 +322,7 @@ msgstr "15x11"
#: vcl/inc/print.hrc:83
msgctxt "RID_STR_PAPERNAMES"
msgid "Invitation Envelope"
-msgstr "Invitation Envelope"
+msgstr "Pśepšoseńska wobalka"
#. P9Ams
#: vcl/inc/print.hrc:84
@@ -352,7 +352,7 @@ msgstr "A4 Plus"
#: vcl/inc/print.hrc:88
msgctxt "RID_STR_PAPERNAMES"
msgid "Double Postcard"
-msgstr "Double Postcard"
+msgstr "Dwójna póstowa kórtka"
#. ZidKk
#: vcl/inc/print.hrc:89
@@ -1280,7 +1280,7 @@ msgstr "in"
#: vcl/inc/units.hrc:40
msgctxt "SV_FUNIT_STRINGS"
msgid "inch"
-msgstr "inch"
+msgstr "col"
#. 4AEJE
#. To translators: prime symbol for foot
@@ -2324,169 +2324,169 @@ msgid "Print multiple pages per sheet of paper."
msgstr "Někotare boki na jadno łopjeno papjery śišćaś."
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "Swójski"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "Wubjeŕśo, kak wjele bokow se ma na łopjeno papjery śišćaś."
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr "Boki:"
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "Wubjeŕśo licbu smužkow."
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "wót"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "Wubjeŕśo licbu słupow."
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr "Kšoma:"
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "Wubjeŕso kšomu mjazy jadnotliwymi bokami na kuždem łopjenje papjery."
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr "mjazy bokami"
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr "Wótkłon:"
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "Wubjeŕśo kšomu mjazy wuśišćanymi bokami a kšomu papjery."
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr "k łopjenowej kšomje"
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr "Pórěd:"
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr "Wótlěwa napšawo, pón dołoj"
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr "Zwusoka dołoj, pótom napšawo"
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr "Zwusoka dołoj, pótom nalěwo"
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr "Wótpšawa nalěwo, pótom dołoj"
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "Wubjeŕśo pórěd, w kótaremž se maju boki wuśišćaś."
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr "Ramik wokoło kuždego boka kresliś"
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "Ramik wokoło kuždego boka kresliś."
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "Brošura"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr "Wubjeŕśo toś to nastajenje, aby dokument w brošurowem formaśe śišćał."
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr "Zestajeński pśeglěd"
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr "Změńśo pórěd bokow, kótarež se maju na kuždem łopjenje papjery śišćaś. Pśeglěd pokazujo, kak kužde kóńcne łopjeno papjery wuglěda."
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr "Wě_cej"
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr "Wugótowanje boka"
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr "Powšykne"
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "Śišći aktualny dokument, wuběrk abo boki, kótarež pódawaśo. Móžośo teke śišćaŕske nastajenja za aktualny dokument nastajiś."
diff --git a/source/dz/chart2/messages.po b/source/dz/chart2/messages.po
index 769cdd5cee1..3799a5547a2 100644
--- a/source/dz/chart2/messages.po
+++ b/source/dz/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-10-21 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3707,7 +3707,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr ""
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr ""
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index e8e09e2ca53..de07dbe57ca 100644
--- a/source/dz/cui/messages.po
+++ b/source/dz/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17599,177 +17599,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "རང་བཞིན་"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr ""
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-#, fuzzy
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "ཁྱད་པར་མཐོ་དྲག(~H)"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr ""
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr ""
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr ""
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr ""
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr ""
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr ""
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr ""
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr ""
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr ""
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr ""
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "གསལ་གཞི་བཀྲམ་སྟོན་ལེགས་བཟོ་འབད་ནི་ལུ་ཚད་རིས་ཀྱི་བཀྲམ་སྟོན་མཐུན་བྱེད་ཀྱི་སྲ་ཆས་ཁྱད་རྣམ་ཚུ་ཐད་ཀར་དུ་འཛུལ་སྤྱོད་འབདཝ་ཨིན།"
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr ""
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr ""
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr ""
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr ""
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr ""
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr ""
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr ""
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr ""
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr ""
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr ""
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr ""
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr ""
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr ""
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr ""
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr ""
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr ""
diff --git a/source/dz/dbaccess/messages.po b/source/dz/dbaccess/messages.po
index 35804dcec88..d9fcaf51cfc 100644
--- a/source/dz/dbaccess/messages.po
+++ b/source/dz/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2020-01-07 12:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Dzongkha <https://weblate.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/dz/>\n"
@@ -3468,75 +3468,75 @@ msgid "Create a n_ew database"
msgstr ""
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr ""
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
#, fuzzy
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "གནས་འདྲེན་འབད་ཡོད་པའི་གནས་སྡུད་གཞི་རྟེན་"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr ""
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr ""
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
#, fuzzy
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "འཕྲལ་གྱི་ལག་ལེན་འཐབ་ཡོདཔ་ཨིན།"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr ""
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "ཁ་ཕྱེ།"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr ""
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr ""
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr ""
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr ""
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3544,7 +3544,7 @@ msgid ""
msgstr ""
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr ""
diff --git a/source/dz/extensions/messages.po b/source/dz/extensions/messages.po
index 33e60cbc7e7..d1528ab3421 100644
--- a/source/dz/extensions/messages.po
+++ b/source/dz/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -312,597 +312,583 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "འབྲི་ཤོག་ཡང་སེལ་འབད་"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "ལེན་"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-#, fuzzy
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "གནས་བསྐྱོད་"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "ཡུ་ཨར་ཨེལ།"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "ཡན་ལག་སྣ་ཚོགས་"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "ཚིག་ཡིག"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "ཚད་ལྡན། (ཐུང་ཀུ།)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "ཚད་ལྡན་ (ཐུང་ཀུ་ YY)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "ཚད་ལྡན་ (ཐུང་ཀུ་ YYYY)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "ཚད་ལྡན།(རིངམ།)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "DD/MM/YY"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "MM/DD/YY"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "YY/MM/DD"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "DD/MM/YYYY"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "MM/DD/YYYY"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "YYYY/MM/DD"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "YY-MM-DD"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
#, fuzzy
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "YYYY-MM-DD"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 PM"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
#, fuzzy
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 PM"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "སེལ་འཐུ་འབད་དེ་མེདཔ།"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "སེལ་འཐུ་འབད་དེ་ཡོདཔ།"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
#, fuzzy
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "ངེས་འཛིན་མ་འབདཝ་"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "དྲན་ཐོ་ཚུ་ཆ་མཉམ་"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "དྲན་ཐོ་ཤུགས་ལྡན་"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
#, fuzzy
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "ད་ལྟོའི་ཤོག་ལེབ་"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "མེན།"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "བཏུབ།"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
#, fuzzy
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "འབྲི་ཤོག་གཙོ་བོ་"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr ""
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr ""
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr ""
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
#, fuzzy
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "བཀག།"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "ཅི་མེད།"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "རྐྱང་པ་"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
#, fuzzy
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "སྣ་མང་"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "ཁྱབ་ཚད།"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "ཐད་སྙོམས།"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
#, fuzzy
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "ཀེར་ཕྲང་།"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "སྔོན་སྒྲིག"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "བཏུབ།"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "ཆ་མེད་གཏང་"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "འགྲོགས་རམ།"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "ཐོ་བཀོད་སེལ་འཐུ་འབད་ཡོད་མི་འདི་"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
#, fuzzy
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་ཐོ་བཀོད་ཀྱི་གནས་ས་"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "གྲལ་ཐིག་-རྐྱང་པ།"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "སྣ་མང་-གྲལ་ཐིག"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "རྩ་སྒྲིག་འབད་ནི་དང་བཅས་ སྣ་མང་-གྲལ་ཐིག"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "ཨེལ་ཨེཕི་(ཡུ་ནིཀསི་)།"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
#, fuzzy
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "སི་ཨར་+ཨེལ་ཨེཕི་(ཝིན་ཌོསི་)།"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "ཅི་མེད།"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "ཐད་སྙོམས།"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "ཀེར་ཕྲང་།"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
#, fuzzy
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "གཉིས་ཆ་རང་།"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "༣D"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "ལེབ་ཏེམ།"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "གཡོན་གྱི་མགོ"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "གཡོན་གྱི་དབུས་ལུ་བཞག་ཡོདཔ།"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "གཡོན་གྱི་མཇུག"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "གཡས་ཀྱི་མགོ"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "གཡས་ཀྱི་དབུས་ལུ་བཞག་ཡོདཔ།"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "གཡས་ཀྱི་མཇུག"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "ལྟག་གི་གཡོན་ལུ།"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "ལྟག་གི་དབུས་ལུ་བཞག་ཡོདཔ།"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "ལྟག་གི་གཡས་ལུ།"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "འོག་གི་གཡོན་ལུ།"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "འོག་གི་དབུས་ལུ་བཞག་ཡོདཔ།"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "འོག་གི་གཡས་ལུ།"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
#, fuzzy
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "དབུས་སྒྲིག།"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
#, fuzzy
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "ཉམས་སྲུང་།"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "ཚབ་བཙུགས།"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "རམ་ནི།"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "མེན།"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "དཔྱ་ཚད་བཞག་"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
#, fuzzy
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "ཚད་ནང་ལུ་ཚུད་སྒྲིག་འབད་"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "གཡོན-ལས-གཡས་ལུ"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "གཡས-ལས-གཡོན་ལུ"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
#, fuzzy
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "དངོས་པོའི་སྒྲིག་སྟངས་མཐོ་ཤོས་ཚུ་་ལག་ལེན་འཐབ"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr ""
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr ""
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr ""
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "དོན་མཚམས།"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "ཡིག་འབྲུ།"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "ཤོག་ལེབ་ལུ།"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "གཞི་ཁྲམ་ལུ།(~F)"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
#, fuzzy
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "ཡིག་འབྲུ།"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "ཤོག་ལེབ་ལུ།"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
#, fuzzy
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
diff --git a/source/dz/fpicker/messages.po b/source/dz/fpicker/messages.po
index 48be36b287b..cef019997a3 100644
--- a/source/dz/fpicker/messages.po
+++ b/source/dz/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2018-10-02 16:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -218,61 +218,61 @@ msgid "Date modified"
msgstr ""
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr ""
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr ""
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
#, fuzzy
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "ཡིག་སྣོད་ཀྱི་མིང་:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
#, fuzzy
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "ཡིག་སྣོད་དབྱེ་བ།:(~t)"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
#, fuzzy
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "ལྷག་ནི་རྐྱངམ་ཅིག་(~R)"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
#, fuzzy
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "ཆོག་ཡིག་དང་གཅིག་ཁར་སྲུང་ས་(~w)"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
#, fuzzy
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "ཡིག་སྣོད་མིང་རང་བཞིན་གྱི་རྒྱ་བསྐྱེད།(~A)"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
#, fuzzy
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "ཚགས་མའི་སྒྲིག་སྟངས་ཚུ་ཞུན་དག་འབད་(~E)"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr ""
diff --git a/source/dz/sc/messages.po b/source/dz/sc/messages.po
index 25e253b7440..c6cd8ae02da 100644
--- a/source/dz/sc/messages.po
+++ b/source/dz/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25999,97 +25999,97 @@ msgid "~View"
msgstr ""
#. dV94w
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10119
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10082
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "Im_age"
msgstr ""
#. ekWoX
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10171
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10134
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. 8eQN8
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11541
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11504
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. FBf68
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11593
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:11556
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. DoVwy
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12544
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12507
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. JXKiY
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12596
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:12559
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. q8wnS
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13296
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13259
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
#. 7HDt3
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13312
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. vSDok
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13908
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13871
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
#. goiqQ
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13960
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:13923
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
#. EBGs5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15274
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15237
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. EKA8X
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15326
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15289
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. 8SvE5
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15405
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15368
msgctxt "notebookbar_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. WH5NR
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15463
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15426
msgctxt "notebookbar_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. 8fhwb
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16464
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16427
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. kpc43
-#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16516
+#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:16479
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -26475,158 +26475,158 @@ msgid "Im_age"
msgstr ""
#. punQr
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6028
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6002
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrange"
msgid "_Arrange"
msgstr "བདེ་ཞིབ་འབད།"
#. DDTxx
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6176
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6150
#, fuzzy
msgctxt "notebookbar_groupedbar_full|colorb"
msgid "C_olor"
msgstr "ཚོས་གཞི།"
#. CHosB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6419
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6393
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridB"
msgid "_Grid"
msgstr "གི་རིཊི།"
#. xeUxD
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6554
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6528
#, fuzzy
msgctxt "notebookbar_groupedbar_full|languageb"
msgid "_Language"
msgstr "སྐད་ཡིག"
#. eBoPL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6778
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6752
#, fuzzy
msgctxt "notebookbar_groupedbar_full|revieb"
msgid "_Review"
msgstr "བསྐྱར་ཞིབ།"
#. y4Sg3
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6986
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6960
#, fuzzy
msgctxt "notebookbar_groupedbar_full|commentsb"
msgid "_Comments"
msgstr "བསམ་བཀོད།"
#. m9Mxg
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7185
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7159
msgctxt "notebookbar_groupedbar_full|compareb"
msgid "Com_pare"
msgstr ""
#. ewCjP
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7383
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7357
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewa"
msgid "_View"
msgstr "སྟོན།"
#. WfzeY
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7812
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7786
msgctxt "notebookbar_groupedbar_full|drawb"
msgid "D_raw"
msgstr ""
#. QNg9L
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8169
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8143
#, fuzzy
msgctxt "notebookbar_groupedbar_full|editdrawb"
msgid "_Edit"
msgstr "ཞུན་དག།"
#. MECyG
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8497
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8471
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrangedrawb"
msgid "_Arrange"
msgstr "བདེ་ཞིབ་འབད།"
#. 9Z4JQ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8660
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8634
#, fuzzy
msgctxt "notebookbar_groupedbar_full|GridDrawB"
msgid "_View"
msgstr "སྟོན།"
#. 3i55T
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8858
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8832
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewDrawb"
msgid "Grou_p"
msgstr "སྡེ་ཚན།"
#. fNGFB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9004
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:8978
msgctxt "notebookbar_groupedbar_full|3Db"
msgid "3_D"
msgstr ""
#. stsit
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9303
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9277
#, fuzzy
msgctxt "notebookbar_groupedbar_full|formatd"
msgid "F_ont"
msgstr "ཡིག་གཟུགས།"
#. ZDEax
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9556
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9530
#, fuzzy
msgctxt "notebookbar_groupedbar_full|paragraphTextb"
msgid "_Alignment"
msgstr "ཕྲང་སྒྲིག"
#. CVAyh
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9754
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9728
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewd"
msgid "_View"
msgstr "སྟོན།"
#. h6EHi
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9905
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9879
#, fuzzy
msgctxt "notebookbar_groupedbar_full|insertTextb"
msgid "_Insert"
msgstr "བཙུགས།"
#. eLnnF
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10048
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10022
#, fuzzy
msgctxt "notebookbar_groupedbar_full|media"
msgid "_Media"
msgstr "བརྡ་ལམ་"
#. dzADL
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10278
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10252
#, fuzzy
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "F_rame"
msgstr "གཞི་ཁྲམ།"
#. GjFnB
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10692
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10666
#, fuzzy
msgctxt "notebookbar_groupedbar_full|arrageOLE"
msgid "_Arrange"
msgstr "བདེ་ཞིབ་འབད།"
#. DF4U7
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10854
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:10828
#, fuzzy
msgctxt "notebookbar_groupedbar_full|OleGridB"
msgid "_Grid"
msgstr "གི་རིཊི།"
#. UZ2JJ
-#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11052
+#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:11026
#, fuzzy
msgctxt "notebookbar_groupedbar_full|viewf"
msgid "_View"
diff --git a/source/dz/sd/messages.po b/source/dz/sd/messages.po
index e1d0555b9dd..6be1f087d70 100644
--- a/source/dz/sd/messages.po
+++ b/source/dz/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: 2021-12-21 12:38+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4265,109 +4265,109 @@ msgid "~Table"
msgstr ""
#. EGCcN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12328
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12291
msgctxt "notebookbar_draw_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. 2eQcW
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12380
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:12343
msgctxt "notebookbar_draw_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. CezAN
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14214
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14177
msgctxt "notebookbar_draw_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. tAMd5
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14269
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14232
msgctxt "notebookbar_draw_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. A49xv
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15268
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15231
msgctxt "notebookbar_draw_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. 3gubF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15324
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15287
msgctxt "notebookbar_draw_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. fDRf9
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16469
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16432
msgctxt "notebookbar_draw_compact|MediaButton"
msgid "_Media"
msgstr ""
#. dAbX4
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16523
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16486
msgctxt "notebookbar_draw_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. SCSH8
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17760
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17723
msgctxt "notebookbar_draw_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. vzdXF
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17815
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17778
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. zEK2o
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18336
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18299
msgctxt "notebookbar_draw_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. S3huE
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18388
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18351
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "~Master"
msgstr ""
#. T3Z8R
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19350
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19313
msgctxt "notebookbar_draw_compact|FormButton"
msgid "3_d"
msgstr ""
#. ZCuDe
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19405
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19368
msgctxt "notebookbar_draw_compact|FormLabel"
msgid "3~d"
msgstr ""
#. YpLRj
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19484
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19447
msgctxt "notebookbar_draw_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. uRrEt
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19542
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19505
msgctxt "notebookbar_draw_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. L3xmd
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20543
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20506
msgctxt "notebookbar_draw_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. LhBTk
-#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20595
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:20558
msgctxt "notebookbar_draw_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -7247,109 +7247,109 @@ msgid "~Table"
msgstr ""
#. BzXPB
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11880
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11843
msgctxt "notebookbar_impress_compact|ImageMenuButton"
msgid "Image"
msgstr ""
#. wD2ow
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11935
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:11898
msgctxt "notebookbar_impress_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
#. ZqPYr
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13710
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13673
msgctxt "notebookbar_impress_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
#. 78DU3
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13762
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:13725
msgctxt "notebookbar_impress_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
#. uv2FE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14759
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14722
msgctxt "notebookbar_impress_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
#. FSjqt
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14811
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:14774
msgctxt "notebookbar_impress_compact|FrameLabel"
msgid "~Object"
msgstr ""
#. t3Fmv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15954
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15917
msgctxt "notebookbar_impress_compact|MediaButton"
msgid "_Media"
msgstr ""
#. HbptL
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:16005
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:15968
msgctxt "notebookbar_impress_compact|MediaLabel"
msgid "~Media"
msgstr ""
#. NNqQ2
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17242
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17205
msgctxt "notebookbar_impress_compact|FormButton"
msgid "Fo_rm"
msgstr ""
#. DpFpM
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17294
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:17257
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
#. MNUFm
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18046
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18009
msgctxt "notebookbar_impress_compact|PrintPreviewButton"
msgid "_Master"
msgstr ""
#. NUiWE
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18098
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:18061
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "~Master"
msgstr ""
#. 4f9xG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19058
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19021
msgctxt "notebookbar_impress_compact|FormButton"
msgid "3_d"
msgstr ""
#. ntfL7
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19110
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19073
msgctxt "notebookbar_impress_compact|FormLabel"
msgid "3~d"
msgstr ""
#. ntjaC
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19189
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19152
msgctxt "notebookbar_impress_compact|ExtensionMenuButton"
msgid "E_xtension"
msgstr ""
#. Tu5f8
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19247
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:19210
msgctxt "notebookbar_impress_compact|ExtensionLabel"
msgid "E~xtension"
msgstr ""
#. abvtG
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20248
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20211
msgctxt "notebookbar_impress_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
#. oKhkv
-#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20300
+#: sd/uiconfig/simpress/ui/notebookbar_compact.ui:20263
msgctxt "notebookbar_impress_compact|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index 927e0d26e21..e45db3426ac 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/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: 2022-01-10 12:22+0100\n"
+"POT-Creation-Date: 2022-07-01 11:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10814,20 +10814,20 @@ msgid "Moves the selected paragraph style down one level in the index hierarchy.
msgstr "སེལ་འཐུ་འབད་ཡོད་པའི་དོན་མཚམས་ཀྱི་བཟོ་རྣམ་དེ་ ཟུར་ཐོའི་སྡེ་རིམ་ནང་ལུ་ གནས་རིམ་གཅིག་གིས་མར་ སྤོ་བཤུད་འབདཝ་ཨིན།"
#. tF4xa
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:271
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
msgstr ""
#. 3MYjK
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:460
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
#, fuzzy
msgctxt "assignstylesdialog|label3"
msgid "Styles"
msgstr "བཟོ་རྣམ་ཚུ།"
#. sr78E
-#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:485
+#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:487
msgctxt "assignstylesdialog|extended_tip|AssignStylesDialog"
msgid "Creates index entries from specific paragraph styles."
msgstr "གསར་བཀོད་ཅན་གྱི་དོན་མཚམས་བཟོ་རྣམ་ཚུ་གི་དོན་ལུ་ ཟུར་ཐོའི་ཐོ་འགོད་ཚུ་གསར་བསྐྲུན་འབདཝ་ཨིན།"
@@ -14426,38 +14426,38 @@ msgid "Exchange Databases"
msgstr ""
#. 9FhYU
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:41
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:42
#, fuzzy
msgctxt "exchangedatabases|define"
msgid "Define"
msgstr "ངེས་འཛིན་འབད།(~D)"
#. eKsEF
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:121
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:122
msgctxt "exchangedatabases|label5"
msgid "Databases in Use"
msgstr ""
#. FGFUG
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:135
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:136
msgctxt "exchangedatabases|label6"
msgid "_Available Databases"
msgstr ""
#. 8KDES
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:147
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:148
msgctxt "exchangedatabases|browse"
msgid "Browse..."
msgstr "བརད་འཚོལ།"
#. HvR9A
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:155
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:156
msgctxt "exchangedatabases|extended_tip|browse"
msgid "Opens a file open dialog to select a database file (*.odb). The selected file is added to the Available Databases list."
msgstr "གནད་སྡུད་གཞི་རྟེན་ཡིག་སྣོད་དེ་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ཡིག་ཁ་ཕྱེ་ནིའི་ཌའི་ལོག་དེ་ཁ་ཕྱེཝ་ཨིན།(*.odb).སེལ་འཐུ་འབད་ཡོད་མི་ཡིག་སྣོད་ཚུ་ འཐོབ་ཚུགས་པའི་གནད་སྡུད་གཞི་རྟེན་ཐོ་ཡིག་ཚུ་ནང་ལུ་ཁ་སྐོང་བརྐྱབ་ཨིན།"
#. ZgGFH
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:170
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:171
msgctxt "exchangedatabases|label7"
msgid ""
"Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n"
@@ -14465,31 +14465,31 @@ msgid ""
msgstr ""
#. QCPQK
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:224
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:225
msgctxt "exchangedatabases|extended_tip|inuselb"
msgid "Lists the databases that are currently in use."
msgstr "ད་ལྟོ་ལག་ལེན་འཐབ་པའི་སྒང་ཡོད་མི་གནད་སྡུད་གཞི་རྟེན་དེ་ཐོ་འགོད་འབདཝ་ཨིན།"
#. FSFCM
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:276
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:277
msgctxt "exchangedatabases|extended_tip|availablelb"
msgid "Lists the databases that are registered in %PRODUCTNAME."
msgstr ""
#. ZzrDA
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:296
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:297
msgctxt "exchangedatabases|label1"
msgid "Exchange Databases"
msgstr ""
#. VmBvL
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:318
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:319
msgctxt "exchangedatabases|label2"
msgid "Database applied to document:"
msgstr ""
#. ZiC8Q
-#: sw/uiconfig/swriter/ui/exchangedatabases.ui:364
+#: sw/uiconfig/swriter/ui/exchangedatabases.ui:362
msgctxt "exchangedatabases|extended_tip|ExchangeDatabasesDialog"
msgid "Change the data sources for the current document."
msgstr "ད་ལྟོའི་ཡིག་ཆདེ་གི་དོན་ལུ་ གནད་སྡུད་འབྱུང་ཁུངས་དེ་བསྒྱུར་བཅོས་འབད།"
@@ -20823,111 +20823,111 @@ msgid "Use the current _document"
msgstr ""
#. EUVtU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:37
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:38
msgctxt "mmselectpage|extended_tip|currentdoc"
msgid "Uses the current Writer document as the base for the mail merge document."
msgstr "ད་ལྟོའི་རའི་ཊར་ཡིག་དེ་ ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆའི་དོན་ལུ་ གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ་ཨིན།"
#. KUEyG
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:48
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:49
msgctxt "mmselectpage|newdoc"
msgid "Create a ne_w document"
msgstr ""
#. XY8FU
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:57
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:58
msgctxt "mmselectpage|extended_tip|newdoc"
msgid "Creates a new Writer document to use for the mail merge."
msgstr "གློག་འཕིན་མཉམ་བསྡོམ་དེ་གི་དོན་ལུ་ རའི་ཊར་ཡིག་ཆ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན།"
#. bATvf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:68
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:69
msgctxt "mmselectpage|loaddoc"
msgid "Start from _existing document"
msgstr ""
#. MFqCS
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:78
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:79
msgctxt "mmselectpage|extended_tip|loaddoc"
msgid "Select an existing Writer document to use as the base for the mail merge document."
msgstr "ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆའི་དོན་ལུ་ གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ་ནིའི་དོན་ལུ་ ད་ལྟོ་ཡོད་པའི་རའི་ཊར་ཡིག་ཆ་ཅིག་སེལ་འཐུ་འབད།"
#. GieL3
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:89
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:90
msgctxt "mmselectpage|template"
msgid "Start from a t_emplate"
msgstr ""
#. BxBQF
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:99
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:100
msgctxt "mmselectpage|extended_tip|template"
msgid "Select the template that you want to create your mail merge document with."
msgstr "ཁྱོད་ཀྱིས་ ཁོད་རའི་ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆ་དང་གཅིག་ཁར་གསར་བསྐྲུན་འབད་དགོ་མནོ་མི་ ཊེམ་པེ་ལེཊི་དེ་སེལ་འཐུ་འབད།"
#. mSCWL
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:110
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:111
msgctxt "mmselectpage|recentdoc"
msgid "Start fro_m a recently saved starting document"
msgstr ""
#. xomYf
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:119
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:120
msgctxt "mmselectpage|extended_tip|recentdoc"
msgid "Use an existing mail merge document as the base for a new mail merge document."
msgstr "ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆའི་དོན་ལུ་ ད་ལྟོ་ཡོད་མི་ཡིག་འཕྲིན་མཉམ་བསྡོམས་ཡིག་ཆ་དེ་ གཞི་རྟེན་སྦེ་ལག་ལེན་འཐབ།"
#. JMgbV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:135
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:136
msgctxt "mmselectpage|extended_tip|recentdoclb"
msgid "Select the document."
msgstr "ཡིག་ཆ་དེ་སེལ་འཐུ་འབད།"
#. BUbEr
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:146
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:147
#, fuzzy
msgctxt "mmselectpage|browsedoc"
msgid "B_rowse..."
msgstr "བརད་འཚོལ།"
#. i7inE
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:155
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:156
msgctxt "mmselectpage|extended_tip|browsedoc"
msgid "Locate the Writer document that you want to use, and then click Open."
msgstr ""
#. 3trwP
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:166
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:167
#, fuzzy
msgctxt "mmselectpage|browsetemplate"
msgid "B_rowse..."
msgstr "བརད་འཚོལ།"
#. CdmfM
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:175
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:176
msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
#. qieQK
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:190
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
msgctxt "mmselectpage|extended_tip|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
#. QcsgV
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:199
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
msgctxt "mmselectpage|extended_tip|exchangedatabase"
msgid "Exchange Database..."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:217
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:232
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23117,53 +23117,53 @@ msgid "Object"
msgstr "དངོས་པོ།"
#. e5VGQ
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Type"
msgstr "དབྱེ་བ།"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
#, fuzzy
msgctxt "objectdialog|options"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "ལོག་མཚམས་བཟོ།(~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "ཧའི་པར་ལིངཀ"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ས་ཁོངས།"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
#, fuzzy
msgctxt "objectdialog|macro"
msgid "Macro"
@@ -28062,7 +28062,7 @@ msgid "Update"
msgstr "དུས་མཐུན་བཟོ།"
#. LVWDd
-#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256
+#: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257
msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage"
msgid "Displays statistics for the current file."
msgstr ""
diff --git a/source/dz/vcl/messages.po b/source/dz/vcl/messages.po
index 0b1f17f07f0..3823e52072c 100644
--- a/source/dz/vcl/messages.po
+++ b/source/dz/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: 2021-11-16 12:10+0100\n"
+"POT-Creation-Date: 2022-07-01 11:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2351,170 +2351,170 @@ msgid "Print multiple pages per sheet of paper."
msgstr "ཡིག་ཆའི་ཨམ་གསརཔ་ཅིག་གསར་བསྐྲུན་འབདཝ་ཨིན"
#. DKP5g
-#: vcl/uiconfig/ui/printdialog.ui:1073
+#: vcl/uiconfig/ui/printdialog.ui:1074
msgctxt "printdialog|liststore1"
msgid "Custom"
msgstr "སྲོལ་སྒྲིག་"
#. duVEo
-#: vcl/uiconfig/ui/printdialog.ui:1080
+#: vcl/uiconfig/ui/printdialog.ui:1081
msgctxt "printdialog|extended_tip|pagespersheetbox"
msgid "Select how many pages to print per sheet of paper."
msgstr "ཤོག་ལེབ་ཚུ་བརྒྱུད་དེ་བརྡ་འཚོལ་ནིའི་དོན་ལུ་ ངོས་དཔར་འདི་སེལ་འཐུ་འབད།"
#. 65WWt
-#: vcl/uiconfig/ui/printdialog.ui:1093
+#: vcl/uiconfig/ui/printdialog.ui:1094
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
msgstr ""
#. X8bjE
-#: vcl/uiconfig/ui/printdialog.ui:1113
+#: vcl/uiconfig/ui/printdialog.ui:1114
msgctxt "printdialog|extended_tip|pagerows"
msgid "Select number of rows."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།"
#. DM5aX
-#: vcl/uiconfig/ui/printdialog.ui:1125
+#: vcl/uiconfig/ui/printdialog.ui:1126
msgctxt "printdialog|by"
msgid "by"
msgstr "གིས།"
#. Z2EDz
-#: vcl/uiconfig/ui/printdialog.ui:1144
+#: vcl/uiconfig/ui/printdialog.ui:1145
msgctxt "printdialog|extended_tip|pagecols"
msgid "Select number of columns."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།"
#. szcD7
-#: vcl/uiconfig/ui/printdialog.ui:1156
+#: vcl/uiconfig/ui/printdialog.ui:1157
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
msgstr ""
#. QxE58
-#: vcl/uiconfig/ui/printdialog.ui:1175
+#: vcl/uiconfig/ui/printdialog.ui:1176
msgctxt "printdialog|extended_tip|pagemarginsb"
msgid "Select margin between individual pages on each sheet of paper."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།"
#. iGg2m
-#: vcl/uiconfig/ui/printdialog.ui:1188
+#: vcl/uiconfig/ui/printdialog.ui:1189
msgctxt "printdialog|pagemargintxt2"
msgid "between pages"
msgstr ""
#. oryuw
-#: vcl/uiconfig/ui/printdialog.ui:1199
+#: vcl/uiconfig/ui/printdialog.ui:1200
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
msgstr ""
#. EDFnW
-#: vcl/uiconfig/ui/printdialog.ui:1218
+#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|extended_tip|sheetmarginsb"
msgid "Select margin between the printed pages and paper edge."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།"
#. XhfvB
-#: vcl/uiconfig/ui/printdialog.ui:1231
+#: vcl/uiconfig/ui/printdialog.ui:1232
msgctxt "printdialog|sheetmargintxt2"
msgid "to sheet border"
msgstr ""
#. AGWe3
-#: vcl/uiconfig/ui/printdialog.ui:1244
+#: vcl/uiconfig/ui/printdialog.ui:1245
msgctxt "printdialog|labelorder"
msgid "Order:"
msgstr ""
#. psAku
-#: vcl/uiconfig/ui/printdialog.ui:1261
+#: vcl/uiconfig/ui/printdialog.ui:1262
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
msgstr ""
#. fnfLt
-#: vcl/uiconfig/ui/printdialog.ui:1262
+#: vcl/uiconfig/ui/printdialog.ui:1263
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
msgstr ""
#. y6nZE
-#: vcl/uiconfig/ui/printdialog.ui:1263
+#: vcl/uiconfig/ui/printdialog.ui:1264
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
msgstr ""
#. PteTg
-#: vcl/uiconfig/ui/printdialog.ui:1264
+#: vcl/uiconfig/ui/printdialog.ui:1265
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
msgstr ""
#. DvF8r
-#: vcl/uiconfig/ui/printdialog.ui:1268
+#: vcl/uiconfig/ui/printdialog.ui:1269
msgctxt "printdialog|extended_tip|orderbox"
msgid "Select order in which pages are to be printed."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།"
#. QG59F
-#: vcl/uiconfig/ui/printdialog.ui:1280
+#: vcl/uiconfig/ui/printdialog.ui:1281
msgctxt "printdialog|bordercb"
msgid "Draw a border around each page"
msgstr ""
#. 8aAGu
-#: vcl/uiconfig/ui/printdialog.ui:1289
+#: vcl/uiconfig/ui/printdialog.ui:1290
msgctxt "printdialog|extended_tip|bordercb"
msgid "Check to draw a border around each page."
msgstr "ཐིག་ཁྲམ་ནང་ལུ་གྲལ་ཐིག་ཅིག་བཙུགསཔ་ཨིན།"
#. Yo4xV
-#: vcl/uiconfig/ui/printdialog.ui:1301
+#: vcl/uiconfig/ui/printdialog.ui:1302
#, fuzzy
msgctxt "printdialog|brochure"
msgid "Brochure"
msgstr "དེབ་ཆུང་ཚུ།"
#. 3zcKq
-#: vcl/uiconfig/ui/printdialog.ui:1311
+#: vcl/uiconfig/ui/printdialog.ui:1312
msgctxt "printdialog|extended_tip|brochure"
msgid "Select to print the document in brochure format."
msgstr ""
#. JMA7A
-#: vcl/uiconfig/ui/printdialog.ui:1334
+#: vcl/uiconfig/ui/printdialog.ui:1335
msgctxt "printdialog|collationpreview"
msgid "Collation preview"
msgstr ""
#. dePkB
-#: vcl/uiconfig/ui/printdialog.ui:1339
+#: vcl/uiconfig/ui/printdialog.ui:1340
msgctxt "printdialog|extended_tip|orderpreview"
msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
#. fCjdq
-#: vcl/uiconfig/ui/printdialog.ui:1361
+#: vcl/uiconfig/ui/printdialog.ui:1362
msgctxt "printdialog|layoutexpander"
msgid "M_ore"
msgstr ""
#. rCBA5
-#: vcl/uiconfig/ui/printdialog.ui:1377
+#: vcl/uiconfig/ui/printdialog.ui:1378
msgctxt "printdialog|label3"
msgid "Page Layout"
msgstr ""
#. A2iC5
-#: vcl/uiconfig/ui/printdialog.ui:1400
+#: vcl/uiconfig/ui/printdialog.ui:1401
msgctxt "printdialog|generallabel"
msgid "General"
msgstr ""
#. CzGM4
-#: vcl/uiconfig/ui/printdialog.ui:1454
+#: vcl/uiconfig/ui/printdialog.ui:1455
msgctxt "printdialog|extended_tip|PrintDialog"
msgid "Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document."
msgstr "གིས་ ཁྱོད་ཀྱིས་གསལ་བཀོད་འབད་ཡོད་པའི་ ད་ལྟོའི་ཡིག་ཆ་དང་ སེལ་འཐུ་ཡང་ན་ ཤོག་ལེབ་འདི་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན། ད་ལྟོའི་ཡིག་ཆའི་དོན་ལུ་ ཁྱོད་ཀྱིས་ དཔར་བསྐྲུན་གྱི་གདམ་ཁ་ཚུ་གཞི་སྒྲིག་འབད་བཏུབ། "
diff --git a/source/el/chart2/messages.po b/source/el/chart2/messages.po
index b1908fe4aa8..1689a7a30f1 100644
--- a/source/el/chart2/messages.po
+++ b/source/el/chart2/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-05-18 09:18+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/el/>\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.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547407975.000000\n"
#. NCRDD
@@ -3602,7 +3602,7 @@ msgid "Set the number of lines for the Column and Line chart type."
msgstr "Ορίζει το πλήθος των γραμμών για τα διαγράμματα Στήλης και Γραμμής."
#. M2sxB
-#: chart2/uiconfig/ui/tp_ChartType.ui:503
+#: chart2/uiconfig/ui/tp_ChartType.ui:504
msgctxt "tp_ChartType|extended_tip|charttype"
msgid "Select a basic chart type."
msgstr "Επιλέξτε ένα βασικό τύπο διαγράμματος."
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index 8d076cbd9ea..70dba65f02f 100644
--- a/source/el/cui/messages.po
+++ b/source/el/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: 2022-01-10 12:20+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2022-06-01 09:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/el/>\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: 1562571180.000000\n"
#. GyY9M
@@ -17135,176 +17135,152 @@ msgctxt "optviewpage|iconstyle"
msgid "Automatic"
msgstr "Αυτόματα"
-#. HEZbQ
-#: cui/uiconfig/ui/optviewpage.ui:419
-msgctxt "optviewpage|iconstyle"
-msgid "Galaxy"
-msgstr "Γαλαξίας"
-
-#. RNRKB
-#: cui/uiconfig/ui/optviewpage.ui:420
-msgctxt "optviewpage|iconstyle"
-msgid "High Contrast"
-msgstr "Υψηλή αντίθεση"
-
-#. fr4NS
-#: cui/uiconfig/ui/optviewpage.ui:421
-msgctxt "optviewpage|iconstyle"
-msgid "Oxygen"
-msgstr "Οξυγόνο"
-
-#. CGhUk
-#: cui/uiconfig/ui/optviewpage.ui:422
-msgctxt "optviewpage|iconstyle"
-msgid "Classic"
-msgstr "Κλασικό"
-
#. biYuj
-#: cui/uiconfig/ui/optviewpage.ui:423
+#: cui/uiconfig/ui/optviewpage.ui:419
msgctxt "optviewpage|iconstyle"
msgid "Sifr"
msgstr "Sifr"
#. Erw8o
-#: cui/uiconfig/ui/optviewpage.ui:424
+#: cui/uiconfig/ui/optviewpage.ui:420
msgctxt "optviewpage|iconstyle"
msgid "Breeze"
msgstr "Αύρα"
#. dDE86
-#: cui/uiconfig/ui/optviewpage.ui:428
+#: cui/uiconfig/ui/optviewpage.ui:424
msgctxt "extended_tip | iconstyle"
msgid "Specifies the icon style for icons in toolbars and dialogs."
msgstr "Καθορίζει την τεχνοτροπία εικονιδίου για τα εικονίδια στις γραμμές εργαλείων και στους διαλόγους."
#. anMTd
-#: cui/uiconfig/ui/optviewpage.ui:441
+#: cui/uiconfig/ui/optviewpage.ui:437
msgctxt "optviewpage|label6"
msgid "Icon s_tyle:"
msgstr "Τε_χνοτροπία εικονιδίου:"
#. StBQN
-#: cui/uiconfig/ui/optviewpage.ui:456
+#: cui/uiconfig/ui/optviewpage.ui:452
msgctxt "optviewpage|btnMoreIcons"
msgid "Add more icon themes via extension"
msgstr "Προσθήκη περισσότερων θεμάτων εικονιδίων μέσω επέκτασης"
#. eMqmK
-#: cui/uiconfig/ui/optviewpage.ui:472
+#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|label1"
msgid "Icon Style"
msgstr "Τεχνοτροπία εικονιδίου"
#. stYtM
-#: cui/uiconfig/ui/optviewpage.ui:507
+#: cui/uiconfig/ui/optviewpage.ui:503
msgctxt "optviewpage|grid3|tooltip_text"
msgid "Requires restart"
msgstr "Απαιτείται επανεκκίνηση"
#. R2ZAF
-#: cui/uiconfig/ui/optviewpage.ui:513
+#: cui/uiconfig/ui/optviewpage.ui:509
msgctxt "optviewpage|useaccel"
msgid "Use hard_ware acceleration"
msgstr "Χρήση επιτάχυνσης _υλικού"
#. qw73y
-#: cui/uiconfig/ui/optviewpage.ui:522
+#: cui/uiconfig/ui/optviewpage.ui:518
msgctxt "extended_tip | useaccel"
msgid "Directly accesses hardware features of the graphical display adapter to improve the screen display."
msgstr "Προσπελαύνει απευθείας στοιχεία του υλικού του προσαρμογέα οθόνης για να βελτιώσει την εμφάνιση στην οθόνη."
#. 2MWvd
-#: cui/uiconfig/ui/optviewpage.ui:533
+#: cui/uiconfig/ui/optviewpage.ui:529
msgctxt "optviewpage|useaa"
msgid "Use anti-a_liasing"
msgstr "Χρήση ε_ξομάλυνσης"
#. fUKV9
-#: cui/uiconfig/ui/optviewpage.ui:542
+#: cui/uiconfig/ui/optviewpage.ui:538
msgctxt "extended_tip | useaa"
msgid "When supported, you can enable and disable anti-aliasing of graphics. With anti-aliasing enabled, the display of most graphical objects looks smoother and with less artifacts."
msgstr "Αν υποστηρίζεται από το σύστημα σας, μπορείτε να ενεργοποιήσετε και να απενεργοποιήσετε την εξομάλυνση των γραφικών. Με ενεργή την εξομάλυνση, η εμφάνιση των περισσοτέρων γραφικών αντικειμένων φαίνεται ομαλότερη και με λιγότερες παράσιτα."
#. ppJKg
-#: cui/uiconfig/ui/optviewpage.ui:553
+#: cui/uiconfig/ui/optviewpage.ui:549
msgctxt "optviewpage|useskia"
msgid "Use Skia for all rendering"
msgstr "Χρησιμοποιήστε Skia για κάθε απόδοση"
#. RFqrA
-#: cui/uiconfig/ui/optviewpage.ui:567
+#: cui/uiconfig/ui/optviewpage.ui:563
msgctxt "optviewpage|forceskiaraster"
msgid "Force Skia software rendering"
msgstr "Εξαναγκασμός απόδοσης λογισμικού Skia"
#. DTMxy
-#: cui/uiconfig/ui/optviewpage.ui:571
+#: cui/uiconfig/ui/optviewpage.ui:567
msgctxt "optviewpage|forceskia|tooltip_text"
msgid "Requires restart. Enabling this will prevent the use of graphics drivers."
msgstr "Απαιτείται επανεκκίνηση. Η ενεργοποίηση αυτού θα αποτρέψει τη χρήση οδηγών γραφικών."
#. 5pA7K
-#: cui/uiconfig/ui/optviewpage.ui:585
+#: cui/uiconfig/ui/optviewpage.ui:581
msgctxt "optviewpage|skiaenabled"
msgid "Skia is currently enabled."
msgstr "Το Skia είναι προς το παρόν ενεργοποιημένο."
#. yDGEV
-#: cui/uiconfig/ui/optviewpage.ui:597
+#: cui/uiconfig/ui/optviewpage.ui:593
msgctxt "optviewpage|skiadisabled"
msgid "Skia is currently disabled."
msgstr "Το Skia είναι προς το παρόν απενεργοποιημένο."
#. sy9iz
-#: cui/uiconfig/ui/optviewpage.ui:611
+#: cui/uiconfig/ui/optviewpage.ui:607
msgctxt "optviewpage|label2"
msgid "Graphics Output"
msgstr "Έξοδος γραφικών"
#. B6DLD
-#: cui/uiconfig/ui/optviewpage.ui:639
+#: cui/uiconfig/ui/optviewpage.ui:635
msgctxt "optviewpage|showfontpreview"
msgid "Show p_review of fonts"
msgstr "Προβολή προε_πισκόπησης γραμματοσειρών"
#. 7Qidy
-#: cui/uiconfig/ui/optviewpage.ui:648
+#: cui/uiconfig/ui/optviewpage.ui:644
msgctxt "extended_tip | showfontpreview"
msgid "Displays the names of selectable fonts in the corresponding font, for example, fonts in the Font box on the Formatting bar."
msgstr "Εμφανίζει τα ονόματα των επιλέξιμων γραμματοσειρών στην αντίστοιχη γραμματοσειρά, π.χ., γραμματοσειρές στο πλαίσιο γραμματοσειρών στη γραμμή Μορφοποίηση."
#. 2FKuk
-#: cui/uiconfig/ui/optviewpage.ui:659
+#: cui/uiconfig/ui/optviewpage.ui:655
msgctxt "optviewpage|aafont"
msgid "Screen font antialiasin_g"
msgstr "Ε_ξομάλυνση γραμματοσειράς οθόνης"
#. 5QEjG
-#: cui/uiconfig/ui/optviewpage.ui:668
+#: cui/uiconfig/ui/optviewpage.ui:664
msgctxt "extended_tip | aafont"
msgid "Select to smooth the screen appearance of text."
msgstr "Επιλέξτε για να εξομαλύνετε την εμφάνιση του κειμένου στην οθόνη."
#. 7dYGb
-#: cui/uiconfig/ui/optviewpage.ui:689
+#: cui/uiconfig/ui/optviewpage.ui:685
msgctxt "optviewpage|aafrom"
msgid "fro_m:"
msgstr "α_πό:"
#. nLvZy
-#: cui/uiconfig/ui/optviewpage.ui:707
+#: cui/uiconfig/ui/optviewpage.ui:703
msgctxt "extended_tip | aanf"
msgid "Enter the smallest font size to apply antialiasing to."
msgstr "Εισαγάγετε το μικρότερο μέγεθος γραμματοσειράς για να εφαρμόσετε εξομάλυνση."
#. uZALs
-#: cui/uiconfig/ui/optviewpage.ui:728
+#: cui/uiconfig/ui/optviewpage.ui:724
msgctxt "optviewpage|label5"
msgid "Font Lists"
msgstr "Λίστες γραμματοσειρών"
#. BgCZE
-#: cui/uiconfig/ui/optviewpage.ui:742
+#: cui/uiconfig/ui/optviewpage.ui:738
msgctxt "optviewpage|btn_rungptest"
msgid "Run Graphics Tests"
msgstr "Εκτέλεση ελέγχων γραφικών"
diff --git a/source/el/dbaccess/messages.po b/source/el/dbaccess/messages.po
index 79f6c7e7eb1..47be9115e7a 100644
--- a/source/el/dbaccess/messages.po
+++ b/source/el/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:51+0200\n"
"PO-Revision-Date: 2021-11-19 08:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/el/>\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.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562571214.000000\n"
#. BiN6g
@@ -3395,73 +3395,73 @@ msgid "Create a n_ew database"
msgstr "Δημιουργία μιας _νέας βάσης δεδομένων"
#. AxE5z
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:71
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:72
msgctxt "generalpagewizard|extended_tip|createDatabase"
msgid "Select to create a new database."
msgstr "Επιλέξτε για να δημιουργήσετε μια νέα βάση δεδομένων."
#. BRSfR
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:90
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:91
msgctxt "generalpagewizard|embeddeddbLabel"
msgid "_Embedded database:"
msgstr "Εν_σωματωμένη βάση δεδομένων:"
#. S2RBe
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:120
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:121
msgctxt "generalpagewizard|openExistingDatabase"
msgid "Open an existing database _file"
msgstr "Άνοιγμα ενός υπάρχοντος _αρχείου βάσης δεδομένων"
#. qBi4U
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:130
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:131
msgctxt "generalpagewizard|extended_tip|openExistingDatabase"
msgid "Select to open a database file from a list of recently used files or from a file selection dialog."
msgstr "Επιλέξτε για να ανοίξετε ένα αρχείο βάσης δεδομένων από έναν κατάλογο αρχείων που χρησιμοποιήθηκαν πρόσφατα ή από ένα παράθυρο διαλόγου επιλογής αρχείου."
#. dfae2
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:149
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:150
msgctxt "generalpagewizard|docListLabel"
msgid "_Recently used:"
msgstr "_Πρόσφατα:"
#. bxkCC
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:174
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:175
msgctxt "generalpagewizard|extended_tip|docListBox"
msgid "Select a database file to open from the list of recently used files. Click Finish to open the file immediately and to exit the wizard."
msgstr "Επιλέξτε ένα αρχείο βάσης δεδομένων για να ανοίξετε από τον κατάλογο των αρχείων που χρησιμοποιήθηκαν πρόσφατα. Πατήστε στο πλήκτρο Τέλος για να ανοίξετε το αρχείο αμέσως και να βγείτε από τον οδηγό."
#. dVAEy
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:185
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:186
msgctxt "generalpagewizard|openDatabase"
msgid "Open"
msgstr "Άνοιγμα"
#. 6A3Fu
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:194
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:195
msgctxt "generalpagewizard|extended_tip|openDatabase"
msgid "Opens a file selection dialog where you can select a database file. Click Open or OK in the file selection dialog to open the file immediately and to exit the wizard."
msgstr "Ανοίγει ένα παράθυρο διαλόγου επιλογής αρχείου όπου μπορείτε να επιλέξετε ένα αρχείο βάσης δεδομένων. Πατήστε στο Άνοιγμα ή Εντάξει στο παράθυρο διαλόγου επιλογής αρχείου για να ανοίξετε το αρχείο αμέσως και να βγείτε από τον οδηγό."
#. cKpTp
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:205
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:206
msgctxt "generalpagewizard|connectDatabase"
msgid "Connect to an e_xisting database"
msgstr "Σύνδεση με μια _υπάρχουσα βάση δεδομένων"
#. 8uBqf
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:215
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:216
msgctxt "generalpagewizard|extended_tip|connectDatabase"
msgid "Select to create a database document for an existing database connection."
msgstr "Επιλέξτε για να δημιουργήσετε ένα έγγραφο βάσης δεδομένων για μια υπάρχουσα σύνδεση βάσης δεδομένων."
#. CYq28
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:232
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:233
msgctxt "generalpagewizard|extended_tip|datasourceType"
msgid "Select the database type for the existing database connection."
msgstr "Επιλέξτε τον τύπο βάσης δεδομένων για την υπάρχουσα σύνδεση βάσης δεδομένων."
#. emqeD
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:255
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:256
msgctxt "generalpagewizard|noembeddeddbLabel"
msgid ""
"It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n"
@@ -3471,7 +3471,7 @@ msgstr ""
"διαθέσιμα σε αυτή τη ρύθμιση."
#. n2DxH
-#: dbaccess/uiconfig/ui/generalpagewizard.ui:265
+#: dbaccess/uiconfig/ui/generalpagewizard.ui:266
msgctxt "generalpagewizard|extended_tip|PageGeneral"
msgid "The Database Wizard creates a database file that contains information about a database."
msgstr "Ο Οδηγός βάσης δεδομένων δημιουργεί ένα αρχείο βάσης δεδομένων που περιέχει πληροφορίες σχετικά με μια βάση δεδομένων."
diff --git a/source/el/extensions/messages.po b/source/el/extensions/messages.po
index 34896c73df5..379770828a2 100644
--- a/source/el/extensions/messages.po
+++ b/source/el/extensions/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: 2021-11-19 15:43+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-10-21 11:33+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/el/>\n"
@@ -291,536 +291,524 @@ msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
msgstr "Ενημέρωση φόρμας"
-#. 5vCEP
-#: extensions/inc/stringarrays.hrc:81
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Get"
-msgstr "Λήψη"
-
-#. BJD3u
-#: extensions/inc/stringarrays.hrc:82
-msgctxt "RID_RSC_ENUM_SUBMIT_METHOD"
-msgid "Post"
-msgstr "Αποστολή"
-
#. o9DBE
-#: extensions/inc/stringarrays.hrc:87
+#: extensions/inc/stringarrays.hrc:81
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "URL"
msgstr "URL"
#. 3pmDf
-#: extensions/inc/stringarrays.hrc:88
+#: extensions/inc/stringarrays.hrc:82
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Multipart"
msgstr "Πολλαπλό"
#. pBQpv
-#: extensions/inc/stringarrays.hrc:89
+#: extensions/inc/stringarrays.hrc:83
msgctxt "RID_RSC_ENUM_SUBMIT_ENCODING"
msgid "Text"
msgstr "Κείμενο"
#. jDMbK
-#: extensions/inc/stringarrays.hrc:94
+#: extensions/inc/stringarrays.hrc:88
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short)"
msgstr "Τυπικό (σύντομο)"
#. 22W6Q
-#: extensions/inc/stringarrays.hrc:95
+#: extensions/inc/stringarrays.hrc:89
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YY)"
msgstr "Τυπικό (σύντομο ΕΕ)"
#. HDau6
-#: extensions/inc/stringarrays.hrc:96
+#: extensions/inc/stringarrays.hrc:90
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (short YYYY)"
msgstr "Τυπικό (σύντομο ΕΕΕΕ)"
#. DCJNC
-#: extensions/inc/stringarrays.hrc:97
+#: extensions/inc/stringarrays.hrc:91
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "Standard (long)"
msgstr "Τυπικό (μακρύ)"
#. DmUmW
-#: extensions/inc/stringarrays.hrc:98
+#: extensions/inc/stringarrays.hrc:92
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YY"
msgstr "ΗΗ/ΜΜ/ΕΕ"
#. GyoSx
-#: extensions/inc/stringarrays.hrc:99
+#: extensions/inc/stringarrays.hrc:93
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YY"
msgstr "ΜΜ/ΗΗ/ΕΕ"
#. PHRWs
-#: extensions/inc/stringarrays.hrc:100
+#: extensions/inc/stringarrays.hrc:94
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY/MM/DD"
msgstr "ΕΕ/ΜΜ/ΗΗ"
#. 5EDt6
-#: extensions/inc/stringarrays.hrc:101
+#: extensions/inc/stringarrays.hrc:95
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "DD/MM/YYYY"
msgstr "ΗΗ/ΜΜ/ΕΕΕΕ"
#. FdnkZ
-#: extensions/inc/stringarrays.hrc:102
+#: extensions/inc/stringarrays.hrc:96
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "MM/DD/YYYY"
msgstr "ΜΜ/ΗΗ/ΕΕΕΕ"
#. VATg7
-#: extensions/inc/stringarrays.hrc:103
+#: extensions/inc/stringarrays.hrc:97
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY/MM/DD"
msgstr "ΕΕΕΕ/ΜΜ/ΗΗ"
#. rUJHq
-#: extensions/inc/stringarrays.hrc:104
+#: extensions/inc/stringarrays.hrc:98
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YY-MM-DD"
msgstr "ΕΕ-ΜΜ-ΗΗ"
#. 7vYP9
-#: extensions/inc/stringarrays.hrc:105
+#: extensions/inc/stringarrays.hrc:99
msgctxt "RID_RSC_ENUM_DATEFORMAT_LIST"
msgid "YYYY-MM-DD"
msgstr "ΕΕΕΕ-ΜΜ-ΗΗ"
#. E9sny
-#: extensions/inc/stringarrays.hrc:110
+#: extensions/inc/stringarrays.hrc:104
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45"
msgstr "13:45"
#. d2sW3
-#: extensions/inc/stringarrays.hrc:111
+#: extensions/inc/stringarrays.hrc:105
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "13:45:00"
msgstr "13:45:00"
#. v6Dq4
-#: extensions/inc/stringarrays.hrc:112
+#: extensions/inc/stringarrays.hrc:106
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45 PM"
msgstr "01:45 ΜΜ"
#. dSe7J
-#: extensions/inc/stringarrays.hrc:113
+#: extensions/inc/stringarrays.hrc:107
msgctxt "RID_RSC_ENUM_TIMEFORMAT_LIST"
msgid "01:45:00 PM"
msgstr "01:45:00 ΜΜ"
#. XzT95
-#: extensions/inc/stringarrays.hrc:118
+#: extensions/inc/stringarrays.hrc:112
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Selected"
msgstr "Δεν έχει επιλεχθεί"
#. sJ8zY
-#: extensions/inc/stringarrays.hrc:119
+#: extensions/inc/stringarrays.hrc:113
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Selected"
msgstr "Επιλεγμένο"
#. aHu75
-#: extensions/inc/stringarrays.hrc:120
+#: extensions/inc/stringarrays.hrc:114
msgctxt "RID_RSC_ENUM_CHECKED"
msgid "Not Defined"
msgstr "Δεν έχει ορισθεί"
#. mhVDA
-#: extensions/inc/stringarrays.hrc:125
+#: extensions/inc/stringarrays.hrc:119
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "All records"
msgstr "Όλες οι εγγραφές"
#. eA5iU
-#: extensions/inc/stringarrays.hrc:126
+#: extensions/inc/stringarrays.hrc:120
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Active record"
msgstr "Ενεργή εγγραφή"
#. Vkvj9
-#: extensions/inc/stringarrays.hrc:127
+#: extensions/inc/stringarrays.hrc:121
msgctxt "RID_RSC_ENUM_CYCLE"
msgid "Current page"
msgstr "Τρέχουσα σελίδα"
#. KhEqV
-#: extensions/inc/stringarrays.hrc:132
+#: extensions/inc/stringarrays.hrc:126
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "No"
msgstr "Όχι"
#. qS8rc
-#: extensions/inc/stringarrays.hrc:133
+#: extensions/inc/stringarrays.hrc:127
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Yes"
msgstr "Ναι"
#. aJXyh
-#: extensions/inc/stringarrays.hrc:134
+#: extensions/inc/stringarrays.hrc:128
msgctxt "RID_RSC_ENUM_NAVIGATION"
msgid "Parent Form"
msgstr "Γονική φόρμα"
#. SiMYZ
-#: extensions/inc/stringarrays.hrc:139
+#: extensions/inc/stringarrays.hrc:133
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_blank"
msgstr "_κενό"
#. AcsCf
-#: extensions/inc/stringarrays.hrc:140
+#: extensions/inc/stringarrays.hrc:134
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_parent"
msgstr "_γονικό"
#. pQZAG
-#: extensions/inc/stringarrays.hrc:141
+#: extensions/inc/stringarrays.hrc:135
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_self"
msgstr "ί_διο"
#. FwYDV
-#: extensions/inc/stringarrays.hrc:142
+#: extensions/inc/stringarrays.hrc:136
msgctxt "RID_RSC_ENUM_SUBMIT_TARGET"
msgid "_top"
msgstr "_πάνω"
#. UEAHA
-#: extensions/inc/stringarrays.hrc:147
+#: extensions/inc/stringarrays.hrc:141
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "None"
msgstr "Κανένα"
#. YnZQA
-#: extensions/inc/stringarrays.hrc:148
+#: extensions/inc/stringarrays.hrc:142
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Single"
msgstr "Μονό"
#. EMYwE
-#: extensions/inc/stringarrays.hrc:149
+#: extensions/inc/stringarrays.hrc:143
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Multi"
msgstr "Πολλαπλό"
#. 2x8ru
-#: extensions/inc/stringarrays.hrc:150
+#: extensions/inc/stringarrays.hrc:144
msgctxt "RID_RSC_ENUM_SELECTION_TYPE"
msgid "Range"
msgstr "Εύρος"
#. 8dCg5
-#: extensions/inc/stringarrays.hrc:155
+#: extensions/inc/stringarrays.hrc:149
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Horizontal"
msgstr "Οριζόντιος"
#. Z5BR2
-#: extensions/inc/stringarrays.hrc:156
+#: extensions/inc/stringarrays.hrc:150
msgctxt "RID_RSC_ENUM_ORIENTATION"
msgid "Vertical"
msgstr "Κάθετος"
#. BFfMD
-#: extensions/inc/stringarrays.hrc:161
+#: extensions/inc/stringarrays.hrc:155
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Default"
msgstr "Προεπιλογή"
#. eponH
-#: extensions/inc/stringarrays.hrc:162
+#: extensions/inc/stringarrays.hrc:156
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "OK"
msgstr "Εντάξει"
#. UkTKy
-#: extensions/inc/stringarrays.hrc:163
+#: extensions/inc/stringarrays.hrc:157
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Cancel"
msgstr "Ακύρωση"
#. yG859
-#: extensions/inc/stringarrays.hrc:164
+#: extensions/inc/stringarrays.hrc:158
msgctxt "RID_RSC_ENUM_PUSHBUTTONTYPE"
msgid "Help"
msgstr "Βοήθεια"
#. vgkaF
-#: extensions/inc/stringarrays.hrc:169
+#: extensions/inc/stringarrays.hrc:163
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "The selected entry"
msgstr "Η επιλεγμένη καταχώριση"
#. pEAGX
-#: extensions/inc/stringarrays.hrc:170
+#: extensions/inc/stringarrays.hrc:164
msgctxt "RID_RSC_ENUM_CELL_EXCHANGE_TYPE"
msgid "Position of the selected entry"
msgstr "Θέση της επιλεγμένης καταχώρισης"
#. Z2Rwm
-#: extensions/inc/stringarrays.hrc:175
+#: extensions/inc/stringarrays.hrc:169
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Single-line"
msgstr "Μονή γραμμή"
#. 7MQto
-#: extensions/inc/stringarrays.hrc:176
+#: extensions/inc/stringarrays.hrc:170
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line"
msgstr "Πολλαπλές γραμμές"
#. 6D2rQ
-#: extensions/inc/stringarrays.hrc:177
+#: extensions/inc/stringarrays.hrc:171
msgctxt "RID_RSC_ENUM_TEXTTYPE"
msgid "Multi-line with formatting"
msgstr "Πολλαπλές γραμμές με μορφοποίηση"
#. NkEBb
-#: extensions/inc/stringarrays.hrc:182
+#: extensions/inc/stringarrays.hrc:176
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "LF (Unix)"
msgstr "LF (Unix)"
#. FfSEG
-#: extensions/inc/stringarrays.hrc:183
+#: extensions/inc/stringarrays.hrc:177
msgctxt "RID_RSC_ENUM_LINEEND_FORMAT"
msgid "CR+LF (Windows)"
msgstr "CR+LF (Windows)"
#. A4N7i
-#: extensions/inc/stringarrays.hrc:188
+#: extensions/inc/stringarrays.hrc:182
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "None"
msgstr "Καμία"
#. ghkcH
-#: extensions/inc/stringarrays.hrc:189
+#: extensions/inc/stringarrays.hrc:183
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Horizontal"
msgstr "Οριζόντια"
#. YNNCf
-#: extensions/inc/stringarrays.hrc:190
+#: extensions/inc/stringarrays.hrc:184
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Vertical"
msgstr "Κάθετη"
#. gWynn
-#: extensions/inc/stringarrays.hrc:191
+#: extensions/inc/stringarrays.hrc:185
msgctxt "RID_RSC_ENUM_SCROLLBARS"
msgid "Both"
msgstr "Αμφότερες"
#. GLuPa
-#: extensions/inc/stringarrays.hrc:196
+#: extensions/inc/stringarrays.hrc:190
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "3D"
msgstr "3Δ"
#. TFnZJ
-#: extensions/inc/stringarrays.hrc:197
+#: extensions/inc/stringarrays.hrc:191
msgctxt "RID_RSC_ENUM_VISUALEFFECT"
msgid "Flat"
msgstr "Επίπεδο"
#. PmSDw
-#: extensions/inc/stringarrays.hrc:202
+#: extensions/inc/stringarrays.hrc:196
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left top"
msgstr "Πάνω αριστερά"
#. j3mHa
-#: extensions/inc/stringarrays.hrc:203
+#: extensions/inc/stringarrays.hrc:197
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left centered"
msgstr "Κεντραρισμένο αριστερά"
#. FinKD
-#: extensions/inc/stringarrays.hrc:204
+#: extensions/inc/stringarrays.hrc:198
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Left bottom"
msgstr "Κάτω αριστερά"
#. EgCsU
-#: extensions/inc/stringarrays.hrc:205
+#: extensions/inc/stringarrays.hrc:199
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right top"
msgstr "Πάνω δεξιά"
#. t54wS
-#: extensions/inc/stringarrays.hrc:206
+#: extensions/inc/stringarrays.hrc:200
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right centered"
msgstr "Κεντραρισμένο δεξιά"
#. H8u3j
-#: extensions/inc/stringarrays.hrc:207
+#: extensions/inc/stringarrays.hrc:201
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Right bottom"
msgstr "Κάτω δεξιά"
#. jhRkY
-#: extensions/inc/stringarrays.hrc:208
+#: extensions/inc/stringarrays.hrc:202
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above left"
msgstr "Πάνω αριστερά"
#. dmgVh
-#: extensions/inc/stringarrays.hrc:209
+#: extensions/inc/stringarrays.hrc:203
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above centered"
msgstr "Κεντραρισμένο πάνω"
#. AGtAi
-#: extensions/inc/stringarrays.hrc:210
+#: extensions/inc/stringarrays.hrc:204
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Above right"
msgstr "Πάνω δεξιά"
#. F2XCu
-#: extensions/inc/stringarrays.hrc:211
+#: extensions/inc/stringarrays.hrc:205
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below left"
msgstr "Κάτω αριστερά"
#. 4JdJh
-#: extensions/inc/stringarrays.hrc:212
+#: extensions/inc/stringarrays.hrc:206
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below centered"
msgstr "Κεντραρισμένη κάτω"
#. chEB2
-#: extensions/inc/stringarrays.hrc:213
+#: extensions/inc/stringarrays.hrc:207
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Below right"
msgstr "Κάτω δεξιά"
#. GBHDS
-#: extensions/inc/stringarrays.hrc:214
+#: extensions/inc/stringarrays.hrc:208
msgctxt "RID_RSC_ENUM_IMAGE_POSITION"
msgid "Centered"
msgstr "Κεντραρισμένο"
#. tB6AD
-#: extensions/inc/stringarrays.hrc:219
+#: extensions/inc/stringarrays.hrc:213
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Preserve"
msgstr "Διατήρηση"
#. CABAr
-#: extensions/inc/stringarrays.hrc:220
+#: extensions/inc/stringarrays.hrc:214
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Replace"
msgstr "Αντικατάσταση"
#. MQHED
-#: extensions/inc/stringarrays.hrc:221
+#: extensions/inc/stringarrays.hrc:215
msgctxt "RID_RSC_ENUM_WHITESPACE_HANDLING"
msgid "Collapse"
msgstr "Σύμπτυξη"
#. 2Kaax
-#: extensions/inc/stringarrays.hrc:226
+#: extensions/inc/stringarrays.hrc:220
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "No"
msgstr "Όχι"
#. aKBSe
-#: extensions/inc/stringarrays.hrc:227
+#: extensions/inc/stringarrays.hrc:221
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Keep Ratio"
msgstr "Διατήρηση αναλογιών"
#. FHmy6
-#: extensions/inc/stringarrays.hrc:228
+#: extensions/inc/stringarrays.hrc:222
msgctxt "RID_RSC_ENUM_SCALE_MODE"
msgid "Fit to Size"
msgstr "Προσαρμογή στο μέγεθος"
#. 9YCAp
-#: extensions/inc/stringarrays.hrc:233
+#: extensions/inc/stringarrays.hrc:227
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Left-to-right"
msgstr "Από αριστερά προς τα δεξιά"
#. xGDY3
-#: extensions/inc/stringarrays.hrc:234
+#: extensions/inc/stringarrays.hrc:228
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Right-to-left"
msgstr "Από δεξιά προς τα αριστερά"
#. 4qSdq
-#: extensions/inc/stringarrays.hrc:235
+#: extensions/inc/stringarrays.hrc:229
msgctxt "RID_RSC_ENUM_WRITING_MODE"
msgid "Use superordinate object settings"
msgstr "Χρήση ρυθμίσεων ανωτέρου αντικειμένου"
#. LZ36B
-#: extensions/inc/stringarrays.hrc:240
+#: extensions/inc/stringarrays.hrc:234
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Never"
msgstr "Ποτέ"
#. cGY5n
-#: extensions/inc/stringarrays.hrc:241
+#: extensions/inc/stringarrays.hrc:235
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "When focused"
msgstr "Κατά την εστίαση"
#. YXySA
-#: extensions/inc/stringarrays.hrc:242
+#: extensions/inc/stringarrays.hrc:236
msgctxt "RID_RSC_ENUM_WHEEL_BEHAVIOR"
msgid "Always"
msgstr "Πάντα"
#. kFhs9
-#: extensions/inc/stringarrays.hrc:247
+#: extensions/inc/stringarrays.hrc:241
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Paragraph"
msgstr "Σε παράγραφο"
#. WZ2Yp
-#: extensions/inc/stringarrays.hrc:248
+#: extensions/inc/stringarrays.hrc:242
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "As Character"
msgstr "Ως χαρακτήρας"
#. CXbfQ
-#: extensions/inc/stringarrays.hrc:249
+#: extensions/inc/stringarrays.hrc:243
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Page"
msgstr "Σε σελίδα"
#. cQn8Y
-#: extensions/inc/stringarrays.hrc:250
+#: extensions/inc/stringarrays.hrc:244
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Frame"
msgstr "Σε πλαίσιο"
#. 5nPDY
-#: extensions/inc/stringarrays.hrc:251
+#: extensions/inc/stringarrays.hrc:245
msgctxt "RID_RSC_ENUM_TEXT_ANCHOR_TYPE"
msgid "To Character"
msgstr "Σε χαρακτήρα"
#. SrTFR
-#: extensions/inc/stringarrays.hrc:256
+#: extensions/inc/stringarrays.hrc:250
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Page"
msgstr "Σε σελίδα"
#. UyCfS
-#: extensions/inc/stringarrays.hrc:257
+#: extensions/inc/stringarrays.hrc:251
msgctxt "RID_RSC_ENUM_SHEET_ANCHOR_TYPE"
msgid "To Cell"
msgstr "Σε κελί"
diff --git a/source/el/fpicker/messages.po b/source/el/fpicker/messages.po
index 9990b282b5b..8e5c1554647 100644
--- a/source/el/fpicker/messages.po
+++ b/source/el/fpicker/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: 2021-11-16 12:08+0100\n"
+"POT-Creation-Date: 2022-07-01 11:52+0200\n"
"PO-Revision-Date: 2021-02-01 16:18+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/el/>\n"
@@ -216,55 +216,55 @@ msgid "Date modified"
msgstr "Τροποποιημένα δεδομένα"
#. vQEZt
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:503
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:493
msgctxt "explorerfiledialog|open"
msgid "_Open"
msgstr "Ά_νοιγμα"
#. JnE2t
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:550
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:540
msgctxt "explorerfiledialog|play"
msgid "_Play"
msgstr "Αναπαραγ_ωγή"
#. dWNqZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:588
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:578
msgctxt "explorerfiledialog|file_name_label"
msgid "File _name:"
msgstr "Όνομα αρ_χείου:"
#. 9cjFB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:614
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:604
msgctxt "explorerfiledialog|file_type_label"
msgid "File _type:"
msgstr "_Τύπος αρχείου:"
#. quCXH
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:678
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:668
msgctxt "explorerfiledialog|readonly"
msgid "_Read-only"
msgstr "Μόνο για _ανάγνωση"
#. hm2xy
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:701
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:691
msgctxt "explorerfiledialog|password"
msgid "Save with password"
msgstr "Αποθήκευση με κωδικό πρόσβασης"
#. 8EYcB
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:714
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:704
msgctxt "explorerfiledialog|extension"
msgid "_Automatic file name extension"
msgstr "_Αυτόματη επέκταση ονόματος αρχείου"
#. 2CgAZ
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:727
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:717
msgctxt "explorerfiledialog|options"
msgid "Edit _filter settings"
msgstr "Επεξεργασία ρυθμίσεων _φίλτρου"
#. 6XqLj
-#: fpicker/uiconfig/ui/explorerfiledialog.ui:754
+#: fpicker/uiconfig/ui/explorerfiledialog.ui:744
msgctxt "explorerfiledialog|gpgencrypt"
msgid "Encrypt with GPG key"
msgstr "Κρυπτογράφηση με κλειδί GPG"
diff --git a/source/el/helpcontent2/source/text/sbasic/shared/03.po b/source/el/helpcontent2/source/text/sbasic/shared/03.po
index 0ae63c6bcac..4f8780789ff 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared/03.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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-06-01 11:37+0000\n"
+"PO-Revision-Date: 2022-06-15 21:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicshared03/el/>\n"
"Language: el\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: 1549442158.000000\n"
#. ViEWM
@@ -21857,7 +21857,7 @@ msgctxt ""
"par_id31579874656437\n"
"help.text"
msgid "<emph>replacedby</emph>: Zero, one or more characters that will replace all non-printable characters in <literal>inputstr</literal> (Default = \"\")"
-msgstr ""
+msgstr "<emph>replacedby</emph>: Μηδέν, ένας ή περισσότεροι χαρακτήρες που θα αντικαταστήσουν όλους τους μη εκτυπώσιμους χαρακτήρες στο <literal>inputstr</literal> (Προεπιλογή = \"\")"
#. W44TL
#: sf_string.xhp
@@ -21866,7 +21866,7 @@ msgctxt ""
"par_id1001579876228707\n"
"help.text"
msgid "Finds in a string a substring matching a given regular expression."
-msgstr ""
+msgstr "Βρίσκει σε μια συμβολοσειρά μια υποσυμβολοσειρά που ταιριάζει με μια δεδομένη κανονική έκφραση."
#. aq28M
#: sf_string.xhp
@@ -21875,7 +21875,7 @@ msgctxt ""
"par_id131579876314120\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be searched"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά προς αναζήτηση"
#. hRrBB
#: sf_string.xhp
@@ -21884,7 +21884,7 @@ msgctxt ""
"par_id751579876371545\n"
"help.text"
msgid "<emph>regex</emph>: The regular expression"
-msgstr ""
+msgstr "<emph>regex</emph>: Η κανονική έκφραση"
#. y2Fqs
#: sf_string.xhp
@@ -21893,7 +21893,7 @@ msgctxt ""
"par_id881579876394584\n"
"help.text"
msgid "<emph>start</emph>: The position in the string where the search will begin. This parameter is passed by reference, so after execution the value of <literal>start</literal> will point to the first character of the found substring. If no matching substring is found, <literal>start</literal> will be set to 0."
-msgstr ""
+msgstr "<emph>start</emph>: Η θέση στη συμβολοσειρά όπου θα ξεκινήσει η αναζήτηση. Αυτή η παράμετρος μεταβιβάζεται με αναφορά, επομένως μετά την εκτέλεση η τιμή <literal>start</literal> θα δείχνει στον πρώτο χαρακτήρα της υποσυμβολοσειράς που βρέθηκε. Εάν δεν βρεθεί αντίστοιχη υποσυμβολοσειρά, το <literal>start</literal> θα οριστεί σε 0."
#. yZMDg
#: sf_string.xhp
@@ -21902,7 +21902,7 @@ msgctxt ""
"par_id251579876403831\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph> (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = <literal>False</literal>)."
#. A4JC7
#: sf_string.xhp
@@ -21911,7 +21911,7 @@ msgctxt ""
"par_id841579876412287\n"
"help.text"
msgid "<emph>forward</emph>: Determines the direction of the search. If <literal>True</literal>, search moves forward. If <literal>False</literal> search moves backwards (Default = <literal>True</literal>)"
-msgstr ""
+msgstr "<emph>forward</emph> (προς τα εμπρός): Καθορίζει την κατεύθυνση της αναζήτησης. Εάν είναι <literal>True</literal>, η αναζήτηση προχωρά. Εάν η αναζήτηση είναι <literal>False</literal> μετακινείται προς τα πίσω (Προεπιλογή = <literal>True</literal>)"
#. SkaCi
#: sf_string.xhp
@@ -21920,7 +21920,7 @@ msgctxt ""
"par_id451612309155653\n"
"help.text"
msgid "At the first iteration, if <literal>forward = True</literal>, then <literal>start</literal> should be equal to 1, whereas if <literal>forward = False</literal> then <literal>start</literal> should be equal to <literal>Len(inputstr)</literal>"
-msgstr ""
+msgstr "Στην πρώτη επανάληψη, εάν <literal>forward = True</literal>, τότε το <literal>start</literal> θα πρέπει να είναι ίσο με 1, ενώ εάν <literal>forward = False</literal> τότε το <literal>start</literal> πρέπει να είναι ίσο με <literal>Len(inputstr)</literal>"
#. gv3oo
#: sf_string.xhp
@@ -21929,7 +21929,7 @@ msgctxt ""
"par_id221612309579001\n"
"help.text"
msgid "In the example above, the new value of <literal>lStart</literal> can be used to keep searching the same input string by setting the <literal>Start</literal> parameter to <literal>lStart + Len(result)</literal> at the next iteration."
-msgstr ""
+msgstr "Στο παραπάνω παράδειγμα, η νέα τιμή του <literal>lStart</literal> μπορεί να χρησιμοποιηθεί για να συνεχιστεί η αναζήτηση της ίδιας συμβολοσειράς εισόδου ορίζοντας την παράμετρο <literal>Start</literal> σε <literal>lStart + Len(result)</literal> στην επόμενη επανάληψη."
#. qAkN4
#: sf_string.xhp
@@ -21938,7 +21938,7 @@ msgctxt ""
"par_id471601048983628\n"
"help.text"
msgid "Hash functions are used inside some cryptographic algorithms, in digital signatures, message authentication codes, manipulation detection, fingerprints, checksums (message integrity check), hash tables, password storage and much more."
-msgstr ""
+msgstr "Οι συναρτήσεις κατακερματισμού χρησιμοποιούνται σε ορισμένους κρυπτογραφικούς αλγόριθμους, σε ψηφιακές υπογραφές, κωδικούς ταυτοποίησης μηνυμάτων, ανίχνευση χειρισμού, δακτυλικά αποτυπώματα, αθροίσματα ελέγχου (έλεγχος ακεραιότητας μηνυμάτων), πίνακες κατακερματισμού, αποθήκευση κωδικών πρόσβασης και πολλά άλλα."
#. HupGD
#: sf_string.xhp
@@ -21947,7 +21947,7 @@ msgctxt ""
"par_id301601048983765\n"
"help.text"
msgid "The <literal>HashStr</literal> method returns the result of a hash function applied on a given string and using a specified algorithm, as a string of lowercase hexadecimal digits."
-msgstr ""
+msgstr "Η μέθοδος <literal>HashStr</literal> επιστρέφει το αποτέλεσμα μιας συνάρτησης κατακερματισμού που εφαρμόζεται σε μια δεδομένη συμβολοσειρά και χρησιμοποιώντας έναν καθορισμένο αλγόριθμο, ως συμβολοσειρά πεζών δεκαεξαδικών ψηφίων."
#. ZRZEF
#: sf_string.xhp
@@ -21956,7 +21956,7 @@ msgctxt ""
"par_id631601048983149\n"
"help.text"
msgid "The hash algorithms supported are: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> and <literal>SHA512</literal>."
-msgstr ""
+msgstr "Οι αλγόριθμοι κατακερματισμού που υποστηρίζονται είναι: <literal>MD5</literal>, <literal>SHA1</literal>, <literal>SHA224</literal>, <literal>SHA256</literal>, <literal>SHA384</literal> και <literal>SHA512</literal>."
#. yUmmb
#: sf_string.xhp
@@ -21965,7 +21965,7 @@ msgctxt ""
"par_id621601048983210\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to hash. It is presumed to be encoded in UTF-8. The hashing algorithm will consider the string as a stream of bytes."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά προς κατακερματισμό. Υποτίθεται ότι είναι κωδικοποιημένη σε UTF-8. Ο αλγόριθμος κατακερματισμού θα θεωρήσει τη συμβολοσειρά ως μια ροή ψηφιολέξεων (bytes)."
#. nuQRb
#: sf_string.xhp
@@ -21974,7 +21974,7 @@ msgctxt ""
"par_id941601048983822\n"
"help.text"
msgid "<emph>algorithm</emph>: One of the supported algorithms listed above, passed as a string."
-msgstr ""
+msgstr "<emph>algorithm</emph> (αλγόριθμος): Ένας από τους υποστηριζόμενους αλγορίθμους που αναφέρονται παραπάνω, μεταβιβάστηκε ως συμβολοσειρά."
#. TXGmB
#: sf_string.xhp
@@ -21983,7 +21983,7 @@ msgctxt ""
"par_id221579879516929\n"
"help.text"
msgid "Encodes the input string into the HTML character codes, replacing special characters by their <literal>&</literal> counterparts."
-msgstr ""
+msgstr "Κωδικοποιεί τη συμβολοσειρά εισόδου στους κωδικούς χαρακτήρων HTML, αντικαθιστώντας τους ειδικούς χαρακτήρες από τους αντίστοιχους <literal>&</literal>."
#. YNfid
#: sf_string.xhp
@@ -21992,7 +21992,7 @@ msgctxt ""
"par_id341612351999692\n"
"help.text"
msgid "For example, the character <literal>é</literal> would be replaced by <literal>&eacute;</literal> or an equivalent numerical HTML code."
-msgstr ""
+msgstr "Για παράδειγμα, ο χαρακτήρας <literal>é</literal> θα αντικατασταθεί από <literal>&eacute;</literal> ή έναν ισοδύναμο αριθμητικό κωδικό HTML."
#. CGFQH
#: sf_string.xhp
@@ -22001,7 +22001,7 @@ msgctxt ""
"bas_id501579879570781\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to encode."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά προς κωδικοποίηση."
#. jpv97
#: sf_string.xhp
@@ -22010,7 +22010,7 @@ msgctxt ""
"par_id171579880990533\n"
"help.text"
msgid "Returns <literal>True</literal> if the input string is a valid date according to a specified date format."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά εισόδου είναι έγκυρη ημερομηνία σύμφωνα με μια καθορισμένη μορφή ημερομηνίας."
#. tBGBH
#: sf_string.xhp
@@ -22019,7 +22019,7 @@ msgctxt ""
"par_id151579881091821\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>"
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>"
#. nmTv3
#: sf_string.xhp
@@ -22028,7 +22028,7 @@ msgctxt ""
"par_id991579881107670\n"
"help.text"
msgid "<emph>dateformat</emph>: The date format, as a string. It can be either \"YYYY-MM-DD\" (default), \"DD-MM-YYYY\" or \"MM-DD-YYYY\""
-msgstr ""
+msgstr "<emph>dateformat</emph>: Η μορφή ημερομηνίας, ως συμβολοσειρά. Μπορεί να είναι είτε \"ΕΕΕΕ-ΜΜ-ΗΗ\" (προεπιλογή), \"ΗΗ-ΜΜ-ΕΕΕΕ\" ή \"ΜΜ-ΗΗ-ΕΕΕΕ\""
#. GvZLC
#: sf_string.xhp
@@ -22037,7 +22037,7 @@ msgctxt ""
"par_id291579881117126\n"
"help.text"
msgid "The dash (-) may be replaced by a dot (.), a slash (/) or a space."
-msgstr ""
+msgstr "Η παύλα (-) μπορεί να αντικατασταθεί από μια τελεία (.), μια κάθετο (/) ή ένα διάστημα."
#. yCA3T
#: sf_string.xhp
@@ -22046,7 +22046,7 @@ msgctxt ""
"par_id51579881125801\n"
"help.text"
msgid "If the format is invalid, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "Εάν η μορφή είναι άκυρη, η μέθοδος επιστρέφει <literal>False</literal>."
#. qFmWW
#: sf_string.xhp
@@ -22055,7 +22055,7 @@ msgctxt ""
"par_id211612370427721\n"
"help.text"
msgid "This method checks the format of the input string without performing any calendar-specific checks. Hence it does not test the input string for leap years or months with 30 or 31 days. For that, refer to the <link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate function\"><literal>IsDate</literal> built-in function</link>."
-msgstr ""
+msgstr "Αυτή η μέθοδος ελέγχει τη μορφή της συμβολοσειράς εισόδου χωρίς να πραγματοποιεί ελέγχους που αφορούν το ημερολόγιο. Ως εκ τούτου, δεν δοκιμάζει τη συμβολοσειρά εισόδου για δίσεκτα έτη, ή μήνες με 30 ή 31 ημέρες. Για αυτό, ανατρέξτε στην ενσωματωμένη συνάρτηση <link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate function\"><literal>IsDate</literal></link>."
#. DJQFQ
#: sf_string.xhp
@@ -22064,7 +22064,7 @@ msgctxt ""
"par_id181612371147364\n"
"help.text"
msgid "The example below shows the difference between the methods <literal>IsADate</literal> (ScriptForge) and the <literal>IsDate</literal> (built-in) function."
-msgstr ""
+msgstr "Το παρακάτω παράδειγμα δείχνει τη διαφορά μεταξύ των μεθόδων <literal>IsADate</literal> (ScriptForge) και της συνάρτησης <literal>IsDate</literal> (ενσωματωμένη)."
#. hAADi
#: sf_string.xhp
@@ -22073,7 +22073,7 @@ msgctxt ""
"par_id161579881600317\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are alphabetic."
-msgstr ""
+msgstr "Επιστρέφει το <literal>True</literal> εάν όλοι οι χαρακτήρες της συμβολοσειράς είναι αλφαβητικοί."
#. Cpeo3
#: sf_string.xhp
@@ -22082,7 +22082,7 @@ msgctxt ""
"par_id251579881615469\n"
"help.text"
msgid "Alphabetic characters are those characters defined in the <link href=\"https://unicode.org/reports/tr44/\" name=\"Unicode documentation\">Unicode Character Database</link> as <literal>Letter</literal>."
-msgstr ""
+msgstr "Οι αλφαβητικοί χαρακτήρες είναι εκείνοι οι χαρακτήρες που ορίζονται στη <link href=\"https://unicode.org/reports/tr44/\" name=\"Unicode documentation\">Βάση δεδομένων χαρακτήρων Unicode</link> ως <literal>Letter</literal> (Γράμμα)."
#. a9rTa
#: sf_string.xhp
@@ -22091,7 +22091,7 @@ msgctxt ""
"par_id11579881691826\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. KaLGv
#: sf_string.xhp
@@ -22100,7 +22100,7 @@ msgctxt ""
"par_id421579883181382\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are alphabetic, digits or \"_\" (underscore). The first character must not be a digit."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι αλφαβητικά, ψηφία ή \"_\" (υπογράμμιση). Ο πρώτος χαρακτήρας δεν πρέπει να είναι ψηφίο."
#. BAEB4
#: sf_string.xhp
@@ -22109,7 +22109,7 @@ msgctxt ""
"par_id31579884464101\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. qAZpA
#: sf_string.xhp
@@ -22118,7 +22118,7 @@ msgctxt ""
"par_id671580039484786\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are Ascii characters."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι χαρακτήρες Ascii."
#. 3DNou
#: sf_string.xhp
@@ -22127,7 +22127,7 @@ msgctxt ""
"par_id791580039528838\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. iuPF4
#: sf_string.xhp
@@ -22136,7 +22136,7 @@ msgctxt ""
"par_id861580044805749\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are digits."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι ψηφία."
#. yU7cc
#: sf_string.xhp
@@ -22145,7 +22145,7 @@ msgctxt ""
"par_id41580044873043\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. J8Ykx
#: sf_string.xhp
@@ -22154,7 +22154,7 @@ msgctxt ""
"par_id521580045221758\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid email address."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά είναι έγκυρη διεύθυνση ηλ. αλληλογραφίας."
#. 8Pxsn
#: sf_string.xhp
@@ -22163,7 +22163,7 @@ msgctxt ""
"par_id841580045280071\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. R6MsU
#: sf_string.xhp
@@ -22172,7 +22172,7 @@ msgctxt ""
"par_id41580047039666\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid filename in a given operating system."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά είναι έγκυρο όνομα αρχείου σε ένα δεδομένο λειτουργικό σύστημα."
#. aQbRF
#: sf_string.xhp
@@ -22181,7 +22181,7 @@ msgctxt ""
"par_id801580047079938\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. jWMpJ
#: sf_string.xhp
@@ -22190,7 +22190,7 @@ msgctxt ""
"par_id781580047088954\n"
"help.text"
msgid "<emph>osname</emph>: The operating system name, as a string. It can be \"WINDOWS\", \"LINUX\", \"MACOSX\" or \"SOLARIS\"."
-msgstr ""
+msgstr "<emph>osname</emph>: Το όνομα του λειτουργικού συστήματος, ως συμβολοσειρά. Μπορεί να είναι \"WINDOWS\", \"LINUX\", \"MACOSX\" ή \"SOLARIS\"."
#. GnrxA
#: sf_string.xhp
@@ -22199,7 +22199,7 @@ msgctxt ""
"par_id991612372824234\n"
"help.text"
msgid "The default value is the current operating system on which the script is running."
-msgstr ""
+msgstr "Η προεπιλεγμένη τιμή είναι το τρέχον λειτουργικό σύστημα στο οποίο εκτελείται η δέσμη ενεργειών."
#. FPuAV
#: sf_string.xhp
@@ -22208,7 +22208,7 @@ msgctxt ""
"par_id911580047551929\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are hexadecimal digits."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι δεκαεξαδικά ψηφία."
#. hWqAh
#: sf_string.xhp
@@ -22217,7 +22217,7 @@ msgctxt ""
"par_id331580047594144\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. kEz4y
#: sf_string.xhp
@@ -22226,7 +22226,7 @@ msgctxt ""
"par_id521612377109554\n"
"help.text"
msgid "The hexadecimal digits may be prefixed with \"0x\" or \"&H\"."
-msgstr ""
+msgstr "Τα δεκαεξαδικά ψηφία μπορούν να έχουν το πρόθεμα \"0x\" ή \"&H\"."
#. 3WKNf
#: sf_string.xhp
@@ -22235,7 +22235,7 @@ msgctxt ""
"par_id791584008420941\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid International Bank Account Number (IBAN). The comparison is not case-sensitive."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά είναι έγκυρος αριθμός διεθνούς τραπεζικού λογαριασμού (IBAN). Η σύγκριση δεν κάνει διάκριση πεζών-κεφαλαίων."
#. DnC6i
#: sf_string.xhp
@@ -22244,7 +22244,7 @@ msgctxt ""
"par_id951880048466565\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. VgT3x
#: sf_string.xhp
@@ -22253,7 +22253,7 @@ msgctxt ""
"par_id631619526542367\n"
"help.text"
msgid "<literal>True</literal> if the string contains a valid IBAN number."
-msgstr ""
+msgstr "<literal>True</literal> εάν η συμβολοσειρά περιέχει έγκυρο αριθμό IBAN."
#. CcTNk
#: sf_string.xhp
@@ -22262,7 +22262,7 @@ msgctxt ""
"par_id791580048420941\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid IP(v4) address."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά είναι έγκυρη διεύθυνση IP(v4)."
#. rMpXB
#: sf_string.xhp
@@ -22271,7 +22271,7 @@ msgctxt ""
"par_id981580048466565\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. yWHew
#: sf_string.xhp
@@ -22280,7 +22280,7 @@ msgctxt ""
"par_id831580049093038\n"
"help.text"
msgid "Returns <literal>True</literal> if the whole input string matches a given pattern containing wildcards."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν ολόκληρη η συμβολοσειρά εισόδου ταιριάζει με ένα δεδομένο μοτίβο που περιέχει χαρακτήρες υποκατάστασης."
#. PzigS
#: sf_string.xhp
@@ -22289,7 +22289,7 @@ msgctxt ""
"par_id141580049142548\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. XEBzh
#: sf_string.xhp
@@ -22298,7 +22298,7 @@ msgctxt ""
"par_id31580049154551\n"
"help.text"
msgid "<emph>pattern</emph>: The pattern as a string. Wildcards are:"
-msgstr ""
+msgstr "<emph>pattern</emph> (μοτίβο): Το μοτίβο ως συμβολοσειρά. Οι χαρακτήρες υποκατάστασης είναι:"
#. ZCzDP
#: sf_string.xhp
@@ -22307,7 +22307,7 @@ msgctxt ""
"par_id181612441703306\n"
"help.text"
msgid "\"?\" represents any single character;"
-msgstr ""
+msgstr "\"?\" αντιπροσωπεύει οποιονδήποτε μεμονωμένο χαρακτήρα."
#. CFPcW
#: sf_string.xhp
@@ -22316,7 +22316,7 @@ msgctxt ""
"par_id861612377611438\n"
"help.text"
msgid "\"*\" represents zero, one, or multiple characters."
-msgstr ""
+msgstr "Το \"*\" αντιπροσωπεύει μηδέν, έναν ή πολλούς χαρακτήρες."
#. eLYBF
#: sf_string.xhp
@@ -22325,7 +22325,7 @@ msgctxt ""
"par_id991580049206617\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph> (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = <literal>False</literal>)."
#. kSMmn
#: sf_string.xhp
@@ -22334,7 +22334,7 @@ msgctxt ""
"par_id581580050048679\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are in lowercase. Non-alphabetic characters are ignored."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι με πεζούς χαρακτήρες. Οι μη αλφαβητικοί χαρακτήρες αγνοούνται."
#. nWGvX
#: sf_string.xhp
@@ -22343,7 +22343,7 @@ msgctxt ""
"par_id751580050122938\n"
"help.text"
msgid "<emph>InputStr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>InputStr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. BzD3y
#: sf_string.xhp
@@ -22352,7 +22352,7 @@ msgctxt ""
"par_id231580051650488\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are printable."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες της συμβολοσειράς είναι εκτυπώσιμοι."
#. gUhut
#: sf_string.xhp
@@ -22361,7 +22361,7 @@ msgctxt ""
"par_id721580051706431\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. HYBp5
#: sf_string.xhp
@@ -22370,7 +22370,7 @@ msgctxt ""
"par_id281580052400960\n"
"help.text"
msgid "Returns <literal>True</literal> if the whole input string matches a given regular expression."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν ολόκληρη η συμβολοσειρά εισόδου ταιριάζει με μια δεδομένη κανονική έκφραση."
#. ZuBxC
#: sf_string.xhp
@@ -22379,7 +22379,7 @@ msgctxt ""
"par_id161580052454770\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. mi4mi
#: sf_string.xhp
@@ -22388,7 +22388,7 @@ msgctxt ""
"par_id581580052467973\n"
"help.text"
msgid "<emph>regex</emph>: The regular expression. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>regex</emph>: Η κανονική έκφραση. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. vmqZM
#: sf_string.xhp
@@ -22397,7 +22397,7 @@ msgctxt ""
"par_id621580052654341\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph> (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = <literal>False</literal>)."
#. iZSEw
#: sf_string.xhp
@@ -22406,7 +22406,7 @@ msgctxt ""
"par_id1001589460240467\n"
"help.text"
msgid "Returns <literal>True</literal> if the input string is a valid Calc sheet name."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά εισόδου είναι ένα έγκυρο όνομα φύλλου Calc."
#. xPFLm
#: sf_string.xhp
@@ -22415,7 +22415,7 @@ msgctxt ""
"par_id671589460240552\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. uE5gz
#: sf_string.xhp
@@ -22424,7 +22424,7 @@ msgctxt ""
"par_id551612442002823\n"
"help.text"
msgid "A sheet name must not contain the characters [ ] * ? : / \\ or the character ' (apostrophe) as first or last character."
-msgstr ""
+msgstr "Ένα όνομα φύλλου δεν πρέπει να περιέχει τους χαρακτήρες [ ] * ? : / \\ ή τον χαρακτήρα ' (απόστροφος) ως πρώτο ή τελευταίο χαρακτήρα."
#. ALdgg
#: sf_string.xhp
@@ -22433,7 +22433,7 @@ msgctxt ""
"par_id371580293093655\n"
"help.text"
msgid "Returns <literal>True</literal> if the first character of every word is in uppercase and the other characters are in lowercase."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν ο πρώτος χαρακτήρας κάθε λέξης είναι με κεφαλαία και οι άλλοι χαρακτήρες με πεζούς."
#. uVF9U
#: sf_string.xhp
@@ -22442,7 +22442,7 @@ msgctxt ""
"par_id471580293142283\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. 7Ryzp
#: sf_string.xhp
@@ -22451,7 +22451,7 @@ msgctxt ""
"par_id801580128672004\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are in uppercase. Non alphabetic characters are ignored."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι με κεφαλαία. Οι μη αλφαβητικοί χαρακτήρες αγνοούνται."
#. HFDCW
#: sf_string.xhp
@@ -22460,7 +22460,7 @@ msgctxt ""
"par_id391580128736809\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. BTRpG
#: sf_string.xhp
@@ -22469,7 +22469,7 @@ msgctxt ""
"par_id531580132067813\n"
"help.text"
msgid "Returns <literal>True</literal> if the string is a valid absolute URL (Uniform Resource Locator) address. Only the http, https and ftp protocols are supported."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν η συμβολοσειρά είναι μια έγκυρη απόλυτη διεύθυνση URL (Uniform Resource Locator). Υποστηρίζονται μόνο τα πρωτόκολλα http, https και ftp."
#. HrFqG
#: sf_string.xhp
@@ -22478,7 +22478,7 @@ msgctxt ""
"par_id321580132113593\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. wBAqG
#: sf_string.xhp
@@ -22487,7 +22487,7 @@ msgctxt ""
"par_id41580132491698\n"
"help.text"
msgid "Returns <literal>True</literal> if all characters in the string are whitespaces"
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν όλοι οι χαρακτήρες στη συμβολοσειρά είναι κενά διαστήματα"
#. JDD85
#: sf_string.xhp
@@ -22496,7 +22496,7 @@ msgctxt ""
"par_id801580132535511\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be checked. If empty, the method returns <literal>False</literal>."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα ελεγχθεί. Εάν είναι κενή, η μέθοδος επιστρέφει <literal>False</literal>."
#. 7EBbA
#: sf_string.xhp
@@ -22505,7 +22505,7 @@ msgctxt ""
"par_id891580133307100\n"
"help.text"
msgid "Returns the input string center-justified."
-msgstr ""
+msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με πλήρη στοίχιση στο κέντρο."
#. TLmnE
#: sf_string.xhp
@@ -22514,7 +22514,7 @@ msgctxt ""
"par_id571612380829021\n"
"help.text"
msgid "The leading and trailing white spaces are stripped and the remaining characters are completed left and right up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
-msgstr ""
+msgstr "Τα κενά διαστήματα στηναρχή και στο τέλος αφαιρούνται και οι υπόλοιποι χαρακτήρες συμπληρώνονται αριστερά και δεξιά μέχρι ένα καθορισμένο συνολικό <literal>length</literal> (μήκος) με τον χαρακτήρα <literal>padding</literal>."
#. 4uuQT
#: sf_string.xhp
@@ -22523,7 +22523,7 @@ msgctxt ""
"par_id911580133391827\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be center-justified. If empty, the method returns an empty string."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που πρέπει να στοιχιστεί πλήρως στο κέντρο. Εάν είναι κενή, η μέθοδος επιστρέφει μια κενή συμβολοσειρά."
#. jHJNT
#: sf_string.xhp
@@ -22532,7 +22532,7 @@ msgctxt ""
"par_id671580133694946\n"
"help.text"
msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
-msgstr ""
+msgstr "<emph>length</emph> (μήκος): Το μήκος της συμβολοσειράς που προκύπτει (προεπιλογή = το μήκος της συμβολοσειράς εισόδου)."
#. A3qof
#: sf_string.xhp
@@ -22541,7 +22541,7 @@ msgctxt ""
"par_id511612381090109\n"
"help.text"
msgid "If the specified length is shorter than the center-justified input string, then the returned string is truncated."
-msgstr ""
+msgstr "Εάν το καθορισμένο μήκος είναι μικρότερο από τη συμβολοσειρά εισόδου με πλήρη στοίχιση στο κέντρο, τότε η συμβολοσειρά που επιστρέφεται περικόπτεται."
#. fys4j
#: sf_string.xhp
@@ -22550,7 +22550,7 @@ msgctxt ""
"par_id101580133705268\n"
"help.text"
msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
-msgstr ""
+msgstr "<emph>padding</emph> (συμπλήρωμα): Ο μεμονωμένος χαρακτήρας που θα χρησιμοποιηθεί ως συμπλήρωμα (προεπιλογή = ο χώρος Ascii \" \")."
#. 4zk3p
#: sf_string.xhp
@@ -22559,7 +22559,7 @@ msgctxt ""
"par_id911580135466348\n"
"help.text"
msgid "Returns the input string left-justified."
-msgstr ""
+msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με πλήρη στοίχιση αριστερά."
#. 9KeCE
#: sf_string.xhp
@@ -22568,7 +22568,7 @@ msgctxt ""
"par_id431612381917641\n"
"help.text"
msgid "The leading white spaces are stripped and the remaining characters are completed to the right up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
-msgstr ""
+msgstr "Τα αρχικά κενά διαστήματα αφαιρούνται και οι υπόλοιποι χαρακτήρες συμπληρώνονται προς τα δεξιά μέχρι ένα καθορισμένο συνολικό <literal>length</literal> (μήκος) με τον χαρακτήρα <literal>padding</literal> (συμπλήρωσης)."
#. UQXSM
#: sf_string.xhp
@@ -22577,7 +22577,7 @@ msgctxt ""
"par_id281580135523448\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be left-justified. If empty, the method returns an empty string."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που πρέπει να στοιχιστεί πλήρως αριστερά. Εάν είναι κενή, η μέθοδος επιστρέφει μια κενή συμβολοσειρά."
#. EAwAa
#: sf_string.xhp
@@ -22586,7 +22586,7 @@ msgctxt ""
"par_id431580135534910\n"
"help.text"
msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
-msgstr ""
+msgstr "<emph>length</emph> (μήκος): Το μήκος της συμβολοσειράς που προκύπτει (προεπιλογή = το μήκος της συμβολοσειράς εισόδου)."
#. ntKXx
#: sf_string.xhp
@@ -22595,7 +22595,7 @@ msgctxt ""
"par_id161612381664182\n"
"help.text"
msgid "If the specified length is shorter than the left-justified input string, then the returned string is truncated."
-msgstr ""
+msgstr "Εάν το καθορισμένο μήκος είναι μικρότερο από την συμβολοσειρά εισόδου με πλήρη αριστερή στοίχιση, τότε η συμβολοσειρά που επιστρέφεται περικόπτεται."
#. wBnmv
#: sf_string.xhp
@@ -22604,7 +22604,7 @@ msgctxt ""
"par_id221580135568475\n"
"help.text"
msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
-msgstr ""
+msgstr "<emph>padding</emph> (συμπλήρωμα): Ο μεμονωμένος χαρακτήρας που θα χρησιμοποιηθεί ως συμπλήρωμα (προεπιλογή = ο χώρος Ascii \" \")."
#. TTokb
#: sf_string.xhp
@@ -22613,7 +22613,7 @@ msgctxt ""
"par_id821580136091225\n"
"help.text"
msgid "Returns the input string right-justified."
-msgstr ""
+msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με πλήρη στοίχιση δεξιά."
#. 4fG7c
#: sf_string.xhp
@@ -22622,7 +22622,7 @@ msgctxt ""
"par_id771612382000293\n"
"help.text"
msgid "The leading white spaces are stripped and the remaining characters are completed to the left up to a specified total <literal>length</literal> with the character <literal>padding</literal>."
-msgstr ""
+msgstr "Τα αρχικά κενά διαστήματα αφαιρούνται και οι υπόλοιποι χαρακτήρες συμπληρώνονται προς τα αριστερά μέχρι ένα καθορισμένο συνολικό <literal>length</literal> (μήκος) με τον χαρακτήρα <literal>padding</literal> (συμπλήρωσης)."
#. KxskT
#: sf_string.xhp
@@ -22631,7 +22631,7 @@ msgctxt ""
"par_id201580136154170\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be right-justified. If empty, the method returns an empty string."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που πρέπει να στοιχιστεί πλήρως δεξιά. Εάν είναι κενή, η μέθοδος επιστρέφει μια κενή συμβολοσειρά."
#. FboQc
#: sf_string.xhp
@@ -22640,7 +22640,7 @@ msgctxt ""
"par_id71580136164632\n"
"help.text"
msgid "<emph>length</emph>: The length of the resulting string (default = the length of the input string)."
-msgstr ""
+msgstr "<emph>length</emph> (μήκος): Το μήκος της συμβολοσειράς που προκύπτει (προεπιλογή = το μήκος της συμβολοσειράς εισόδου)."
#. dshKE
#: sf_string.xhp
@@ -22649,7 +22649,7 @@ msgctxt ""
"par_id191612381732163\n"
"help.text"
msgid "If the specified length is shorter than the right-justified input string, then the returned string is truncated."
-msgstr ""
+msgstr "Εάν το καθορισμένο μήκος είναι μικρότερο από τη συμβολοσειρά εισόδου με πλήρη στοίχιση δεξιά, τότε η συμβολοσειρά που επιστρέφεται περικόπτεται."
#. LtcVG
#: sf_string.xhp
@@ -22658,7 +22658,7 @@ msgctxt ""
"par_id751580136200680\n"
"help.text"
msgid "<emph>padding</emph>: The single character to be used as padding (default = the Ascii space \" \")."
-msgstr ""
+msgstr "<emph>padding</emph> (συμπλήρωμα): Ο μεμονωμένος χαρακτήρας που θα χρησιμοποιηθεί ως συμπλήρωμα (προεπιλογή = ο χώρος Ascii \" \")."
#. Wn55u
#: sf_string.xhp
@@ -22667,7 +22667,7 @@ msgctxt ""
"par_id251580136888958\n"
"help.text"
msgid "Returns the input string enclosed in single or double quotes. Existing quotes are left unchanged, including leading and/or trailing quotes."
-msgstr ""
+msgstr "Επιστρέφει τη συμβολοσειρά εισόδου που περικλείεται σε μονά ή διπλά εισαγωγικά. Τα υπάρχοντα εισαγωγικά παραμένουν αμετάβλητα, συμπεριλαμβανομένων των αρχικών και/ή των τελικών εισαγωγικών."
#. YBvt4
#: sf_string.xhp
@@ -22676,7 +22676,7 @@ msgctxt ""
"par_id811580136944674\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to quote."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα μπει σε εισαγωγικά."
#. GynWV
#: sf_string.xhp
@@ -22685,7 +22685,7 @@ msgctxt ""
"par_id581599129397412\n"
"help.text"
msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote (default)."
-msgstr ""
+msgstr "<emph>quotechar</emph> (χαρακτήρας εισαγωγικού): Είτε το μονό (') είτε το διπλό (\") εισαγωγικό (προεπιλογή)."
#. fY3PC
#: sf_string.xhp
@@ -22694,7 +22694,7 @@ msgctxt ""
"par_id911612382537087\n"
"help.text"
msgid "This method can be useful while preparing a string field to be stored in a csv-like file, which requires that text values be enclosed with single or double quotes."
-msgstr ""
+msgstr "Αυτή η μέθοδος μπορεί να είναι χρήσιμη κατά την προετοιμασία ενός πεδίου συμβολοσειράς που θα αποθηκευτεί σε ένα αρχείο που μοιάζει με csv, το οποίο απαιτεί οι τιμές κειμένου να περικλείονται με μονά ή διπλά εισαγωγικά."
#. 8Rr4M
#: sf_string.xhp
@@ -22703,7 +22703,7 @@ msgctxt ""
"par_id951580139124650\n"
"help.text"
msgid "Replaces all occurrences of the characters specified in the <literal>Before</literal> parameter by the corresponding characters specified in <literal>After</literal>."
-msgstr ""
+msgstr "Αντικαθιστά όλες τις εμφανίσεις των χαρακτήρων που καθορίζονται στην παράμετρο <literal>Before</literal> (Πριν) με τους αντίστοιχους χαρακτήρες που καθορίζονται στο <literal>After</literal> (Μετά)."
#. 5hn2y
#: sf_string.xhp
@@ -22712,7 +22712,7 @@ msgctxt ""
"par_id1001612384040018\n"
"help.text"
msgid "If the length of <literal>Before</literal> is greater than the length of <literal>After</literal>, the residual characters in <literal>Before</literal> are replaced by the last character in <literal>After</literal>."
-msgstr ""
+msgstr "Εάν το μήκος του <literal>Before</literal> είναι μεγαλύτερο από το μήκος του <literal>After</literal>, οι υπόλοιποι χαρακτήρες στο <literal>Before</literal> αντικαθίστανται από τον τελευταίο χαρακτήρα στο <literal>After </literal>."
#. DD2CL
#: sf_string.xhp
@@ -22721,7 +22721,7 @@ msgctxt ""
"par_id11580139160633\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά εισόδου στην οποία θα πραγματοποιηθούν αντικαταστάσεις."
#. DvaRE
#: sf_string.xhp
@@ -22730,7 +22730,7 @@ msgctxt ""
"par_id111580139169795\n"
"help.text"
msgid "<emph>before</emph>: A string with the characters that will be searched in the input string for replacement."
-msgstr ""
+msgstr "<emph>πριν</emph>: Μια συμβολοσειρά με τους χαρακτήρες που θα αναζητηθούν στη συμβολοσειρά εισόδου για αντικατάσταση."
#. N46b3
#: sf_string.xhp
@@ -22739,7 +22739,7 @@ msgctxt ""
"par_id851580139182113\n"
"help.text"
msgid "<emph>after</emph>: A string with the new characters that will replace those defined in <literal>before</literal>."
-msgstr ""
+msgstr "<emph>after</emph>: Μια συμβολοσειρά με τους νέους χαρακτήρες που θα αντικαταστήσουν αυτούς που ορίζονται στο <literal>before</literal>."
#. CDuCC
#: sf_string.xhp
@@ -22748,7 +22748,7 @@ msgctxt ""
"bas_id921580139218457\n"
"help.text"
msgid "' Replaces accented characters"
-msgstr ""
+msgstr "' Αντικαθιστά τους τονισμένους χαρακτήρες"
#. 5ww5A
#: sf_string.xhp
@@ -22757,7 +22757,7 @@ msgctxt ""
"par_id151612442904499\n"
"help.text"
msgid "The <literal>SF_String</literal> service provides useful public constants for the Latin character sets, as shown in the example below:"
-msgstr ""
+msgstr "Η υπηρεσία <literal>SF_String</literal> παρέχει χρήσιμες δημόσιες σταθερές για τα σύνολα λατινικών χαρακτήρων, όπως φαίνεται στο παρακάτω παράδειγμα:"
#. 9SPjv
#: sf_string.xhp
@@ -22766,7 +22766,7 @@ msgctxt ""
"par_id671580140272818\n"
"help.text"
msgid "Replaces all occurrences of a given regular expression by a new string."
-msgstr ""
+msgstr "Αντικαθιστά όλες τις εμφανίσεις μιας δεδομένης κανονικής έκφρασης με μια νέα συμβολοσειρά."
#. ujCyu
#: sf_string.xhp
@@ -22775,7 +22775,7 @@ msgctxt ""
"par_id471580140311626\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά εισόδου στην οποία θα πραγματοποιηθούν αντικαταστάσεις."
#. o2DS2
#: sf_string.xhp
@@ -22784,7 +22784,7 @@ msgctxt ""
"par_id651580140322666\n"
"help.text"
msgid "<emph>regex</emph>: The regular expression."
-msgstr ""
+msgstr "<emph>regex</emph>: Η κανονική έκφραση."
#. itEEd
#: sf_string.xhp
@@ -22793,7 +22793,7 @@ msgctxt ""
"par_id891580140334754\n"
"help.text"
msgid "<emph>newstr</emph>: The replacing string."
-msgstr ""
+msgstr "<emph>newstr</emph>: Η συμβολοσειρά που αντικαθιστά την προηγούμενη."
#. gJRAr
#: sf_string.xhp
@@ -22802,7 +22802,7 @@ msgctxt ""
"par_id581580140345221\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph> (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = <literal>False</literal>)."
#. ykPVR
#: sf_string.xhp
@@ -22811,7 +22811,7 @@ msgctxt ""
"bas_id961612384647003\n"
"help.text"
msgid "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxx xxxxxxxxxx xxxx.\" (each lowercase letter is replaced by \"x\")"
-msgstr ""
+msgstr "' \"Lxxxx xxxxx xxxxx xxx xxxx, xxxxxxxxxxxxxxxxxxxxx xxxx.\" (κάθε πεζό γράμμα αντικαθίσταται από \"x\")"
#. rkMsv
#: sf_string.xhp
@@ -22820,7 +22820,7 @@ msgctxt ""
"bas_id751612384623936\n"
"help.text"
msgid "' \"x x x x x, x x x.\" (each word is replaced by \"x\")"
-msgstr ""
+msgstr "' \"x x x x x, x x x.\" (κάθε λέξη αντικαθίσταται από \"x\")"
#. 2Gd5C
#: sf_string.xhp
@@ -22829,7 +22829,7 @@ msgctxt ""
"par_id51580146471894\n"
"help.text"
msgid "Replaces in a string some or all occurrences of an array of strings by an array of new strings."
-msgstr ""
+msgstr "Αντικαθιστά σε μια συμβολοσειρά μερικές ή όλες τις εμφανίσεις μιας σειράς συμβολοσειρών με μια σειρά νέων συμβολοσειρών."
#. SDpot
#: sf_string.xhp
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id831580146504326\n"
"help.text"
msgid "<emph>inputstr</emph>: The input string on which replacements will occur."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά εισόδου στην οποία θα πραγματοποιηθούν αντικαταστάσεις."
#. UfuEm
#: sf_string.xhp
@@ -22847,7 +22847,7 @@ msgctxt ""
"par_id411580146514927\n"
"help.text"
msgid "<emph>oldstr</emph>: A single string or an array of strings. Zero-length strings are ignored."
-msgstr ""
+msgstr "<emph>oldstr</emph>: Μια μεμονωμένη συμβολοσειρά ή ένας πίνακας από συμβολοσειρές. Οι συμβολοσειρές μηδενικού μήκους αγνοούνται."
#. Ukr3F
#: sf_string.xhp
@@ -22856,7 +22856,7 @@ msgctxt ""
"par_id591580146532966\n"
"help.text"
msgid "<emph>newstr</emph>: The replacing string or the array of replacing strings."
-msgstr ""
+msgstr "<emph>newstr</emph>: Η συμβολοσειρά αντικατάστασης ή ο πίνακας συμβολοσειρών αντικατάστασης."
#. 7BQ7F
#: sf_string.xhp
@@ -22865,7 +22865,7 @@ msgctxt ""
"par_id611612384873347\n"
"help.text"
msgid "If <literal>oldstr</literal> is an array, each occurrence of any of the items in <literal>oldstr</literal> is replaced by <literal>newstr</literal>."
-msgstr ""
+msgstr "Εάν το <literal>oldstr</literal> είναι ένας πίνακας, κάθε εμφάνιση οποιουδήποτε από τα στοιχεία στο <literal>oldstr</literal> αντικαθίσταται από <literal>newstr</literal>."
#. AfRz6
#: sf_string.xhp
@@ -22874,7 +22874,7 @@ msgctxt ""
"par_id611612384880820\n"
"help.text"
msgid "If <literal>oldstr</literal> and <literal>newstr</literal> are arrays, replacements occur one by one up to the <literal>UBound(newstr)</literal>."
-msgstr ""
+msgstr "Εάν οι <literal>oldstr</literal> και <literal>newstr</literal> είναι πίνακες, οι αντικαταστάσεις πραγματοποιούνται μία προς μία μέχρι το <literal>UBound(newstr)</literal>."
#. E39aH
#: sf_string.xhp
@@ -22883,7 +22883,7 @@ msgctxt ""
"par_id241612385058264\n"
"help.text"
msgid "If <literal>oldstr</literal> has more entries than <literal>newstr</literal>, then the residual elements in <literal>oldstr</literal> are replaced by the last element in <literal>newstr</literal>."
-msgstr ""
+msgstr "Εάν το <literal>oldstr</literal> έχει περισσότερες καταχωρήσεις από το <literal>newstr</literal>, τότε τα υπολειπόμενα στοιχεία στο <literal>oldstr</literal> αντικαθίστανται από το τελευταίο στοιχείο στο <literal>newstr</literal> ."
#. MkqW5
#: sf_string.xhp
@@ -22892,7 +22892,7 @@ msgctxt ""
"par_id701580146547619\n"
"help.text"
msgid "<emph>occurrences</emph>: The maximum number of replacements. The default value is 0, meaning that all occurrences will be replaced."
-msgstr ""
+msgstr "<emph>occurrences</emph> (εμφανίσεις): Ο μέγιστος αριθμός αντικαταστάσεων. Η προεπιλεγμένη τιμή είναι 0, που σημαίνει ότι όλες οι εμφανίσεις θα αντικατασταθούν."
#. QX33p
#: sf_string.xhp
@@ -22901,7 +22901,7 @@ msgctxt ""
"par_id741612385380533\n"
"help.text"
msgid "When <literal>oldstr</literal> is an array, the <literal>occurrence</literal> parameter is computed separately for each item in the array."
-msgstr ""
+msgstr "Όταν το <literal>oldstr</literal> είναι ένας πίνακας, η παράμετρος <literal>occurrence</literal> (εμφάνιση) υπολογίζεται ξεχωριστά για κάθε στοιχείο του πίνακα."
#. aWrvA
#: sf_string.xhp
@@ -22910,7 +22910,7 @@ msgctxt ""
"par_id301580146556599\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph> (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = <literal>False</literal>)."
#. eygyi
#: sf_string.xhp
@@ -22919,7 +22919,7 @@ msgctxt ""
"par_id901580147558931\n"
"help.text"
msgid "Returns a string with a readable representation of the argument, truncated at a given length. This is useful mainly for debugging or logging purposes."
-msgstr ""
+msgstr "Επιστρέφει μια συμβολοσειρά με μια αναγνώσιμη αναπαράσταση του ορίσματος, περικομμένη σε δεδομένο μήκος. Αυτό είναι χρήσιμο κυρίως για σκοπούς αποσφαλμάτωσης ή καταγραφής."
#. cU3Ev
#: sf_string.xhp
@@ -22928,7 +22928,7 @@ msgctxt ""
"par_id11612386054691\n"
"help.text"
msgid "If the <literal>anyvalue</literal> parameter is an object, it will be enclosed with square brackets \"[\" and \"]\"."
-msgstr ""
+msgstr "Εάν η παράμετρος <literal>anyvalue</literal> είναι αντικείμενο, θα περικλείεται με αγκύλες \"[\" και \"]\"."
#. gVB32
#: sf_string.xhp
@@ -22937,7 +22937,7 @@ msgctxt ""
"par_id491612386081802\n"
"help.text"
msgid "In strings, tabs and line breaks are replaced by \\t, \\n or \\r."
-msgstr ""
+msgstr "Στις συμβολοσειρές, οι στηλοθέτες και οι αλλαγές γραμμής αντικαθίστανται από \\t, \\n ή \\r."
#. SfUGD
#: sf_string.xhp
@@ -22946,7 +22946,7 @@ msgctxt ""
"par_id921612386089103\n"
"help.text"
msgid "If the final length exceeds the <literal>maxlength</literal> parameter, the latter part of the string is replaced by \" ... (N)\" where N is the total length of the original string before truncation."
-msgstr ""
+msgstr "Εάν το τελικό μήκος υπερβαίνει την παράμετρο <literal>maxlength</literal>, το τελευταίο μέρος της συμβολοσειράς αντικαθίσταται από το \"... (N)\" όπου N είναι το συνολικό μήκος της αρχικής συμβολοσειράς πριν από την περικοπή."
#. zLfNR
#: sf_string.xhp
@@ -22955,7 +22955,7 @@ msgctxt ""
"par_id91580147593626\n"
"help.text"
msgid "<emph>anyvalue</emph>: The input value to be represented. It can be any value, such as a string, an array, a Basic object, a UNO object, etc."
-msgstr ""
+msgstr "<emph>anyvalue</emph> (οποιαδήποτε τιμή): Η τιμή εισόδου που θα αναπαρασταθεί. Μπορεί να είναι οποιαδήποτε τιμή, όπως συμβολοσειρά, πίνακας, αντικείμενο Basic, αντικείμενο UNO κ.λπ."
#. hdDFi
#: sf_string.xhp
@@ -22964,7 +22964,7 @@ msgctxt ""
"par_id811580147609322\n"
"help.text"
msgid "<emph>maxlength</emph>: The maximum length of the resulting string. The default value is 0, meaning there is no limit to the length of the resulting representation."
-msgstr ""
+msgstr "<emph>maxlength</emph>: Το μέγιστο μήκος της συμβολοσειράς που προκύπτει. Η προεπιλεγμένη τιμή είναι 0, που σημαίνει ότι δεν υπάρχει όριο στο μήκος της αναπαράστασης που προκύπτει."
#. Ape7i
#: sf_string.xhp
@@ -22973,7 +22973,7 @@ msgctxt ""
"par_id641612386659292\n"
"help.text"
msgid "Note that the representation of data types such as Arrays and <literal>ScriptForge.Dictionary</literal> object instances include both the data type and their values:"
-msgstr ""
+msgstr "Σημειώστε ότι η αναπαράσταση τύπων δεδομένων όπως πίνακες και παρουσίες αντικειμένων <literal>ScriptForge.Dictionary</literal> περιλαμβάνει τόσο τον τύπο δεδομένων όσο και τις τιμές τους:"
#. ZFFAD
#: sf_string.xhp
@@ -22982,7 +22982,7 @@ msgctxt ""
"bas_id971612386906463\n"
"help.text"
msgid "' An example with a Basic built-in Array"
-msgstr ""
+msgstr "' Ένα παράδειγμα με έναν ενσωματωμένο πίνακα Basic"
#. GEZzM
#: sf_string.xhp
@@ -22991,7 +22991,7 @@ msgctxt ""
"bas_id401612386876329\n"
"help.text"
msgid "' An example with a ScriptForge Array"
-msgstr ""
+msgstr "' Ένα παράδειγμα με έναν πίνακα ScriptForge"
#. mZ3ar
#: sf_string.xhp
@@ -23000,7 +23000,7 @@ msgctxt ""
"bas_id551612386931680\n"
"help.text"
msgid "' An example with a ScriptForge Dictionary"
-msgstr ""
+msgstr "' Ένα παράδειγμα με ένα λεξικό ScriptForge"
#. vvADG
#: sf_string.xhp
@@ -23009,7 +23009,7 @@ msgctxt ""
"par_id411580312925741\n"
"help.text"
msgid "Returns the input string in reversed order."
-msgstr ""
+msgstr "Επιστρέφει τη συμβολοσειρά εισόδου με αντίστροφη σειρά."
#. EEyG6
#: sf_string.xhp
@@ -23018,7 +23018,7 @@ msgctxt ""
"par_id141612387177873\n"
"help.text"
msgid "This method is equivalent to the built-in <link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse function\"><literal>StrReverse</literal> Basic function</link>."
-msgstr ""
+msgstr "Αυτή η μέθοδος είναι ισοδύναμη με την ενσωματωμένη <link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse function\">συνάρτηση Basic <literal>StrReverse</literal></link>."
#. ZEarP
#: sf_string.xhp
@@ -23027,7 +23027,7 @@ msgctxt ""
"par_id961612387463144\n"
"help.text"
msgid "To use the <literal>StrReverse</literal> function, the statement <literal>Option VBASupport 1</literal> must be present in the module."
-msgstr ""
+msgstr "Για να χρησιμοποιήσετε τη συνάρτηση <literal>StrReverse</literal>, η δήλωση <literal>Option VBASupport 1</literal> πρέπει να υπάρχει στη λειτουργική μονάδα."
#. pSyL6
#: sf_string.xhp
@@ -23036,7 +23036,7 @@ msgctxt ""
"par_id241580312964497\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be reversed."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που πρέπει να αντιστραφεί."
#. KBFDk
#: sf_string.xhp
@@ -23045,7 +23045,7 @@ msgctxt ""
"par_id721580210762286\n"
"help.text"
msgid "Returns a zero-based array of strings with the lines in the input string. Each item in the array is obtained by splitting the input string at newline characters."
-msgstr ""
+msgstr "Επιστρέφει έναν πίνακα συμβολοσειρών με βάση το μηδέν με τις γραμμές στη συμβολοσειρά εισόδου. Κάθε στοιχείο στον πίνακα λαμβάνεται με διαχωρισμό της συμβολοσειράς εισόδου σε χαρακτήρες νέας γραμμής."
#. nuUF6
#: sf_string.xhp
@@ -23054,7 +23054,7 @@ msgctxt ""
"par_id481580210806878\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be split."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα χωριστεί."
#. FEFUw
#: sf_string.xhp
@@ -23063,7 +23063,7 @@ msgctxt ""
"par_id231580210820309\n"
"help.text"
msgid "<emph>keepbreaks</emph>: When <literal>True</literal>, line breaks are preserved in the output array (default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>keepbreaks</emph>: Όταν είναι <literal>True</literal>, οι αλλαγές γραμμής διατηρούνται στον πίνακα εξόδου (προεπιλογή = <literal>False</literal>)."
#. HAG8Q
#: sf_string.xhp
@@ -23072,7 +23072,7 @@ msgctxt ""
"par_id471580211762739\n"
"help.text"
msgid "Splits a string into an array of elements using a specified delimiter."
-msgstr ""
+msgstr "Διαχωρίζει μια συμβολοσειρά σε έναν πίνακα στοιχείων χρησιμοποιώντας έναν καθορισμένο οριοθέτη."
#. zsADB
#: sf_string.xhp
@@ -23081,7 +23081,7 @@ msgctxt ""
"par_id281612388034501\n"
"help.text"
msgid "If a quoted substring contains a delimiter, it is ignored. This is useful when parsing CSV-like records that contain quoted strings."
-msgstr ""
+msgstr "Εάν μια υποσυμβολοσειρά με εισαγωγικά περιέχει έναν οριοθέτη, αγνοείται. Αυτό είναι χρήσιμο κατά την ανάλυση εγγραφών τύπου CSV που περιέχουν συμβολοσειρές σε εισαγωγικά."
#. JKAaG
#: sf_string.xhp
@@ -23090,7 +23090,7 @@ msgctxt ""
"par_id881580211809490\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be split."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα χωριστεί."
#. zFjwe
#: sf_string.xhp
@@ -23099,7 +23099,7 @@ msgctxt ""
"par_id811580211821162\n"
"help.text"
msgid "<emph>delimiter</emph>: A string of one or more characters that will be used as delimiter. The default delimiter is the Ascii space \" \" character."
-msgstr ""
+msgstr "<emph>delimiter</emph> (οριοθέτης): Μια συμβολοσειρά ενός ή περισσότερων χαρακτήρων που θα χρησιμοποιηθεί ως οριοθέτης. Ο προεπιλεγμένος οριοθέτης είναι ο χαρακτήρας διαστήματος Ascii \" \"."
#. 3rGRu
#: sf_string.xhp
@@ -23108,7 +23108,7 @@ msgctxt ""
"par_id181580211833778\n"
"help.text"
msgid "<emph>occurrences</emph>: The maximum number of substrings to return. The default value is 0, meaning that there is no limit to the number of returned strings."
-msgstr ""
+msgstr "<emph>occurrences</emph> (εμφανίσεις): Ο μέγιστος αριθμός υποσυμβολοσειρών προς επιστροφή. Η προεπιλεγμένη τιμή είναι 0, που σημαίνει ότι δεν υπάρχει όριο στον αριθμό των επιστρεφόμενων συμβολοσειρών."
#. W2og7
#: sf_string.xhp
@@ -23117,7 +23117,7 @@ msgctxt ""
"par_id421599123777334\n"
"help.text"
msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote."
-msgstr ""
+msgstr "<emph>quotechar</emph>: Είτε το μονό (') είτε το διπλό (\") εισαγωγικό."
#. DiYMJ
#: sf_string.xhp
@@ -23126,7 +23126,7 @@ msgctxt ""
"par_id661627251379676\n"
"help.text"
msgid "Beware of the differences between Basic and Python when representing strings. For example, in Basic two \"\" characters inside a string are interpreted as a single \" character. In Python, strings enclosed with single quotes can contain \" characters without having to double them."
-msgstr ""
+msgstr "Προσοχή στις διαφορές μεταξύ Basic και Python κατά την αναπαράσταση συμβολοσειρών. Για παράδειγμα, στη Basic δύο χαρακτήρες \"\" μέσα σε μια συμβολοσειρά ερμηνεύονται ως ένας χαρακτήρας \". Στην Python, οι συμβολοσειρές που περικλείονται με μονά εισαγωγικά μπορούν να περιέχουν \" χαρακτήρες χωρίς να χρειάζεται να τους διπλασιάσουν."
#. 6Q2tJ
#: sf_string.xhp
@@ -23135,7 +23135,7 @@ msgctxt ""
"par_id771580212837884\n"
"help.text"
msgid "Returns <literal>True</literal> if the first characters of a string are identical to a given substring."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν οι πρώτοι χαρακτήρες μιας συμβολοσειράς είναι ταυτόσημοι με μια δεδομένη υποσυμβολοσειρά."
#. BYx4G
#: sf_string.xhp
@@ -23144,7 +23144,7 @@ msgctxt ""
"par_id781612393174350\n"
"help.text"
msgid "This method returns <literal>False</literal> if either the input string or the substring have a length = 0 or when the substring is longer than the input string."
-msgstr ""
+msgstr "Αυτή η μέθοδος επιστρέφει <literal>False</literal> εάν είτε η συμβολοσειρά εισόδου, είτε η υποσυμβολοσειρά έχουν μήκος = 0, ή όταν η υποσυμβολοσειρά είναι μεγαλύτερη από τη συμβολοσειρά εισόδου."
#. jrzxu
#: sf_string.xhp
@@ -23153,7 +23153,7 @@ msgctxt ""
"par_id271580212876135\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be tested."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα δοκιμαστεί."
#. tE9WD
#: sf_string.xhp
@@ -23162,7 +23162,7 @@ msgctxt ""
"par_id571580212889462\n"
"help.text"
msgid "<emph>substring</emph>: The substring to be searched at the start of <literal>inputstr</literal>."
-msgstr ""
+msgstr "<emph>substring</emph>: Η υποσυμβολοσειρά προς αναζήτηση στην αρχή του <literal>inputstr</literal>."
#. ZeQP4
#: sf_string.xhp
@@ -23171,7 +23171,7 @@ msgctxt ""
"par_id811580212900799\n"
"help.text"
msgid "<emph>casesensitive</emph>: The search can be case sensitive or not (Default = <literal>False</literal>)."
-msgstr ""
+msgstr "<emph>casesensitive</emph> (διάκριση πεζών-κεφαλαίων): Η αναζήτηση μπορεί να κάνει διάκριση πεζών-κεφαλαίων ή όχι (Προεπιλογή = <literal>False</literal>)."
#. DGgBx
#: sf_string.xhp
@@ -23180,7 +23180,7 @@ msgctxt ""
"par_id911580295999690\n"
"help.text"
msgid "Returns the input string without its leading and trailing whitespaces."
-msgstr ""
+msgstr "Επιστρέφει τη συμβολοσειρά εισόδου χωρίς τα αρχικά και τα τελικά κενά διαστήματά της."
#. BESEu
#: sf_string.xhp
@@ -23189,7 +23189,7 @@ msgctxt ""
"par_id541580296044377\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to trim."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά για περικοπή."
#. 9t9vX
#: sf_string.xhp
@@ -23198,7 +23198,7 @@ msgctxt ""
"par_id61580483096936\n"
"help.text"
msgid "Converts any escaped sequence (\\\\, \\n, \\r, \\t) in the input string to their corresponding Ascii character."
-msgstr ""
+msgstr "Μετατρέπει οποιαδήποτε ακολουθία διαφυγής (\\\\, \\n, \\r, \\t) στη συμβολοσειρά εισόδου στον αντίστοιχο χαρακτήρα Ascii."
#. mzTsG
#: sf_string.xhp
@@ -23207,7 +23207,7 @@ msgctxt ""
"par_id971580483124743\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to be converted."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά που θα μετατραπεί."
#. BoYHV
#: sf_string.xhp
@@ -23216,7 +23216,7 @@ msgctxt ""
"par_id831580213634029\n"
"help.text"
msgid "Removes the single or double quotes enclosing the input string."
-msgstr ""
+msgstr "Καταργεί τα μονά ή διπλά εισαγωγικά που περικλείουν τη συμβολοσειρά εισόδου."
#. Ae8c5
#: sf_string.xhp
@@ -23225,7 +23225,7 @@ msgctxt ""
"par_id811612393585600\n"
"help.text"
msgid "This is useful when parsing CSV-like records that contain quoted strings."
-msgstr ""
+msgstr "Αυτό είναι χρήσιμο κατά την ανάλυση εγγραφών τύπου CSV που περιέχουν συμβολοσειρές σε εισαγωγικά."
#. BhVvp
#: sf_string.xhp
@@ -23234,7 +23234,7 @@ msgctxt ""
"par_id761580213677493\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to unquote."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά στην οποία θα αφαιρεθούν τα εισαγωγικά."
#. gRUHA
#: sf_string.xhp
@@ -23243,7 +23243,7 @@ msgctxt ""
"par_id211599129509890\n"
"help.text"
msgid "<emph>quotechar</emph>: Either the single (') or double (\") quote (default)."
-msgstr ""
+msgstr "<emph>quotechar</emph> (χαρακτήρας εισαγωγικού): Είτε το μονό (') είτε το διπλό (\") εισαγωγικό (προεπιλογή)."
#. nGq4Q
#: sf_string.xhp
@@ -23252,7 +23252,7 @@ msgctxt ""
"bas_id371580213702598\n"
"help.text"
msgid "' s = \"Some text\" (without enclosing quotes)"
-msgstr ""
+msgstr "' s = \"Κάποιο κείμενο\" (χωρίς εισαγωγικά)"
#. Fp8ip
#: sf_string.xhp
@@ -23261,7 +23261,7 @@ msgctxt ""
"bas_id51580213693694\n"
"help.text"
msgid "' The string below does not have enclosing quotes, so it remains unchanged"
-msgstr ""
+msgstr "' Η παρακάτω συμβολοσειρά δεν περιέχει εισαγωγικά, επομένως παραμένει αμετάβλητη"
#. A4Eki
#: sf_string.xhp
@@ -23270,7 +23270,7 @@ msgctxt ""
"bas_id961612393917830\n"
"help.text"
msgid "' s = \"Some text\" (unchanged)"
-msgstr ""
+msgstr "' s = \"Κάποιο κείμενο\" (αμετάβλητο)"
#. ULtxx
#: sf_string.xhp
@@ -23279,7 +23279,7 @@ msgctxt ""
"bas_id461612394182689\n"
"help.text"
msgid "' Quotes inside the string are not removed"
-msgstr ""
+msgstr "' Τα εισαγωγικά μέσα στη συμβολοσειρά δεν αφαιρούνται"
#. 8w4ia
#: sf_string.xhp
@@ -23288,7 +23288,7 @@ msgctxt ""
"bas_id961612394171208\n"
"help.text"
msgid "' s = \"The \"\"true\"\" meaning\" (unchanged)"
-msgstr ""
+msgstr "' s = \"Η έννοια \"\"αληθινή\"\" (αμετάβλητη)"
#. JGhWK
#: sf_string.xhp
@@ -23297,7 +23297,7 @@ msgctxt ""
"par_id871585834468102\n"
"help.text"
msgid "Converts the input string into an array of substrings so that each item in the array has at most a given number of characters."
-msgstr ""
+msgstr "Μετατρέπει τη συμβολοσειρά εισόδου σε έναν πίνακα υποσυμβολοσειρών, έτσι ώστε κάθε στοιχείο του πίνακα να έχει το πολύ έναν δεδομένο αριθμό χαρακτήρων."
#. 4G9FU
#: sf_string.xhp
@@ -23306,7 +23306,7 @@ msgctxt ""
"par_id21612394465120\n"
"help.text"
msgid "In practice, this method returns a zero-based array of output lines, without newlines at the end, except for the pre-existing line-breaks."
-msgstr ""
+msgstr "Στην πράξη, αυτή η μέθοδος επιστρέφει έναν πίνακα με βάση το μηδέν γραμμών εξόδου, χωρίς νέες γραμμές στο τέλος, εκτός από τις προϋπάρχουσες αλλαγές γραμμής."
#. qgd6X
#: sf_string.xhp
@@ -23315,7 +23315,7 @@ msgctxt ""
"par_id601612395193333\n"
"help.text"
msgid "Tabs are expanded using the same procedure performed by the <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\" name=\"ExpandTabs method\">ExpandTabs</link> method."
-msgstr ""
+msgstr "Οι στηλοθέτες επεκτείνονται χρησιμοποιώντας την ίδια διαδικασία που εκτελείται με τη μέθοδο <link href=\"text/sbasic/shared/03/sf_string.xhp#ExpandTabs\" name=\"ExpandTabs method\">ExpandTabs</link>."
#. kTwEG
#: sf_string.xhp
@@ -23324,7 +23324,7 @@ msgctxt ""
"par_id641612394826616\n"
"help.text"
msgid "Symbolic line breaks are replaced by their equivalent Ascii characters."
-msgstr ""
+msgstr "Οι συμβολικές αλλαγές γραμμής αντικαθίστανται από τους ισοδύναμους χαρακτήρες Ascii."
#. y7VvP
#: sf_string.xhp
@@ -23333,7 +23333,7 @@ msgctxt ""
"par_id361612394859733\n"
"help.text"
msgid "If the wrapped output has no content, the returned array is empty."
-msgstr ""
+msgstr "Εάν η αναδιπλωμένη έξοδος δεν έχει περιεχόμενο, ο πίνακας που επιστρέφεται είναι κενός."
#. SNRzH
#: sf_string.xhp
@@ -23342,7 +23342,7 @@ msgctxt ""
"par_id251585834468498\n"
"help.text"
msgid "<emph>inputstr</emph>: The string to wrap."
-msgstr ""
+msgstr "<emph>inputstr</emph>: Η συμβολοσειρά προς αναδίπλωση."
#. MiptC
#: sf_string.xhp
@@ -23351,7 +23351,7 @@ msgctxt ""
"par_id351585834773177\n"
"help.text"
msgid "<emph>width</emph>: The maximum number of characters in each line (Default = 70)."
-msgstr ""
+msgstr "<emph>width</emph> (πλάτος): Ο μέγιστος αριθμός χαρακτήρων σε κάθε γραμμή (Προεπιλογή = 70)."
#. epG6z
#: sf_string.xhp
@@ -23360,7 +23360,7 @@ msgctxt ""
"par_id741585834874500\n"
"help.text"
msgid "<emph>tabsize</emph>: Before wrapping the text, the existing TAB <literal>Chr(9)</literal> characters are replaced with spaces. The argument <literal>tabsize</literal> defines the TAB stops at TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Default = 8)."
-msgstr ""
+msgstr "<emph>tabsize</emph>: Πριν από την αναδίπλωση του κειμένου, οι υπάρχοντες χαρακτήρες TAB <literal>Chr(9)</literal> αντικαθίστανται με κενά διαστήματα. Το όρισμα <literal>tabsize</literal> ορίζει τις στάσεις TAB στο TabSize + 1, 2 * TabSize + 1 , ... N * TabSize + 1 (Προεπιλογή = 8)."
#. HjZDB
#: sf_textstream.xhp
@@ -23369,7 +23369,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.TextStream service"
-msgstr ""
+msgstr "Υπηρεσία ScriptForge.TextStream"
#. cEA5U
#: sf_textstream.xhp
@@ -23378,7 +23378,7 @@ msgctxt ""
"bm_id351585330787295\n"
"help.text"
msgid "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\"><literal>ScriptForge</literal>.<literal>TextStream</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"TextStreamService\"><link href=\"text/sbasic/shared/03/sf_textstream.xhp\" name=\"TextStream service\">Υπηρεσία <literal>ScriptForge</literal>.<literal>TextStream</literal></link></variable>"
#. nBJsE
#: sf_textstream.xhp
@@ -23387,7 +23387,7 @@ msgctxt ""
"par_id511585330787205\n"
"help.text"
msgid "The <literal>TextStream</literal> service is used to sequentially read from and write to files opened or created using the <literal>ScriptForge.FileSystem</literal> service."
-msgstr ""
+msgstr "Η υπηρεσία <literal>TextStream</literal> χρησιμοποιείται για τη διαδοχική ανάγνωση και εγγραφή σε αρχεία που ανοίγονται ή δημιουργούνται χρησιμοποιώντας την υπηρεσία <literal>ScriptForge.FileSystem</literal>."
#. TeRTa
#: sf_textstream.xhp
@@ -23396,7 +23396,7 @@ msgctxt ""
"par_id41613596903894\n"
"help.text"
msgid "The methods <literal>OpenTextFile</literal> and <literal>CreateTextFile</literal> from the <literal>FileSystem</literal> service return an instance of the <literal>TextStream</literal> service."
-msgstr ""
+msgstr "Οι μέθοδοι <literal>OpenTextFile</literal> και <literal>CreateTextFile</literal> από την υπηρεσία <literal>FileSystem</literal> επιστρέφουν μια παρουσία της υπηρεσίας <literal>TextStream</literal>."
#. MVFWC
#: sf_textstream.xhp
@@ -23405,7 +23405,7 @@ msgctxt ""
"par_id161585330787262\n"
"help.text"
msgid "Line delimiters may be specified by the user. In input operations CR, LF or CR+LF are supported. In output operations, the default line delimiter is the one used by the operating system."
-msgstr ""
+msgstr "Οι οριοθέτες γραμμής μπορούν να καθοριστούν από τον χρήστη. Στις λειτουργίες εισόδου υποστηρίζονται τα CR, LF ή CR+LF. Στις λειτουργίες εξόδου, το προεπιλεγμένο διαχωριστικό γραμμής είναι αυτό που χρησιμοποιείται από το λειτουργικό σύστημα."
#. GDkir
#: sf_textstream.xhp
@@ -23414,7 +23414,7 @@ msgctxt ""
"par_id831613598137669\n"
"help.text"
msgid "The line delimiter for the operating system where the macro is being executed can be accessed using the <literal>SF_String.sfNEWLINE</literal> property."
-msgstr ""
+msgstr "Ο οριοθέτης γραμμής για το λειτουργικό σύστημα όπου εκτελείται η μακροεντολή μπορεί να προσπελαστεί χρησιμοποιώντας την ιδιότητα <literal>SF_String.sfNEWLINE</literal>."
#. SvXzF
#: sf_textstream.xhp
@@ -23423,7 +23423,7 @@ msgctxt ""
"par_id851613597445432\n"
"help.text"
msgid "All operations needed to read from or write to a file (open, read/write and close) are presumed to happen during the same macro run."
-msgstr ""
+msgstr "Όλες οι λειτουργίες που απαιτούνται για την ανάγνωση ή την εγγραφή σε ένα αρχείο (άνοιγμα, ανάγνωση/εγγραφή και κλείσιμο) θεωρείται ότι πραγματοποιούνται κατά την ίδια εκτέλεση μακροεντολής."
#. dc5KN
#: sf_textstream.xhp
@@ -23432,7 +23432,7 @@ msgctxt ""
"hd_id83158533078741\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Κλήση υπηρεσίας"
#. AuQX2
#: sf_textstream.xhp
@@ -23441,7 +23441,7 @@ msgctxt ""
"par_id351613598192725\n"
"help.text"
msgid "The examples below in Basic and Python use the <literal>OpenTextFile</literal> method to create an instance of the <literal>TextStream</literal> Service."
-msgstr ""
+msgstr "Τα παρακάτω παραδείγματα σε Basic και Python χρησιμοποιούν τη μέθοδο <literal>OpenTextFile</literal> για να δημιουργήσουν μια παρουσία της υπηρεσίας <literal>TextStream</literal>."
#. UUudg
#: sf_textstream.xhp
@@ -23450,7 +23450,7 @@ msgctxt ""
"par_id371585330787197\n"
"help.text"
msgid "The file must be closed with the <literal>CloseFile</literal> method after all read or write operations have been executed:"
-msgstr ""
+msgstr "Το αρχείο πρέπει να κλείσει με τη μέθοδο <literal>CloseFile</literal> αφού έχουν εκτελεστεί όλες οι λειτουργίες ανάγνωσης ή εγγραφής:"
#. zNveN
#: sf_textstream.xhp
@@ -23459,7 +23459,7 @@ msgctxt ""
"par_id891582733781994\n"
"help.text"
msgid "Optionally, the resources used by the <literal>TextStream</literal> instance can be released using the <literal>Dispose</literal> method:"
-msgstr ""
+msgstr "Προαιρετικά, οι πόροι που χρησιμοποιούνται από την παρουσία <literal>TextStream</literal> μπορούν να απελευθερωθούν χρησιμοποιώντας τη μέθοδο <literal>Dispose</literal>:"
#. nsGCZ
#: sf_textstream.xhp
@@ -23468,7 +23468,7 @@ msgctxt ""
"par_id121612917368946\n"
"help.text"
msgid "The methods in the <literal>TextStream</literal> service are mostly based on the <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> and <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputStream</literal></link> UNO interfaces."
-msgstr ""
+msgstr "Οι μέθοδοι στην υπηρεσία <literal>TextStream</literal> βασίζονται κυρίως στις διεπαφές UNO <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextInputStream.html\" name=\"XTextInputStream API\"><literal>XTextInputStream</literal></link> και <link href=\"https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1io_1_1XTextOutputStream.html\" name=\"XTextOutputStream API\"><literal>XTextOutputOextlie </literal></link> ."
#. JAmgD
#: sf_textstream.xhp
@@ -23477,7 +23477,7 @@ msgctxt ""
"hd_id941585330787948\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Ιδιότητες"
#. aN9zM
#: sf_textstream.xhp
@@ -23486,7 +23486,7 @@ msgctxt ""
"par_id631585330787267\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. vwGC5
#: sf_textstream.xhp
@@ -23495,7 +23495,7 @@ msgctxt ""
"par_id401585330787370\n"
"help.text"
msgid "Readonly"
-msgstr ""
+msgstr "Μόνο για ανάγνωση"
#. GpL38
#: sf_textstream.xhp
@@ -23504,7 +23504,7 @@ msgctxt ""
"par_id581585330787700\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Τύπος"
#. 6FDuM
#: sf_textstream.xhp
@@ -23513,7 +23513,7 @@ msgctxt ""
"par_id551585330787608\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. ECkTm
#: sf_textstream.xhp
@@ -23522,7 +23522,7 @@ msgctxt ""
"par_id181585330787752\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. YFkaY
#: sf_textstream.xhp
@@ -23531,7 +23531,7 @@ msgctxt ""
"par_id901585330787680\n"
"help.text"
msgid "Used in read mode. A <literal>True</literal> value indicates that the end of the file has been reached. A test using this property should precede calls to the <literal>ReadLine</literal> method."
-msgstr ""
+msgstr "Χρησιμοποιείται σε λειτουργία ανάγνωσης. Η τιμή <literal>True</literal> υποδηλώνει ότι έχει φτάσει το τέλος του αρχείου. Μια δοκιμή που χρησιμοποιεί αυτήν την ιδιότητα θα πρέπει να προηγείται των κλήσεων στη μέθοδο <literal>ReadLine</literal>."
#. EFEnA
#: sf_textstream.xhp
@@ -23540,7 +23540,7 @@ msgctxt ""
"par_id561585330787568\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. cVCoJ
#: sf_textstream.xhp
@@ -23549,7 +23549,7 @@ msgctxt ""
"par_id741585330787777\n"
"help.text"
msgid "The character set to be used. The default encoding is \"UTF-8\"."
-msgstr ""
+msgstr "Το σύνολο χαρακτήρων που θα χρησιμοποιηθεί. Η προεπιλεγμένη κωδικοποίηση είναι \"UTF-8\"."
#. p5s3X
#: sf_textstream.xhp
@@ -23558,7 +23558,7 @@ msgctxt ""
"par_id641585330787207\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. JjEqX
#: sf_textstream.xhp
@@ -23567,7 +23567,7 @@ msgctxt ""
"par_id281585330787614\n"
"help.text"
msgid "Returns the name of the current file either in URL format or in the native operating system's format, depending on the current value of the <literal>FileNaming</literal> property of the <literal>FileSystem</literal> service."
-msgstr ""
+msgstr "Επιστρέφει το όνομα του τρέχοντος αρχείου, είτε σε μορφή URL, είτε στη μορφή του εγγενούς λειτουργικού συστήματος, ανάλογα με την τρέχουσα τιμή της ιδιότητας <literal>FileNaming</literal> της υπηρεσίας <literal>FileSystem</literal>."
#. goEnw
#: sf_textstream.xhp
@@ -23576,7 +23576,7 @@ msgctxt ""
"par_id111585330787410\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. MZS6Z
#: sf_textstream.xhp
@@ -23585,7 +23585,7 @@ msgctxt ""
"par_id861585330787417\n"
"help.text"
msgid "Indicates the input/output mode. Possible values are \"READ\", \"WRITE\" or \"APPEND\"."
-msgstr ""
+msgstr "Υποδεικνύει τη λειτουργία εισόδου/εξόδου. Πιθανές τιμές είναι \"READ\", \"WRITE\" ή \"APPEND\"."
#. 7nTb9
#: sf_textstream.xhp
@@ -23594,7 +23594,7 @@ msgctxt ""
"par_id87158533078795\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. j45gC
#: sf_textstream.xhp
@@ -23603,7 +23603,7 @@ msgctxt ""
"par_id561585330787741\n"
"help.text"
msgid "Returns the number of lines read or written so far."
-msgstr ""
+msgstr "Επιστρέφει τον αριθμό των γραμμών που διαβάστηκαν ή γράφτηκαν μέχρι στιγμής."
#. CLAvQ
#: sf_textstream.xhp
@@ -23612,7 +23612,7 @@ msgctxt ""
"par_id531585330787157\n"
"help.text"
msgid "No"
-msgstr ""
+msgstr "Όχι"
#. rdA5M
#: sf_textstream.xhp
@@ -23621,7 +23621,7 @@ msgctxt ""
"par_id691585330787279\n"
"help.text"
msgid "Sets or returns the current delimiter to be inserted between two successive written lines. The default value is the native line delimiter in the current operating system."
-msgstr ""
+msgstr "Ορίζει ή επιστρέφει τον τρέχοντα οριοθέτη που θα εισαχθεί μεταξύ δύο διαδοχικών γραπτών γραμμών. Η προεπιλεγμένη τιμή είναι ο εγγενής διαχωριστής γραμμής στο τρέχον λειτουργικό σύστημα."
#. dCeHZ
#: sf_textstream.xhp
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id141613001281573\n"
"help.text"
msgid "To learn more about the names of character sets, visit <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">IANA's Character Set</link> page. Beware that %PRODUCTNAME does not implement all existing character sets."
-msgstr ""
+msgstr "Για να μάθετε περισσότερα σχετικά με τα ονόματα των συνόλων χαρακτήρων, επισκεφτείτε τη σελίδα <link href=\"https://www.iana.org/assignments/character-sets/character-sets.xhtml\" name=\"Character Sets\">Σύνολο χαρακτήρων IANA</link>. Προσέξτε ότι το %PRODUCTNAME δεν υλοποιεί όλα τα υφιστάμενα σύνολα χαρακτήρων."
#. hKJkD
#: sf_textstream.xhp
@@ -23639,7 +23639,7 @@ msgctxt ""
"par_id891611613601554\n"
"help.text"
msgid "List of Methods in the TextStream Service"
-msgstr ""
+msgstr "Κατάλογος μεθόδων στην υπηρεσία TextStream"
#. DBBKM
#: sf_textstream.xhp
@@ -23648,7 +23648,7 @@ msgctxt ""
"par_id421585330787675\n"
"help.text"
msgid "Closes the current input or output stream and empties the output buffer if relevant. Returns <literal>True</literal> if the file was successfully closed."
-msgstr ""
+msgstr "Κλείνει την τρέχουσα ροή εισόδου ή εξόδου και αδειάζει την προσωρινή μνήμη εξόδου, εάν χρειάζεται. Επιστρέφει <literal>True</literal> εάν το αρχείο έκλεισε με επιτυχία."
#. MCW3q
#: sf_textstream.xhp
@@ -23657,7 +23657,7 @@ msgctxt ""
"par_id65158533078799\n"
"help.text"
msgid "Returns all the remaining lines in the text stream as a single string. Line breaks are not removed."
-msgstr ""
+msgstr "Επιστρέφει όλες τις υπόλοιπες γραμμές στη ροή κειμένου ως μία συμβολοσειρά. Οι αλλαγές γραμμής δεν αφαιρούνται."
#. Vr34D
#: sf_textstream.xhp
@@ -23666,7 +23666,7 @@ msgctxt ""
"par_id71613600347125\n"
"help.text"
msgid "The resulting string can be split in lines either by using the <literal>Split</literal> built-in Basic function if the line delimiter is known, or with the <literal>SF_String.SplitLines</literal> method."
-msgstr ""
+msgstr "Η συμβολοσειρά που προκύπτει μπορεί να χωριστεί σε γραμμές είτε χρησιμοποιώντας την ενσωματωμένη συνάρτηση Basic <literal>Split</literal>, εάν ο οριοθέτης γραμμής είναι γνωστός, είτε με τη μέθοδο <literal>SF_String.SplitLines</literal>."
#. VRLGn
#: sf_textstream.xhp
@@ -23675,7 +23675,7 @@ msgctxt ""
"par_id91585330787373\n"
"help.text"
msgid "For large files, using the <literal>ReadAll</literal> method wastes memory resources. In such cases it is recommended to read the file line by line using the <literal>ReadLine</literal> method."
-msgstr ""
+msgstr "Για μεγάλα αρχεία, η χρήση της μεθόδου <literal>ReadAll</literal> σπαταλά πόρους μνήμης. Σε τέτοιες περιπτώσεις, συνιστάται η ανάγνωση του αρχείου γραμμή προς γραμμή χρησιμοποιώντας τη μέθοδο <literal>ReadLine</literal>."
#. BuBVA
#: sf_textstream.xhp
@@ -23684,7 +23684,7 @@ msgctxt ""
"par_id921613595637851\n"
"help.text"
msgid "Consider the text file \"Students.txt\" with the following contents (a name in each line):"
-msgstr ""
+msgstr "Εξετάστε το αρχείο κειμένου \"Students.txt\" με τα ακόλουθα περιεχόμενα (ένα όνομα σε κάθε γραμμή):"
#. hk7q4
#: sf_textstream.xhp
@@ -23693,7 +23693,7 @@ msgctxt ""
"par_id391613596019750\n"
"help.text"
msgid "The examples below in Basic and Python use the <literal>ReadAll</literal> and <literal>SplitLines</literal> methods to read the contents of the file into an array of strings:"
-msgstr ""
+msgstr "Τα παρακάτω παραδείγματα σε Basic και Python χρησιμοποιούν τις μεθόδους <literal>ReadAll</literal> και <literal>SplitLines</literal> για να διαβάσουν τα περιεχόμενα του αρχείου σε μια σειρά από συμβολοσειρές:"
#. BuRJE
#: sf_textstream.xhp
@@ -23702,7 +23702,7 @@ msgctxt ""
"bas_id251613595640550\n"
"help.text"
msgid "'Loads the FileSystem service"
-msgstr ""
+msgstr "'Φορτώνει την υπηρεσία FileSystem"
#. L2a3D
#: sf_textstream.xhp
@@ -23711,7 +23711,7 @@ msgctxt ""
"bas_id181613595641087\n"
"help.text"
msgid "'Opens the text file with the names to be read"
-msgstr ""
+msgstr "'Ανοίγει το αρχείο κειμένου με τα ονόματα προς ανάγνωση"
#. 7Fq9E
#: sf_textstream.xhp
@@ -23720,7 +23720,7 @@ msgctxt ""
"par_id871585330787885\n"
"help.text"
msgid "Returns the next line in the text stream as a string. Line breaks are removed from the returned string."
-msgstr ""
+msgstr "Επιστρέφει την επόμενη γραμμή στη ροή κειμένου ως συμβολοσειρά. Οι αλλαγές γραμμής αφαιρούνται από την επιστρεφόμενη συμβολοσειρά."
#. 6iDcF
#: sf_textstream.xhp
@@ -23729,7 +23729,7 @@ msgctxt ""
"par_id431613600221626\n"
"help.text"
msgid "The <literal>AtEndOfStream</literal> test should precede the <literal>ReadLine</literal> method like in the example below."
-msgstr ""
+msgstr "Η δοκιμή <literal>AtEndOfStream</literal> θα πρέπει να προηγείται της μεθόδου <literal>ReadLine</literal> όπως στο παρακάτω παράδειγμα."
#. GRRkq
#: sf_textstream.xhp
@@ -23738,7 +23738,7 @@ msgctxt ""
"par_id171585330787774\n"
"help.text"
msgid "An error will be raised if the <literal>AtEndOfStream</literal> was reached during the previous <literal>ReadLine</literal> or <literal>SkipLine</literal> method call."
-msgstr ""
+msgstr "Θα προκύψει σφάλμα εάν επιτεύχθηκε το <literal>AtEndOfStream</literal> κατά την προηγούμενη κλήση της μεθόδου <literal>ReadLine</literal> ή <literal>SkipLine</literal>."
#. mAty4
#: sf_textstream.xhp
@@ -23747,7 +23747,7 @@ msgctxt ""
"par_id11585330787847\n"
"help.text"
msgid "Skips the next line in the input stream when reading a <literal>TextStream</literal> file."
-msgstr ""
+msgstr "Παραλείπει την επόμενη γραμμή στη ροή εισόδου κατά την ανάγνωση ενός αρχείου <literal>TextStream</literal>."
#. FDMJB
#: sf_textstream.xhp
@@ -23756,7 +23756,7 @@ msgctxt ""
"par_id441613600704766\n"
"help.text"
msgid "This method can result in <literal>AtEndOfStream</literal> being set to <literal>True</literal>."
-msgstr ""
+msgstr "Αυτή η μέθοδος μπορεί να έχει ως αποτέλεσμα το <literal>AtEndOfStream</literal> να οριστεί σε <literal>True</literal>."
#. D4JVb
#: sf_textstream.xhp
@@ -23765,7 +23765,7 @@ msgctxt ""
"par_id141585330787657\n"
"help.text"
msgid "Writes a specified number of empty lines to the output stream."
-msgstr ""
+msgstr "Γράφει έναν καθορισμένο αριθμό κενών γραμμών στη ροή εξόδου."
#. YsBUm
#: sf_textstream.xhp
@@ -23774,7 +23774,7 @@ msgctxt ""
"par_id291585330787357\n"
"help.text"
msgid "<emph>lines</emph>: The number of empty lines to write to the file."
-msgstr ""
+msgstr "<emph>lines</emph> (γραμμές): Ο αριθμός των κενών γραμμών για εγγραφή στο αρχείο."
#. GCPCC
#: sf_textstream.xhp
@@ -23783,7 +23783,7 @@ msgctxt ""
"par_id101585330787215\n"
"help.text"
msgid "Writes the given string to the output stream as a single line."
-msgstr ""
+msgstr "Γράφει τη δεδομένη συμβολοσειρά στη ροή εξόδου ως μία μοναδική γραμμή."
#. Eska7
#: sf_textstream.xhp
@@ -23792,7 +23792,7 @@ msgctxt ""
"par_id421613601002074\n"
"help.text"
msgid "The character defined in the <literal>NewLine</literal> property is used as the line delimiter."
-msgstr ""
+msgstr "Ο χαρακτήρας που ορίζεται στην ιδιότητα <literal>NewLine</literal> χρησιμοποιείται ως οριοθέτης γραμμής."
#. LXFPE
#: sf_textstream.xhp
@@ -23801,7 +23801,7 @@ msgctxt ""
"par_id491585330787650\n"
"help.text"
msgid "<emph>line</emph>: The line to write, may be empty."
-msgstr ""
+msgstr "<emph>line</emph> (γραμμή): Η γραμμή που θέλετε να γράψετε μπορεί να είναι κενή."
#. PM5Bx
#: sf_textstream.xhp
@@ -23810,7 +23810,7 @@ msgctxt ""
"par_id821626894480105\n"
"help.text"
msgid "The examples below in Basic and Python create a text file in CSV format in which each line contains a value and its square until <literal>lastValue</literal> is reached."
-msgstr ""
+msgstr "Τα παρακάτω παραδείγματα σε Basic και Python δημιουργούν ένα αρχείο κειμένου σε μορφή CSV, στο οποίο κάθε γραμμή περιέχει μια τιμή και το τετράγωνό της μέχρι να επιτευχθεί η <literal>lastValue</literal>."
#. 39u4o
#: sf_textstream.xhp
@@ -23819,7 +23819,7 @@ msgctxt ""
"bas_id21613321528612\n"
"help.text"
msgid "'Instantiates the FileSystem Service"
-msgstr ""
+msgstr "'Δημιουργεί την υπηρεσία FileSystem"
#. FnTiG
#: sf_textstream.xhp
@@ -23828,7 +23828,7 @@ msgctxt ""
"bas_id191613321529277\n"
"help.text"
msgid "'Creates a text file"
-msgstr ""
+msgstr "'Δημιουργεί ένα αρχείο κειμένου"
#. f5RSB
#: sf_textstream.xhp
@@ -23837,7 +23837,7 @@ msgctxt ""
"bas_id641613321530181\n"
"help.text"
msgid "'Writes the Value and Value squared, separated by \";\""
-msgstr ""
+msgstr "'Γράφει την τιμή και την τιμή στο τετράγωνο, διαχωρισμένες με \";\""
#. FCowk
#: sf_textstream.xhp
@@ -23846,7 +23846,7 @@ msgctxt ""
"bas_id141613321530960\n"
"help.text"
msgid "myFile.WriteLine(\"Value;Value Squared\")"
-msgstr ""
+msgstr "myFile.WriteLine(\"Value;Value Squared\")"
#. m9Mo4
#: sf_textstream.xhp
@@ -23855,7 +23855,7 @@ msgctxt ""
"bas_id881613321532598\n"
"help.text"
msgid "'Closes the file and free resources"
-msgstr ""
+msgstr "'Κλείνει το αρχείο και ελευθερώνει πόρους"
#. PCSPY
#: sf_timer.xhp
@@ -23864,7 +23864,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.Timer service"
-msgstr ""
+msgstr "Υπηρεσία ScriptForge.Timer"
#. cxRDS
#: sf_timer.xhp
@@ -23873,7 +23873,7 @@ msgctxt ""
"hd_id731582733781114\n"
"help.text"
msgid "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\"><literal>ScriptForge</literal>.<literal>Timer</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"TimerService\"><link href=\"text/sbasic/shared/03/sf_timer.xhp\" name=\"ScriptForge.Timer service\">Υπηρεσία <literal>ScriptForge</literal>.<literal>Timer</literal></link></variable>"
#. WyVvH
#: sf_timer.xhp
@@ -23882,7 +23882,7 @@ msgctxt ""
"par_id961582733781662\n"
"help.text"
msgid "The <literal>Timer</literal> service measures the amount of time it takes to run user scripts."
-msgstr ""
+msgstr "Η υπηρεσία <literal>Timer</literal> μετρά τον χρόνο που απαιτείται για την εκτέλεση των σεναρίων χρήστη."
#. qDa8E
#: sf_timer.xhp
@@ -23891,7 +23891,7 @@ msgctxt ""
"par_id181582733781323\n"
"help.text"
msgid "A <literal>Timer</literal> measures <emph>durations</emph>. It can be:"
-msgstr ""
+msgstr "Ένα <literal>Timer</literal> (Χρονόμετρο) μετρά τις <emph>durations</emph> (διάρκειες). Μπορεί να είναι:"
#. ErpLm
#: sf_timer.xhp
@@ -23900,7 +23900,7 @@ msgctxt ""
"par_id711582733781252\n"
"help.text"
msgid "Started, to indicate when to start measuring time."
-msgstr ""
+msgstr "Started (εκκίνηση), για να υποδείξετε πότε θα ξεκινήσει η μέτρηση του χρόνου."
#. NAAFg
#: sf_timer.xhp
@@ -23909,7 +23909,7 @@ msgctxt ""
"par_id631582733781431\n"
"help.text"
msgid "Suspended, to pause measuring running time."
-msgstr ""
+msgstr "Suspended (Σε αναστολή), για παύση της μέτρησης του χρόνου λειτουργίας."
#. nt9Qc
#: sf_timer.xhp
@@ -23918,7 +23918,7 @@ msgctxt ""
"par_id691582733781498\n"
"help.text"
msgid "Resumed, to continue tracking running time after the Timer has been suspended."
-msgstr ""
+msgstr "Resumed (Συνέχεια), για να συνεχιστεί η παρακολούθηση του χρόνου εκτέλεσης μετά την αναστολή του χρονοδιακόπτη."
#. DVCBM
#: sf_timer.xhp
@@ -23927,7 +23927,7 @@ msgctxt ""
"par_id31582733781344\n"
"help.text"
msgid "Restarted, which will cancel previous measurements and start the <literal>Timer</literal> at zero."
-msgstr ""
+msgstr "Restarted (Επανεκκίνηση), η οποία θα ακυρώσει τις προηγούμενες μετρήσεις και θα ξεκινήσει το <literal>Timer</literal> στο μηδέν."
#. dm7yA
#: sf_timer.xhp
@@ -23936,7 +23936,7 @@ msgctxt ""
"par_id991582733781280\n"
"help.text"
msgid "Durations are expressed in seconds with a precision of 3 decimal digits (milliseconds). A duration value of 12.345 means 12 seconds and 345 milliseconds"
-msgstr ""
+msgstr "Οι διάρκειες εκφράζονται σε δευτερόλεπτα με ακρίβεια 3 δεκαδικών ψηφίων (χιλιοστά του δευτερολέπτου). Μια τιμή διάρκειας 12.345 σημαίνει 12 δευτερόλεπτα και 345 χιλιοστά του δευτερολέπτου"
#. CVhDR
#: sf_timer.xhp
@@ -23945,7 +23945,7 @@ msgctxt ""
"hd_id201582733781265\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Κλήση υπηρεσίας"
#. SCYEX
#: sf_timer.xhp
@@ -23954,7 +23954,7 @@ msgctxt ""
"par_id891610734806133\n"
"help.text"
msgid "The example below creates a <literal>Timer</literal> object named <literal>myTimer</literal> and starts it immediately."
-msgstr ""
+msgstr "Το παρακάτω παράδειγμα δημιουργεί ένα αντικείμενο <literal>Timer</literal> με το όνομα <literal>myTimer</literal> και το ξεκινά αμέσως."
#. CnZqc
#: sf_timer.xhp
@@ -23963,7 +23963,7 @@ msgctxt ""
"par_id891582733781994\n"
"help.text"
msgid "It is recommended to free resources after use:"
-msgstr ""
+msgstr "Συνιστάται η απελευθέρωση πόρων μετά τη χρήση:"
#. 8h3fp
#: sf_timer.xhp
@@ -23972,7 +23972,7 @@ msgctxt ""
"hd_id521582733781450\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Ιδιότητες"
#. dVncX
#: sf_timer.xhp
@@ -23981,7 +23981,7 @@ msgctxt ""
"par_id71582733781260\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. hFnkK
#: sf_timer.xhp
@@ -23990,7 +23990,7 @@ msgctxt ""
"par_id711582733781103\n"
"help.text"
msgid "Readonly"
-msgstr ""
+msgstr "Μόνο για ανάγνωση"
#. NvqK9
#: sf_timer.xhp
@@ -23999,7 +23999,7 @@ msgctxt ""
"par_id76158273378122\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Τύπος"
#. 7zFYh
#: sf_timer.xhp
@@ -24008,7 +24008,7 @@ msgctxt ""
"par_id751582733781926\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. T92or
#: sf_timer.xhp
@@ -24017,7 +24017,7 @@ msgctxt ""
"par_id621582733781588\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. 9yDgM
#: sf_timer.xhp
@@ -24026,7 +24026,7 @@ msgctxt ""
"par_id731582733781476\n"
"help.text"
msgid "The actual running time elapsed since start or between start and stop (does not consider suspended time)"
-msgstr ""
+msgstr "Ο πραγματικός χρόνος λειτουργίας που έχει παρέλθει από την έναρξη ή μεταξύ έναρξης και διακοπής (δεν λαμβάνεται υπόψη ο χρόνος αναστολής)"
#. ThAaG
#: sf_timer.xhp
@@ -24035,7 +24035,7 @@ msgctxt ""
"par_id301582733781498\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. tqpDU
#: sf_timer.xhp
@@ -24044,7 +24044,7 @@ msgctxt ""
"par_id401582733781608\n"
"help.text"
msgid "<literal>True</literal> when timer is started or suspended"
-msgstr ""
+msgstr "<literal>True</literal> όταν ο χρονοδιακόπτης ξεκινά ή αναστέλεται"
#. pSPgk
#: sf_timer.xhp
@@ -24053,7 +24053,7 @@ msgctxt ""
"par_id181582733781551\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. SGyi4
#: sf_timer.xhp
@@ -24062,7 +24062,7 @@ msgctxt ""
"par_id161582733781328\n"
"help.text"
msgid "<literal>True</literal> when timer is started and suspended"
-msgstr ""
+msgstr "<literal>True</literal> όταν ο χρονοδιακόπτης ξεκινά και αναστέλεται"
#. qoNpD
#: sf_timer.xhp
@@ -24071,7 +24071,7 @@ msgctxt ""
"par_id651582733781874\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. E45MD
#: sf_timer.xhp
@@ -24080,7 +24080,7 @@ msgctxt ""
"par_id171582733781456\n"
"help.text"
msgid "The actual time elapsed while suspended since start or between start and stop"
-msgstr ""
+msgstr "Ο πραγματικός χρόνος που παρήλθε κατά την αναστολή από την έναρξη ή μεταξύ έναρξης και διακοπής"
#. gxF8S
#: sf_timer.xhp
@@ -24089,7 +24089,7 @@ msgctxt ""
"par_id141582733781303\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. FeCob
#: sf_timer.xhp
@@ -24098,7 +24098,7 @@ msgctxt ""
"par_id411582733781932\n"
"help.text"
msgid "The actual time elapsed since start or between start and stop (including suspensions and running time)"
-msgstr ""
+msgstr "Ο πραγματικός χρόνος που έχει παρέλθει από την έναρξη ή μεταξύ εκκίνησης και διακοπής (συμπεριλαμβανομένων των αναστολών και του χρόνου λειτουργίας)"
#. Mav4g
#: sf_timer.xhp
@@ -24107,7 +24107,7 @@ msgctxt ""
"hd_id141582734141895\n"
"help.text"
msgid "Methods"
-msgstr ""
+msgstr "Μέθοδοι"
#. P8RQj
#: sf_timer.xhp
@@ -24116,7 +24116,7 @@ msgctxt ""
"par_id291582734377752\n"
"help.text"
msgid "All methods do not require arguments and return a <literal>Boolean</literal> value."
-msgstr ""
+msgstr "Όλες οι μέθοδοι δεν απαιτούν ορίσματα και επιστρέφουν μια τιμή <literal>Boolean</literal>."
#. onEib
#: sf_timer.xhp
@@ -24125,7 +24125,7 @@ msgctxt ""
"par_id311582734894257\n"
"help.text"
msgid "If the returned value is <literal>False</literal>, then nothing happened."
-msgstr ""
+msgstr "Εάν η επιστρεφόμενη τιμή είναι <literal>False</literal>, τότε δεν συνέβη τίποτα."
#. U82Do
#: sf_timer.xhp
@@ -24134,7 +24134,7 @@ msgctxt ""
"par_id871582734180676\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. 6oGwx
#: sf_timer.xhp
@@ -24143,7 +24143,7 @@ msgctxt ""
"par_id971582734180676\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. ZMfpe
#: sf_timer.xhp
@@ -24152,7 +24152,7 @@ msgctxt ""
"par_id911582734180676\n"
"help.text"
msgid "Returned value"
-msgstr ""
+msgstr "Επιστρεφόμενη τιμή"
#. 6DJTP
#: sf_timer.xhp
@@ -24161,7 +24161,7 @@ msgctxt ""
"par_id301582734180676\n"
"help.text"
msgid "Resumes the <literal>Timer</literal> if it has been suspended"
-msgstr ""
+msgstr "Συνεχίζει το <literal>Timer</literal> (Χρονόμετρο) εάν έχει ανασταλεί"
#. ixF7A
#: sf_timer.xhp
@@ -24170,7 +24170,7 @@ msgctxt ""
"par_id661582734180676\n"
"help.text"
msgid "<literal>False</literal> if the timer is not suspended"
-msgstr ""
+msgstr "<literal>False</literal> εάν το χρονόμετρο δεν είναι σε αναστολή"
#. AAozF
#: sf_timer.xhp
@@ -24179,7 +24179,7 @@ msgctxt ""
"par_id821582734649305\n"
"help.text"
msgid "Terminates the <literal>Timer</literal> and discards its current property values, restarting as a new clean <literal>Timer</literal>"
-msgstr ""
+msgstr "Τερματίζει το <literal>Timer</literal> και απορρίπτει τις τρέχουσες τιμές ιδιοτήτων του, επανεκκινώντας ως νέο καθαρό <literal>Timer</literal>"
#. UtCTT
#: sf_timer.xhp
@@ -24188,7 +24188,7 @@ msgctxt ""
"par_id761582734649305\n"
"help.text"
msgid "<literal>False</literal> if the timer is inactive"
-msgstr ""
+msgstr "<literal>False</literal> εάν το χρονόμετρο είναι ανενεργό"
#. AkgAy
#: sf_timer.xhp
@@ -24197,7 +24197,7 @@ msgctxt ""
"par_id641582734802443\n"
"help.text"
msgid "Starts a new clean timer"
-msgstr ""
+msgstr "Ξεκινά ένα νέο καθαρό χρονόμετρο"
#. B4gTh
#: sf_timer.xhp
@@ -24206,7 +24206,7 @@ msgctxt ""
"par_id921582734802443\n"
"help.text"
msgid "<literal>False</literal> if the timer is already started"
-msgstr ""
+msgstr "<literal>False</literal> εάν το χρονόμετρο έχει ήδη ξεκινήσει"
#. D7CoH
#: sf_timer.xhp
@@ -24215,7 +24215,7 @@ msgctxt ""
"par_id81582734905507\n"
"help.text"
msgid "Suspends a running timer"
-msgstr ""
+msgstr "Αναστέλλει ένα εκτελούμενο χρονόμετρο"
#. YbeSJ
#: sf_timer.xhp
@@ -24224,7 +24224,7 @@ msgctxt ""
"par_id661582734905507\n"
"help.text"
msgid "<literal>False</literal> if the timer is not started or already suspended"
-msgstr ""
+msgstr "<literal>False</literal> εάν το χρονόμετρο δεν έχει ξεκινήσει ή έχει ήδη ανασταλεί"
#. sgXra
#: sf_timer.xhp
@@ -24233,7 +24233,7 @@ msgctxt ""
"par_id861582734996722\n"
"help.text"
msgid "Stops a running timer"
-msgstr ""
+msgstr "Διακόπτει ένα χρονόμετρο που λειτουργεί"
#. WkCCC
#: sf_timer.xhp
@@ -24242,7 +24242,7 @@ msgctxt ""
"par_id381582734996722\n"
"help.text"
msgid "<literal>False</literal> if the timer is neither started nor suspended"
-msgstr ""
+msgstr "<literal>False</literal> εάν το χρονόμετρο δεν έχει ξεκινήσει ούτε έχει ανασταλεί"
#. DuD3h
#: sf_timer.xhp
@@ -24251,7 +24251,7 @@ msgctxt ""
"par_id731626871820490\n"
"help.text"
msgid "The examples below in Basic and Python illustrate the use of the methods and properties in the <literal>Timer</literal> service."
-msgstr ""
+msgstr "Τα παρακάτω παραδείγματα σε Basic και Python επεξηγούν τη χρήση των μεθόδων και των ιδιοτήτων στην υπηρεσία <literal>Timer</literal>."
#. UgBnC
#: sf_timer.xhp
@@ -24260,7 +24260,7 @@ msgctxt ""
"bas_id141582735926821\n"
"help.text"
msgid "'The time elapsed while the Dialog box is open will be counted as suspended time"
-msgstr ""
+msgstr "'Ο χρόνος που έχει παρέλθει όσο είναι ανοιχτό το πλαίσιο διαλόγου θα υπολογίζεται ως χρόνος σε αναστολή"
#. 4jHcj
#: sf_timer.xhp
@@ -24269,7 +24269,7 @@ msgctxt ""
"bas_id901582735961725\n"
"help.text"
msgid "'The time elapsed while the Dialog box is open will be counted as running time"
-msgstr ""
+msgstr "'Ο χρόνος που έχει παρέλθει όσο είναι ανοιχτό το πλαίσιο διαλόγου θα υπολογίζεται ως χρόνος εκτέλεσης"
#. 7QhZU
#: sf_timer.xhp
@@ -24278,7 +24278,7 @@ msgctxt ""
"bas_id941610739926687\n"
"help.text"
msgid "'Shows the final time measurements"
-msgstr ""
+msgstr "'Εμφανίζει τις μετρήσεις του τελικού χρόνου"
#. J6XGB
#: sf_timer.xhp
@@ -24287,7 +24287,7 @@ msgctxt ""
"par_id281610740093006\n"
"help.text"
msgid "If you call the <literal>Terminate</literal> method, subsequent calls for the <literal>Continue</literal> method will not resume time measurement. Similarly, after a Timer has been terminated, calling the <literal>Start</literal> method will restart it as if it were a clean new Timer."
-msgstr ""
+msgstr "Εάν καλέσετε τη μέθοδο <literal>Terminate</literal> (Τερματισμός), οι επόμενες κλήσεις για τη μέθοδο <literal>Continue</literal> (Συνέχεια) δεν θα συνεχίσουν τη μέτρηση του χρόνου. Ομοίως, μετά τον τερματισμό ενός χρονομέτρου, η κλήση της μεθόδου <literal>Start</literal> (Έναρξη) θα τον επανεκκινήσει σαν να ήταν ένα καθαρό νέο χρονόμετρο."
#. DSYKj
#: sf_timer.xhp
@@ -24296,7 +24296,7 @@ msgctxt ""
"par_id391626872019832\n"
"help.text"
msgid "Beware that the <literal>Wait</literal> function in Basic takes in a duration argument in milliseconds whereas the <literal>sleep</literal> function in Python uses seconds in its argument."
-msgstr ""
+msgstr "Προσέξτε ότι η συνάρτηση <literal>Wait</literal> (Αναμονή) στη Basic λαμβάνει ένα όρισμα διάρκειας σε χιλιοστά του δευτερολέπτου, ενώ η συνάρτηση <literal>sleep</literal> στην Python χρησιμοποιεί δευτερόλεπτα στο όρισμά της."
#. bHEyr
#: sf_timer.xhp
@@ -24305,7 +24305,7 @@ msgctxt ""
"hd_id431610989623086\n"
"help.text"
msgid "Working with Multiple Timers"
-msgstr ""
+msgstr "Εργασία με πολλαπλά χρονόμετρα"
#. dr779
#: sf_timer.xhp
@@ -24314,7 +24314,7 @@ msgctxt ""
"par_id741610989639201\n"
"help.text"
msgid "It is possible to instantiate multiple <literal>Timer</literal> services in parallel, which gives flexibility in measuring time in different parts of the code."
-msgstr ""
+msgstr "Είναι δυνατή η παράλληλη δημιουργία πολλαπλών υπηρεσιών <literal>Timer</literal>, γεγονός που παρέχει ευελιξία στη μέτρηση του χρόνου σε διαφορετικά μέρη του κώδικα."
#. ueLgB
#: sf_timer.xhp
@@ -24323,7 +24323,7 @@ msgctxt ""
"par_id921610989722908\n"
"help.text"
msgid "The following example illustrates how to create two <literal>Timer</literal> objects and start them separately."
-msgstr ""
+msgstr "Το παρακάτω παράδειγμα δείχνει πώς να δημιουργήσετε δύο αντικείμενα <literal>Timer</literal> και να τα ξεκινήσετε ξεχωριστά."
#. PtA4E
#: sf_timer.xhp
@@ -24332,7 +24332,7 @@ msgctxt ""
"bas_id481610989853679\n"
"help.text"
msgid "'Starts myTimerA"
-msgstr ""
+msgstr "'Εκκινεί το myTimerA"
#. VUdGW
#: sf_timer.xhp
@@ -24341,7 +24341,7 @@ msgctxt ""
"bas_id331610989849501\n"
"help.text"
msgid "'Starts myTimerB"
-msgstr ""
+msgstr "'Εκκινεί το myTimerB"
#. t98Fv
#: sf_timer.xhp
@@ -24350,7 +24350,7 @@ msgctxt ""
"bas_id931610989837747\n"
"help.text"
msgid "'Terminate both timers"
-msgstr ""
+msgstr "'Τερματισμός και των δύο χρονομέτρων"
#. dphFv
#: sf_ui.xhp
@@ -24359,7 +24359,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ScriptForge.UI service"
-msgstr ""
+msgstr "Υπηρεσία ScriptForge.UI"
#. QWA6E
#: sf_ui.xhp
@@ -24368,7 +24368,7 @@ msgctxt ""
"hd_id371587913266310\n"
"help.text"
msgid "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\"><literal>ScriptForge</literal>.<literal>UI</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"UIService\"><link href=\"text/sbasic/shared/03/sf_ui.xhp\" name=\"ScriptForge.UI service\">Υπηρεσία <literal>ScriptForge</literal>.<literal>UI</literal></link></variable>"
#. cAtxQ
#: sf_ui.xhp
@@ -24377,7 +24377,7 @@ msgctxt ""
"par_id31587913266153\n"
"help.text"
msgid "The UI (User Interface) service simplifies the identification and the manipulation of the different windows composing the whole %PRODUCTNAME application:"
-msgstr ""
+msgstr "Η υπηρεσία UI (διεπαφή χρήστη) απλοποιεί την αναγνώριση και τον χειρισμό των διαφορετικών παραθύρων που συνθέτουν ολόκληρη την εφαρμογή του %PRODUCTNAME:"
#. nTqj5
#: sf_ui.xhp
@@ -24386,7 +24386,7 @@ msgctxt ""
"par_id591587913266547\n"
"help.text"
msgid "Windows selection"
-msgstr ""
+msgstr "Επιλογή παραθύρων"
#. 45jFA
#: sf_ui.xhp
@@ -24395,7 +24395,7 @@ msgctxt ""
"par_id511587913266292\n"
"help.text"
msgid "Windows moving and resizing"
-msgstr ""
+msgstr "Μετακίνηση και αυξομείωση των παραθύρων"
#. UKRyn
#: sf_ui.xhp
@@ -24404,7 +24404,7 @@ msgctxt ""
"par_id51587913266596\n"
"help.text"
msgid "Statusbar settings"
-msgstr ""
+msgstr "Ρυθμίσεις γραμμής κατάστασης"
#. oj2kC
#: sf_ui.xhp
@@ -24413,7 +24413,7 @@ msgctxt ""
"par_id401599404339702\n"
"help.text"
msgid "Display of a floating progress bar"
-msgstr ""
+msgstr "Εμφάνιση αιωρούμενης γραμμής προόδου"
#. iE5hR
#: sf_ui.xhp
@@ -24422,7 +24422,7 @@ msgctxt ""
"par_id761587913266388\n"
"help.text"
msgid "Creation of new windows"
-msgstr ""
+msgstr "Δημιουργία νέων παραθύρων"
#. Dxuyy
#: sf_ui.xhp
@@ -24431,7 +24431,7 @@ msgctxt ""
"par_id591587913266489\n"
"help.text"
msgid "Access to the underlying \"documents\""
-msgstr ""
+msgstr "Πρόσβαση στα υποκείμενα \"έγγραφα\""
#. W5BL2
#: sf_ui.xhp
@@ -24440,7 +24440,7 @@ msgctxt ""
"par_id181620312953395\n"
"help.text"
msgid "The UI service is the starting point to open, create or access to the content of new or existing documents from a user script."
-msgstr ""
+msgstr "Η υπηρεσία διεπαφής χρήστη είναι το σημείο εκκίνησης για το άνοιγμα, τη δημιουργία ή την πρόσβαση στο περιεχόμενο νέων ή υφιστάμενων εγγράφων από ένα σενάριο χρήστη."
#. ERvRF
#: sf_ui.xhp
@@ -24449,7 +24449,7 @@ msgctxt ""
"hd_id881587913266307\n"
"help.text"
msgid "Definitions"
-msgstr ""
+msgstr "Ορισμοί"
#. L8Ate
#: sf_ui.xhp
@@ -24458,7 +24458,7 @@ msgctxt ""
"par_id741587913266919\n"
"help.text"
msgid "A window can be designated using various ways:"
-msgstr ""
+msgstr "Ένα παράθυρο μπορεί να οριστεί με διάφορους τρόπους:"
#. Bhs9h
#: sf_ui.xhp
@@ -24467,7 +24467,7 @@ msgctxt ""
"par_id291587913946648\n"
"help.text"
msgid "a full path and file name"
-msgstr ""
+msgstr "μια πλήρη διαδρομή και όνομα αρχείου"
#. CK62z
#: sf_ui.xhp
@@ -24476,7 +24476,7 @@ msgctxt ""
"par_id991587914045862\n"
"help.text"
msgid "the last component of the full file name or even only the last component without its suffix"
-msgstr ""
+msgstr "το τελευταίο στοιχείο του πλήρους ονόματος αρχείου ή ακόμα και μόνο το τελευταίο στοιχείο χωρίς το επίθημά του"
#. 8qLrG
#: sf_ui.xhp
@@ -24485,7 +24485,7 @@ msgctxt ""
"par_id541587914079744\n"
"help.text"
msgid "the title of the window"
-msgstr ""
+msgstr "τον τίτλο του παραθύρου"
#. rdSGt
#: sf_ui.xhp
@@ -24494,7 +24494,7 @@ msgctxt ""
"par_id191587914134221\n"
"help.text"
msgid "for new documents, something like \"Untitled 1\""
-msgstr ""
+msgstr "για νέα έγγραφα, κάτι σαν \"Άτιτλο 1\""
#. GrAxe
#: sf_ui.xhp
@@ -24503,7 +24503,7 @@ msgctxt ""
"par_id911587914185746\n"
"help.text"
msgid "one of the special windows \"<literal>BASICIDE</literal>\" and \"<literal>WELCOMESCREEN</literal>\""
-msgstr ""
+msgstr "ένα από τα ειδικά παράθυρα \"<literal>BASICIDE</literal>\" και \"<literal>WELCOMESCREEN</literal>\""
#. n5ZLz
#: sf_ui.xhp
@@ -24512,7 +24512,7 @@ msgctxt ""
"par_id181587914255236\n"
"help.text"
msgid "The window name is case-sensitive."
-msgstr ""
+msgstr "Το όνομα του παραθύρου κάνει διάκριση πεζών-κεφαλαίων."
#. CC5D5
#: sf_ui.xhp
@@ -24521,7 +24521,7 @@ msgctxt ""
"hd_id541588520711430\n"
"help.text"
msgid "Document object"
-msgstr ""
+msgstr "Αντικείμενο εγγράφου"
#. utsAW
#: sf_ui.xhp
@@ -24539,7 +24539,7 @@ msgctxt ""
"par_id331588521254916\n"
"help.text"
msgid "The specific properties and methods applicable on documents are implemented in a document class."
-msgstr ""
+msgstr "Οι συγκεκριμένες ιδιότητες και μέθοδοι που ισχύουν στα έγγραφα υλοποιούνται σε μια κλάση εγγράφων."
#. CEisb
#: sf_ui.xhp
@@ -24548,7 +24548,7 @@ msgctxt ""
"par_id971588521292976\n"
"help.text"
msgid "The implementation of the document objects class is done in the <literal>SFDocuments</literal> associated library. See its \"<literal>Document</literal>\" service."
-msgstr ""
+msgstr "Η υλοποίηση της κλάσης αντικειμένων εγγράφου γίνεται στη συσχετισμένη βιβλιοθήκη <literal>SFDocuments</literal>. Δείτε την υπηρεσία \"<literal>Document</literal>\"."
#. 8NGPA
#: sf_ui.xhp
@@ -24557,7 +24557,7 @@ msgctxt ""
"hd_id91587913266988\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Κλήση υπηρεσίας"
#. 2tFG6
#: sf_ui.xhp
@@ -24566,7 +24566,7 @@ msgctxt ""
"hd_id841587913266618\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Ιδιότητες"
#. m8i6L
#: sf_ui.xhp
@@ -24575,7 +24575,7 @@ msgctxt ""
"par_id521587913266568\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. 48SHW
#: sf_ui.xhp
@@ -24584,7 +24584,7 @@ msgctxt ""
"par_id421587913266368\n"
"help.text"
msgid "ReadOnly"
-msgstr ""
+msgstr "Μόνο για ανάγνωση"
#. GpADs
#: sf_ui.xhp
@@ -24593,7 +24593,7 @@ msgctxt ""
"par_id631587914939732\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Τύπος"
#. nB9z5
#: sf_ui.xhp
@@ -24602,7 +24602,7 @@ msgctxt ""
"par_id951587913266220\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. c5EiC
#: sf_ui.xhp
@@ -24611,7 +24611,7 @@ msgctxt ""
"par_id651587913266754\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. vQ8TT
#: sf_ui.xhp
@@ -24620,7 +24620,7 @@ msgctxt ""
"par_id351587913266349\n"
"help.text"
msgid "a valid and unique <literal>WindowName</literal> for the currently active window. When the window cannot be identified, a zero-length string is returned."
-msgstr ""
+msgstr "ένα έγκυρο και μοναδικό <literal>WindowName</literal> για το τρέχον ενεργό παράθυρο. Όταν το παράθυρο δεν μπορεί να αναγνωριστεί, επιστρέφεται μια συμβολοσειρά μηδενικού μήκους."
#. DiCRC
#: sf_ui.xhp
@@ -24629,7 +24629,7 @@ msgctxt ""
"par_id658517913266754\n"
"help.text"
msgid "Yes"
-msgstr ""
+msgstr "Ναι"
#. Bjyuv
#: sf_ui.xhp
@@ -24638,7 +24638,7 @@ msgctxt ""
"par_id153587913266349\n"
"help.text"
msgid "The list of the currently open documents. Special windows are ignored. This list consists of a zero-based one dimensional array either of filenames (in SF_FileSystem.FileNaming notation) or of window titles for unsaved documents."
-msgstr ""
+msgstr "Ο κατάλογος με τα τρέχοντα ανοιχτά έγγραφα. Τα ειδικά παράθυρα αγνοούνται. Αυτός ο κατάλογος αποτελείται από έναν μηδενικό μονοδιάστατο πίνακα είτε ονομάτων αρχείων (σε σημειογραφία SF_FileSystem.FileNaming), είτε από τίτλους παραθύρων για μη αποθηκευμένα έγγραφα."
#. BH9YJ
#: sf_ui.xhp
@@ -24647,7 +24647,7 @@ msgctxt ""
"hd_id511620762163390\n"
"help.text"
msgid "Constants"
-msgstr ""
+msgstr "Σταθερές"
#. ziD2D
#: sf_ui.xhp
@@ -24656,7 +24656,7 @@ msgctxt ""
"par_id761620761856238\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#. eBD6E
#: sf_ui.xhp
@@ -24665,7 +24665,7 @@ msgctxt ""
"par_id591620761856238\n"
"help.text"
msgid "Value"
-msgstr ""
+msgstr "Τιμή"
#. 2DU4R
#: sf_ui.xhp
@@ -24674,7 +24674,7 @@ msgctxt ""
"par_id711620761856238\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Περιγραφή"
#. adCUF
#: sf_ui.xhp
@@ -24683,7 +24683,7 @@ msgctxt ""
"par_id341620761856238\n"
"help.text"
msgid "Macros are always executed"
-msgstr ""
+msgstr "Οι μακροεντολές εκτελούνται πάντα"
#. 7hEDg
#: sf_ui.xhp
@@ -24692,7 +24692,7 @@ msgctxt ""
"par_id101620761893011\n"
"help.text"
msgid "Macros are never executed"
-msgstr ""
+msgstr "Οι μακροεντολές δεν εκτελούνται ποτέ"
#. 6Jgt7
#: sf_ui.xhp
@@ -24701,7 +24701,7 @@ msgctxt ""
"par_id11620761899780\n"
"help.text"
msgid "Macro execution depends on user settings"
-msgstr ""
+msgstr "Η εκτέλεση των μακροεντολών εξαρτάται από τις ρυθμίσεις του χρήστη"
#. BTUQ4
#: sf_ui.xhp
@@ -24710,7 +24710,7 @@ msgctxt ""
"par_id311620312548992\n"
"help.text"
msgid "The examples below show a <literal>MsgBox</literal> with the names of all currently open documents."
-msgstr ""
+msgstr "Τα παρακάτω παραδείγματα δείχνουν ένα <literal>MsgBox</literal> με τα ονόματα όλων των ανοιχτών εγγράφων."
#. DfpBz
#: sf_ui.xhp
@@ -24719,7 +24719,7 @@ msgctxt ""
"par_id881608131596153\n"
"help.text"
msgid "List of Methods in the UI Service"
-msgstr ""
+msgstr "Κατάλογος μεθόδων στην υπηρεσία UI"
#. 4fc2p
#: sf_ui.xhp
@@ -24728,7 +24728,7 @@ msgctxt ""
"par_id431620322170443\n"
"help.text"
msgid "Note, as an exception, that the methods marked <emph>(*)</emph> are <emph>not applicable to Base documents</emph>."
-msgstr ""
+msgstr "Σημειώστε, κατ' εξαίρεση, ότι οι μέθοδοι με την ένδειξη <emph>(*)</emph> <emph>δεν ισχύουν για έγγραφα Base</emph>."
#. 778Fh
#: sf_ui.xhp
@@ -24737,7 +24737,7 @@ msgctxt ""
"par_id201587913266596\n"
"help.text"
msgid "Make the specified window active. The method returns <literal>True</literal> if the given window is found and can be activated. There is no change in the actual user interface if no window matches the selection."
-msgstr ""
+msgstr "Ενεργοποιεί το καθορισμένο παράθυρο. Η μέθοδος επιστρέφει <literal>True</literal> εάν το δεδομένο παράθυρο βρεθεί και μπορεί να ενεργοποιηθεί. Δεν υπάρχει αλλαγή στην πραγματική διεπαφή χρήστη εάν κανένα παράθυρο δεν ταιριάζει με την επιλογή."
#. w9DR4
#: sf_ui.xhp
@@ -24746,7 +24746,7 @@ msgctxt ""
"par_id381587913266946\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions above."
-msgstr ""
+msgstr "<emph>windowname</emph> (όνομα παραθύρου): δείτε τους ορισμούς παραπάνω."
#. 5kwSb
#: sf_ui.xhp
@@ -24755,7 +24755,7 @@ msgctxt ""
"par_id13159655484952\n"
"help.text"
msgid "Creates and stores a new %PRODUCTNAME Base document embedding an empty database of the given type. The method returns a <literal>Document</literal> service instance."
-msgstr ""
+msgstr "Δημιουργεί και αποθηκεύει ένα νέο έγγραφο του %PRODUCTNAME Base που ενσωματώνει μια κενή βάση δεδομένων του συγκεκριμένου τύπου. Η μέθοδος επιστρέφει μια παρουσία υπηρεσίας <literal>Document</literal>."
#. gqGpB
#: sf_ui.xhp
@@ -24764,7 +24764,7 @@ msgctxt ""
"par_id441596554849949\n"
"help.text"
msgid "<emph>filename</emph> : Identifies the file to create. It must follow the <literal>SF_FileSystem.FileNaming</literal> notation. If the file already exists, it is overwritten without warning"
-msgstr ""
+msgstr "<emph>filename</emph> (όνομα αρχείου): Προσδιορίζει το αρχείο προς δημιουργία. Πρέπει να ακολουθεί τη σημειογραφία <literal>SF_FileSystem.FileNaming</literal>. Εάν το αρχείο υπάρχει ήδη, αντικαθίσταται χωρίς προειδοποίηση"
#. Jub7D
#: sf_ui.xhp
@@ -24773,7 +24773,7 @@ msgctxt ""
"par_id381596554849698\n"
"help.text"
msgid "<emph>embeddeddatabase</emph> : Either \"HSQLDB\" (default), \"FIREBIRD\" or \"CALC\"."
-msgstr ""
+msgstr "<emph>embeddeddatabase</emph> (ενσωματωμένη βάση δεδομένων): Είτε \"HSQLDB\" (προεπιλογή), \"FIREBIRD\" ή \"CALC\"."
#. BWgpN
#: sf_ui.xhp
@@ -24782,7 +24782,7 @@ msgctxt ""
"par_id521596554849185\n"
"help.text"
msgid "<emph>registrationname</emph> : The name used to store the new database in the databases register. When = \"\" (default), no registration takes place. If the name already exists it is overwritten without warning."
-msgstr ""
+msgstr "<emph>registrationname</emph> (όνομα καταχώρησης): Το όνομα που χρησιμοποιείται για την αποθήκευση της νέας βάσης δεδομένων στο μητρώο βάσεων δεδομένων. Όταν = \"\" (προεπιλογή), δεν πραγματοποιείται εγγραφή. Εάν το όνομα υπάρχει ήδη, αντικαθίσταται χωρίς προειδοποίηση."
#. AFin6
#: sf_ui.xhp
@@ -24791,7 +24791,7 @@ msgctxt ""
"par_id181629364905056\n"
"help.text"
msgid "<emph>calcfilename</emph> : Only when <literal>embeddeddatabase</literal> = \"CALC\", <literal>calcfilename</literal> represents the file containing the tables as Calc sheets. The file must exist or an error is raised."
-msgstr ""
+msgstr "<emph>filename</emph> (όνομα αρχείου calc): Μόνο όταν η <literal>embeddeddatabase</literal> = \"CALC\", το <literal>calcfilename</literal> αντιπροσωπεύει το αρχείο που περιέχει τους πίνακες ως φύλλα Calc. Το αρχείο πρέπει να υπάρχει διαφορετικά εμφανίζεται σφάλμα."
#. GtB5n
#: sf_ui.xhp
@@ -24800,7 +24800,7 @@ msgctxt ""
"par_id651588521753997\n"
"help.text"
msgid "Create a new %PRODUCTNAME document of a given type or based on a given template. The method returns a document object."
-msgstr ""
+msgstr "Δημιουργία νέου εγγράφου του %PRODUCTNAME συγκεκριμένου τύπου ή με βάση ένα δεδομένο πρότυπο. Η μέθοδος επιστρέφει ένα αντικείμενο εγγράφου."
#. JnBPt
#: sf_ui.xhp
@@ -24809,7 +24809,7 @@ msgctxt ""
"par_id51588521753302\n"
"help.text"
msgid "<emph>documenttype</emph> : \"Calc\", \"Writer\", etc. If absent, the <literal>templatefile</literal> argument must be present."
-msgstr ""
+msgstr "<emph>documenttype</emph> (τύπος εγγράφου): \"Calc\", \"Writer\" κ.λπ. Εάν δεν υπάρχει, πρέπει να υπάρχει το όρισμα <literal>templatefile</literal>."
#. BQ6UD
#: sf_ui.xhp
@@ -24818,7 +24818,7 @@ msgctxt ""
"par_id401588522663325\n"
"help.text"
msgid "<emph>templatefile</emph> : The full <literal>FileName</literal> of the template to build the new document on. If the file does not exist, the argument is ignored. The <literal>FileSystem</literal> service provides the <literal>TemplatesFolder</literal> and <literal>UserTemplatesFolder</literal> properties to help to build the argument."
-msgstr ""
+msgstr "<emph>templatefile</emph> (αρχείο προτύπου): Το πλήρες <literal>FileName</literal> (Όνομα αρχείου) του προτύπου για τη δημιουργία του νέου εγγράφου. Εάν το αρχείο δεν υπάρχει, το όρισμα αγνοείται. Η υπηρεσία <literal>FileSystem</literal> παρέχει τις ιδιότητες <literal>TemplatesFolder</literal> και <literal>UserTemplatesFolder</literal> για να βοηθήσει στη δημιουργία του ορίσματος."
#. VeNQg
#: sf_ui.xhp
@@ -24827,7 +24827,7 @@ msgctxt ""
"par_id131588522824366\n"
"help.text"
msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
-msgstr ""
+msgstr "<emph>hidden</emph> (κρυφό): εάν είναι <literal>True</literal>, ανοίξτε το νέο έγγραφο στο παρασκήνιο (προεπιλογή = <literal>False</literal>). Να χρησιμοποιείται με προσοχή: η ενεργοποίηση ή το κλείσιμο κατόπιν, μπορεί να γίνει μόνο μέσω προγραμματισμού."
#. gWFt9
#: sf_ui.xhp
@@ -24836,7 +24836,7 @@ msgctxt ""
"par_id701620762417802\n"
"help.text"
msgid "In both examples below, the first call to <literal>CreateDocument</literal> method creates a blank Calc document, whereas the second creates a document from a template file."
-msgstr ""
+msgstr "Και στα δύο παρακάτω παραδείγματα, η πρώτη κλήση στη μέθοδο <literal>CreateDocument</literal> δημιουργεί ένα κενό έγγραφο Calc, ενώ η δεύτερη δημιουργεί ένα έγγραφο από ένα αρχείο προτύπου."
#. TxY93
#: sf_ui.xhp
@@ -24854,7 +24854,7 @@ msgctxt ""
"par_id851588520551368\n"
"help.text"
msgid "<emph>windowname</emph>: See the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is used. UNO objects of types <literal>com.sun.star.lang.XComponent</literal> or <literal>com.sun.star.comp.dba.ODatabaseDocument</literal> are also accepted. Thus passing <literal>ThisComponent</literal> or <literal>ThisDatabaseDocument</literal> as argument creates a new <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"Base service\">Base</link> or <link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\">Calc</link> service."
-msgstr ""
+msgstr "<emph>windowname</emph> (όνομα παραθύρου): Δείτε τους <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">παραπάνω</link> ορισμούς. Εάν αυτό το όρισμα απουσιάζει, χρησιμοποιείται το ενεργό παράθυρο. Γίνονται επίσης αποδεκτά αντικείμενα UNO των τύπων <literal>com.sun.star.lang.XComponent</literal> ή <literal>com.sun.star.comp.dba.ODatabaseDocument</literal>. Έτσι, μεταβιβάζοντας το <literal>ThisComponent</literal> ή το <literal>ThisDatabaseDocument</literal> ως όρισμα δημιουργείται μια νέα υπηρεσία <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document service\">SFDocuments.Document</link>, <link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"Base service\">Base</link> ή <link href=\"text/sbasic/shared/03/sf_calc.xhp\" name=\"Calc service\">Calc</link>."
#. AAjDB
#: sf_ui.xhp
@@ -24863,7 +24863,7 @@ msgctxt ""
"par_id521620330287071\n"
"help.text"
msgid "To access the name of the currently active window, refer to the <literal>ActiveWindow</literal> property."
-msgstr ""
+msgstr "Για πρόσβαση στο όνομα του ενεργού παραθύρου, ανατρέξτε στην ιδιότητα <literal>ActiveWindow</literal>."
#. CYsyC
#: sf_ui.xhp
@@ -24872,7 +24872,7 @@ msgctxt ""
"par_id24158798644169\n"
"help.text"
msgid "Maximizes the active window or the given window."
-msgstr ""
+msgstr "Μεγιστοποιεί το ενεργό παράθυρο ή το δεδομένο παράθυρο."
#. hD4TC
#: sf_ui.xhp
@@ -24881,7 +24881,7 @@ msgctxt ""
"par_id951587986441954\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is maximized."
-msgstr ""
+msgstr "<emph>windowname</emph> (όνομα παραθύρου): δείτε τους ορισμούς <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">παραπάνω</link>. Εάν αυτό το όρισμα απουσιάζει, το ενεργό παράθυρο μεγιστοποιείται."
#. vzDdG
#: sf_ui.xhp
@@ -24890,7 +24890,7 @@ msgctxt ""
"par_id871587986592696\n"
"help.text"
msgid "Minimizes the active window or the given window."
-msgstr ""
+msgstr "Ελαχιστοποιεί το ενεργό παράθυρο, ή το δεδομένο παράθυρο."
#. Enys5
#: sf_ui.xhp
@@ -24899,7 +24899,7 @@ msgctxt ""
"par_id751587986592626\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">above</link>. If this argument is absent, the active window is minimized."
-msgstr ""
+msgstr "<emph>windowname</emph> (όνομα παραθύρου): δείτε τους ορισμούς <link href=\"text/sbasic/shared/03/sf_ui.xhp#WindowName\" name=\"WindowName section\">πιο πάνω</link>. Εάν αυτό το όρισμα απουσιάζει, το ενεργό παράθυρο ελαχιστοποιείται."
#. WHDDQ
#: sf_ui.xhp
@@ -24908,7 +24908,7 @@ msgctxt ""
"par_id691596555746539\n"
"help.text"
msgid "Open an existing %PRODUCTNAME Base document. The method returns a document object."
-msgstr ""
+msgstr "Ανοίξτε ένα υπάρχον έγγραφο της %PRODUCTNAME Base. Η μέθοδος επιστρέφει ένα αντικείμενο εγγράφου."
#. q2E3C
#: sf_ui.xhp
@@ -24926,7 +24926,7 @@ msgctxt ""
"par_id711596555746281\n"
"help.text"
msgid "<emph>registrationname</emph>: The name to use to find the database in the databases register. It is ignored if <literal>FileName</literal> <> \"\"."
-msgstr ""
+msgstr "<emph>registrationname</emph> (όνομα καταχώρησης): Το όνομα που θα χρησιμοποιηθεί για την εύρεση της βάσης δεδομένων στο μητρώο βάσεων δεδομένων. Αγνοείται εάν <literal>FileName</literal> <> \"\"."
#. TqAd2
#: sf_ui.xhp
@@ -24935,7 +24935,7 @@ msgctxt ""
"id721596556313545\n"
"help.text"
msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
-msgstr ""
+msgstr "<emph>macroexecution</emph> (εκτέλεση μακροεντολών): 0 = η συμπεριφορά ορίζεται από τη διαμόρφωση του χρήστη, 1 = οι μακροεντολές δεν είναι εκτελέσιμες, 2 = οι μακροεντολές είναι εκτελέσιμες."
#. Dok5e
#: sf_ui.xhp
@@ -24944,7 +24944,7 @@ msgctxt ""
"par_id941620762989833\n"
"help.text"
msgid "To improve code readability you can use <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">predefined constants</link> for the <literal>macroexecution</literal> argument, as in the examples above."
-msgstr ""
+msgstr "Για να βελτιώσετε την αναγνωσιμότητα του κώδικα, μπορείτε να χρησιμοποιήσετε <link href=\"text/sbasic/shared/03/sf_ui.xhp#Constants\" name=\"CHANGE ME\">προκαθορισμένες σταθερές</link> για το όρισμα <literal>macroexecution</literal> , όπως στα παραπάνω παραδείγματα."
#. LBgGQ
#: sf_ui.xhp
@@ -24953,7 +24953,7 @@ msgctxt ""
"par_id541588523635283\n"
"help.text"
msgid "Opens an existing %PRODUCTNAME document with the given options. Returns a document object or one of its subclasses. The method returns <literal>Nothing</literal> (in Basic) / <literal>None</literal> (in Python) if the opening failed, even when the failure is caused by a user decision."
-msgstr ""
+msgstr "Άνοιγμα υφιστάμενου εγγράφου %PRODUCTNAME με τις δεδομένες επιλογές. Επιστρέφει ένα αντικείμενο εγγράφου, ή μία από τις υποκλάσεις του. Η μέθοδος επιστρέφει <literal>Nothing</literal> (στη Basic) / <literal>None</literal> (στην Python) εάν το άνοιγμα απέτυχε, ακόμη και όταν η αποτυχία προκαλείται από απόφαση του χρήστη."
#. 8tjbg
#: sf_ui.xhp
@@ -24962,7 +24962,7 @@ msgctxt ""
"par_id481588523635890\n"
"help.text"
msgid "<emph>filename</emph>: Identifies the file to open. It must follow the <literal>FileNaming</literal> notation of the <literal>FileSystem</literal> service."
-msgstr ""
+msgstr "<emph>filename</emph> (όνομα αρχείου): Προσδιορίζει το αρχείο που θα ανοίξει. Πρέπει να ακολουθεί τη σημειογραφία <literal>FileNaming</literal> της υπηρεσίας <literal>FileSystem</literal>."
#. PWvQz
#: sf_ui.xhp
@@ -24971,7 +24971,7 @@ msgctxt ""
"par_id451588523635507\n"
"help.text"
msgid "<emph>password</emph>: To use when the document is protected. If wrong or absent while the document is protected, the user will be prompted to enter a password."
-msgstr ""
+msgstr "<emph>password</emph> (κωδικός πρόσβασης): Για χρήση όταν το έγγραφο είναι προστατευμένο. Εάν είναι λάθος ή απουσιάζει ενώ το έγγραφο είναι προστατευμένο, θα ζητηθεί από τον χρήστη να εισαγάγει έναν κωδικό πρόσβασης."
#. 2jjFK
#: sf_ui.xhp
@@ -24980,7 +24980,7 @@ msgctxt ""
"par_id611588524329781\n"
"help.text"
msgid "<emph>readonly</emph>: Default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>readonly</emph> (μόνο για ανάγνωση): Προεπιλογή = <literal>False</literal>."
#. BcyEp
#: sf_ui.xhp
@@ -24989,7 +24989,7 @@ msgctxt ""
"par_id641588523635497\n"
"help.text"
msgid "<emph>hidden</emph>: if <literal>True</literal>, open the new document in the background (default = <literal>False</literal>). To use with caution: activation or closure afterwards can only happen programmatically."
-msgstr ""
+msgstr "<emph>hidden</emph> (κρυφό): εάν είναι <literal>True</literal>, ανοίξτε το νέο έγγραφο στο παρασκήνιο (προεπιλογή = <literal>False</literal>). Να χρησιμοποιείται με προσοχή: η ενεργοποίηση ή το κλείσιμο κατόπιν, μπορεί να γίνει μόνο μέσω προγραμματισμού."
#. sbgeH
#: sf_ui.xhp
@@ -24998,7 +24998,7 @@ msgctxt ""
"par_id981588524474719\n"
"help.text"
msgid "<emph>macroexecution</emph>: 0 = behaviour is defined by the user configuration, 1 = macros are not executable, 2 = macros are executable."
-msgstr ""
+msgstr "<emph>macroexecution</emph> (εκτέλεση μακροεντολών): 0 = η συμπεριφορά ορίζεται από τη διαμόρφωση του χρήστη, 1 = οι μακροεντολές δεν είναι εκτελέσιμες, 2 = οι μακροεντολές είναι εκτελέσιμες."
#. AF7iF
#: sf_ui.xhp
@@ -25007,7 +25007,7 @@ msgctxt ""
"par_id611588524584693\n"
"help.text"
msgid "<emph>filtername</emph>: The name of a filter that should be used for loading the document. If present, the filter must exist."
-msgstr ""
+msgstr "<emph>filtername</emph> (όνομα φίλτρου): Το όνομα ενός φίλτρου που πρέπει να χρησιμοποιηθεί για τη φόρτωση του εγγράφου. Εάν υπάρχει, το φίλτρο πρέπει να υπάρχει."
#. MKueU
#: sf_ui.xhp
@@ -25016,7 +25016,7 @@ msgctxt ""
"par_id191588524634348\n"
"help.text"
msgid "<emph>filteroptions</emph>: An optional string of options associated with the filter."
-msgstr ""
+msgstr "<emph>filteroptions</emph> (επιλογές φίλτρου): Μια προαιρετική συμβολοσειρά επιλογών που σχετίζεται με το φίλτρο."
#. qMTrj
#: sf_ui.xhp
@@ -25025,7 +25025,7 @@ msgctxt ""
"par_id751587986945965\n"
"help.text"
msgid "Resizes and/or moves the active window. Absent and negative arguments are ignored. If the window is minimized or maximized, calling <literal>Resize</literal> without arguments restores it."
-msgstr ""
+msgstr "Αλλάζει το μέγεθος και/ή μετακινεί το ενεργό παράθυρο. Τα απόντα και τα αρνητικά ορίσματα αγνοούνται. Εάν το παράθυρο ελαχιστοποιηθεί ή μεγιστοποιηθεί, η κλήση του <literal>Resize</literal> (Αλλαγή μεγέθους) χωρίς ορίσματα το επαναφέρει."
#. 6NUcv
#: sf_ui.xhp
@@ -25034,7 +25034,7 @@ msgctxt ""
"par_id441587986945696\n"
"help.text"
msgid "<emph>left, top</emph>: Distances of the top-left corner from top and left edges of the screen, in pixels."
-msgstr ""
+msgstr "<emph>left, top</emph> (αριστερά, επάνω): Οι αποστάσεις της επάνω αριστερής γωνίας από το επάνω και το αριστερό άκρο της οθόνης, σε εικονοστοιχεία."
#. AdcjG
#: sf_ui.xhp
@@ -25043,7 +25043,7 @@ msgctxt ""
"par_id601587987453825\n"
"help.text"
msgid "<emph>width, height</emph>: New dimensions of the window, in pixels."
-msgstr ""
+msgstr "<emph>width, height</emph> (πλάτος, ύψος): Νέες διαστάσεις του παραθύρου, σε εικονοστοιχεία."
#. vDNVH
#: sf_ui.xhp
@@ -25052,7 +25052,7 @@ msgctxt ""
"par_id801587987507028\n"
"help.text"
msgid "In the following examples, the <literal>width</literal> and <literal>height</literal> of the window are changed while <literal>top</literal> and <literal>left</literal> are left unchanged."
-msgstr ""
+msgstr "Στα παρακάτω παραδείγματα, το <literal>width</literal> (πλάτος)και το <literal>height</literal> (ύψος) του παραθύρου αλλάζουν, ενώ τα <literal>top</literal> (επάνω) και <literal>left</literal> (αριστερά) παραμένουν αμετάβλητα."
#. HP2Jb
#: sf_ui.xhp
@@ -25061,7 +25061,7 @@ msgctxt ""
"par_id21620332301809\n"
"help.text"
msgid "To resize a window that is not active, first activate it using the <literal>Activate</literal> method."
-msgstr ""
+msgstr "Για να αλλάξετε το μέγεθος ενός παραθύρου που δεν είναι ενεργό, πρώτα ενεργοποιήστε το χρησιμοποιώντας τη μέθοδο <literal>Activate</literal>."
#. NnBWM
#: sf_ui.xhp
@@ -25070,7 +25070,7 @@ msgctxt ""
"par_id281587996421580\n"
"help.text"
msgid "Display a text and a progressbar in the status bar of the active window. Any subsequent calls in the same macro run refer to the same status bar of the same window, even if the window is not visible anymore. A call without arguments resets the status bar to its normal state."
-msgstr ""
+msgstr "Εμφανίστε ένα κείμενο και μια γραμμή προόδου στη γραμμή κατάστασης του ενεργού παραθύρου. Οποιεσδήποτε επόμενες κλήσεις στην ίδια εκτέλεση μακροεντολής αναφέρονται στην ίδια γραμμή κατάστασης του ίδιου παραθύρου, ακόμα κι αν το παράθυρο δεν είναι πλέον ορατό. Μια κλήση χωρίς ορίσματα επαναφέρει τη γραμμή κατάστασης στην κανονική της κατάσταση."
#. rDr2L
#: sf_ui.xhp
@@ -25079,7 +25079,7 @@ msgctxt ""
"par_id71587996421829\n"
"help.text"
msgid "<emph>text</emph>: An optional text to be displayed in front of the progress bar."
-msgstr ""
+msgstr "<emph>text</emph> (κείμενο): Ένα προαιρετικό κείμενο που θα εμφανίζεται μπροστά από τη γραμμή προόδου."
#. hbCpG
#: sf_ui.xhp
@@ -25088,7 +25088,7 @@ msgctxt ""
"par_id881587996421777\n"
"help.text"
msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
-msgstr ""
+msgstr "<emph>percentage</emph> (ποσοστό): ένας προαιρετικός βαθμός προόδου μεταξύ 0 και 100."
#. qbGdy
#: sf_ui.xhp
@@ -25097,7 +25097,7 @@ msgctxt ""
"bas_id651620332601083\n"
"help.text"
msgid "' Resets the statusbar"
-msgstr ""
+msgstr "' Επαναφέρει τη γραμμή κατάστασης"
#. oQfWc
#: sf_ui.xhp
@@ -25106,7 +25106,7 @@ msgctxt ""
"par_id571598864255776\n"
"help.text"
msgid "Displays a non-modal dialog box. Specify its title, an explicatory text and a percentage of progress to be represented on a progressbar. The dialog will remain visible until a call to the method without arguments or until the user manually closes the dialog."
-msgstr ""
+msgstr "Εμφανίζει ένα μη αναγκαστικό πλαίσιο διαλόγου. Καθορίστε τον τίτλο του, ένα επεξηγηματικό κείμενο και ένα ποσοστό προόδου που θα αναπαρασταθεί σε μια γραμμή προόδου. Το παράθυρο διαλόγου θα παραμείνει ορατό μέχρι να κληθεί η μέθοδος χωρίς ορίσματα, ή έως ότου ο χρήστης κλείσει χειροκίνητα το παράθυρο διαλόγου."
#. drhV6
#: sf_ui.xhp
@@ -25115,7 +25115,7 @@ msgctxt ""
"par_id441598864535695\n"
"help.text"
msgid "<emph>title</emph> : The title appearing on top of the dialog box. Default = \"ScriptForge\"."
-msgstr ""
+msgstr "<emph>title</emph> (τίτλος): Ο τίτλος που εμφανίζεται στην κορυφή του πλαισίου διαλόγου. Προεπιλογή = \"ScriptForge\"."
#. jvrZV
#: sf_ui.xhp
@@ -25124,7 +25124,7 @@ msgctxt ""
"par_id311598864255297\n"
"help.text"
msgid "<emph>text</emph>: An optional text to be displayed above the progress bar."
-msgstr ""
+msgstr "<emph>text</emph> (κείμενο): Ένα προαιρετικό κείμενο που θα εμφανίζεται πάνω από τη γραμμή προόδου."
#. Qj3N3
#: sf_ui.xhp
@@ -25133,7 +25133,7 @@ msgctxt ""
"par_id881598864255424\n"
"help.text"
msgid "<emph>percentage</emph>: an optional degree of progress between 0 and 100."
-msgstr ""
+msgstr "<emph>percentage</emph> (ποσοστό): ένας προαιρετικός βαθμός προόδου μεταξύ 0 και 100."
#. rVBX3
#: sf_ui.xhp
@@ -25142,7 +25142,7 @@ msgctxt ""
"bas_id651620333289753\n"
"help.text"
msgid "' Closes the Progress Bar window"
-msgstr ""
+msgstr "' Κλείνει το παράθυρο της γραμμής προόδου"
#. u3gZ8
#: sf_ui.xhp
@@ -25151,7 +25151,7 @@ msgctxt ""
"pyc_id761620333269236\n"
"help.text"
msgid "# Closes the Progress Bar window"
-msgstr ""
+msgstr "# Κλείνει το παράθυρο της γραμμής προόδου"
#. ZEG6t
#: sf_ui.xhp
@@ -25160,7 +25160,7 @@ msgctxt ""
"par_id431588587119925\n"
"help.text"
msgid "Returns <literal>True</literal> if the given window could be identified."
-msgstr ""
+msgstr "Επιστρέφει <literal>True</literal> εάν το δεδομένο παράθυρο μπορεί να αναγνωριστεί."
#. rkJbT
#: sf_ui.xhp
@@ -25169,7 +25169,7 @@ msgctxt ""
"par_id45158858711917\n"
"help.text"
msgid "<emph>windowname</emph>: see the definitions above."
-msgstr ""
+msgstr "<emph>windowname</emph> (όνομα παραθύρου): δείτε τους ορισμούς παραπάνω."
#. NyP5B
#: sf_writer.xhp
@@ -25178,7 +25178,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SFDocuments.Writer service"
-msgstr ""
+msgstr "Υπηρεσία SFDocuments.Writer"
#. 5i7vz
#: sf_writer.xhp
@@ -25187,7 +25187,7 @@ msgctxt ""
"hd_id731582733781114\n"
"help.text"
msgid "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\" name=\"Writer service\"><literal>SFDocuments</literal>.<literal>Writer</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"WriterService\"><link href=\"text/sbasic/shared/03/sf_writer.xhp\" name=\"Writer service\">Υπηρεσία <literal>SFDocuments</literal>.<literal>Writer</literal></link></variable>"
#. dUwYw
#: sf_writer.xhp
@@ -25196,7 +25196,7 @@ msgctxt ""
"par_id381589189355849\n"
"help.text"
msgid "The <literal>SFDocuments</literal> shared library provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME documents."
-msgstr ""
+msgstr "Η κοινόχρηστη βιβλιοθήκη <literal>SFDocuments</literal> παρέχει έναν αριθμό μεθόδων και ιδιοτήτων για τη διευκόλυνση της διαχείρισης και του χειρισμού των εγγράφων του %PRODUCTNAME."
#. FvF79
#: sf_writer.xhp
@@ -25205,7 +25205,7 @@ msgctxt ""
"par_id351591014177269\n"
"help.text"
msgid "Some methods are generic for all types of documents and are inherited from the <literal>SF_Document</literal> module, whereas other methods that are specific for Writer documents are defined in the <literal>SF_Writer</literal> module."
-msgstr ""
+msgstr "Ορισμένες μέθοδοι είναι γενικές για όλους τους τύπους εγγράφων και κληρονομούνται από την ενότητα <literal>SF_Document</literal>, ενώ άλλες μέθοδοι που είναι ειδικές για έγγραφα Writer ορίζονται στην ενότητα <literal>SF_Writer</literal>."
#. ojZFF
#: sf_writer.xhp
@@ -25223,7 +25223,7 @@ msgctxt ""
"hd_id581582885621841\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Κλήση υπηρεσίας"
#. 3LPrN
#: sf_writer.xhp
@@ -25232,7 +25232,7 @@ msgctxt ""
"par_id591589191059889\n"
"help.text"
msgid "The <literal>Writer</literal> service is closely related to the <literal>UI</literal> service of the <literal>ScriptForge</literal> library. Below are a few examples of how the <literal>Writer</literal> service can be invoked."
-msgstr ""
+msgstr "Η υπηρεσία <literal>Writer</literal> σχετίζεται στενά με την υπηρεσία <literal>UI</literal> της βιβλιοθήκης <literal>ScriptForge</literal>. Παρακάτω είναι μερικά παραδείγματα για το πώς μπορεί να κληθεί η υπηρεσία <literal>Writer</literal>."
#. NvcUB
#: sf_writer.xhp
@@ -25241,7 +25241,7 @@ msgctxt ""
"par_id551621623999947\n"
"help.text"
msgid "The code snippet below creates a <literal>Writer</literal> service instance that corresponds to the currently active Writer document."
-msgstr ""
+msgstr "Το παρακάτω απόσπασμα κώδικα δημιουργεί μια παρουσία υπηρεσίας <literal>Writer</literal> που αντιστοιχεί στο τρέχον ενεργό έγγραφο Writer."
#. 4P2m8
#: sf_writer.xhp
@@ -25250,7 +25250,7 @@ msgctxt ""
"par_id341621467500466\n"
"help.text"
msgid "Another way to create an instance of the <literal>Writer</literal> service is using the <literal>UI</literal> service. In the following example, a new Writer document is created and <literal>oDoc</literal> is a <literal>Writer</literal> service instance:"
-msgstr ""
+msgstr "Ένας άλλος τρόπος για να δημιουργήσετε μια παρουσία της υπηρεσίας <literal>Writer</literal> είναι η χρήση της υπηρεσίας <literal>UI</literal>. Στο παρακάτω παράδειγμα, δημιουργείται ένα νέο έγγραφο Writer και το <literal>oDoc</literal> είναι μια παρουσία υπηρεσίας <literal>Writer</literal>:"
#. dENpx
#: sf_writer.xhp
@@ -25259,7 +25259,7 @@ msgctxt ""
"par_id921621467621019\n"
"help.text"
msgid "Or using the <literal>OpenDocument</literal> method from the <literal>UI</literal> service:"
-msgstr ""
+msgstr "Ή χρησιμοποιώντας τη μέθοδο <literal>OpenDocument</literal> από την υπηρεσία <literal>UI</literal>:"
#. WopGb
#: sf_writer.xhp
@@ -25268,7 +25268,7 @@ msgctxt ""
"par_id741621467697967\n"
"help.text"
msgid "It is also possible to instantiate the <literal>Writer</literal> service using the <literal>CreateScriptService</literal> method:"
-msgstr ""
+msgstr "Είναι επίσης δυνατό να δημιουργήσετε την υπηρεσία <literal>Writer</literal> χρησιμοποιώντας τη μέθοδο <literal>CreateScriptService</literal>:"
#. WTDbw
#: sf_writer.xhp
@@ -25277,7 +25277,7 @@ msgctxt ""
"par_id271621467810774\n"
"help.text"
msgid "In the example above, \"MyFile.odt\" is the name of an open document window. If this argument is not provided, the active window is considered."
-msgstr ""
+msgstr "Στο παραπάνω παράδειγμα, το \"MyFile.odt\" είναι το όνομα ενός ανοιχτού παραθύρου εγγράφου. Εάν αυτό το όρισμα δεν παρέχεται, λαμβάνεται υπόψη το ενεργό παράθυρο."
#. EEAZF
#: sf_writer.xhp
@@ -25286,7 +25286,7 @@ msgctxt ""
"par_id71158288562139\n"
"help.text"
msgid "It is recommended to free resources after use:"
-msgstr ""
+msgstr "Συνιστάται η απελευθέρωση πόρων μετά τη χρήση:"
#. wPWMP
#: sf_writer.xhp
@@ -25295,7 +25295,7 @@ msgctxt ""
"par_id231611610666018\n"
"help.text"
msgid "However, if the document was closed using the <literal>CloseDocument</literal> method, it becomes unnecessary to free resources using the command described above."
-msgstr ""
+msgstr "Ωστόσο, εάν το έγγραφο έκλεισε χρησιμοποιώντας τη μέθοδο <literal>CloseDocument</literal>, δεν είναι απαραίτητο να απελευθερωθούν πόροι χρησιμοποιώντας την εντολή που περιγράφεται παραπάνω."
#. 7JvGW
#: sf_writer.xhp
@@ -25304,7 +25304,7 @@ msgctxt ""
"par_id71611090922315\n"
"help.text"
msgid "The use of the prefix \"<literal>SFDocuments.</literal>\" while calling the service is optional."
-msgstr ""
+msgstr "Η χρήση του προθέματος \"<literal>SFDocuments.</literal>\" κατά την κλήση της υπηρεσίας είναι προαιρετική."
#. EcQjk
#: sf_writer.xhp
@@ -25313,7 +25313,7 @@ msgctxt ""
"hd_id291631196803182\n"
"help.text"
msgid "Definitions"
-msgstr ""
+msgstr "Ορισμοί"
#. ausGU
#: sf_writer.xhp
@@ -25322,7 +25322,7 @@ msgctxt ""
"hd_id351582885195476\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Ιδιότητες"
#. VB9Jj
#: sf_writer.xhp
@@ -25331,7 +25331,7 @@ msgctxt ""
"hd_id501582887473754\n"
"help.text"
msgid "Methods"
-msgstr ""
+msgstr "Μέθοδοι"
#. ioXEB
#: sf_writer.xhp
@@ -25340,7 +25340,7 @@ msgctxt ""
"par_id891611613601554\n"
"help.text"
msgid "List of Methods in the Writer Service"
-msgstr ""
+msgstr "Κατάλογος μεθόδων στην υπηρεσία Writer"
#. 3uC2J
#: sf_writer.xhp
@@ -25403,7 +25403,7 @@ msgctxt ""
"par_id31592919577984\n"
"help.text"
msgid "Send the contents of the document to the printer. The printer may be previously defined by default, by the user or by the <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\" name=\"SetPrinter method\"><literal>SetPrinter</literal></link> method of the <link href=\"text/sbasic/03/sf_document.xhp\" name=\"Document service\">Document</link> service. Returns <literal>True</literal> when successful."
-msgstr ""
+msgstr "Στείλτε τα περιεχόμενα του εγγράφου στον εκτυπωτή. Ο εκτυπωτής μπορεί να έχει καθοριστεί προηγουμένως από προεπιλογή, από τον χρήστη ή από τη μέθοδο <link href=\"text/sbasic/03/sf_document.xhp#SetPrinter\" name=\"SetPrinter method\"><literal>SetPrinter</literal></link> της υπηρεσίας <link href=\"text/sbasic/03/sf_document.xhp\" name=\"Document service\">Document</link>. Επιστρέφει <literal>True</literal> όταν είναι επιτυχής."
#. CKDb5
#: sf_writer.xhp
@@ -25412,7 +25412,7 @@ msgctxt ""
"par_id441592919577809\n"
"help.text"
msgid "<emph>pages</emph>: The pages to print as a string, like in the user interface. Example: \"1-4;10;15-18\". Default = all pages"
-msgstr ""
+msgstr "<emph>pages</emph> (σελίδες): Οι σελίδες που θα εκτυπωθούν ως συμβολοσειρά, όπως στη διεπαφή χρήστη. Παράδειγμα: \"1-4;10;15-18\". Προεπιλογή = όλες οι σελίδες"
#. mYCkV
#: sf_writer.xhp
@@ -25421,7 +25421,7 @@ msgctxt ""
"par_id221636020923278\n"
"help.text"
msgid "<emph>copies</emph>: The number of copies, default is 1."
-msgstr ""
+msgstr "<emph>copies</emph> (αντίγραφα): Ο αριθμός των αντιγράφων, η προεπιλογή είναι 1."
#. aFEAa
#: sf_writer.xhp
@@ -25430,7 +25430,7 @@ msgctxt ""
"par_id121636020926764\n"
"help.text"
msgid "<emph>printbackground</emph>: Prints the background image when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printbackground</emph> (εκτύπωση παρασκηνίου): Εκτυπώνει την εικόνα παρασκηνίου όταν είναι <literal>True</literal> (προεπιλογή)."
#. D4krC
#: sf_writer.xhp
@@ -25439,7 +25439,7 @@ msgctxt ""
"par_id261636020927276\n"
"help.text"
msgid "<emph>printblankpages</emph>: When <literal>False</literal> (default), omits empty pages."
-msgstr ""
+msgstr "<emph>printblankpages</emph> (εκτύπωση κενών σελίδων): Όταν είναι <literal>False</literal> (προεπιλογή), παραλείπει τις κενές σελίδες."
#. LFSzm
#: sf_writer.xhp
@@ -25448,7 +25448,7 @@ msgctxt ""
"par_id021636020927484\n"
"help.text"
msgid "<emph>printevenpages</emph>: Prints even pages when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printevenpages</emph> (εκτύπωση ζυγών σελίδων): Εκτυπώνει τις ζυγές σελίδες όταν είναι <literal>True</literal> (προεπιλογή)."
#. iewN5
#: sf_writer.xhp
@@ -25457,7 +25457,7 @@ msgctxt ""
"par_id391636020927676\n"
"help.text"
msgid "<emph>printoddpages</emph>: Print odd pages when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printoddpages</emph> (εκτύπωση μονών σελίδων): Εκτύπωση των μονών σελίδων όταν είναι <literal>True</literal> (προεπιλογή)."
#. 4mYCT
#: sf_writer.xhp
@@ -25466,4 +25466,4 @@ msgctxt ""
"par_id121636021103996\n"
"help.text"
msgid "<emph>printimages</emph>: Print graphic objects when <literal>True</literal> (default)."
-msgstr ""
+msgstr "<emph>printimages</emph> (εκτύπωση εικόνων): Εκτυπώνει αντικείμενα γραφικών όταν είναι <literal>True</literal> (προεπιλογή)."
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index 90e0d72265c..50bfd957904 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/UI.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-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-06-01 09:37+0000\n"
+"PO-Revision-Date: 2022-06-15 20:56+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/el/>\n"
"Language: el\n"
@@ -33867,7 +33867,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Rows Evenly"
-msgstr "Ίση κατανομή στηλών"
+msgstr "Ισοκατανομή γραμμών"
#. qLGV4
#: WriterCommands.xcu
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index 2645df9670c..913d50a81de 100644
--- a/source/el/sc/messages.po
+++ b/source/el/sc/messages.po