summaryrefslogtreecommitdiff
path: root/android/mobile-config.py
blob: 53222b446e8788545f8676176a52d89e888dc4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/python3
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-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 tool rips out configuration pieces that are not useful for
# a mobile viewer / editing application without a full UI.
#
# ideally the postprocess/ makefile would cope with this but its
# already over-complicated by rampant conditionals.

import sys
import xml.etree.ElementTree as ET

main_xcd_discard = [
    'org.openoffice.Office/TableWizard', # huge

    'org.openoffice.Office.DataAccess/Drivers', # no database
    'org.openoffice.Office/Addons', # no addons

    # no conventional UI; reverse sorted by size
    'org.openoffice.Office.UI/GenericCommands',
    'org.openoffice.Office.UI/DrawImpressCommands',
    'org.openoffice.Office.UI/Sidebar',
    'org.openoffice.Office.UI/ChartCommands',
    'org.openoffice.Office.UI/DbuCommands',
    'org.openoffice.Office.UI/Controller',
    'org.openoffice.Office.UI/StartModuleCommands',
    'org.openoffice.Office.UI/BasicIDEWindowState',
    'org.openoffice.Office.UI/GenericCategories',
    'org.openoffice.Office.UI/ChartWindowState',
    'org.openoffice.Office.UI/BaseWindowState',
    'org.openoffice.Office.UI/BasicIDECommands',
    'org.openoffice.Office.UI/BibliographyCommands',
    'org.openoffice.Office.UI/DbQueryWindowState',
    'org.openoffice.Office.UI/DbRelationWindowState',
    'org.openoffice.Office.UI/DbTableWindowState',
    'org.openoffice.Office.UI/DbTableDataWindowState',
    'org.openoffice.Office.UI/DbBrowserWindowState',
    'org.openoffice.Office.UI/WindowContentFactories',
    'org.openoffice.Office.UI/StartModuleWindowState',
    'org.openoffice.Office.UI/GlobalSettings',
    'org.openoffice.Office.UI/BibliographyWindowState',
    'org.openoffice.Office.UI/Category',
    ]

if __name__ == '__main__':
    tree = ET.parse(sys.argv[1])
    root = tree.getroot()

    total = 0
    for child in root:
        total += len(ET.tostring(child))

    saved = 0
    to_remove = []

    for child in root:
        section = child.attrib['{http://openoffice.org/2001/registry}name']
        package = child.attrib['{http://openoffice.org/2001/registry}package']
        size = len(ET.tostring(child));
        key = '%s/%s' % (package, section)
        if key in main_xcd_discard:
            print('removed %s - saving %d' % (key, size))
            saved = saved + size
            to_remove.append(child)

    for child in to_remove:
        root.remove(child)

    print("saved %d of %d bytes: %2.f%%" % (saved, total, saved*100.0/total))

    # Don't do pointless Word -> Writer and similar conversions when we have no UI.
    nsDict = {
        "component-schema": "{http://openoffice.org/2001/registry}component-schema",
        "component-data": "{http://openoffice.org/2001/registry}component-data",
        "name": "{http://openoffice.org/2001/registry}name",
    }
    microsoftImport = '%(component-schema)s[@%(name)s="Common"]/component/group[@%(name)s="Filter"]/group[@%(name)s="Microsoft"]/group[@%(name)s="Import"]/prop' % nsDict
    props = root.findall(microsoftImport)
    for prop in props:
        prop.findall("value")[0].text = "false"

    # Disable View -> Text Boundaries
    for prop in root.findall('%(component-schema)s[@%(name)s="UI"]/templates/group[@%(name)s="ColorScheme"]/group[@%(name)s="DocBoundaries"]/prop' % nsDict):
        for value in prop.findall("value"):
            value.text = "false"

    # Disable Table -> Table Boundaries
    for prop in root.findall('%(component-schema)s[@%(name)s="UI"]/templates/group[@%(name)s="ColorScheme"]/group[@%(name)s="TableBoundaries"]/prop' % nsDict):
        for value in prop.findall("value"):
            value.text = "false"

    # Disable follow link with Ctrl+Click, use Click only for mobile app.
    for prop in root.findall('%(component-schema)s[@%(name)s="Common"]/component/group[@%(name)s="Security"]/group[@%(name)s="Scripting"]/prop[@%(name)s="HyperlinksWithCtrlClick"]' % nsDict):
        for value in prop.findall("value"):
            value.text = "false"

    # Disable Impress View -> Slide Pane
    for prop in root.findall('%(component-data)s[@%(name)s="Impress"]/node[@%(name)s="MultiPaneGUI"]/node[@%(name)s="SlideSorterBar"]/node[@%(name)s="Visible"]/prop[@%(name)s="ImpressView"]' % nsDict):
        for value in prop.findall("value"):
            value.text = "false"

    # The namespace prefixes xs and oor are present in attribute *values*, and namespace
    # declarations for them are needed, even if no actual elements or attributes with these
    # namespace prefixes are present. Fun.
    root.set('xmlns:xs', 'http://www.w3.org/2001/XMLSchema')
    root.set('xmlns:oor', 'http://openoffice.org/2001/registry')

    tree.write(sys.argv[2], 'UTF-8', True)

# vim: set shiftwidth=4 softtabstop=4 expandtab:
source/de/helpcontent2/source/text/swriter.po50
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po28
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po32
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po114
-rw-r--r--source/de/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po60
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po58
-rw-r--r--source/de/readlicense_oo/docs.po12
-rw-r--r--source/de/sc/messages.po22
-rw-r--r--source/de/scaddins/messages.po10
-rw-r--r--source/de/sfx2/classification.po36
-rw-r--r--source/de/sfx2/messages.po10
-rw-r--r--source/de/svtools/messages.po16
-rw-r--r--source/de/svx/messages.po122
-rw-r--r--source/de/sw/messages.po8
-rw-r--r--source/dgo/svtools/messages.po14
-rw-r--r--source/dgo/svx/messages.po84
-rw-r--r--source/dsb/svtools/messages.po14
-rw-r--r--source/dsb/svx/messages.po84
-rw-r--r--source/dz/svtools/messages.po14
-rw-r--r--source/dz/svx/messages.po84
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/el/helpcontent2/source/text/schart/01.po12
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/el/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/el/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/el/svtools/messages.po16
-rw-r--r--source/el/svx/messages.po84
-rw-r--r--source/en-GB/svtools/messages.po14
-rw-r--r--source/en-GB/svx/messages.po84
-rw-r--r--source/en-ZA/svtools/messages.po14
-rw-r--r--source/en-ZA/svx/messages.po84
-rw-r--r--source/eo/cui/messages.po654
-rw-r--r--source/eo/dictionaries/eo.po12
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po18
-rw-r--r--source/eo/helpcontent2/source/text/scalc/06.po15
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/eo/helpcontent2/source/text/sdraw/01.po16
-rw-r--r--source/eo/helpcontent2/source/text/swriter/00.po88
-rw-r--r--source/eo/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/eo/readlicense_oo/docs.po10
-rw-r--r--source/eo/sfx2/messages.po6
-rw-r--r--source/eo/svtools/messages.po16
-rw-r--r--source/eo/svx/messages.po112
-rw-r--r--source/es/cui/messages.po38
-rw-r--r--source/es/extensions/messages.po4
-rw-r--r--source/es/filter/messages.po4
-rw-r--r--source/es/framework/messages.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po4
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po42
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po4
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/es/helpcontent2/source/text/swriter.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po26
-rw-r--r--source/es/sfx2/classification.po24
-rw-r--r--source/es/svtools/messages.po16
-rw-r--r--source/es/svx/messages.po86
-rw-r--r--source/es/sw/messages.po6
-rw-r--r--source/es/vcl/messages.po6
-rw-r--r--source/et/svtools/messages.po14
-rw-r--r--source/et/svx/messages.po84
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po396
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po370
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po186
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/eu/svtools/messages.po16
-rw-r--r--source/eu/svx/messages.po110
-rw-r--r--source/fa/svtools/messages.po14
-rw-r--r--source/fa/svx/messages.po84
-rw-r--r--source/fi/cui/messages.po56
-rw-r--r--source/fi/filter/messages.po10
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po64
-rw-r--r--source/fi/readlicense_oo/docs.po4
-rw-r--r--source/fi/sc/messages.po84
-rw-r--r--source/fi/sd/messages.po122
-rw-r--r--source/fi/sfx2/messages.po22
-rw-r--r--source/fi/starmath/messages.po10
-rw-r--r--source/fi/svtools/messages.po16
-rw-r--r--source/fi/svx/messages.po138
-rw-r--r--source/fi/sw/messages.po50
-rw-r--r--source/fi/wizards/source/resources.po8
-rw-r--r--source/fr/chart2/messages.po42
-rw-r--r--source/fr/cui/messages.po12
-rw-r--r--source/fr/framework/messages.po46
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po82
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/fr/sc/messages.po121
-rw-r--r--source/fr/sd/messages.po66
-rw-r--r--source/fr/sfx2/classification.po36
-rw-r--r--source/fr/svtools/messages.po16
-rw-r--r--source/fr/svx/messages.po202
-rw-r--r--source/fur/svtools/messages.po16
-rw-r--r--source/fur/svx/messages.po84
-rw-r--r--source/fy/svtools/messages.po16
-rw-r--r--source/fy/svx/messages.po84
-rw-r--r--source/ga/svtools/messages.po14
-rw-r--r--source/ga/svx/messages.po84
-rw-r--r--source/gd/svtools/messages.po14
-rw-r--r--source/gd/svx/messages.po84
-rw-r--r--source/gl/svtools/messages.po16
-rw-r--r--source/gl/svx/messages.po84
-rw-r--r--source/gu/svtools/messages.po14
-rw-r--r--source/gu/svx/messages.po84
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po4
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po42
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po4
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po26
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/gug/svtools/messages.po14
-rw-r--r--source/gug/svx/messages.po84
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/he/svtools/messages.po14
-rw-r--r--source/he/svx/messages.po84
-rw-r--r--source/hi/svtools/messages.po14
-rw-r--r--source/hi/svx/messages.po84
-rw-r--r--source/hr/basctl/messages.po8
-rw-r--r--source/hr/dictionaries/mn_MN.po12
-rw-r--r--source/hr/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/hr/sfx2/classification.po26
-rw-r--r--source/hr/svtools/messages.po14
-rw-r--r--source/hr/svx/messages.po84
-rw-r--r--source/hsb/svtools/messages.po16
-rw-r--r--source/hsb/svx/messages.po84
-rw-r--r--source/hu/svtools/messages.po14
-rw-r--r--source/hu/svx/messages.po84
-rw-r--r--source/id/basctl/messages.po6
-rw-r--r--source/id/cui/messages.po46
-rw-r--r--source/id/extensions/messages.po4
-rw-r--r--source/id/extensions/source/update/check/org/openoffice/Office.po15
-rw-r--r--source/id/helpcontent2/source/text/sdraw/guide.po12
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/id/sc/messages.po8
-rw-r--r--source/id/sd/messages.po8
-rw-r--r--source/id/starmath/messages.po4
-rw-r--r--source/id/svtools/messages.po16
-rw-r--r--source/id/svx/messages.po104
-rw-r--r--source/id/sw/messages.po26
-rw-r--r--source/is/svtools/messages.po14
-rw-r--r--source/is/svx/messages.po84
-rw-r--r--source/it/chart2/messages.po126
-rw-r--r--source/it/cui/messages.po238
-rw-r--r--source/it/extras/source/gallery/share.po8
-rw-r--r--source/it/filter/messages.po12
-rw-r--r--source/it/fpicker/messages.po10
-rw-r--r--source/it/framework/messages.po44
-rw-r--r--source/it/helpcontent2/source/auxiliary.po12
-rw-r--r--source/it/helpcontent2/source/text/sbasic/python.po26
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po160
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po902
-rw-r--r--source/it/helpcontent2/source/text/scalc.po8
-rw-r--r--source/it/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po438
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po30
-rw-r--r--source/it/helpcontent2/source/text/sdatabase.po1336
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po332
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po1046
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po72
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/05.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/06.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po4
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po500
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/it/helpcontent2/source/text/simpress.po50
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po64
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po28
-rw-r--r--source/it/helpcontent2/source/text/smath/01.po26
-rw-r--r--source/it/helpcontent2/source/text/swriter.po48
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po14
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office.po34
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po310
-rw-r--r--source/it/sc/messages.po62
-rw-r--r--source/it/scp2/source/ooo.po14
-rw-r--r--source/it/sd/messages.po224
-rw-r--r--source/it/sfx2/classification.po36
-rw-r--r--source/it/sfx2/messages.po384
-rw-r--r--source/it/starmath/messages.po24
-rw-r--r--source/it/svtools/messages.po40
-rw-r--r--source/it/svx/messages.po285
-rw-r--r--source/it/sw/messages.po345
-rw-r--r--source/it/uui/messages.po42
-rw-r--r--source/it/vcl/messages.po59
-rw-r--r--source/it/xmlsecurity/messages.po4
-rw-r--r--source/ja/cui/messages.po10
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po10
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/ja/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/ja/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po12
-rw-r--r--source/ja/helpcontent2/source/text/swriter/menu.po8
-rw-r--r--source/ja/svtools/messages.po14
-rw-r--r--source/ja/svx/messages.po84
-rw-r--r--source/ja/sw/messages.po24
-rw-r--r--source/jv/svtools/messages.po14
-rw-r--r--source/jv/svx/messages.po84
-rw-r--r--source/ka/svtools/messages.po14
-rw-r--r--source/ka/svx/messages.po84
-rw-r--r--source/kab/svtools/messages.po14
-rw-r--r--source/kab/svx/messages.po84
-rw-r--r--source/kk/svtools/messages.po14
-rw-r--r--source/kk/svx/messages.po84
-rw-r--r--source/kl/svtools/messages.po14
-rw-r--r--source/kl/svx/messages.po84
-rw-r--r--source/km/svtools/messages.po14
-rw-r--r--source/km/svx/messages.po84
-rw-r--r--source/kmr-Latn/svtools/messages.po14
-rw-r--r--source/kmr-Latn/svx/messages.po84
-rw-r--r--source/kn/svtools/messages.po14
-rw-r--r--source/kn/svx/messages.po84
-rw-r--r--source/ko/svtools/messages.po14
-rw-r--r--source/ko/svx/messages.po101
-rw-r--r--source/kok/svtools/messages.po14
-rw-r--r--source/kok/svx/messages.po84
-rw-r--r--source/ks/svtools/messages.po14
-rw-r--r--source/ks/svx/messages.po84
-rw-r--r--source/ky/svtools/messages.po14
-rw-r--r--source/ky/svx/messages.po84
-rw-r--r--source/lb/svtools/messages.po14
-rw-r--r--source/lb/svx/messages.po84
-rw-r--r--source/lo/svtools/messages.po14
-rw-r--r--source/lo/svx/messages.po84
-rw-r--r--source/lt/svtools/messages.po14
-rw-r--r--source/lt/svx/messages.po84
-rw-r--r--source/lv/svtools/messages.po14
-rw-r--r--source/lv/svx/messages.po84
-rw-r--r--source/mai/svtools/messages.po14
-rw-r--r--source/mai/svx/messages.po84
-rw-r--r--source/mk/svtools/messages.po14
-rw-r--r--source/mk/svx/messages.po84
-rw-r--r--source/ml/svtools/messages.po14
-rw-r--r--source/ml/svx/messages.po84
-rw-r--r--source/mn/svtools/messages.po14
-rw-r--r--source/mn/svx/messages.po84
-rw-r--r--source/mni/svtools/messages.po14
-rw-r--r--source/mni/svx/messages.po84
-rw-r--r--source/mr/svtools/messages.po14
-rw-r--r--source/mr/svx/messages.po84
-rw-r--r--source/my/svtools/messages.po14
-rw-r--r--source/my/svx/messages.po84
-rw-r--r--source/nb/dictionaries/en/dialog.po51
-rw-r--r--source/nb/framework/messages.po6
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/nb/sfx2/messages.po8
-rw-r--r--source/nb/svtools/messages.po18
-rw-r--r--source/nb/svx/messages.po86
-rw-r--r--source/ne/svtools/messages.po14
-rw-r--r--source/ne/svx/messages.po84
-rw-r--r--source/nl/cui/messages.po16
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po944
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nl/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/nl/sd/messages.po8
-rw-r--r--source/nl/svtools/messages.po16
-rw-r--r--source/nl/svx/messages.po166
-rw-r--r--source/nl/sw/messages.po14
-rw-r--r--source/nn/dbaccess/messages.po4
-rw-r--r--source/nn/formula/messages.po24
-rw-r--r--source/nn/helpcontent2/source/text/sdatabase.po102
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/nn/sc/messages.po12
-rw-r--r--source/nn/scaddins/messages.po8
-rw-r--r--source/nn/scp2/source/ooo.po16
-rw-r--r--source/nn/sd/messages.po28
-rw-r--r--source/nn/setup_native/source/mac.po9
-rw-r--r--source/nn/sfx2/classification.po10
-rw-r--r--source/nn/sfx2/messages.po34
-rw-r--r--source/nn/starmath/messages.po20
-rw-r--r--source/nn/svtools/messages.po16
-rw-r--r--source/nn/svx/messages.po86
-rw-r--r--source/nr/svtools/messages.po14
-rw-r--r--source/nr/svx/messages.po84
-rw-r--r--source/nso/svtools/messages.po14
-rw-r--r--source/nso/svx/messages.po84
-rw-r--r--source/oc/sfx2/classification.po36
-rw-r--r--source/oc/svtools/messages.po16
-rw-r--r--source/oc/svx/messages.po84
-rw-r--r--source/om/svtools/messages.po14
-rw-r--r--source/om/svx/messages.po84
-rw-r--r--source/or/svtools/messages.po14
-rw-r--r--source/or/svx/messages.po84
-rw-r--r--source/pa-IN/svtools/messages.po14
-rw-r--r--source/pa-IN/svx/messages.po84
-rw-r--r--source/pl/cui/messages.po6
-rw-r--r--source/pl/svtools/messages.po16
-rw-r--r--source/pl/svx/messages.po86
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/pt-BR/svtools/messages.po16
-rw-r--r--source/pt-BR/svx/messages.po86
-rw-r--r--source/pt/helpcontent2/source/auxiliary.po6
-rw-r--r--source/pt/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/pt/helpcontent2/source/text/simpress.po36
-rw-r--r--source/pt/svtools/messages.po16
-rw-r--r--source/pt/svx/messages.po110
-rw-r--r--source/ro/svtools/messages.po14
-rw-r--r--source/ro/svx/messages.po84
-rw-r--r--source/ru/svtools/messages.po14
-rw-r--r--source/ru/svx/messages.po84
-rw-r--r--source/rw/svtools/messages.po14
-rw-r--r--source/rw/svx/messages.po84
-rw-r--r--source/sa-IN/svtools/messages.po14
-rw-r--r--source/sa-IN/svx/messages.po84
-rw-r--r--source/sah/svtools/messages.po14
-rw-r--r--source/sah/svx/messages.po84
-rw-r--r--source/sat/svtools/messages.po14
-rw-r--r--source/sat/svx/messages.po84
-rw-r--r--source/sd/svtools/messages.po14
-rw-r--r--source/sd/svx/messages.po84
-rw-r--r--source/si/svtools/messages.po14
-rw-r--r--source/si/svx/messages.po84
-rw-r--r--source/sid/svtools/messages.po14
-rw-r--r--source/sid/svx/messages.po84
-rw-r--r--source/sk/cui/messages.po64
-rw-r--r--source/sk/sfx2/classification.po32
-rw-r--r--source/sk/svtools/messages.po16
-rw-r--r--source/sk/svx/messages.po118
-rw-r--r--source/sq/svtools/messages.po14
-rw-r--r--source/sq/svx/messages.po84
-rw-r--r--source/sr-Latn/svtools/messages.po14
-rw-r--r--source/sr-Latn/svx/messages.po84
-rw-r--r--source/sr/svtools/messages.po14
-rw-r--r--source/sr/svx/messages.po84
-rw-r--r--source/ss/svtools/messages.po14
-rw-r--r--source/ss/svx/messages.po84
-rw-r--r--source/st/svtools/messages.po14
-rw-r--r--source/st/svx/messages.po84
-rw-r--r--source/sv/svtools/messages.po16
-rw-r--r--source/sv/svx/messages.po84
-rw-r--r--source/sw-TZ/svtools/messages.po14
-rw-r--r--source/sw-TZ/svx/messages.po84
-rw-r--r--source/szl/svtools/messages.po14
-rw-r--r--source/szl/svx/messages.po84
-rw-r--r--source/ta/svtools/messages.po14
-rw-r--r--source/ta/svx/messages.po84
-rw-r--r--source/te/svtools/messages.po14
-rw-r--r--source/te/svx/messages.po84
-rw-r--r--source/tg/svtools/messages.po14
-rw-r--r--source/tg/svx/messages.po84
-rw-r--r--source/th/svtools/messages.po14
-rw-r--r--source/th/svx/messages.po84
-rw-r--r--source/ti/svtools/messages.po14
-rw-r--r--source/ti/svx/messages.po84
-rw-r--r--source/tn/svtools/messages.po14
-rw-r--r--source/tn/svx/messages.po84
-rw-r--r--source/tr/accessibility/messages.po8
-rw-r--r--source/tr/avmedia/messages.po8
-rw-r--r--source/tr/basctl/messages.po8
-rw-r--r--source/tr/basic/messages.po8
-rw-r--r--source/tr/chart2/messages.po10
-rw-r--r--source/tr/connectivity/messages.po8
-rw-r--r--source/tr/cui/messages.po14
-rw-r--r--source/tr/dbaccess/messages.po10
-rw-r--r--source/tr/desktop/messages.po8
-rw-r--r--source/tr/dictionaries/da_DK.po18
-rw-r--r--source/tr/editeng/messages.po8
-rw-r--r--source/tr/extensions/messages.po8
-rw-r--r--source/tr/extensions/source/update/check/org/openoffice/Office.po13
-rw-r--r--source/tr/filter/messages.po8
-rw-r--r--source/tr/forms/messages.po8
-rw-r--r--source/tr/formula/messages.po4
-rw-r--r--source/tr/fpicker/messages.po8
-rw-r--r--source/tr/framework/messages.po6
-rw-r--r--source/tr/helpcontent2/source/auxiliary.po12
-rw-r--r--source/tr/helpcontent2/source/text/sdraw.po16
-rw-r--r--source/tr/librelogo/source/pythonpath.po10
-rw-r--r--source/tr/oox/messages.po6
-rw-r--r--source/tr/reportdesign/messages.po8
-rw-r--r--source/tr/sc/messages.po8
-rw-r--r--source/tr/scaddins/messages.po8
-rw-r--r--source/tr/sccomp/messages.po8
-rw-r--r--source/tr/scp2/source/ooo.po20
-rw-r--r--source/tr/sd/messages.po16
-rw-r--r--source/tr/sfx2/messages.po20
-rw-r--r--source/tr/shell/messages.po6
-rw-r--r--source/tr/starmath/messages.po8
-rw-r--r--source/tr/svl/messages.po8
-rw-r--r--source/tr/svtools/messages.po26
-rw-r--r--source/tr/svx/messages.po94
-rw-r--r--source/tr/sw/messages.po42
-rw-r--r--source/tr/uui/messages.po8
-rw-r--r--source/tr/vcl/messages.po8
-rw-r--r--source/tr/wizards/messages.po8
-rw-r--r--source/tr/writerperfect/messages.po8
-rw-r--r--source/tr/xmlsecurity/messages.po8
-rw-r--r--source/ts/svtools/messages.po14
-rw-r--r--source/ts/svx/messages.po84
-rw-r--r--source/tt/svtools/messages.po14
-rw-r--r--source/tt/svx/messages.po84
-rw-r--r--source/ug/svtools/messages.po14
-rw-r--r--source/ug/svx/messages.po84
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po28
-rw-r--r--source/uk/sc/messages.po14
-rw-r--r--source/uk/svtools/messages.po14
-rw-r--r--source/uk/svx/messages.po94
-rw-r--r--source/ur/svtools/messages.po14
-rw-r--r--source/ur/svx/messages.po84
-rw-r--r--source/uz/svtools/messages.po14
-rw-r--r--source/uz/svx/messages.po84
-rw-r--r--source/ve/svtools/messages.po14
-rw-r--r--source/ve/svx/messages.po84
-rw-r--r--source/vec/svtools/messages.po14
-rw-r--r--source/vec/svx/messages.po84
-rw-r--r--source/vi/svtools/messages.po14
-rw-r--r--source/vi/svx/messages.po84
-rw-r--r--source/xh/svtools/messages.po14
-rw-r--r--source/xh/svx/messages.po84
-rw-r--r--source/zh-CN/cui/messages.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/zh-CN/sfx2/classification.po34
-rw-r--r--source/zh-CN/svtools/messages.po14
-rw-r--r--source/zh-CN/svx/messages.po84
-rw-r--r--source/zh-CN/sw/messages.po6
-rw-r--r--source/zh-TW/cui/messages.po184
-rw-r--r--source/zh-TW/svtools/messages.po16
-rw-r--r--source/zh-TW/svx/messages.po84
-rw-r--r--source/zu/svtools/messages.po14
-rw-r--r--source/zu/svx/messages.po84
524 files changed, 15232 insertions, 13587 deletions
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 13013fbba17..c3c4e109e51 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svtoolsmessages/ab/>\n"
@@ -5040,6 +5040,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 3d29518f028..a0215200936 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svxmessages/ab/>\n"
@@ -15493,249 +15493,249 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Аҿых."
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr ""
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr ""
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr ""
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr ""
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Ахырхарҭа"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Армарахь ала"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Ацентр ала"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
#, fuzzy
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Арӷьарахь ала"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Атеқст автошәагаа"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Аинтервал"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr ""
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr ""
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Атеқст аконтур"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr ""
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr ""
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr ""
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr ""
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr ""
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr ""
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 6ce45478371..51f940c74b7 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-07-08 08:50+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560975732.000000\n"
#. fLdeV
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Wysig die veldtoewysings en databronne vir u adresboek."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 927d72c375f..b5b6c992de6 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-07-09 13:43+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/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.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976220.000000\n"
#. 3GkZj
@@ -15510,247 +15510,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Open die \"Pipet\"-dialoog, wat gebruik word om kleure in biskaart- en meta-lêergrafieke te vervang."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Af"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Verwyder basislyn formatering."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Roteer"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Die bo- of onderkant van die geselekteerde objek word as teksbasislyn gebruik."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Regop"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Die bo- of onderkant van die geselekteerde objek word as teksbasislyn gebruik en die standaard vertikale belyning van elke letter word behou."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Kantel Horisontaal"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Skuif die karakters in die teksvoorwerp horisontaal."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Kantel Vertikaal"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Kantel die karakters vertikaal in die teksobjek."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Oriëntasie"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Draai die rigting van die teks-vloei om en draai die teks horisontaal of vertikaal. Om hierdie opdrag telaat werk, moet u eers 'n ander basislyn vir die teks instel."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Belyn links"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Belyn die teks aan die linker eindpunt van die teks-basislyn."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Middel"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Sentreer die teks op die teks-basislyn."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Regsbelyn"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Belyn die teks aan die regter eindpunt van die teks-basislyn."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Outo Teksgrootte"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Pas die teksgrootte volgens die lengte van die teks-basislyn."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Afstand"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Voer in die spasie wat u tussen die teks-basislyn en die basis van individuele karakters wil ooplaat."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Inkeep"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Voer in die spasie wat u tussen die teks-basislyn se begin en die begin van individuele karakters wil ooplaat."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Kontoer"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Vertoon of verberg die teks-basislyn of die rande van die geselekteerde objek."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Teksk Kontoer"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Vertoon of verberg die grense van die individuele karakters in die teks."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Geen Skadu"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Verwyder die skadu effek wat op die teks toegepas het."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Vertikaal"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Voeg die skaduwee by tot die teks van die geselekteerde objek. Klik die knoppie, en gee die dimensies van die skadu in die X-rigting en die Y-rigting velde."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Skuinsheid"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Gee 'n skuins skaduwee na die teks in die geselekteerde voorwerp. Klik op hierdie knoppie en voer die afstand van die skaduwee in in die velde Afstand-X en Afstand-Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Afstand X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Voer die horisontale afstand in, tussen teks karakters en die rand van die skaduwee."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Afstand Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Voer die vertikale afstand in tussen die teks letters en die rand van die skaduwee."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Skadu Kleur"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Kies 'n kleur vir die teks skaduwee."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Eenvoudige instrument om teks langs 'n kurwe in te voeg sonder fancy effekte."
diff --git a/source/am/chart2/messages.po b/source/am/chart2/messages.po
index 0919c7a7c6d..9384ca156be 100644
--- a/source/am/chart2/messages.po
+++ b/source/am/chart2/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-05-05 17:14+0200\n"
-"PO-Revision-Date: 2021-06-18 21:48+0000\n"
+"PO-Revision-Date: 2021-07-28 09:58+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/am/>\n"
"Language: am\n"
@@ -1943,7 +1943,7 @@ msgstr "ሁለተኛ የ X አክሲስ በ ቻርትስ ውስጥ ማሳያ"
#: chart2/uiconfig/ui/insertaxisdlg.ui:218
msgctxt "insertaxisdlg|secondaryY"
msgid "Y ax_is"
-msgstr "Y ዘን_ግ"
+msgstr "Y አክ_ሲስ"
#. trDFK
#: chart2/uiconfig/ui/insertaxisdlg.ui:226
@@ -1955,7 +1955,7 @@ msgstr "ዋናው አክሲስ እና ሁለተኛው አክሲስ የተለያ
#: chart2/uiconfig/ui/insertaxisdlg.ui:238
msgctxt "insertaxisdlg|secondaryZ"
msgid "Z axi_s"
-msgstr "Z ዘን_ግ"
+msgstr "Z አክ_ሲስ"
#. 2LQwV
#: chart2/uiconfig/ui/insertaxisdlg.ui:258
@@ -2033,7 +2033,7 @@ msgstr "መጋጠሚያ መስመር መጨመሪያ የ X አክሲስ ወደ
#: chart2/uiconfig/ui/insertgriddlg.ui:218
msgctxt "insertgriddlg|secondaryY"
msgid "Y ax_is"
-msgstr "Y ዘን_ግ"
+msgstr "Y አክ_ሲስ"
#. a3asH
#: chart2/uiconfig/ui/insertgriddlg.ui:226
@@ -2045,7 +2045,7 @@ msgstr "መጋጠሚያ መስመር መጨመሪያ የ Y አክሲስ ወደ
#: chart2/uiconfig/ui/insertgriddlg.ui:238
msgctxt "insertgriddlg|secondaryZ"
msgid "Z axi_s"
-msgstr "Z ዘን_ግ"
+msgstr "Z አክ_ሲስ"
#. hcj99
#: chart2/uiconfig/ui/insertgriddlg.ui:246
@@ -2147,7 +2147,7 @@ msgstr "X _አክሲስ"
#: chart2/uiconfig/ui/inserttitledlg.ui:322
msgctxt "inserttitledlg|labelSecondaryYAxis"
msgid "Y ax_is"
-msgstr "Y ዘን_ግ"
+msgstr "Y አክ_ሲስ"
#. EsHDi
#: chart2/uiconfig/ui/inserttitledlg.ui:341
@@ -2315,7 +2315,7 @@ msgstr "በ ግራ"
#: chart2/uiconfig/ui/sidebarelements.ui:193
msgctxt "sidebarelements|checkbutton_no_overlay"
msgid "Show the legend without overlapping the chart"
-msgstr "ቻርቱ ላይ ሳይደረብ መግለጫ ማሳያ"
+msgstr "ቻርቱ ላይ ሳይደረብ መግለጫ ማሳያ"
#. UVbZR
#: chart2/uiconfig/ui/sidebarelements.ui:212
@@ -2705,7 +2705,7 @@ msgstr "ባህሪዎች..."
#: chart2/uiconfig/ui/sidebartype.ui:309
msgctxt "sidebartype|sort"
msgid "_Sort by X values"
-msgstr "_መለያ በ X ዋጋዎች"
+msgstr "_መለያ በ X ዋጋዎች"
#. thu3G
#: chart2/uiconfig/ui/sidebartype.ui:331
@@ -2765,7 +2765,7 @@ msgstr "ሪዞሊሽን ማሰናጃ"
#: chart2/uiconfig/ui/smoothlinesdlg.ui:217
msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton"
msgid "Set the degree of the polynomials."
-msgstr "ለ polynomials ዲግሪ ማሰናጃ "
+msgstr "ለ polynomials ዲግሪ ማሰናጃ"
#. YECJR
#: chart2/uiconfig/ui/smoothlinesdlg.ui:249
@@ -2783,7 +2783,7 @@ msgstr "በ አግድም መስመር _ማስጀመሪያ"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:137
msgctxt "steppedlinesdlg|extended_tip|step_start_rb"
msgid "Start with horizontal line and step up vertically at the end."
-msgstr "በ አግድም መስመር ማስጀመሪያ እና በ ደረጃ ወደ ላይ በ ቁመት መጨረሻ "
+msgstr "በ አግድም መስመር ማስጀመሪያ እና በ ደረጃ ወደ ላይ በ ቁመት መጨረሻ"
#. iJCAt
#: chart2/uiconfig/ui/steppedlinesdlg.ui:148
@@ -2795,7 +2795,7 @@ msgstr "ደረጃ በ _አግድም መሀከል"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:158
msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb"
msgid "Start to step up vertically and end with horizontal line."
-msgstr "በ ቁመት በ ደረጃ ወደ ላይ ማስጀመሪያ እና በ አግድም መስመር መጨረሻ "
+msgstr "በ ቁመት በ ደረጃ ወደ ላይ ማስጀመሪያ እና በ አግድም መስመር መጨረሻ"
#. vtGik
#: chart2/uiconfig/ui/steppedlinesdlg.ui:169
@@ -2807,7 +2807,7 @@ msgstr "በ አግድም መስመር _መጨረሻ"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:179
msgctxt "steppedlinesdlg|extended_tip|step_end_rb"
msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
-msgstr "በ አግድም መስመር ማስጀመሪያ እና በ ደረጃ ወደ ላይ በ ቁመት በ X ዋጋዎች መሀከል እና በ አግድም መስመር መጨረሻ "
+msgstr "በ አግድም መስመር ማስጀመሪያ እና በ ደረጃ ወደ ላይ በ ቁመት በ X ዋጋዎች መሀከል እና በ አግድም መስመር መጨረሻ"
#. X3536
#: chart2/uiconfig/ui/steppedlinesdlg.ui:190
@@ -2819,7 +2819,7 @@ msgstr "ደረጃ በ _ቁመት መሀከል"
#: chart2/uiconfig/ui/steppedlinesdlg.ui:200
msgctxt "steppedlinesdlg|extended_tip|step_center_y_rb"
msgid "Start to step up vertically to the middle of the Y values, draw a horizontal line and finish by stepping vertically to the end."
-msgstr "በ ደረጃ ወደ ላይ በ ቁመት በ Y ዋጋዎች መሀከል እና መሳያ በ አግድም መስመር መጨረሻ በ ደረጃ ወደ ላይ በ ቁመት መጨረሻ "
+msgstr "በ ደረጃ ወደ ላይ በ ቁመት በ Y ዋጋዎች መሀከል እና መሳያ በ አግድም መስመር መጨረሻ በ ደረጃ ወደ ላይ በ ቁመት መጨረሻ"
#. oDDMr
#: chart2/uiconfig/ui/steppedlinesdlg.ui:226
@@ -2849,7 +2849,7 @@ msgstr "በቁ_መት የተከመረ"
#: chart2/uiconfig/ui/titlerotationtabpage.ui:101
msgctxt "titlerotationtabpage|extended_tip|stackedCB"
msgid "Assigns vertical text orientation for cell contents."
-msgstr "የ ጽሁፍ አቅጣጫ በ ቁመት መመደቢያ ለ ክፍል ይዞታዎች "
+msgstr "የ ጽሁፍ አቅጣጫ በ ቁመት መመደቢያ ለ ክፍል ይዞታዎች"
#. 3BaMa
#: chart2/uiconfig/ui/titlerotationtabpage.ui:113
@@ -2873,7 +2873,7 @@ msgstr "ለ አንቀጽ የ ጽሁፍ አቅጣጫ ይወስኑ ለ ውስብ
#: chart2/uiconfig/ui/titlerotationtabpage.ui:163
msgctxt "titlerotationtabpage|extended_tip|dialCtrl"
msgid "Clicking anywhere on the wheel defines the variable text orientation."
-msgstr "በማንኛውም ቦታ በ ጎማው ላይ መጫን የ ጽሁፍ አቅጣጫ ይወስናል "
+msgstr "በማንኛውም ቦታ በ ጎማው ላይ መጫን የ ጽሁፍ አቅጣጫ ይወስናል"
#. syx89
#: chart2/uiconfig/ui/titlerotationtabpage.ui:178
@@ -2909,7 +2909,7 @@ msgstr "ማስተካከያ"
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:42
msgctxt "tp_3D_SceneAppearance|extended_tip|LB_SCHEME"
msgid "Select a scheme from the list box, or click any of the check boxes below."
-msgstr "ገጽታ ከ ዝርዝር ሳጥን ውስጥ ይምረጡ ወይንም ይጫኑ ማንኛውንም ምልክት ማድረጊያ ሳጥን ከ ታች በኩል "
+msgstr "ገጽታ ከ ዝርዝር ሳጥን ውስጥ ይምረጡ ወይንም ይጫኑ ማንኛውንም ምልክት ማድረጊያ ሳጥን ከ ታች በኩል"
#. EyGsf
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78
@@ -2921,7 +2921,7 @@ msgstr "_ጥላ"
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:86
msgctxt "tp_3D_SceneAppearance|extended_tip|CB_SHADING"
msgid "Applies Gouraud shading if marked, or flat shading if unmarked."
-msgstr "የ ጥላ ማጥሊያ ጥላ የሚፈጸመው ምልክት የ ተደረገበትን ወይንም ጠፍጣፋ ጥላ ምልክት ሳይደረግ ነው "
+msgstr "የ ጥላ ማጥሊያ ጥላ የሚፈጸመው ምልክት የ ተደረገበትን ወይንም ጠፍጣፋ ጥላ ምልክት ሳይደረግ ነው"
#. SMFrD
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:98
@@ -2933,7 +2933,7 @@ msgstr "_የ እቃ ድንበሮች"
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:106
msgctxt "tp_3D_SceneAppearance|extended_tip|CB_OBJECTLINES"
msgid "Shows borders around the areas by setting the line style to Solid."
-msgstr "ድንበሮች በ ቦታ ዙሪያ ማሳያዎች ማሰናጃ ለ መስመር ዘዴ ለ ሙሉ አካሎች "
+msgstr "ድንበሮች በ ቦታ ዙሪያ ማሳያዎች ማሰናጃ ለ መስመር ዘዴ ለ ሙሉ አካሎች"
#. CpWRj
#: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:118
@@ -2957,7 +2957,7 @@ msgstr "_ራይት-አንግል አክሲስ"
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:45
msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_RIGHT_ANGLED_AXES"
msgid "If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes."
-msgstr "የ ራይት-አንግል አክሲስ ካስቻሉ: እርስዎ ማዞር ይችላሉ የ ቻርትስ ይዞታዎች በ X እና Y አቅጣጫ ብቻ: አጓዳኝ ለሆኑት የ ቻርትስ ድንበሮች የ ራይት-አንግል አክሲስ ካስቻሉ በ ነባር አዲስ ለ ተፈጠረ የ 3ዲ ቻርትስ ፓይ እና ዶናት የ ራይት-አንግል አክሲስ አይደግፉም "
+msgstr "የ ራይት-አንግል አክሲስ ካስቻሉ: እርስዎ ማዞር ይችላሉ የ ቻርትስ ይዞታዎች በ X እና Y አቅጣጫ ብቻ: አጓዳኝ ለሆኑት የ ቻርትስ ድንበሮች የ ራይት-አንግል አክሲስ ካስቻሉ በ ነባር አዲስ ለ ተፈጠረ የ 3ዲ ቻርትስ ፓይ እና ዶናት የ ራይት-አንግል አክሲስ አይደግፉም"
#. y8Tyg
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:59
@@ -2987,7 +2987,7 @@ msgstr "_አስተያየት"
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:110
msgctxt "tp_3D_SceneGeometry|extended_tip|CBX_PERSPECTIVE"
msgid "Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects."
-msgstr "ምልክት ያድርጉ በ አንፃራዊ ሳጥን ውስጥ ለ መመልከት ቻርትስ እንደ በ ካሜራ ሌንስ ውስጥ: የ ማሽከርከሪያ ቁልፍ ይጠቀሙ ፐርሰንት ለ ማሰናዳት: በ ከፍተኛ ፐርሰንት እቃዎች አጠገብ እቃዎች ትልቅ ይመስላሉ: በ ርቀት ካሉ እቃዎች ይልቅ "
+msgstr "ምልክት ያድርጉ በ አንፃራዊ ሳጥን ውስጥ ለ መመልከት ቻርትስ እንደ በ ካሜራ ሌንስ ውስጥ: የ ማሽከርከሪያ ቁልፍ ይጠቀሙ ፐርሰንት ለ ማሰናዳት: በ ከፍተኛ ፐርሰንት እቃዎች አጠገብ እቃዎች ትልቅ ይመስላሉ: በ ርቀት ካሉ እቃዎች ይልቅ"
#. mdPAi
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:131
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index 54f279b109d..52222e20a28 100644
--- a/source/am/svtools/messages.po
+++ b/source/am/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-06-21 20:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/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.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559350540.000000\n"
#. fLdeV
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "የ እርስዎን የ አድራሻ ደብተር የ ዳታ ምንጭ እና የ ሜዳ ስራ ማረሚያ "
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 5eb726a55aa..43823b4b189 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -15508,247 +15508,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "የ ቀለም መቀየሪያ ንግግር መክፈቻ: እርስዎ ቀለም መቀየር የሚችሉበት የ ቢትማፕስ እና meta ንድፍ ፋይል "
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "ማጥፊያ"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "መሰረታዊ መስመር አቀራረብ ማስወገጃ"
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "ማዞሪያ"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "የ ላይኛውን ወይንም የ ታችኛውን ጠርዝ ይጠቀማል ለ ተመረጠው እቃ እንደ ጽሁፍ መሰረታዊ መስመር"
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "በ ቁመት"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "የ ላይኛውን ወይንም የ ታችኛውን ጠርዝ ይጠቀማል ለ ተመረጠው እቃ እንደ ጽሁፍ መሰረታዊ መስመር እና ዋናውን የ ቁመት ማሰለፊያ ለ እያንዳንዱ ባህሪዎች ያስቀምጣል"
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "በ አግድም ማዘንበያ"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "በ አግድም ማዝመሚያ የ ጽሁፍ እቃ ባህሪዎች "
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "በ ቁመት ማዘንበያ"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "በ ቁመት ማዝመሚያ የ ጽሁፍ እቃ ባህሪዎች "
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "አቅጣጫ"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "የ ጽሁፍ ፍሰት አቅጣጫ እንደ ነበር መመለሻ: እና ጽሁፍ መገልበጫ በ አግድም ወይንም በ ቁመት: ይህን ትእዛዝ ለ መጠቀም: እርስዎ መጀመሪያ መሰረታዊ መስመር ለ ጽሁፉ መፈጸም አለብዎት"
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "በ ግራ ማሰለፊያ"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "በ ግራ መጨረሻ በኩል ጽሁፍ ማሰለፊያ በ ጽሁፍ መሰረታዊ መስመር ላይ"
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "መሀከል"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "ጽሁፍ መሀከል ማድረጊያ በ ጽሁፍ መሰረታዊ መስመር ላይ"
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "በ ቀኝ ማሰለፊያ"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "በ ቀኝ መጨረሻ በኩል ጽሁፍ ማሰለፊያ በ ጽሁፍ መሰረታዊ መስመር ላይ"
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "በራሱ ጽሁፍ መመጠኛ"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "ጽሁፍ እንደገና መመጠኛ በ ጽሁፍ መሰረታዊ መስመር እርዝመት ልክ"
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "እርቀት"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "እርስዎ በ ጽሁፍ መሰረታዊ መስመር እና በ እያንዳንዱ ባህሪዎች መሰረት መካከል እንዲኖር የሚፈልጉትን ክፍተት መጠን ቦታ ያስገቡ "
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "ማስረጊያ"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "እርስዎ መተው የሚፈልጉትን የ ክፍተት መጠን ያስገቡ በ ጽሁፍ መሰረታዊ መስመር መጀመሪያ እና በ ጽሁፍ መጀመሪያ መካከል "
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "ቅርጽ"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "የ ጽሁፍ መሰረታዊ መስመር ወይንም የ ተመረጠው እቃ ጠርዞች ማሳያ ወይንም መደበቂያ "
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "የ ጽሁፍ ቅርጽ"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "በ ጽሁፍ ውስጥ የ እያንዳንዱን ባህሪዎች ድንበሮች ማሳያ ወይንም መደበቂያ "
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "ጥላ የለም"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "እርስዎ በ ጽሁፍ ውስጥ የ ፈጸሙትን የ ጥላ ውጤቶች ማስወገጃ "
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "በ ቁመት"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "በ ተመረጠው እቃ ውስጥ ላለው ጽሁፍ ጥላ መጨመሪያ : ይጫኑ ይህን ቁልፍ: እና ከዛ ያስገቡ የ ጥላ አቅጣጫ በ X ቦታ እና በ Y ቦታ ሳጥን ውስጥ "
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "ማዘንበያ"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "በ ተመረጠው እቃ ውስጥ ላለው ጽሁፍ ጥላ መጨመሪያ: ይጫኑ ይህን ቁልፍ: እና ከዛ ያስገቡ የ ጥላ አቅጣጫ በ X ቦታ እና በ Y ቦታ ሳጥን ውስጥ "
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "የ X እርቀት"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "በ ጽሁፍ ባህሪዎች እና በ ጥላ ጠርዞች መካከል የ አግድም እርቀት ማስገቢያ"
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "የ Y እርቀት"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "በ ጽሁፍ ባህሪዎች እና በ ጥላ ጠርዞች መካከል የ ቁመት እርቀት ማስገቢያ"
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "የ ጥላ ቀለም"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "ለ ጽሁፍ ጥላ ቀለም ይምረጡ"
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index 2fcce373361..6c8382f1ab9 100644
--- a/source/an/svtools/messages.po
+++ b/source/an/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2020-06-21 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://weblate.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/an/>\n"
@@ -5057,6 +5057,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
#, fuzzy
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 325f69dc9f8..da754500568 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-03-17 08:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
@@ -15582,250 +15582,250 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr ""
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr ""
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr ""
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr ""
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr ""
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Presentación"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr ""
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
#, fuzzy
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "~Centrau"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr ""
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr ""
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr ""
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr ""
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr ""
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr ""
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr ""
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
#, fuzzy
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "~Vertical"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr ""
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr ""
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr ""
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr ""
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index 50c79e42b10..03386302407 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-03-14 21:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ar/>\n"
@@ -5080,6 +5080,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 0dc728c6034..a90585afeac 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-06-27 17:05+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
@@ -15631,259 +15631,259 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "إيقاف تشغيل"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "دوّر"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "رأسي"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "أفقي داكن"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "إمالة رأسية"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "عرض تقديمي"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "محاذاة إلى اليسار"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "مركز"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
#, fuzzy
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "محاذاة إلى اليمين"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "حجم نص تلقائي"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "المسافة"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "إزاحة"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "خط الكفافي"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "الخط المحيط للكتابة"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
#, fuzzy
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "بلا ظل"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
#, fuzzy
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "_عامودي:"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "الإمالة"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "المسافة السينية"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "المسافة الصادية"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "لون الظل"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/as/svtools/messages.po b/source/as/svtools/messages.po
index d392cadf4a1..bf2f4ef688c 100644
--- a/source/as/svtools/messages.po
+++ b/source/as/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svtoolsmessages/as/>\n"
@@ -5095,6 +5095,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index f46869e0407..2900157accc 100644
--- a/source/as/svx/messages.po
+++ b/source/as/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svxmessages/as/>\n"
@@ -15803,262 +15803,262 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "অফ"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "আৱৰ্তন কৰক"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "থিয়"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "অনুভূমিক এঢলীয়া কৰক"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "উলম্ব এঢলীয়া কৰক"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "উপস্থাপন"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "বাওঁফালে সংৰেখন কৰক"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "কেন্দ্ৰ"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
#, fuzzy
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "সোঁফালে সংৰেখন কৰক"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "টেক্সটক স্বয়ংক্ৰিয়ভাৱে আকাৰ দিয়ক"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "উদাহৰণবোৰ (~I)"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "ইণ্ডেন্ট"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "ৰূপৰেখা"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "টেক্সটৰ ৰূপৰেখা"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "ছাঁ নাই"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "উলম্ব"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
#, fuzzy
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "শ্লাণ্ট ওপৰৰ"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "উদাহৰণবোৰ (~I)"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "উদাহৰণবোৰ (~I)"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "ছাঁৰ ৰং"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 91d3643b7c4..3ac2aba3cae 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: 2021-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-07-08 08:50+0000\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ast/>\n"
"Language: ast\n"
@@ -2716,7 +2716,7 @@ msgstr "Use'l formatu predetermináu ODF p'asegurase de que'l documentu se guard
#: sfx2/uiconfig/ui/alienwarndialog.ui:25
msgctxt "alienwarndialog|cancel"
msgid "Use %DEFAULTEXTENSION _Format"
-msgstr ""
+msgstr "Usar el _formatu %DEFAULTEXTENSION"
#. Fzgtz
#: sfx2/uiconfig/ui/alienwarndialog.ui:40
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 0965e01293d..499bce646ce 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-05-19 16:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ast/>\n"
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 9984926f700..16cc7022da9 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-05-31 13:26+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
@@ -15740,261 +15740,261 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Desactiváu"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Rotar"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Perpendicular"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Inclinar horizontalmente"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Inclinar verticalmente"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Presentación"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Alliniar a la izquierda"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Centru"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Alliñar a la drecha"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Autotamañu de testu"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "~Instancies"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Sangría"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Contornu"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Contornu de caráuteres"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Ensin solombra"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
#, fuzzy
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "_Vertical:"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Inclinación"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "~Instancies"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "~Instancies"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Color solombra"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/az/svtools/messages.po b/source/az/svtools/messages.po
index 02aa4a9ebef..8fa8b9c4ba0 100644
--- a/source/az/svtools/messages.po
+++ b/source/az/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5053,6 +5053,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
#, fuzzy
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 4d2c941bafc..b9450d68b55 100644
--- a/source/az/svx/messages.po
+++ b/source/az/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -15545,247 +15545,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Qapalı"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr ""
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr ""
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr ""
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr ""
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr ""
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr ""
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr ""
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr ""
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr ""
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr ""
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr ""
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr ""
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr ""
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr ""
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr ""
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr ""
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr ""
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr ""
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr ""
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/be/svtools/messages.po b/source/be/svtools/messages.po
index ecd004b1ce8..2cb195b8dd8 100644
--- a/source/be/svtools/messages.po
+++ b/source/be/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5071,6 +5071,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 15dbd8ad82e..141e879f56a 100644
--- a/source/be/svx/messages.po
+++ b/source/be/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Belarusian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/be/>\n"
@@ -15522,247 +15522,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Выкл"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Павярнуць"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Проста"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Гарызантальны нахіл"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Вертыкальны нахіл"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Арыентацыя"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Раўнаванне злева"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "У цэнтры"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Раўнаванне справа"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Аўта-памер тэксту"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Адлегласць"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Водступ"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Контур"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Контур тэксту"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Без ценю"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Вертыкальна"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Нахіл"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Адлегласць па X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Адлегласць па Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Колер ценю"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/03.po b/source/bg/helpcontent2/source/text/sbasic/shared/03.po
index 1a9a24c2099..8e42fed5509 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bg/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-07-01 17:53+0200\n"
-"PO-Revision-Date: 2021-07-04 19:30+0000\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1559418514.000000\n"
#. ViEWM
@@ -1796,7 +1796,7 @@ msgctxt ""
"par_id541583067456273\n"
"help.text"
msgid "<emph>Quote</emph> : if <literal>True</literal>, protect strings with double quotes. The default is <literal>False</literal>."
-msgstr ""
+msgstr "<emph>Quote</emph>: ако е <literal>True</literal>, низовете се защитават с двойни кавички. Подразбира се <literal>False</literal>."
#. CEE7o
#: sf_array.xhp
@@ -1805,7 +1805,7 @@ msgctxt ""
"par_id731582630075045\n"
"help.text"
msgid "Prepend at the beginning of the input array the items listed as arguments."
-msgstr ""
+msgstr "Добавя в началото на входния масив елементите, изброени като аргументи."
#. j5HX9
#: sf_array.xhp
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id321582630107068\n"
"help.text"
msgid "<emph>Array_1D</emph> : the pre-existing array, may be empty."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: съществуващият масив, може да е празен."
#. tMmfH
#: sf_array.xhp
@@ -1823,7 +1823,7 @@ msgctxt ""
"par_id915826301138550\n"
"help.text"
msgid "<emph>arg0, ...</emph> : a list of items to prepend to <literal>Array_1D</literal>."
-msgstr ""
+msgstr "<emph>arg0, ...</emph>: списък от елементи, които да бъдат добавени в началото на <literal>Array_1D</literal>."
#. BokfB
#: sf_array.xhp
@@ -1832,7 +1832,7 @@ msgctxt ""
"par_id91582643223166\n"
"help.text"
msgid "Prepend to the left side of a two dimension array a new column. The resulting array has the same lower boundaries as the initial two dimension array."
-msgstr ""
+msgstr "Добавя нова колона към лявата страна на двумерен масив. Полученият масив има същите долни граници като началния двумерен масив."
#. iBZMy
#: sf_array.xhp
@@ -1841,7 +1841,7 @@ msgctxt ""
"par_id621582643223545\n"
"help.text"
msgid "<emph>Array_2D</emph> : the pre-existing array, may be empty. If that array has 1 dimension, it is considered as the last column of the resulting 2 dimension array."
-msgstr ""
+msgstr "<emph>Array_2D</emph>: съществуващият масив, може да е празен. Ако масивът има само едно измерение, той се смята за последна колона на получения двумерен масив."
#. pferZ
#: sf_array.xhp
@@ -1850,7 +1850,7 @@ msgctxt ""
"par_id381582643223870\n"
"help.text"
msgid "<emph>Column</emph> : a 1 dimension array with as many items as there are rows in <literal>Array_2D</literal>."
-msgstr ""
+msgstr "<emph>Column</emph>: едномерен масив с толкова елементи, колкото са редовете в <literal>Array_2D</literal>."
#. xAruD
#: sf_array.xhp
@@ -1859,7 +1859,7 @@ msgctxt ""
"par_id851582643611291\n"
"help.text"
msgid "Prepend at the beginning of a two dimension array a new row. The resulting array has the same lower boundaries as the initial two dimension array."
-msgstr ""
+msgstr "Добавя нов ред в началото на двумерен масив. Полученият масив има същите долни граници като началния двумерен масив."
#. gN2hG
#: sf_array.xhp
@@ -1868,7 +1868,7 @@ msgctxt ""
"par_id991582643611645\n"
"help.text"
msgid "<emph>Array_2D</emph> : the pre-existing array, may be empty. If that array has 1 dimension, it is considered as the last row of the resulting 2 dimension array."
-msgstr ""
+msgstr "<emph>Array_2D</emph>: съществуващият масив, може да е празен. Ако масивът има само едно измерение, той се смята за последен ред на получения двумерен масив."
#. mZ2uk
#: sf_array.xhp
@@ -1877,7 +1877,7 @@ msgctxt ""
"par_id321582643611415\n"
"help.text"
msgid "<emph>Row</emph> : a 1 dimension array containing as many items as there are rows in <literal>Array_2D</literal>."
-msgstr ""
+msgstr "<emph>Row</emph>: едномерен масив с толкова елементи, колкото са редовете в <literal>Array_2D</literal>."
#. WmxAd
#: sf_array.xhp
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id441582648204012\n"
"help.text"
msgid "Initialize a new zero-based array with numeric values."
-msgstr ""
+msgstr "Инициализира нов индексиран от нула масив с числови стойности."
#. ArYNC
#: sf_array.xhp
@@ -1895,7 +1895,7 @@ msgctxt ""
"par_id591582648204013\n"
"help.text"
msgid "<emph>From</emph> : value of the first item."
-msgstr ""
+msgstr "<emph>From</emph>: стойност на първия елемент."
#. DFUaf
#: sf_array.xhp
@@ -1904,7 +1904,7 @@ msgctxt ""
"par_id31582648204013\n"
"help.text"
msgid "<emph>UpTo</emph> : The last item should not exceed <literal>UpTo</literal>."
-msgstr ""
+msgstr "<emph>UpTo</emph>: последният елемент не трябва да надвишава <literal>UpTo</literal>."
#. AJLMR
#: sf_array.xhp
@@ -1913,7 +1913,7 @@ msgctxt ""
"par_id581582648204014\n"
"help.text"
msgid "<emph>ByStep</emph> : The difference between two successive items (default = 1)."
-msgstr ""
+msgstr "<emph>ByStep</emph>: разликата между първите два последователни елемента (подразбира се 1)."
#. SbVGG
#: sf_array.xhp
@@ -1922,7 +1922,7 @@ msgctxt ""
"par_id451582648806764\n"
"help.text"
msgid "Return the reversed one dimension input array."
-msgstr ""
+msgstr "Връща обърнатия едномерен входен масив."
#. zvyHb
#: sf_array.xhp
@@ -1931,7 +1931,7 @@ msgctxt ""
"par_id31582648806765\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to reverse."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът, който да бъде обърнат."
#. FGBiV
#: sf_array.xhp
@@ -1940,7 +1940,7 @@ msgctxt ""
"par_id151582649200088\n"
"help.text"
msgid "Return a random permutation of a one dimension array."
-msgstr ""
+msgstr "Връща случайна пермутация на едномерен масив."
#. 3NPAi
#: sf_array.xhp
@@ -1949,7 +1949,7 @@ msgctxt ""
"par_id11582649200088\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to shuffle."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът, който да бъде разбъркан."
#. ATiL8
#: sf_array.xhp
@@ -1958,7 +1958,7 @@ msgctxt ""
"bas_id611582649200089\n"
"help.text"
msgid "' Unpredictable"
-msgstr ""
+msgstr "' Непредсказуемо"
#. 9Xgaq
#: sf_array.xhp
@@ -1967,7 +1967,7 @@ msgctxt ""
"par_id111586184185502\n"
"help.text"
msgid "Return a subset of a one dimension array."
-msgstr ""
+msgstr "Връща подмножество на едномерен масив."
#. QavhQ
#: sf_array.xhp
@@ -1976,7 +1976,7 @@ msgctxt ""
"par_id201586184185438\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to slice."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът, който да бъде разрязан."
#. hVu6E
#: sf_array.xhp
@@ -1985,7 +1985,7 @@ msgctxt ""
"par_id921586184482370\n"
"help.text"
msgid "<emph>From</emph> : The lower index in <literal>Array_1D</literal> of the subarray to extract (<literal>From</literal> included)"
-msgstr ""
+msgstr "<emph>From</emph>: долният индекс в <literal>Array_1D</literal> на подмасива, който да бъде извлечен (включително <literal>From</literal>)."
#. 968pV
#: sf_array.xhp
@@ -1994,7 +1994,7 @@ msgctxt ""
"par_id211586184471488\n"
"help.text"
msgid "<emph>UpTo</emph> : The upper index in <literal>Array_1D</literal> of the subarray to extract (<literal>UpTo</literal> included). Default = upper bound of <literal>Array_1D</literal>. If <literal>UpTo</literal> < <literal>From</literal> then the returned array is empty."
-msgstr ""
+msgstr "<emph>UpTo</emph>: горният индекс в <literal>Array_1D</literal> на подмасива, който да бъде извлечен (включително <literal>UpTo</literal>). Подразбира се горната граница на <literal>Array_1D</literal>. Ако <literal>UpTo</literal> < <literal>From</literal>, върнатият масив е празен."
#. oBwcF
#: sf_array.xhp
@@ -2003,7 +2003,7 @@ msgctxt ""
"par_id171582649483675\n"
"help.text"
msgid "Sort a one dimension array in ascending or descending order. Text comparisons can be case-sensitive or not. <br/>The array must be filled homogeneously, which means that items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
-msgstr ""
+msgstr "Сортира едномерен масив във възходящ или низходящ ред. Сравняването на текст може да бъде чувствително или нечувствително към регистъра. <br/>Масивът трябва да бъде запълнен хомогенно, тоест всички елементи трябва да бъдат скалари от един и същ тип. <br/>Не се допускат елементи <literal>Empty</literal> и <literal>Null</literal>. По конвенция <literal>Empty</literal> < <literal>Null</literal> < всяка друга скаларна стойност."
#. ABuRp
#: sf_array.xhp
@@ -2012,7 +2012,7 @@ msgctxt ""
"par_id71158264948346\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to sort."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът, който да бъде сортиран."
#. zSoB2
#: sf_array.xhp
@@ -2021,7 +2021,7 @@ msgctxt ""
"par_id21582649483175\n"
"help.text"
msgid "<emph>SortOrder</emph> : <literal>\"ASC\"</literal> (default) or <literal>\"DESC\"</literal>."
-msgstr ""
+msgstr "<emph>SortOrder</emph>: <literal>\"ASC\"</literal> (подразбира се) или <literal>\"DESC\"</literal>."
#. cYvQY
#: sf_array.xhp
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_id301582649483187\n"
"help.text"
msgid "<emph>CaseSensitive</emph> : Only for string comparisons, default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>CaseSensitive</emph>: само за сравняване на низове, подразбира се <literal>False</literal>."
#. 6CkrZ
#: sf_array.xhp
@@ -2039,7 +2039,7 @@ msgctxt ""
"par_id801582650186957\n"
"help.text"
msgid "Return a permutation of the columns of a two dimension array, sorted on the values of a given row. <br/>The row must be filled homogeneously, which means that all items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
-msgstr ""
+msgstr "Връща пермутация на колоните на двумерен масив, сортирани според стойностите на даден ред. <br/>Редът трябва да бъде запълнен хомогенно, тоест всички елементи трябва да бъдат скалари от един и същ тип. <br/>Не се допускат елементи <literal>Empty</literal> и <literal>Null</literal>. По конвенция <literal>Empty</literal> < <literal>Null</literal> < всяка друга скаларна стойност."
#. EGBcR
#: sf_array.xhp
@@ -2048,7 +2048,7 @@ msgctxt ""
"par_id921582650186869\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to sort."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът, който да бъде сортиран."
#. cBvze
#: sf_array.xhp
@@ -2057,7 +2057,7 @@ msgctxt ""
"par_id311582650186221\n"
"help.text"
msgid "<emph>RowIndex</emph> : The index of the row to sort the columns on."
-msgstr ""
+msgstr "<emph>RowIndex</emph>: индексът на реда, по който да се сортират колоните."
#. hJKGY
#: sf_array.xhp
@@ -2066,7 +2066,7 @@ msgctxt ""
"par_id34158265018698\n"
"help.text"
msgid "<emph>SortOrder</emph> : <literal>\"ASC\"</literal> (default) or <literal>\"DESC\"</literal>."
-msgstr ""
+msgstr "<emph>SortOrder</emph>: <literal>\"ASC\"</literal> (подразбира се) или <literal>\"DESC\"</literal>."
#. UdJPV
#: sf_array.xhp
@@ -2075,7 +2075,7 @@ msgctxt ""
"par_id91158265018699\n"
"help.text"
msgid "<emph>CaseSensitive</emph> : Only for string comparisons, default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>CaseSensitive</emph>: само за сравняване на низове, подразбира се <literal>False</literal>."
#. 7GkBx
#: sf_array.xhp
@@ -2084,7 +2084,7 @@ msgctxt ""
"par_id751582650954576\n"
"help.text"
msgid "Return a permutation of the rows of a two dimension array, sorted on the values of a given column. <br/>The column must be filled homogeneously, therefore all items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
-msgstr ""
+msgstr "Връща пермутация на редовете на двумерен масив, сортирани според стойностите на дадена колона. <br/>Колоната трябва да бъде запълнена хомогенно, тоест всички елементи трябва да бъдат скалари от един и същ тип. <br/>Не се допускат елементи <literal>Empty</literal> и <literal>Null</literal>. По конвенция <literal>Empty</literal> < <literal>Null</literal> < всяка друга скаларна стойност."
#. MCFqq
#: sf_array.xhp
@@ -2093,7 +2093,7 @@ msgctxt ""
"par_id621582650954370\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to sort."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът, който да бъде сортиран."
#. FeVrv
#: sf_array.xhp
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id361582650954796\n"
"help.text"
msgid "<emph>RowIndex</emph> : The index of the column to sort the rows on."
-msgstr ""
+msgstr "<emph>RowIndex</emph>: индексът на колоната, по която да се сортират редовете."
#. rxXiT
#: sf_array.xhp
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_id471582650954416\n"
"help.text"
msgid "<emph>SortOrder</emph> : <literal>\"ASC\"</literal> (default) or <literal>\"DESC\"</literal>."
-msgstr ""
+msgstr "<emph>SortOrder</emph>: <literal>\"ASC\"</literal> (подразбира се) или <literal>\"DESC\"</literal>."
#. u4SYA
#: sf_array.xhp
@@ -2120,7 +2120,7 @@ msgctxt ""
"par_id111582650954690\n"
"help.text"
msgid "<emph>CaseSensitive</emph> : Only for string comparisons, default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>CaseSensitive</emph>: само за сравняване на низове, подразбира се <literal>False</literal>."
#. R8mAZ
#: sf_array.xhp
@@ -2129,7 +2129,7 @@ msgctxt ""
"par_id611582651575637\n"
"help.text"
msgid "Swap rows and columns in a two dimension array."
-msgstr ""
+msgstr "Разменя редовете и колоните в двумерен масив."
#. bAzjH
#: sf_array.xhp
@@ -2138,7 +2138,7 @@ msgctxt ""
"par_id61582651575188\n"
"help.text"
msgid "<emph>Array_2D</emph> : The array to transpose."
-msgstr ""
+msgstr "<emph>Array_2D</emph>: масивът, който да бъде транспониран."
#. dwAVQ
#: sf_array.xhp
@@ -2147,7 +2147,7 @@ msgctxt ""
"par_id181582652996483\n"
"help.text"
msgid "Remove from a one dimension array all <literal>Null</literal>, <literal>Empty</literal> and zero-length entries. <br/>String items are trimmed with %PRODUCTNAME Basic <literal>Trim()</literal> function."
-msgstr ""
+msgstr "Премахва от едномерен масив всички елементи <literal>Null</literal>, <literal>Empty</literal> и с нулева дължина. <br/>Елементите низове се подрязват с функцията на %PRODUCTNAME Basic <literal>Trim()</literal>."
#. pgrAD
#: sf_array.xhp
@@ -2156,7 +2156,7 @@ msgctxt ""
"par_id111582652996147\n"
"help.text"
msgid "<emph>Array_1D</emph> : The array to scan."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: масивът за обхождане."
#. W6HBB
#: sf_array.xhp
@@ -2165,7 +2165,7 @@ msgctxt ""
"par_id461582653148663\n"
"help.text"
msgid "Build a set, as a zero-based array, by applying the union operator on the two input arrays. Resulting items originate from both arrays. <br/>The resulting array is sorted in ascending order. <br/>Both input arrays must be filled homogeneously, their items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden. <br/>Text comparison can be case sensitive or not."
-msgstr ""
+msgstr "Конструира множество във вид на индексиран от нула масив, като прилага операцията обединение върху двата входни масива. Резултатът включва елементите, които присъстват в поне един от двата масива. <br/>Резултатният масив е сортиран във възходящ ред. <br/>Двата входни масива трябва да са попълнени хомогенно, с други думи, елементите им трябва да са скалари от един и същ тип. Елементи със стойност <literal>Empty</literal> и <literal>Null</literal> са забранени. <br/>Сравняването на текст може да бъде чувствително или нечувствително към регистъра."
#. ZSpA9
#: sf_array.xhp
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_id4715826531488\n"
"help.text"
msgid "<emph>Array1_1D</emph> : The first input array."
-msgstr ""
+msgstr "<emph>Array1_1D</emph>: първият входен масив."
#. bD9nv
#: sf_array.xhp
@@ -2183,7 +2183,7 @@ msgctxt ""
"par_id51158265314898\n"
"help.text"
msgid "<emph>Array2_1D</emph> : The second input array."
-msgstr ""
+msgstr "<emph>Array2_1D</emph>: вторият входен масив."
#. k5Xve
#: sf_array.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id821582653148126\n"
"help.text"
msgid "<emph>CaseSensitive</emph> : Only if the arrays are populated with strings, default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>CaseSensitive</emph>: само ако масивите са попълнени с низове, подразбира се <literal>False</literal>."
#. CGMRq
#: sf_array.xhp
@@ -2201,7 +2201,7 @@ msgctxt ""
"par_id221582653464565\n"
"help.text"
msgid "Build a set of unique values derived from the input array. <br/>The input array must be filled homogeneously, its items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden. <br/>Text comparison can be case sensitive or not."
-msgstr ""
+msgstr "Конструира множество от уникални стойности на базата на входния масив. <br/>Входният масив трябва да е запълнен хомогенно, тоест елементите му трябва да са скалари от един и същ тип. Елементи <literal>Empty</literal> и <literal>Null</literal> са забранени. <br/>Сравняването на текстове може да бъде чувствително или нечувствително към регистъра."
#. g5SkL
#: sf_array.xhp
@@ -2210,7 +2210,7 @@ msgctxt ""
"par_id521582653464553\n"
"help.text"
msgid "<emph>Array_1D</emph> : The input array."
-msgstr ""
+msgstr "<emph>Array_1D</emph>: входният масив."
#. V4F4E
#: sf_array.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id41158265346441\n"
"help.text"
msgid "<emph>CaseSensitive</emph> : Only if the array is populated with texts, default = <literal>False</literal>."
-msgstr ""
+msgstr "<emph>CaseSensitive</emph>: само ако масивът е попълнен с текстове, подразбира се <literal>False</literal>."
#. GAXAU
#: sf_base.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SFDocuments.Base service"
-msgstr ""
+msgstr "Услуга SFDocuments.Base"
#. TiAmG
#: sf_base.xhp
@@ -2237,7 +2237,7 @@ msgctxt ""
"bm_id781582391760253\n"
"help.text"
msgid "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"SFDocuments.Base service\"><literal>SFDocuments</literal>.<literal>Base</literal> service</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ctrls_h1\"><link href=\"text/sbasic/shared/03/sf_base.xhp\" name=\"SFDocuments.Base service\">Услуга <literal>SFDocuments</literal>.<literal>Base</literal></link></variable>"
#. 4KK8s
#: sf_base.xhp
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id901619031958273\n"
"help.text"
msgid "The <literal>Base</literal> service provides a number of methods and properties to facilitate the management and handling of %PRODUCTNAME Base documents."
-msgstr ""
+msgstr "Услугата <literal>Base</literal> предоставя методи и свойства за управление и работа с документи на %PRODUCTNAME Base."
#. ZxoY9
#: sf_base.xhp
@@ -2255,7 +2255,7 @@ msgctxt ""
"par_id961619032060880\n"
"help.text"
msgid "This service is closely related to the <literal>Document</literal> service, which provides generic methods for handling %PRODUCTNAME documents, including Base documents. Hence, the <literal>Base</literal> service extends the <literal>Document</literal> service and provides additional methods that are specific for Base documents, enabling users to:"
-msgstr ""
+msgstr "Тази услуга е тясно свързана с услугата <literal>Document</literal>, която предоставя общи методи за работа с документи на %PRODUCTNAME, включително такива на Base. Следователно услугата <literal>Base</literal> разширява <literal>Document</literal> и предлага допълнителни методи, специфични за документите на Base, като позволява на потребителите:"
#. EK3gt
#: sf_base.xhp
@@ -2264,7 +2264,7 @@ msgctxt ""
"par_id241619032289964\n"
"help.text"
msgid "Get access to the database contained in a Base document."
-msgstr ""
+msgstr "да получават достъп до базата от данни, която се съдържа в документ на Base;"
#. y2wmE
#: sf_base.xhp
@@ -2273,7 +2273,7 @@ msgctxt ""
"par_id291619032292829\n"
"help.text"
msgid "Open form documents stored in a Base document."
-msgstr ""
+msgstr "да отварят документи с формуляри, съхранявани в документ на Base;"
#. cpnJ7
#: sf_base.xhp
@@ -2282,7 +2282,7 @@ msgctxt ""
"par_id421619032296454\n"
"help.text"
msgid "Check if a form document from a Base document is currently loaded."
-msgstr ""
+msgstr "да проверяват дали в момента е зареден документ с формуляри от документ на Base."
#. myHaG
#: sf_base.xhp
@@ -2291,7 +2291,7 @@ msgctxt ""
"par_id241619032941497\n"
"help.text"
msgid "Refer to the <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document Service\"><literal>Document</literal> service</link> to learn more about methods and properties that can be used to manage %PRODUCTNAME documents."
-msgstr ""
+msgstr "Вижте услугата <link href=\"text/sbasic/shared/03/sf_document.xhp\" name=\"Document Service\">услугата <literal>Document</literal></link>, за да научите повече за методите и свойствата, чрез които се управляват документи на %PRODUCTNAME."
#. bGpRM
#: sf_base.xhp
@@ -2300,7 +2300,7 @@ msgctxt ""
"hd_id581582885621841\n"
"help.text"
msgid "Service invocation"
-msgstr ""
+msgstr "Извикване на услугата"
#. vi6hS
#: sf_base.xhp
@@ -2309,7 +2309,7 @@ msgctxt ""
"par_id311619033224680\n"
"help.text"
msgid "The Base service can be invoked in a variety of ways. The code snippet below uses the method <literal>CreateBaseDocument</literal> from the <literal>UI</literal> service to create a new Base file."
-msgstr ""
+msgstr "Услугата Base може да бъде извикана по няколко начина. Долният програмен откъс използва метода <literal>CreateBaseDocument</literal> от услугата <literal>UI</literal>, за да създаде нов файл на Base."
#. t4HPk
#: sf_base.xhp
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id101619033666470\n"
"help.text"
msgid "Note that in all examples the object <literal>oDoc</literal> is an instance of the <literal>Base</literal> service."
-msgstr ""
+msgstr "Обърнете внимание, че във всички примери обектът <literal>oDoc</literal> е екземпляр на услугата <literal>Base</literal>."
#. hKce4
#: sf_base.xhp
@@ -2327,7 +2327,7 @@ msgctxt ""
"par_id281619033570656\n"
"help.text"
msgid "The <literal>Base</literal> service can also be instantiated while opening an existing Base file, as shown below:"
-msgstr ""
+msgstr "Екземпляр на услугата <literal>Base</literal> може да бъде създаден и чрез отваряне на съществуващ файл на Base, както е показано по-долу:"
#. noxU9
#: sf_base.xhp
@@ -2336,7 +2336,7 @@ msgctxt ""
"par_id331619033713781\n"
"help.text"
msgid "If a Base document is already open, it is possible to instantiate the <literal>Base</literal> service directly:"
-msgstr ""
+msgstr "Ако вече има отворен документ на Base, е възможно директно да се създаде екземпляр на услугата <literal>Base</literal>:"
#. DrqrF
#: sf_base.xhp
@@ -2345,7 +2345,7 @@ msgctxt ""
"par_id871623102536956\n"
"help.text"
msgid "The examples above can be translated to Python as follows:"
-msgstr ""
+msgstr "Примерите по-горе могат да бъдат преведени на Python както следва:"
#. f8Esv
#: sf_base.xhp
@@ -2354,7 +2354,7 @@ msgctxt ""
"par_id281619619980185\n"
"help.text"
msgid "The use of the <emph>\"SFDocuments.\"</emph> substring in the previous example is optional."
-msgstr ""
+msgstr "Употребата на подниза <emph>\"SFDocuments.\"</emph> в предишния пример не е задължителна."
#. oMw4m
#: sf_base.xhp
@@ -2363,7 +2363,7 @@ msgctxt ""
"par_id451619034669263\n"
"help.text"
msgid "List of Methods in the Base Service"
-msgstr ""
+msgstr "Списък с методи на услугата Base"
#. ZQnqj
#: sf_base.xhp
@@ -2372,7 +2372,7 @@ msgctxt ""
"par_id481619036833610\n"
"help.text"
msgid "Returns an array with the full names (path/name) of all form documents in the Base document as an zero-based Array of strings."
-msgstr ""
+msgstr "Връща масив с пълните имена (път/име) на всички документи с формуляри в документа на Base като индексиран от нула обект Array от низове."
#. sECnJ
#: sf_base.xhp
@@ -2381,7 +2381,7 @@ msgctxt ""
"par_id431619037334440\n"
"help.text"
msgid "The code snippet below prints the names of all form documents in the current Base document."
-msgstr ""
+msgstr "Програмният откъс по-долу отпечатва имената на всички документи с формуляри в текущия документ на Base."
#. DQb6z
#: sf_base.xhp
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id921619036922844\n"
"help.text"
msgid "To learn more about form documents, refer to the <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\"><literal>Form</literal> service help page</link>."
-msgstr ""
+msgstr "За да научите повече за документите с формуляри, вижте <link href=\"text/sbasic/shared/03/sf_form.xhp\" name=\"Form service\">помощната страница на услугата <literal>Form</literal></link>."
#. gCGqW
#: sf_base.xhp
@@ -2399,7 +2399,7 @@ msgctxt ""
"par_id191619037523467\n"
"help.text"
msgid "Depending on the parameters provided this method will return:"
-msgstr ""
+msgstr "В зависимост от подадените параметри, този метод връща:"
#. HqFmT
#: sf_base.xhp
@@ -2408,7 +2408,7 @@ msgctxt ""
"par_id781619037575043\n"
"help.text"
msgid "A zero-based Array with the names of all the forms contained in a form document (if the <literal>Form</literal> argument is absent)"
-msgstr ""
+msgstr "индексиран от нула масив (Array) с имената на всички формуляри, съдържащи се в документ с формуляри (ако отсъства аргументът <literal>Form</literal>);"
#. Q4Had
#: sf_base.xhp
@@ -2417,7 +2417,7 @@ msgctxt ""
"par_id111619037577804\n"
"help.text"
msgid "A <literal>SFDocuments.Form</literal> object representing the form specified in the <literal>Form</literal> argument."
-msgstr ""
+msgstr "обект <literal>SFDocuments.Form</literal>, който представя формуляра, зададен в аргумента <literal>Form</literal>."
#. pEtwt
#: sf_base.xhp
@@ -2426,7 +2426,7 @@ msgctxt ""
"par_id861619037838260\n"
"help.text"
msgid "<emph>formdocument:</emph> The name of a valid form document as a case-sensitive string."
-msgstr ""
+msgstr "<emph>formdocument:</emph> името на валиден документ с формуляри като чувствителен към регистъра низ."
#. L3csm
#: sf_base.xhp
@@ -2435,7 +2435,7 @@ msgctxt ""
"par_id281619037857187\n"
"help.text"
msgid "<emph>form:</emph> The name or index number of the form stored in the form document. If this argument is absent, the method will return a list with the names of all forms available in the form document."
-msgstr ""
+msgstr "<emph>form:</emph> името или индексът на формуляр, съхраняван в документа с формуляри. Ако този аргумент отсъства, методът ще върне списък с имената на всички формуляри, налични в документа с формуляри."
#. K4nQh
#: sf_base.xhp
@@ -2444,7 +2444,7 @@ msgctxt ""
"par_id921619437863617\n"
"help.text"
msgid "Although it is possible to use index numbers to refer to forms, this is only recommended when there is just one form in the form document. If there are two or more forms, it is preferable to use the form name instead."
-msgstr ""
+msgstr "Макар че е възможно за посочване на фоормуляри да се използват индексни номера, това се препоръчва само когато в документа с формуляри има един единствен формуляр. Ако има два или повече формуляра, за предпочитане е вместо това да се използва името на формуляра."
#. DoxrV
#: sf_base.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"par_id21623104676805\n"
"help.text"
msgid "The first line of the example below returns a list of all forms in the form document \"myFormDocument\". The second line returns an instance of the Form service representing the form \"myForm\"."
-msgstr ""
+msgstr "Първият ред на следващия пример връща списък на всички формуляри в документа с формуляри \"myFormDocument\". Вторият ред връща екземпляр на услугата Form, който представя формуляра \"myForm\"."
#. 9jA9n
#: sf_base.xhp
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index f7e28923b50..5914c12f180 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-06-13 09:18+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/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.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559419310.000000\n"
#. fLdeV
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Редактирайте съответствията на полета и източника на данни за вашия адресен бележник."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 7ee373c74c3..1a644f0d183 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/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-07-08 10:36+0200\n"
-"PO-Revision-Date: 2021-07-03 02:01+0000\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
+"PO-Revision-Date: 2021-07-28 09:58+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
"Language: bg\n"
@@ -5218,7 +5218,7 @@ msgstr "Дълга точка"
#: include/svx/strings.hrc:913
msgctxt "RID_SVXSTR_DASH2"
msgid "Dot (Rounded)"
-msgstr ""
+msgstr "Точка (заоблена)"
#. 2X7pw
#: include/svx/strings.hrc:914
@@ -5326,67 +5326,67 @@ msgstr "Линия с дребни точки"
#: include/svx/strings.hrc:931
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
-msgstr ""
+msgstr "Тире, точка"
#. 5ZGZy
#: include/svx/strings.hrc:932
msgctxt "RID_SVXSTR_DASH21"
msgid "Long Dot (Rounded)"
-msgstr ""
+msgstr "Дълга точка (заоблена)"
#. Ac2F2
#: include/svx/strings.hrc:933
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
-msgstr ""
+msgstr "Тире, точка, точка"
#. mWMXG
#: include/svx/strings.hrc:934
msgctxt "RID_SVXSTR_DASH23"
msgid "Dash (Rounded)"
-msgstr ""
+msgstr "Тире (заоблено)"
#. B6fd2
#: include/svx/strings.hrc:935
msgctxt "RID_SVXSTR_DASH24"
msgid "Long Dash (Rounded)"
-msgstr ""
+msgstr "Дълго тире (заоблено)"
#. ds2VE
#: include/svx/strings.hrc:936
msgctxt "RID_SVXSTR_DASH25"
msgid "Double Dash (Rounded)"
-msgstr ""
+msgstr "Двойно тире (заоблено)"
#. qtCkm
#: include/svx/strings.hrc:937
msgctxt "RID_SVXSTR_DASH26"
msgid "Dash Dot (Rounded)"
-msgstr ""
+msgstr "Тире, точка (заоблени)"
#. psNix
#: include/svx/strings.hrc:938
msgctxt "RID_SVXSTR_DASH27"
msgid "Long Dash Dot (Rounded)"
-msgstr ""
+msgstr "Дълго тире, точка (заоблени)"
#. FWkBJ
#: include/svx/strings.hrc:939
msgctxt "RID_SVXSTR_DASH28"
msgid "Double Dash Dot (Rounded)"
-msgstr ""
+msgstr "Двойно тире, точка (заоблени)"
#. eiCNz
#: include/svx/strings.hrc:940
msgctxt "RID_SVXSTR_DASH29"
msgid "Dash Dot Dot (Rounded)"
-msgstr ""
+msgstr "Тире, точка, точка (заоблени)"
#. BbE5B
#: include/svx/strings.hrc:941
msgctxt "RID_SVXSTR_DASH30"
msgid "Double Dash Dot Dot (Rounded)"
-msgstr ""
+msgstr "Двойно тире, точка, точка (заоблени)"
#. iKAwD
#: include/svx/strings.hrc:943
@@ -15508,247 +15508,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Отваря диалоговия прозорец „Замяна на цветове“, чрез който можете да заменяте цветове в растерни и метафайлови графики."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Изкл."
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Премахва подравняването по базова линия."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Завъртане"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Използва горния или долния ръб на избрания обект за базова линия на текста."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Изправени"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Използва горния или долния ръб на избрания обект като базова линия на текста и запазва оригиналното вертикално подравняване на отделните знаци."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Наклон по хоризонтала"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Накланя хоризонтално знаците в текстовия обект."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Наклон по вертикала"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Накланя вертикално знаците в текстовия обект."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Ориентация"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Обръща посоката на изливане на текста и обръща огледално самия текст по хоризонтала или вертикала. За да използвате тази команда, трябва първо да зададете друга базова линия за текста."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Подравняване отляво"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Подравнява текста с левия край на базовата линия."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Центриране"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Центрира текста върху базовата линия."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Подравняване отдясно"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Подравнява текста с десния край на базовата линия."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Авторазмер на текста"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Преоразмерява текста, за да пасне на дължината на базовата линия."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Разстояние"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Въведете желаната големина на разстоянието между базовата линия на текста и основите на отделните знаци."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Отстъп"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Въведете големината на разстоянието между началото на базовата линия и началото на текста."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Контур"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Скрива или показва базовата линия на текста или краищата на избрания обект."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Контур на текста"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Показва или скрива кантовете на отделните знаци в текста."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Без сянка"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Премахва ефектите за сянка, приложени върху текста."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Вертикална"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Добавя сянка към текста в избрания обект. Натиснете този бутон, след което въведете параметрите на сянката в полетата Разстояние - X и Разстояние - Y."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Наклоненa"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Добавя наклонена сянка към текста в избрания обект. Натиснете този бутон, след което въведете параметрите на сянката в полетата Разстояние - X и Разстояние - Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Разстояние - X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Въведете хоризонталното разстояние между знаците на текста и ръба на сянката."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Разстояние - Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Въведете вертикалното разстояние между знаците на текста и ръба на сянката."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Цвят на сянката"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Изберете цвят за сянката на текста."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Прост инструмент за изписване на текст по протежението на крива без допълнителни ефекти."
diff --git a/source/bn-IN/svtools/messages.po b/source/bn-IN/svtools/messages.po
index a2bdf76cbf9..34d5b0858bb 100644
--- a/source/bn-IN/svtools/messages.po
+++ b/source/bn-IN/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5095,6 +5095,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index 22c8aa0f5c6..af417ad0dd5 100644
--- a/source/bn-IN/svx/messages.po
+++ b/source/bn-IN/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali (India) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn_IN/>\n"
@@ -15730,263 +15730,263 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "বন্ধ"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "ঘুরানো হবে"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "সোজাসুজি"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "অনুভূমিক ঢাল"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "উল্লম্ব ঢাল"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "উপস্থাপনা"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "বাম প্রান্তিক"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "কেন্দ্র"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
#, fuzzy
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "ডান প্রান্তিক"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "লেখা স্বয়ংক্রিয়ভাবে-মানানসই"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "দৃষ্টান্ত (_I)"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "ইন্ডেন্ট"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "কনট্যুর"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "লেখার কনট্যুর"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
#, fuzzy
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "কোন ছায়া নেই"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
#, fuzzy
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "উলম্ব (_V):"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "তির্যক"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "দৃষ্টান্ত (_I)"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "দৃষ্টান্ত (_I)"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "ছায়ার রঙ"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/bn/svtools/messages.po b/source/bn/svtools/messages.po
index ca3eabbafd3..a8286d151e8 100644
--- a/source/bn/svtools/messages.po
+++ b/source/bn/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5111,6 +5111,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
#, fuzzy
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index ef660e3cefc..8fe8d99dd0a 100644
--- a/source/bn/svx/messages.po
+++ b/source/bn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn/>\n"
@@ -15823,264 +15823,264 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "বন্ধ"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "ঘুরানো হবে"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "সোজাসুজি"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "অনুভূমিক ঢাল"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "উল্লম্ব ঢাল"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "উপস্থাপনা"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "বাম প্রান্তিক"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
#, fuzzy
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "কেন্দ্র"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
#, fuzzy
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "ডান প্রান্তিক"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "লেখা স্বয়ংক্রিয়ভাবে-মানানসই"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "ইন্সট্যান্স (~I)"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "ইন্ডেন্ট"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "কনট্যুর"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "লেখার কনট্যুর"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
#, fuzzy
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "কোন ছায়া নেই"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "উল্লম্ব"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
#, fuzzy
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "তির্যক"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "ইন্সট্যান্স (~I)"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "ইন্সট্যান্স (~I)"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "ছায়ার রঙ"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/bo/svtools/messages.po b/source/bo/svtools/messages.po
index 67ce4e84c69..f098779cd3e 100644
--- a/source/bo/svtools/messages.po
+++ b/source/bo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5103,6 +5103,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
#, fuzzy
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index 3a288d08b56..13f9d36e8af 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -15843,261 +15843,261 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "བེད་མི་སྤྱོད།"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "འཁྱིལ་འཁོར།"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "ཀྲོས་འགྲེང་།"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "ཆུ་སྙོམ་གསེག་ཡོ།"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "དྲང་འཕྱང་གསེག་ཡོ།"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "གསལ་སྟོན་ཡིག་ཟིན།"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "གཡོན་སྙོམ་གཤིབ།"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
#, fuzzy
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "དཀྱིལ་བསྡུ།"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "གཡས་སྙོམ་གཤིབ།"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "རང་འགུལ་གྱིས་ཡི་གེའི་ཆེ་ཆུང་ལེགས་སྒྲིག"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "དངོས་དཔེ།(~I)"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "ནང་སྡུད།"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "སྤྱི་ཁོག"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "ཡིག་འབྲུའི་སྤྱི་ཁོག"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "གྲིབ་གཟུགས་འཁྲིད་མེད་པ།"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
#, fuzzy
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "ཡོ་བ།"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "དངོས་དཔེ།(~I)"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "དངོས་དཔེ།(~I)"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "གྲིབ་ནག་གི་ཚོས་གཞི་"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/br/svtools/messages.po b/source/br/svtools/messages.po
index 5dafccdd616..6d54567b03b 100644
--- a/source/br/svtools/messages.po
+++ b/source/br/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5087,6 +5087,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index 6f60ced6498..4cb67822a64 100644
--- a/source/br/svx/messages.po
+++ b/source/br/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Breton <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/br/>\n"
@@ -15621,247 +15621,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Diweredekaet"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "C'hwelañ"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "War-sav"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Gwintañ a-blaen"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Gwintañ a-serzh"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Reteradur"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Steudañ a-gleiz"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Kreiz"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Steudañ a-zehou"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Ment an destenn emgefreek"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Pellder"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Pukañ"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Trolinenn"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Trolinenn an destenn"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Disheol ebet"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "A-serzh"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Gwintañ"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Pellder X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Pellder Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Liv an disheol"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/brx/svtools/messages.po b/source/brx/svtools/messages.po
index 83b7e8860a3..8b65a9390d3 100644
--- a/source/brx/svtools/messages.po
+++ b/source/brx/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5085,6 +5085,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
#, fuzzy
diff --git a/source/brx/svx/messages.po b/source/brx/svx/messages.po
index 5a8fedc5690..052617a09df 100644
--- a/source/brx/svx/messages.po
+++ b/source/brx/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bodo <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/brx/>\n"
@@ -15813,262 +15813,262 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "बन्द"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "गिदिंहो"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "थोंजों"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "खेंस्ला समानथि"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "खेंस्ला थोंगोर"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "प्रेजेन्टेसन"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
#, fuzzy
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "आगसि फारसे सारियाव लाबो"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "मिरु"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
#, fuzzy
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "आगदा फारसे सारियाव लाबो"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "गावआरि महर फराय बिजाब"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "बिदिन्थिफोर"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "इनडेन्ट"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "सिमा हांखो"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "फराय बिजाब सिमा हांखो"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "जेबो सायख्लुम गैया"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "थोंगोर"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
#, fuzzy
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "खेंस्ला"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "बिदिन्थिफोर"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "बिदिन्थिफोर"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "सायख्लुम गाब"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/bs/svtools/messages.po b/source/bs/svtools/messages.po
index a13539e205d..ad19e79f45a 100644
--- a/source/bs/svtools/messages.po
+++ b/source/bs/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -5097,6 +5097,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
#, fuzzy
diff --git a/source/bs/svx/messages.po b/source/bs/svx/messages.po
index 89e118fb2c6..770e1ac17b5 100644
--- a/source/bs/svx/messages.po
+++ b/source/bs/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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"
@@ -15802,260 +15802,260 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Isključeno"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
#, fuzzy
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Rotiraj"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
#, fuzzy
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Uspravno"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
#, fuzzy
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Nagni vodoravno"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
#, fuzzy
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Nagni uspravno"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
#, fuzzy
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Prezentacija"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Poravnaj lijevo"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Centar"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Poravnaj desno"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
#, fuzzy
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Automatski odaberi veličinu teksta"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
#, fuzzy
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "~Instance"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Uvlačenje"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
#, fuzzy
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Kontura"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
#, fuzzy
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Kontura teksta"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Bez sjene"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
#, fuzzy
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "_Uspravno:"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Nagnutost"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
#, fuzzy
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "~Instance"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
#, fuzzy
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "~Instance"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
#, fuzzy
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Boja sjene"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/ca-valencia/svtools/messages.po b/source/ca-valencia/svtools/messages.po
index f3010927799..db1e5baf82d 100644
--- a/source/ca-valencia/svtools/messages.po
+++ b/source/ca-valencia/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svtoolsmessages/ca_VALENCIA/>\n"
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Editeu les assignacions de camps i la font de dades de la llibreta d'adreces."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/ca-valencia/svx/messages.po b/source/ca-valencia/svx/messages.po
index d12881968f5..9c4f84746ab 100644
--- a/source/ca-valencia/svx/messages.po
+++ b/source/ca-valencia/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svxmessages/ca_VALENCIA/>\n"
@@ -15510,247 +15510,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Obri el diàleg Reemplaçament de color, que permet reemplaçar colors en mapes de bits i gràfics de metafitxers."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Desactivat"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Elimina la formatació del punt de referència."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Gira"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Utilitza el límit superior o inferior de l'objecte seleccionat com a línia de base del text."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Vertical"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Utilitza el límit superior o inferior de l'objecte seleccionat com a línia de base del text i conserva l'alineació vertical original dels caràcters individuals."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Inclinació horitzontal"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Inclina horitzontalment els caràcters de l'objecte de text."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Inclinació vertical"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Inclina verticalment els caràcters de l'objecte de text."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Orientació"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Inverteix la direcció del flux del text i també el text de manera horitzontal o vertical. Per poder utilitzar esta orde cal que abans apliqueu una línia de base diferent al text."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Alinea a l'esquerra"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Alinea al text a l'extrem esquerre de la línia de base del text."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Centre"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Centra el text a la línia de base de text."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Alinea a la dreta"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Alinea el text a l'extrem dret de la línia de base del text."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Text de mida automàtica"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Redimensiona el text perquè s'ajuste a la longitud de la línia de base del text."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Distància"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Introduïu una xifra per a l'espai que vulgueu deixar entre la línia de base del text i la base dels caràcters individuals."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Sagnat"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Introduïu una xifra per a l'espai que vulgueu deixar entre el principi de la línia de base del text i el principi del text."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Contorn"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Mostra o amaga la línia de base del text o els límits de l'objecte seleccionat."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Vora del text"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Mostra o amaga les vores dels caràcters individuals del text."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Sense ombra"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Suprimeix els efectes d'ombra que heu aplicat al text."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Vertical"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Afig una ombra al text de l'objecte seleccionat. Feu clic a este botó i, a continuació, introduïu les dimensions de l'ombra en els quadres Distància X i Distància Y."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Inclina"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Afig una ombra inclinada al text de l'objecte seleccionat. Feu clic a este botó i, a continuació, introduïu les dimensions de l'ombra en els quadres Distància X i Distància Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Distància X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Introduïu la distància horitzontal entre els caràcters de text i la vora de l'ombra."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Distància Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Introduïu la distància vertical entre els caràcters de text i la vora de l'ombra."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Color de l'ombra"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Seleccioneu un color per a l'ombra de text."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Eina senzilla per a posar un text resseguint una corba sense cap efecte sofisticat."
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 52586aa18e9..b081b736242 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/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-07-08 10:35+0200\n"
-"PO-Revision-Date: 2021-06-18 21:48+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2021-07-14 18:31+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1564129929.000000\n"
#. GyY9M
@@ -2067,7 +2067,7 @@ msgstr "Indicador de funció"
#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_COMMANDEXPERIMENTAL"
msgid "Experimental"
-msgstr ""
+msgstr "Experimental"
#. 3FZFt
#: cui/inc/strings.hrc:385
@@ -5909,7 +5909,7 @@ msgstr "Tipus:"
#: cui/uiconfig/ui/bulletandposition.ui:280
msgctxt "bulletandposition|extended_tip|numfmtlb"
msgid "Select the level(s) that you want to modify. To apply the options to all the levels, select “1-10”."
-msgstr ""
+msgstr "Indiqueu els nivells que voleu modificar. Per a aplicar les opcions a tots els nivells, indiqueu «1-10»."
#. mp5Si
#: cui/uiconfig/ui/bulletandposition.ui:293
@@ -5927,7 +5927,7 @@ msgstr "1"
#: cui/uiconfig/ui/bulletandposition.ui:315
msgctxt "bulletandposition|extended_tip|startat"
msgid "For ordered lists, select the value of first item of the list."
-msgstr ""
+msgstr "Per a llistes ordenades, indiqueu el valor del primer element de la llista."
#. Jtk6d
#: cui/uiconfig/ui/bulletandposition.ui:328
@@ -5945,7 +5945,7 @@ msgstr "Selecciona..."
#: cui/uiconfig/ui/bulletandposition.ui:346
msgctxt "bulletandposition|extended_tip|bullet"
msgid "Select the character for the unordered list."
-msgstr ""
+msgstr "Indiqueu els caràcters per a les llistes sense ordenar."
#. oJgFH
#: cui/uiconfig/ui/bulletandposition.ui:357
diff --git a/source/ca/framework/messages.po b/source/ca/framework/messages.po
index e48e8fbe77e..9ef1f5e1f50 100644
--- a/source/ca/framework/messages.po
+++ b/source/ca/framework/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-06-11 17:08+0200\n"
-"PO-Revision-Date: 2021-03-10 13:36+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2021-07-14 18:31+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/frameworkmessages/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1516019785.000000\n"
#. 5dTDC
@@ -154,7 +154,7 @@ msgstr "~Reinicialitza"
#: framework/inc/strings.hrc:44
msgctxt "STR_LOCK_TOOLBARS"
msgid "~Lock Toolbars"
-msgstr ""
+msgstr "~Bloca les barres d'eines"
#. ntyDa
#: framework/inc/strings.hrc:45
diff --git a/source/ca/helpcontent2/source/text/sdatabase.po b/source/ca/helpcontent2/source/text/sdatabase.po
index 1231c5a3d49..4466bffe465 100644
--- a/source/ca/helpcontent2/source/text/sdatabase.po
+++ b/source/ca/helpcontent2/source/text/sdatabase.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-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-07-01 16:20+0000\n"
-"Last-Translator: Jaumej <jaume.jorba@gmail.com>\n"
+"PO-Revision-Date: 2021-07-24 16:18+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -6477,7 +6477,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>propietats avançades de la base de dades;valors autoincrementals</bookmark_value> <bookmark_value>propietats avançades de la base de dades;valors generats automàticament</bookmark_value> <bookmark_value>propietats avançades de la base de dades;retorna valors generats automàticament<bookmark_value> <bookmark_value>propietats avançades de la base de dades;valors generats per consultes</bookmark_value>"
#. kqFCk
#: dabaadvpropgen.xhp
@@ -6486,7 +6486,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\">Valors generats</link>"
#. x7uc3
#: dabaadvpropgen.xhp
@@ -6495,7 +6495,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "Specifies the options for automatically generated values for new data records."
-msgstr ""
+msgstr "Especifica les opcions per als valors generats automàticament per als registres de dades nous."
#. Dpncz
#: dabaadvpropgen.xhp
@@ -6504,7 +6504,7 @@ msgctxt ""
"par_id7684560\n"
"help.text"
msgid "The availability of the following controls depends on the type of database:"
-msgstr ""
+msgstr "La disponibilitat dels controls següents depenen del tipus de base de dades:"
#. moLhP
#: dabaadvpropgen.xhp
@@ -6513,7 +6513,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "Retrieve generated values"
-msgstr ""
+msgstr "Recupera els valors generats"
#. KGEf3
#: dabaadvpropgen.xhp
@@ -6531,7 +6531,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "Auto-increment statement"
-msgstr ""
+msgstr "Declaració d'increment automàtic"
#. Hskow
#: dabaadvpropgen.xhp
@@ -6549,7 +6549,7 @@ msgctxt ""
"par_idN105A0\n"
"help.text"
msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)"
-msgstr ""
+msgstr "CREATE TABLE \"taula1\" (\"id\" INTEGER AUTO_INCREMENT)"
#. rDQtm
#: dabaadvpropgen.xhp
@@ -6558,7 +6558,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 "En aquest exemple, heu d'introduir AUTO_INCREMENT al quadre de la <emph>Declaració d'increment automàtic</emph>."
#. GSfGJ
#: dabaadvpropgen.xhp
@@ -6567,7 +6567,7 @@ msgctxt ""
"par_idN105AA\n"
"help.text"
msgid "Query of generated values"
-msgstr ""
+msgstr "Consulta dels valors generats"
#. gCRhF
#: dabaadvpropgen.xhp
@@ -6585,7 +6585,7 @@ msgctxt ""
"par_idN105B1\n"
"help.text"
msgid "SELECT LAST_INSERT_D();"
-msgstr ""
+msgstr "SELECT LAST_INSERT_D();"
#. cLmBi
#: main.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index 8eaa394b51d..e59788080da 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/helpcontent2/source/text/shared/optionen.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-05-14 14:15+0200\n"
-"PO-Revision-Date: 2021-05-07 05:37+0000\n"
+"PO-Revision-Date: 2021-07-11 01:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1560151444.000000\n"
@@ -7278,13 +7278,12 @@ msgstr "<ahelp hid=\"modules/swriter/ui/optformataidspage/break\">Mostra tots el
#. S3ArJ
#: 01040600.xhp
-#, fuzzy
msgctxt ""
"01040600.xhp\n"
"par_idN108E5\n"
"help.text"
msgid "Hidden characters"
-msgstr "Caràcters ocults"
+msgstr "Caràcters amagats"
#. F2h2C
#: 01040600.xhp
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index db226cc8218..8908901df82 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/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-24 12:51+0200\n"
-"PO-Revision-Date: 2021-05-27 15:37+0000\n"
+"PO-Revision-Date: 2021-07-14 18:31+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1562916192.000000\n"
#. kBovX
@@ -16597,7 +16597,7 @@ msgstr "Filtre estàndard..."
#: sc/inc/strings.hrc:34
msgctxt "SCSTR_CLEAR_FILTER"
msgid "Clear Filter"
-msgstr ""
+msgstr "Neteja el filtre."
#. 7QCjE
#: sc/inc/strings.hrc:35
@@ -27324,7 +27324,7 @@ msgstr "_Opcions..."
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:41
msgctxt "pivotfielddialog|extended_tip|options"
msgid "Opens the Data Field Options dialog. The Options button is visible for filters and column or row fields only."
-msgstr ""
+msgstr "Obre el diàleg Opcions de camps de dades. El botó Opcions només és visible per a filtres i camps de columna o fila."
#. KBmND
#: sc/uiconfig/scalc/ui/pivotfielddialog.ui:133
@@ -27588,7 +27588,7 @@ msgstr "Camps de columna:"
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:214
msgctxt "pivottablelayoutdialog|extended_tip|listbox-column"
msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas."
-msgstr ""
+msgstr "Per a definir la disposició d'una taula dinàmica, arrossegueu i deixeu anar els botons del camp de dades a les àrees Filtres, Camps de fila, Camps de columna i Camps de dades."
#. WWrpy
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:244
@@ -27600,7 +27600,7 @@ msgstr "Camps de dades:"
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:295
msgctxt "pivottablelayoutdialog|extended_tip|listbox-data"
msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas."
-msgstr ""
+msgstr "Per a definir la disposició d'una taula dinàmica, arrossegueu i deixeu anar els botons del camp de dades a les àrees Filtres, Camps de fila, Camps de columna i Camps de dades."
#. BhTuC
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:325
@@ -27612,7 +27612,7 @@ msgstr "Camps de fila:"
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:374
msgctxt "pivottablelayoutdialog|extended_tip|listbox-row"
msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas."
-msgstr ""
+msgstr "Per a definir la disposició d'una taula dinàmica, arrossegueu i deixeu anar els botons del camp de dades a les àrees Filtres, Camps de fila, Camps de columna i Camps de dades."
#. 4XvEh
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:404
@@ -27624,7 +27624,7 @@ msgstr "Filtres:"
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:455
msgctxt "pivottablelayoutdialog|extended_tip|listbox-page"
msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas."
-msgstr ""
+msgstr "Per a definir la disposició d'una taula dinàmica, arrossegueu i deixeu anar els botons del camp de dades a les àrees Filtres, Camps de fila, Camps de columna i Camps de dades."
#. Scoht
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:517
@@ -27636,7 +27636,7 @@ msgstr "Camps disponibles:"
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:567
msgctxt "pivottablelayoutdialog|extended_tip|listbox-fields"
msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Filters, Row Fields, Column Fields and Data Fields areas."
-msgstr ""
+msgstr "Per a definir la disposició d'una taula dinàmica, arrossegueu i deixeu anar els botons del camp de dades a les àrees Filtres, Camps de fila, Camps de columna i Camps de dades."
#. BL7Ff
#: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:598
@@ -32100,7 +32100,7 @@ msgstr "Especifica un color per a les línies de graella al document actual."
#: sc/uiconfig/scalc/ui/tpviewpage.ui:488
msgctxt "tpviewpage|labelCursor"
msgid "Cu_rsor:"
-msgstr ""
+msgstr "Cu_rsor:"
#. AmbjZ
#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
@@ -32112,19 +32112,19 @@ msgstr ""
#: sc/uiconfig/scalc/ui/tpviewpage.ui:504
msgctxt "tpviewpage|radiobuttonThemedTip"
msgid "Show the cursor as defined in the icon theme, typically as fat cross."
-msgstr ""
+msgstr "Mostra el cursor definit al tema d'icones, típicament com a una creu grossa."
#. 3HxpG
#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
msgctxt "tpviewpage|radiobuttonSystem"
msgid "S_ystem"
-msgstr ""
+msgstr "S_istema"
#. WxBQE
#: sc/uiconfig/scalc/ui/tpviewpage.ui:520
msgctxt "tpviewpage|radiobuttonSystemTip"
msgid "Show the cursor as system default, typically an arrow pointer."
-msgstr ""
+msgstr "Mostra el cursor com a predeterminat del sistema, típicament un punter de fletxa."
#. Cb4AM
#: sc/uiconfig/scalc/ui/tpviewpage.ui:536
@@ -32142,7 +32142,7 @@ msgstr "Ob_jectes/imatges:"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
msgctxt "tpviewpage|diagram_label"
msgid "Char_ts:"
-msgstr ""
+msgstr "_Diagrames:"
#. q544D
#: sc/uiconfig/scalc/ui/tpviewpage.ui:595
diff --git a/source/ca/sfx2/classification.po b/source/ca/sfx2/classification.po
index a640dc304b0..d22a5b5ea63 100644
--- a/source/ca/sfx2/classification.po
+++ b/source/ca/sfx2/classification.po
@@ -4,14 +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-07-01 17:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-07-14 18:32+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2classification/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.6.2\n"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. TEpY4
@@ -21,7 +23,7 @@ msgctxt ""
"PolicyAuthorityName\n"
"LngText.text"
msgid "TSCP Example Policy Authority"
-msgstr ""
+msgstr "Exemple d'autoritat de directives TSCP"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. DyYWA
@@ -31,7 +33,7 @@ msgctxt ""
"PolicyName\n"
"LngText.text"
msgid "TSCP Example Policy"
-msgstr ""
+msgstr "Exemple de directiva TSCP"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. dphRC
@@ -41,7 +43,7 @@ msgctxt ""
"BusinessAuthorizationCategory_NB\n"
"LngText.text"
msgid "Non-Business"
-msgstr ""
+msgstr "Altres afers"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. MNxv5
@@ -51,7 +53,7 @@ msgctxt ""
"BusinessAuthorizationCategory_GB\n"
"LngText.text"
msgid "General Business"
-msgstr ""
+msgstr "Afers generals"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. mG4Af
@@ -61,7 +63,7 @@ msgctxt ""
"BAC_VisualMarkingPart_GB_Header\n"
"LngText.text"
msgid "Classification: General Business"
-msgstr ""
+msgstr "Classificació: afers generals"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. GXTzB
@@ -71,7 +73,7 @@ msgctxt ""
"BusinessAuthorizationCategory_Conf\n"
"LngText.text"
msgid "Confidential"
-msgstr ""
+msgstr "Confidencial"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. vDZtm
@@ -81,7 +83,7 @@ msgctxt ""
"BAC_VisualMarkingPart_Conf_Header\n"
"LngText.text"
msgid "Classification: Confidential"
-msgstr ""
+msgstr "Classificació: confidencial"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. tXtJF
@@ -91,7 +93,7 @@ msgctxt ""
"BAC_VisualMarkingPart_Conf_Footer\n"
"LngText.text"
msgid "This content is marked Confidential. Do not distribute it externally without business approval."
-msgstr ""
+msgstr "Aquest contingut és confidencial. No el distribuïu externament sense autorització de l'empresa."
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. e9jBi
@@ -101,7 +103,7 @@ msgctxt ""
"BAC_VisualMarkingPart_Conf_Watermark\n"
"LngText.text"
msgid "Confidential"
-msgstr ""
+msgstr "Confidencial"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. uajcr
@@ -111,7 +113,7 @@ msgctxt ""
"BusinessAuthorizationCategory_IO\n"
"LngText.text"
msgid "Internal Only"
-msgstr ""
+msgstr "Només per a ús intern"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. 5VVpy
@@ -121,7 +123,7 @@ msgctxt ""
"BAC_VisualMarkingPart_IO_Header\n"
"LngText.text"
msgid "Classification: Internal Only"
-msgstr ""
+msgstr "Classificació: només per a ús intern"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. k6GEi
@@ -131,7 +133,7 @@ msgctxt ""
"BAC_VisualMarkingPart_IO_Footer\n"
"LngText.text"
msgid "This content is marked Internal Only. Do not distribute it outside of the business."
-msgstr ""
+msgstr "Aquest contingut és només per a ús intern. No el distribuïu fora de l'empresa."
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. G5zDf
@@ -141,4 +143,4 @@ msgctxt ""
"BAC_VisualMarkingPart_IO_Watermark\n"
"LngText.text"
msgid "This content is marked Internal Only. Do not distribute it outside of the business."
-msgstr ""
+msgstr "Aquest contingut és només per a ús intern. No el distribuïu fora de l'empresa."
diff --git a/source/ca/svtools/messages.po b/source/ca/svtools/messages.po
index b9e76262599..e4d08afc865 100644
--- a/source/ca/svtools/messages.po
+++ b/source/ca/svtools/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-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-05-19 16:37+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
+"PO-Revision-Date: 2021-07-14 18:31+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -5002,7 +5002,7 @@ msgstr "anglès (Dinamarca)"
#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
-msgstr ""
+msgstr "sesotho"
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Editeu les assignacions de camps i la font de dades de la llibreta d'adreces."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
@@ -5758,7 +5770,7 @@ msgstr "Per a que l'extensió funcioni correctament, heu de reiniciar el %PRODUC
#: svtools/uiconfig/ui/restartdialog.ui:220
msgctxt "restartdialog|reason_extension_install"
msgid "To apply changes, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Per a aplicar els canvis, cal que reinicieu el %PRODUCTNAME."
#. AGbvD
#: svtools/uiconfig/ui/restartdialog.ui:235
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index f7c6edf90c8..5fdfb33da2c 100644
--- a/source/ca/svx/messages.po
+++ b/source/ca/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-06-07 09:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ca/>\n"
@@ -15510,247 +15510,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Obre el diàleg Reemplaçament de color, que permet reemplaçar colors en mapes de bits i gràfics de metafitxers."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Desactivat"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Elimina la formatació de la línia de base."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Gira"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Utilitza el límit superior o inferior de l'objecte seleccionat com a línia de base del text."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Vertical"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Utilitza el límit superior o inferior de l'objecte seleccionat com a línia de base del text i conserva l'alineació vertical original dels caràcters individuals."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Inclinació horitzontal"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Inclina horitzontalment els caràcters de l'objecte de text."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Inclinació vertical"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Inclina verticalment els caràcters de l'objecte de text."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Orientació"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Inverteix la direcció del flux del text i també el text de manera horitzontal o vertical. Per a poder utilitzar aquesta ordre cal que abans apliqueu una línia de base diferent en el text."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Alinea a l'esquerra"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Alinea al text a l'extrem esquerre de la línia de base del text."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Centre"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Centra el text a la línia de base de text."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Alinea a la dreta"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Alinea el text a l'extrem dret de la línia de base del text."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Text de mida automàtica"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Redimensiona el text perquè s'ajusti a la longitud de la línia de base del text."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Distància"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Introduïu una xifra per a l'espai que vulgueu deixar entre la línia de base del text i la base dels caràcters individuals."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Sagnat"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Introduïu una xifra per a l'espai que vulgueu deixar entre el principi de la línia de base del text i el principi del text."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Contorn"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Mostra o amaga la línia de base del text o els límits de l'objecte seleccionat."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Vora del text"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Mostra o amaga les vores dels caràcters individuals del text."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Sense ombra"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Suprimeix els efectes d'ombra que heu aplicat al text."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Vertical"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Afegeix una ombra al text de l'objecte seleccionat. Feu clic a aquest botó i, a continuació, introduïu les dimensions de l'ombra en els quadres Distància X i Distància Y."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Inclina"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Afegeix una ombra inclinada al text de l'objecte seleccionat. Feu clic a aquest botó i, a continuació, introduïu les dimensions de l'ombra en els quadres Distància X i Distància Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Distància X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Introduïu la distància horitzontal entre els caràcters de text i la vora de l'ombra."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Distància Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Introduïu la distància vertical entre els caràcters de text i la vora de l'ombra."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Color de l'ombra"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Seleccioneu un color per a l'ombra de text."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Eina senzilla per a posar un text resseguint una corba sense cap efecte sofisticat."
diff --git a/source/ckb/svtools/messages.po b/source/ckb/svtools/messages.po
index 891d7e47888..aebd37d100a 100644
--- a/source/ckb/svtools/messages.po
+++ b/source/ckb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svtoolsmessages/ckb/>\n"
@@ -5038,6 +5038,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr ""
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/ckb/svx/messages.po b/source/ckb/svx/messages.po
index a20d5f4dd06..1eb31ecf027 100644
--- a/source/ckb/svx/messages.po
+++ b/source/ckb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+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/svxmessages/ckb/>\n"
@@ -15480,247 +15480,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr ""
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "کوژاوەتەوە"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr ""
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr ""
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr ""
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr ""
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr ""
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr ""
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr ""
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr ""
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr ""
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "ئاڕاستە"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr ""
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "‫لەلای چەپ ڕێکیبخ"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr ""
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "ناوەڕاست"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr ""
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "لەلای ڕاست ڕێکیبخە"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr ""
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "قەبارەی خۆکاری دەق"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr ""
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr ""
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr ""
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "بۆشایی"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr ""
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr ""
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr ""
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr ""
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr ""
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "بێ سێبەر"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr ""
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "ستوونی"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr ""
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr ""
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr ""
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr ""
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr ""
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr ""
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr ""
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr ""
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr ""
diff --git a/source/cs/svtools/messages.po b/source/cs/svtools/messages.po
index fcd85832eac..0b6f6361993 100644
--- a/source/cs/svtools/messages.po
+++ b/source/cs/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-06-18 21:48+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/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.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565904885.000000\n"
#. fLdeV
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Upravte přiřazení polí a zdroj dat pro adresář."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index d0052998e0e..c722e9fd57c 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-05-07 20:37+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/cs/>\n"
@@ -15510,247 +15510,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Otevře dialogové okno Náhrada barev, pomocí kterého můžete nahrazovat barvy v rastrech a grafických metasouborech."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Vypnuto"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Odstraní formátování základní linky."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Otočit"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Použije jako základní linku textu horní nebo dolní okraj vybraného objektu."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Vzpřímené"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Použije jako základní linku textu horní nebo dolní okraj vybraného objektu a zachová původní svislé zarovnání jednotlivých znaků."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Zkosit vodorovně"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Vodorovně zkosí znaky v textovém objektu."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Zkosit svisle"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Svisle zkosí znaky v textovém objektu."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Orientace"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Obrátí směr textu a převrátí text vodorovně nebo svisle. Pro použití tohoto příkazu musíte nejprve použít na text jinou základní linku."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Zarovnat vlevo"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Zarovná text k levému konci základní linky."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Na střed"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Vystředí text na základní lince."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Zarovnat vpravo"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Zarovná text k pravému konci základní linky."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Automatická velikost textu"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Změní velikost textu, aby odpovídal délce základní linky."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Vzdálenost"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Zadejte vzdálenost mezi základní linkou a spodním okrajem jednotlivých znaků."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Odsazení"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Zadejte vzdálenost mezi začátkem základní linky a začátkem textu."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Obrys"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Zobrazí nebo skryje základní linku textu nebo okraje vybraného objektu."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Obrysy textu"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Zobrazí nebo skryje ohraničení jednotlivých znaků v textu."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Bez stínování"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Odstraní stínovaní, které bylo na text použito."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Svisle"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Přidá stín k textu ve vybraném objektu. Klepněte na toto tlačítko a poté zadejte rozměry stínu do polí Vzdálenost X a Vzdálenost Y."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Zkosení"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Přidá nakloněný stín k textu ve vybraném objektu. Klepněte na toto tlačítko a poté zadejte rozměry stínu do polí Vzdálenost X a Vzdálenost Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Vzdálenost X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Zadejte vodorovnou vzdálenost mezi znaky textu a okrajem stínu."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Vzdálenost Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Zadejte svislou vzdálenost mezi znaky textu a okrajem stínu."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Barva stínu"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Vyberte barvu stínu textu."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Jednoduchý nástroj pro umístění textu podél křivky bez zvláštních efektů."
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index cf800caec81..4d18a1b77ef 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-06-11 17:09+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-06-18 21:48+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/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.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563633284.000000\n"
#. fLdeV
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Golygwch yr aseiniadau maes a'r ffynhonnell ddata ar gyfer eich llyfr cyfeiriadau."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index 1fbd5dc78d0..26e24a02f45 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/svx/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-07-08 10:36+0200\n"
-"PO-Revision-Date: 2021-07-09 13:43+0000\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
+"PO-Revision-Date: 2021-07-14 18:31+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/cy/>\n"
"Language: 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.6.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565703641.000000\n"
#. 3GkZj
@@ -5324,7 +5324,6 @@ msgstr "Llinell gyda Dotiau Mân"
#. qqS4v
#: include/svx/strings.hrc:931
-#, fuzzy
msgctxt "RID_SVXSTR_DASH20"
msgid "Dash Dot"
msgstr "Llinell Doriad Dot"
@@ -5337,7 +5336,6 @@ msgstr "Dot Hir (Crwn)"
#. Ac2F2
#: include/svx/strings.hrc:933
-#, fuzzy
msgctxt "RID_SVXSTR_DASH22"
msgid "Dash Dot Dot"
msgstr "Llinell Doriad Dot Dot"
@@ -15512,247 +15510,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Yn agor y dialog Newidydd Lliw, lle gallwch chi amnewid lliwiau mewn graffeg ffeiliau didfap a meta."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Diffodd"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Yn dileu fformatio llinell sylfaen."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Cylchdroi"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Yn defnyddio brig neu ymyl waelod y gwrthrych a ddewiswyd fel llinell sylfaen y testun."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Unionsyth"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Yn defnyddio brig neu ymyl waelod y gwrthrych a ddewiswyd fel llinell sylfaen y testun ac yn cadw aliniad fertigol gwreiddiol y nodau unigol."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Goleddf Llorweddol"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Yn gogwyddo'r nodau yn y gwrthrych testun yn llorweddol."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Goleddf Fertigol"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Yn gogwyddo'r nodau yn y gwrthrych testun yn fertigol."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Gogwydd"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Yn gwrthdroi cyfeiriad llif y testun, ac yn fflipio'r testun yn llorweddol neu'n fertigol. I ddefnyddio'r gorchymyn hwn, yn gyntaf rhaid i chi osod llinell sylfaen wahanol i'r testun."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Alinio i'r Chwith"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Yn alinio'r testun i ben chwith llinell sylfaen y testun."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Canol"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Yn canoli'r testun ar waelodlin y testun."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Alinio i'r Dde"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Yn alinio'r testun i ben dde llinell sylfaen y testun."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "AwtoMaint Testun"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Newid maint y testun i ffitio hyd llinell sylfaen y testun."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Pellter"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Rhowch faint o le rydych chi am ei adael rhwng llinell sylfaen y testun a sylfaen y nodau unigol."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Mewnoliad"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Rhowch faint o le i adael rhwng dechrau llinell sylfaen y testun, a dechrau'r testun."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Amlinell"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Yn dangos neu'n cuddio llinell sylfaen y testun, neu ymylon y gwrthrych a ddewiswyd."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Amlinell Testun"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Yn dangos neu'n cuddio ffiniau'r nodau unigol yn y testun."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Dim Cysgod"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Yn dileu'r effeithiau cysgodol a osodwyd gennych i'r testun."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Fertigol"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Yn ychwanegu cysgod i'r testun yn y gwrthrych a ddewiswyd. Cliciwch y botwm hwn, ac yna nodwch ddimensiynau'r cysgod yn y blychau Pellter X a'r Pellter Y."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Goleddf"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Yn ychwanegu cysgod gogwydd i'r testun yn y gwrthrych a ddewiswyd. Cliciwch y botwm hwn, ac yna nodwch ddimensiynau'r cysgod yn y blychau Pellter X a'r Pellter Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Pellter X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Rhowch y pellter llorweddol rhwng y nodau testun ag ymyl y cysgod."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Pellter Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Rhowch y pellter fertigol rhwng y nodau testun ag ymyl y cysgod."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Lliw Cysgodi"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Dewiswch liw ar gyfer cysgod y testun."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Teclyn syml ar gyfer rhoi testun ar hyd cromlin heb unrhyw effeithiau ffansi."
diff --git a/source/da/helpcontent2/source/text/sbasic/shared/03.po b/source/da/helpcontent2/source/text/sbasic/shared/03.po
index 407e1dfec16..3f610759f34 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/da/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-07-01 17:53+0200\n"
-"PO-Revision-Date: 2021-06-19 05:05+0000\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/da/>\n"
"Language: 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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1560876467.000000\n"
#. ViEWM
@@ -2911,7 +2911,7 @@ msgctxt ""
"par_id71621894830071\n"
"help.text"
msgid "Converts a numeric expression or a string to a <literal>datetime</literal>.<literal>datetime</literal> Python native object."
-msgstr ""
+msgstr "Konverterer et numerisk udtryk eller en streng til et standard <literal>datetime</literal>.<literal>datetime</literal> Python-objekt."
#. SVk4F
#: sf_basic.xhp
diff --git a/source/da/helpcontent2/source/text/sdatabase.po b/source/da/helpcontent2/source/text/sdatabase.po
index 9c0df8bf089..f52a89f4e16 100644
--- a/source/da/helpcontent2/source/text/sdatabase.po
+++ b/source/da/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-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-05-31 13:28+0000\n"
+"PO-Revision-Date: 2021-07-24 16:18+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/da/>\n"
"Language: 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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
#. ugSgG
#: 02000000.xhp
@@ -6043,7 +6043,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Advanced Properties"
-msgstr ""
+msgstr "Avancerede egenskaber"
#. xBcXZ
#: dabaadvprop.xhp
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
index 776196c25f0..88c8a72f928 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/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-07-01 17:54+0200\n"
-"PO-Revision-Date: 2021-05-31 14:18+0000\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/da/>\n"
"Language: 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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1565537469.000000\n"
#. W5ukN
@@ -25646,7 +25646,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lock Toolbars"
-msgstr ""
+msgstr "Lås værktøjslinjer"
#. cAUZ8
#: GenericCommands.xcu
@@ -25656,7 +25656,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Lock or unlock all toolbars"
-msgstr ""
+msgstr "Lås alle værktøjslinjer eller lås dem op"
#. jLF5j
#: GenericCommands.xcu
@@ -35716,7 +35716,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "InspectorDeck"
-msgstr "InspekrørDæk"
+msgstr "InspektørDæk"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/da/sfx2/classification.po b/source/da/sfx2/classification.po
index a640dc304b0..25be389d90c 100644
--- a/source/da/sfx2/classification.po
+++ b/source/da/sfx2/classification.po
@@ -4,14 +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-07-01 17:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2classification/da/>\n"
+"Language: da\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.6.2\n"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. TEpY4
@@ -21,7 +23,7 @@ msgctxt ""
"PolicyAuthorityName\n"
"LngText.text"
msgid "TSCP Example Policy Authority"
-msgstr ""
+msgstr "TSCP-Eksempelretninglinje-autoritet"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. DyYWA
@@ -41,7 +43,7 @@ msgctxt ""
"BusinessAuthorizationCategory_NB\n"
"LngText.text"
msgid "Non-Business"
-msgstr ""
+msgstr "Ikke forretningsmæssig"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. MNxv5
@@ -51,7 +53,7 @@ msgctxt ""
"BusinessAuthorizationCategory_GB\n"
"LngText.text"
msgid "General Business"
-msgstr ""
+msgstr "Alment forretningsrelateret"
#. example TSCP xml file - see https://wiki.documentfoundation.org/TSCP-classification
#. mG4Af
diff --git a/source/da/svtools/messages.po b/source/da/svtools/messages.po
index cac96eb7e84..1864b35d4ee 100644
--- a/source/da/svtools/messages.po
+++ b/source/da/svtools/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-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-06-11 22:01+0000\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/da/>\n"
"Language: da\n"
@@ -5002,7 +5002,7 @@ msgstr "Engelsk (Danmark)"
#: svtools/inc/langtab.hrc:435
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sesotho"
-msgstr ""
+msgstr "Sesotho"
#. fXSja
#: svtools/uiconfig/ui/addresstemplatedialog.ui:8
@@ -5070,6 +5070,18 @@ msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog"
msgid "Edit the field assignments and the data source for your address book."
msgstr "Rediger felttildelingerne og datakilden for din adressebog."
+#. 8qKyD
+#: svtools/uiconfig/ui/calendar.ui:43
+msgctxt "calendar|STR_SVT_CALENDAR_TODAY"
+msgid "Today"
+msgstr ""
+
+#. Cr9A2
+#: svtools/uiconfig/ui/calendar.ui:58
+msgctxt "calendar|STR_SVT_CALENDAR_NONE"
+msgid "None"
+msgstr ""
+
#. vrBni
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
@@ -5758,7 +5770,7 @@ msgstr "For at denne udvidelse skal fungere korrekt, skal %PRODUCTNAME genstarte
#: svtools/uiconfig/ui/restartdialog.ui:220
msgctxt "restartdialog|reason_extension_install"
msgid "To apply changes, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "For at anvende ændringer skal %PRODUCTNAME genstartes."
#. AGbvD
#: svtools/uiconfig/ui/restartdialog.ui:235
diff --git a/source/da/svx/messages.po b/source/da/svx/messages.po
index 933262557ee..a67cf744487 100644
--- a/source/da/svx/messages.po
+++ b/source/da/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2021-07-08 10:36+0200\n"
+"POT-Creation-Date: 2021-07-28 11:31+0200\n"
"PO-Revision-Date: 2021-07-08 08:50+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/da/>\n"
@@ -15513,247 +15513,247 @@ msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap a
msgstr "Åbner dialogen Pipette, der lader dig skifte farve i bitmap- und Metafil-grafik."
#. cXHxL
-#: svx/uiconfig/ui/dockingfontwork.ui:43
+#: svx/uiconfig/ui/dockingfontwork.ui:48
msgctxt "dockingfontwork|off|tooltip_text"
msgid "Off"
msgstr "Fra"
#. toQVa
-#: svx/uiconfig/ui/dockingfontwork.ui:49
+#: svx/uiconfig/ui/dockingfontwork.ui:54
msgctxt "dockingfontwork|extended_tip|off"
msgid "Removes baseline formatting."
msgstr "Fjerner grundlinjeformatering."
#. bEChS
-#: svx/uiconfig/ui/dockingfontwork.ui:72
+#: svx/uiconfig/ui/dockingfontwork.ui:77
msgctxt "dockingfontwork|rotate|tooltip_text"
msgid "Rotate"
msgstr "Rotér"
#. 8SRC7
-#: svx/uiconfig/ui/dockingfontwork.ui:78
+#: svx/uiconfig/ui/dockingfontwork.ui:83
msgctxt "dockingfontwork|extended_tip|rotate"
msgid "Uses the top or the bottom edge of the selected object as the text baseline."
msgstr "Bruger øverste eller nederste kant af det valgte objekt som tekstens grundlinje."
#. bqAL8
-#: svx/uiconfig/ui/dockingfontwork.ui:91
+#: svx/uiconfig/ui/dockingfontwork.ui:96
msgctxt "dockingfontwork|upright|tooltip_text"
msgid "Upright"
msgstr "Opretstående"
#. T5AzQ
-#: svx/uiconfig/ui/dockingfontwork.ui:97
+#: svx/uiconfig/ui/dockingfontwork.ui:102
msgctxt "dockingfontwork|extended_tip|upright"
msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters."
msgstr "Bruger øverste eller nederste kant af det valgte objekt som tekstens grundlinje og bevarer originalens lodrette justering af de enkelte tegn."
#. dSG2E
-#: svx/uiconfig/ui/dockingfontwork.ui:110
+#: svx/uiconfig/ui/dockingfontwork.ui:115
msgctxt "dockingfontwork|hori|tooltip_text"
msgid "Slant Horizontal"
msgstr "Hæld vandret"
#. HCLXn
-#: svx/uiconfig/ui/dockingfontwork.ui:116
+#: svx/uiconfig/ui/dockingfontwork.ui:121
msgctxt "dockingfontwork|extended_tip|hori"
msgid "Horizontally slants the characters in the text object."
msgstr "Hælder tegnene i tekstobjektet vandret."
#. XnPrn
-#: svx/uiconfig/ui/dockingfontwork.ui:129
+#: svx/uiconfig/ui/dockingfontwork.ui:134
msgctxt "dockingfontwork|vert|tooltip_text"
msgid "Slant Vertical"
msgstr "Hæld lodret"
#. YuPLk
-#: svx/uiconfig/ui/dockingfontwork.ui:135
+#: svx/uiconfig/ui/dockingfontwork.ui:140
msgctxt "dockingfontwork|extended_tip|vert"
msgid "Vertically slants the characters in the text object."
msgstr "Hælder tegnene i tekstobjektet lodret."
#. AKiRy
-#: svx/uiconfig/ui/dockingfontwork.ui:159
+#: svx/uiconfig/ui/dockingfontwork.ui:164
msgctxt "dockingfontwork|orientation|tooltip_text"
msgid "Orientation"
msgstr "Retning"
#. JmdEd
-#: svx/uiconfig/ui/dockingfontwork.ui:164
+#: svx/uiconfig/ui/dockingfontwork.ui:169
msgctxt "dockingfontwork|extended_tip|orientation"
msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text."
msgstr "Vender tekstforløbsretning om, og vender teksten vandret eller lodret. For at bruge denne kommando skal du først anvende en anden grundlinje til teksten."
#. BncCM
-#: svx/uiconfig/ui/dockingfontwork.ui:187
+#: svx/uiconfig/ui/dockingfontwork.ui:192
msgctxt "dockingfontwork|left|tooltip_text"
msgid "Align Left"
msgstr "Venstrejusteret"
#. Kf8Ro
-#: svx/uiconfig/ui/dockingfontwork.ui:193
+#: svx/uiconfig/ui/dockingfontwork.ui:198
msgctxt "dockingfontwork|extended_tip|left"
msgid "Aligns the text to the left end of the text baseline."
msgstr "Justerer teksten til venstre på tekstens grundlinje."
#. Gd3Fn
-#: svx/uiconfig/ui/dockingfontwork.ui:206
+#: svx/uiconfig/ui/dockingfontwork.ui:211
msgctxt "dockingfontwork|center|tooltip_text"
msgid "Center"
msgstr "Centreret"
#. QvAnd
-#: svx/uiconfig/ui/dockingfontwork.ui:212
+#: svx/uiconfig/ui/dockingfontwork.ui:217
msgctxt "dockingfontwork|extended_tip|center"
msgid "Centers the text on the text baseline."
msgstr "Centrerer teksten på tekstens grundlinje."
#. rdSr2
-#: svx/uiconfig/ui/dockingfontwork.ui:225
+#: svx/uiconfig/ui/dockingfontwork.ui:230
msgctxt "dockingfontwork|right|tooltip_text"
msgid "Align Right"
msgstr "Højrejusteret"
#. 5HCvt
-#: svx/uiconfig/ui/dockingfontwork.ui:231
+#: svx/uiconfig/ui/dockingfontwork.ui:236
msgctxt "dockingfontwork|extended_tip|right"
msgid "Aligns the text to the right end of the text baseline."
msgstr "Justerer teksten til venstre på tekstens grundlinje."
#. nQTV8
-#: svx/uiconfig/ui/dockingfontwork.ui:244
+#: svx/uiconfig/ui/dockingfontwork.ui:249
msgctxt "dockingfontwork|autosize|tooltip_text"
msgid "AutoSize Text"
msgstr "Automatisk tekststørrelse"
#. 3eAum
-#: svx/uiconfig/ui/dockingfontwork.ui:250
+#: svx/uiconfig/ui/dockingfontwork.ui:255
msgctxt "dockingfontwork|extended_tip|autosize"
msgid "Resizes the text to fit the length of the text baseline."
msgstr "Justerer teksten til venstre på tekstens grundlinje."
#. YDeQs
-#: svx/uiconfig/ui/dockingfontwork.ui:288
+#: svx/uiconfig/ui/dockingfontwork.ui:293
msgctxt "dockingfontwork|distance|tooltip_text"
msgid "Distance"
msgstr "Afstand"
#. tZx4a
-#: svx/uiconfig/ui/dockingfontwork.ui:294
+#: svx/uiconfig/ui/dockingfontwork.ui:299
msgctxt "dockingfontwork|extended_tip|distance"
msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters."
msgstr "Indtast den plads, der skal være mellem tekstens grundlinje og basen af de enkelte tegn."
#. 5Dm35
-#: svx/uiconfig/ui/dockingfontwork.ui:332
+#: svx/uiconfig/ui/dockingfontwork.ui:337
msgctxt "dockingfontwork|indent|tooltip_text"
msgid "Indent"
msgstr "Indrykning"
#. nQpqX
-#: svx/uiconfig/ui/dockingfontwork.ui:339
+#: svx/uiconfig/ui/dockingfontwork.ui:344
msgctxt "dockingfontwork|extended_tip|indent"
msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text."
msgstr "Indtast hvor meget plads, der skal være mellem begyndelsen af tekstens grundlinje og begyndelsen af teksten."
#. TG72M
-#: svx/uiconfig/ui/dockingfontwork.ui:363
+#: svx/uiconfig/ui/dockingfontwork.ui:368
msgctxt "dockingfontwork|contour|tooltip_text"
msgid "Contour"
msgstr "Kontur"
#. hwZ5Q
-#: svx/uiconfig/ui/dockingfontwork.ui:368
+#: svx/uiconfig/ui/dockingfontwork.ui:373
msgctxt "dockingfontwork|extended_tip|contour"
msgid "Shows or hides the text baseline, or the edges of the selected object."
msgstr "Viser eller skjuler tekstens grundlinje eller kanterne af det valgte objekt."
#. MA9vQ
-#: svx/uiconfig/ui/dockingfontwork.ui:381
+#: svx/uiconfig/ui/dockingfontwork.ui:386
msgctxt "dockingfontwork|textcontour|tooltip_text"
msgid "Text Contour"
msgstr "Tekstkontur"
#. ZjKrD
-#: svx/uiconfig/ui/dockingfontwork.ui:386
+#: svx/uiconfig/ui/dockingfontwork.ui:391
msgctxt "dockingfontwork|extended_tip|textcontour"
msgid "Shows or hides the borders of the individual characters in the text."
msgstr "Viser eller skjuler kanterne af de enkelte tegn i teksten."
#. kMFUd
-#: svx/uiconfig/ui/dockingfontwork.ui:409
+#: svx/uiconfig/ui/dockingfontwork.ui:414
msgctxt "dockingfontwork|noshadow|tooltip_text"
msgid "No Shadow"
msgstr "Ingen skygge"
#. WfHcG
-#: svx/uiconfig/ui/dockingfontwork.ui:415
+#: svx/uiconfig/ui/dockingfontwork.ui:420
msgctxt "dockingfontwork|extended_tip|noshadow"
msgid "Removes the shadow effects that you applied to the text."
msgstr "Fjerner skyggeeffekter som du anvendte til teksten."
#. 5BrEJ
-#: svx/uiconfig/ui/dockingfontwork.ui:428
+#: svx/uiconfig/ui/dockingfontwork.ui:433
msgctxt "dockingfontwork|vertical|tooltip_text"
msgid "Vertical"
msgstr "Lodret"
#. yAtee
-#: svx/uiconfig/ui/dockingfontwork.ui:434
+#: svx/uiconfig/ui/dockingfontwork.ui:439
msgctxt "dockingfontwork|extended_tip|vertical"
msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Tilføjer en skygge til teksten i det markerede objekt. Klik på denne knap, og indtast så dimensionerne af skyggen i feltet Afstand X og Afstand Y."
#. hcSuP
-#: svx/uiconfig/ui/dockingfontwork.ui:447
+#: svx/uiconfig/ui/dockingfontwork.ui:452
msgctxt "dockingfontwork|slant|tooltip_text"
msgid "Slant"
msgstr "Hældning"
#. WxAZv
-#: svx/uiconfig/ui/dockingfontwork.ui:453
+#: svx/uiconfig/ui/dockingfontwork.ui:458
msgctxt "dockingfontwork|extended_tip|slant"
msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes."
msgstr "Tilføjer en hældningsskygge til teksten i det markerede objekt. Klik på denne knap, og indtast så dimensionerne af skyggen i feltet Afstand X og Afstand Y."
#. fVeQ8
-#: svx/uiconfig/ui/dockingfontwork.ui:491
+#: svx/uiconfig/ui/dockingfontwork.ui:496
msgctxt "dockingfontwork|distancex|tooltip_text"
msgid "Distance X"
msgstr "Afstand X"
#. foUKw
-#: svx/uiconfig/ui/dockingfontwork.ui:498
+#: svx/uiconfig/ui/dockingfontwork.ui:503
msgctxt "dockingfontwork|extended_tip|distancex"
msgid "Enter the horizontal distance between the text characters and the edge of the shadow."
msgstr "Indtast den vandrette afstand mellem tekstens tegn og kanten af skyggen."
#. FTYwo
-#: svx/uiconfig/ui/dockingfontwork.ui:536
+#: svx/uiconfig/ui/dockingfontwork.ui:541
msgctxt "dockingfontwork|distancey|tooltip_text"
msgid "Distance Y"
msgstr "Afstand Y"
#. WhqTH
-#: svx/uiconfig/ui/dockingfontwork.ui:543
+#: svx/uiconfig/ui/dockingfontwork.ui:548
msgctxt "dockingfontwork|extended_tip|distancey"
msgid "Enter the vertical distance between the text characters and the edge of the shadow."
msgstr "Indtast den lodrette afstand mellem tekstens tegn og kanten af skyggen."
#. MDpHx
-#: svx/uiconfig/ui/dockingfontwork.ui:563
+#: svx/uiconfig/ui/dockingfontwork.ui:568
msgctxt "dockingfontwork|color|tooltip_text"
msgid "Shadow Color"
msgstr "Skyggefarve"
#. bNpUP
-#: svx/uiconfig/ui/dockingfontwork.ui:573
+#: svx/uiconfig/ui/dockingfontwork.ui:578
msgctxt "dockingfontwork|extended_tip|color"
msgid "Select a color for the text shadow."
msgstr "Vælg farve til tekstskygge."
#. Eovtw
-#: svx/uiconfig/ui/dockingfontwork.ui:584
+#: svx/uiconfig/ui/dockingfontwork.ui:596
msgctxt "dockingfontwork|extended_tip|DockingFontwork"
msgid "Simple tool for putting text along a curve without any fancy effects."
msgstr "Enkelt værktøj til at sætte tekst langs en kurve uden nogen smarte effekter."
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index a5c950daa89..f4c0571bb64 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/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-06-11 23:58+0200\n"
-"PO-Revision-Date: 2021-06-18 21:48+0000\n"
-"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -8252,7 +8252,7 @@ msgstr "som tegn"
#: sw/inc/strings.hrc:1114
msgctxt "STR_FLY_AT_CHAR"
msgid "to character"
-msgstr ""
+msgstr "til tegn"
#. hDUSa
#: sw/inc/strings.hrc:1115
@@ -8931,13 +8931,13 @@ msgstr "Næste felt"
#: sw/inc/strings.hrc:1229
msgctxt "STR_IMGBTN_FIELD_BYTYPE_UP"
msgid "Previous '%FIELDTYPE' field"
-msgstr ""
+msgstr "Forrige '%FIELDTYPE' felt"
#. A8HWi
#: sw/inc/strings.hrc:1230
msgctxt "STR_IMGBTN_FIELD_BYTYPE_DOWN"
msgid "Next '%FIELDTYPE' field"
-msgstr ""
+msgstr "Næste '%FIELDTYPE' felt"
#. hSYa3
#: sw/inc/strings.hrc:1232
diff --git a/source/da/vcl/messages.po b/source/da/vcl/messages.po
index e86d7b9f883..f71f91de5fd 100644
--- a/source/da/vcl/messages.po
+++ b/source/da/vcl/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-06-04 13:11+0200\n"
-"PO-Revision-Date: 2021-06-11 22:01+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
+"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -2110,7 +2110,7 @@ msgstr "Markering"
#: vcl/uiconfig/ui/printdialog.ui:595
msgctxt "printdialog|extended_tip|rbRangeSelection"
msgid "Prints only the selected area(s) or object(s) in the current document."
-msgstr "Udskriver kun valgte områder eller objekter i det aktuelle dokument,"
+msgstr "Udskriver kun valgte områder eller objekter i det aktuelle dokument."
#. UKYwM
#: vcl/uiconfig/ui/printdialog.ui:609
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index d4d136f8e04..fb259d8f21e 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/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-07-08 10:35+0200\n"
-"PO-Revision-Date: 2021-06-13 09:18+0000\n"
+"PO-Revision-Date: 2021-07-20 08:21+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1566197858.000000\n"
#. GyY9M
@@ -2817,7 +2817,7 @@ msgstr "Um ein Objekt im Dokumenthintergrund auszuwählen, verwenden Sie das Wer
#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr "Legen Sie häufig verwendete Texte in Writer als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastaturkürzel oder Symbolleiste in jedes Writer-Dokument ein."
+msgstr "Legen Sie häufig verwendete Texte in Writer als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastenkombination oder Symbolleiste in jedes Writer-Dokument ein."
#. 7CjmG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html
@@ -3254,7 +3254,7 @@ msgstr "Um in Calc führende Nullen zu erhalten, verwenden Sie die Zahlenformat-
#: cui/inc/tipoftheday.hrc:233
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar."
-msgstr "Um in Writer nach dem Anwenden einer Listenvorlage zu den Standardeinstellungen zurückzukehren, klicken Sie in der Symbolleiste Formatierung auf Aufzählungszeichen/Nummerierte Liste umschalten."
+msgstr "Um in Writer nach dem Anwenden einer Listenvorlage zu den Standardeinstellungen zurückzukehren, klicken Sie in der Symbolleiste Formatierung auf Aufzählungszeichen/Nummerierte Liste ein/aus."
#. wAFRP
#: cui/inc/tipoftheday.hrc:234
@@ -4326,7 +4326,7 @@ msgstr "Alle Versionsinformationen in Englisch kopieren"
#: cui/uiconfig/ui/accelconfigpage.ui:80
msgctxt "accelconfigpage|tooltip|shortcuts"
msgid "To quickly find a shortcut in this list, simply press the key combination."
-msgstr "Um einen Tastaturbefehl in dieser Liste schnell zu finden, drücken Sie einfach die Tastenkombination."
+msgstr "Um eine Tastenkombination in dieser Liste schnell zu finden, drücken Sie einfach die Tastenkombination."
#. s4GiG
#: cui/uiconfig/ui/accelconfigpage.ui:117
@@ -5909,7 +5909,7 @@ msgstr "Typ:"
#: cui/uiconfig/ui/bulletandposition.ui:280
msgctxt "bulletandposition|extended_tip|numfmtlb"
msgid "Select the level(s) that you want to modify. To apply the options to all the levels, select “1-10”."
-msgstr ""
+msgstr "Wählen Sie die Ebene(n) aus, die Sie ändern möchten. Um die Optionen auf alle Ebenen anzuwenden, wählen Sie „1-10“."
#. mp5Si
#: cui/uiconfig/ui/bulletandposition.ui:293
@@ -6179,7 +6179,7 @@ msgstr "Auf Master anwenden"
#: cui/uiconfig/ui/bulletandposition.ui:1012
msgctxt "bulletandposition|extended_tip|applytomaster"
msgid "Click to apply the modification to all slides that use the current master slide."
-msgstr ""
+msgstr "Klicken Sie hier, um die Änderung auf alle Folien anzuwenden, welche die aktuelle Masterfolie verwenden."
#. DiEaB
#: cui/uiconfig/ui/bulletandposition.ui:1028
@@ -13750,7 +13750,7 @@ msgstr "Nur _westliche Zeichen"
#: cui/uiconfig/ui/optasianpage.ui:36
msgctxt "extended_tip|charkerning"
msgid "Specifies that kerning is only applied to western text."
-msgstr "Legt fest, dass die Unterschneidung nur auf westlichen Text angewendet wird."
+msgstr "Legt fest, dass das Kerning nur auf westlichen Text angewendet wird."
#. WEFrz
#: cui/uiconfig/ui/optasianpage.ui:48
@@ -13762,13 +13762,13 @@ msgstr "_Westliche Zeichen und asiatische Interpunktion"
#: cui/uiconfig/ui/optasianpage.ui:57
msgctxt "extended_tip|charpunctkerning"
msgid "Specifies that kerning is applied to both western text and Asian punctuation."
-msgstr "Legt fest, dass Unterschneidung sowohl auf westlichen Text als auch auf asiatische Interpunktion angewendet wird."
+msgstr "Legt fest, dass Kerning sowohl auf westlichen Text als auch auf asiatische Interpunktion angewendet wird."
#. 4wTpB
#: cui/uiconfig/ui/optasianpage.ui:73
msgctxt "optasianpage|label1"
msgid "Kerning"
-msgstr "Unterschneidung"
+msgstr "Kerning"
#. mboKG
#: cui/uiconfig/ui/optasianpage.ui:101
@@ -19380,13 +19380,13 @@ msgstr "Unterzeichner kann Kommentare hinzufügen"
#: cui/uiconfig/ui/signatureline.ui:248
msgctxt "signatureline|extended_tip|checkbox_can_add_comments"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr "Aktivieren Sie den Unterzeichner, um zum Zeitpunkt der Unterschrift Kommentare in den Dialog „Signaturzeile signieren“ einzufügen."
+msgstr "Aktiviert den Unterzeichner, um zum Zeitpunkt der Unterschrift Kommentare in den Dialog „Unterschriftzeile signieren“ einzufügen."
#. BPMGM
#: cui/uiconfig/ui/signatureline.ui:259
msgctxt "signatureline|checkbox_show_sign_date"
msgid "Show sign date in signature line"
-msgstr "Zeige Unterschriftsdatum in der Unterschriftszeile"
+msgstr "Unterschriftsdatum in Unterschriftszeile anzeigen"
#. QnaFT
#: cui/uiconfig/ui/signatureline.ui:268
@@ -19404,7 +19404,7 @@ msgstr "Anweisungen für den Unterzeichner:"
#: cui/uiconfig/ui/signatureline.ui:307
msgctxt "signatureline|extended_tip|edit_instructions"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr "Fügen Sie Anweisungen für den Unterzeichner ein. Die Anweisungen erscheinen im Dialog Unterschriftszeile signieren zur Zeit der Unterzeichnung."
+msgstr "Fügt Anweisungen für den Unterzeichner ein. Die Anweisungen erscheinen im Dialog Unterschriftszeile signieren zur Zeit der Unterzeichnung."
#. jqCPH
#: cui/uiconfig/ui/signatureline.ui:324
@@ -19416,7 +19416,7 @@ msgstr "Mehr"
#: cui/uiconfig/ui/signsignatureline.ui:8
msgctxt "signsignatureline|SignSignatureLineDialog"
msgid "Sign Signature Line"
-msgstr "Signaturzeile unterschreiben"
+msgstr "Unterschriftzeile signieren"
#. 8JC4v
#: cui/uiconfig/ui/signsignatureline.ui:53
diff --git a/source/de/editeng/messages.po b/source/de/editeng/messages.po
index 83c44730902..f0aae2ed8a6 100644
--- a/source/de/editeng/messages.po
+++ b/source/de/editeng/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-01-19 13:13+0100\n"
-"PO-Revision-Date: 2021-03-08 13:45+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-14 18:31+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/editengmessages/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.4.2\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1512984903.000000\n"
#. BHYB4
@@ -1325,7 +1325,7 @@ msgstr "Seitenvorlage: "
#: include/editeng/editrids.hrc:234
msgctxt "RID_SVXITEMS_KERNING_COMPLETE"
msgid "Kerning "
-msgstr "Unterschneidung "
+msgstr "Kerning "
#. A7tAE
#: include/editeng/editrids.hrc:235
diff --git a/source/de/filter/messages.po b/source/de/filter/messages.po
index 83c28daf3a5..3821875eeda 100644
--- a/source/de/filter/messages.po
+++ b/source/de/filter/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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-04-25 06:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-15 13:43+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/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.4.2\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1562385794.000000\n"
#. 5AQgJ
@@ -1576,7 +1576,7 @@ msgstr "Durchsuchen…"
#: filter/uiconfig/ui/testxmlfilter.ui:117
msgctxt "testxmlfilter|extended_tip|exportbrowse"
msgid "Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation."
-msgstr "Lokalisieren Sie die Datei, auf die Sie den XML-Exportfilter anwenden möchten. Der XML-Code der transformierten Datei wird nach der Transformation in Ihren Standard-XML-Editor geöffnet."
+msgstr "Lokalisieren Sie die Datei, auf die Sie den XML-Exportfilter anwenden möchten. Der XML-Code der umgewandelten Datei wird nach der Umwandlung in Ihrem Standard-XML-Editor geöffnet."
#. F8CJd
#: filter/uiconfig/ui/testxmlfilter.ui:128
@@ -1594,7 +1594,7 @@ msgstr "Der Filter wird an der vordersten aller geöffneten Dateien, die den XML
#: filter/uiconfig/ui/testxmlfilter.ui:150
msgctxt "testxmlfilter|extended_tip|exportxsltfile"
msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
-msgstr "Hiermit zeigen Sie den Dateinamen des XSLT-Filters an, den Sie im Register Transformation festgelegt haben."
+msgstr "Hiermit zeigen Sie den Dateinamen des XSLT-Filters an, den Sie im Register Umwandlung festgelegt haben."
#. 9HnMA
#: filter/uiconfig/ui/testxmlfilter.ui:167
@@ -1648,7 +1648,7 @@ msgstr "Dokumentvorlage für Import"
#: filter/uiconfig/ui/testxmlfilter.ui:281
msgctxt "testxmlfilter|extended_tip|importxsltfile"
msgid "Displays the file name of the XSLT filter that you entered on the Transformation tab page."
-msgstr "Hiermit zeigen Sie den Dateinamen des XSLT-Filters an, den Sie im Register Transformation festgelegt haben."
+msgstr "Hiermit zeigen Sie den Dateinamen des XSLT-Filters an, den Sie im Register Umwandlung festgelegt haben."
#. UAfyw
#: filter/uiconfig/ui/testxmlfilter.ui:292
@@ -1672,7 +1672,7 @@ msgstr "Datei umwandeln"
#: filter/uiconfig/ui/testxmlfilter.ui:329
msgctxt "testxmlfilter|extended_tip|importxslttemplate"
msgid "Displays the file name of the template that you entered on the Transformation tab page."
-msgstr "Gibt den Dateinamen der Dokumentvorlage an, den Sie im Register Transformation festgelegt haben."
+msgstr "Gibt den Dateinamen der Dokumentvorlage an, den Sie im Register Umwandlung festgelegt haben."
#. RHRHL
#: filter/uiconfig/ui/testxmlfilter.ui:346
diff --git a/source/de/formula/messages.po b/source/de/formula/messages.po
index 2bec266e3e6..c8af3105299 100644
--- a/source/de/formula/messages.po
+++ b/source/de/formula/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-03-29 16:02+0200\n"
-"PO-Revision-Date: 2021-04-01 04:38+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-24 00:25+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/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.4.2\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1555474717.000000\n"
#. YfKFn
@@ -1094,7 +1094,7 @@ msgstr "VDB"
#: formula/inc/core_resource.hrc:2460
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "PDURATION"
-msgstr "PDURATION"
+msgstr "PLAUFZEIT"
#. i6LFt
#: formula/inc/core_resource.hrc:2461
diff --git a/source/de/helpcontent2/source/auxiliary.po b/source/de/helpcontent2/source/auxiliary.po
index 8d320a330d0..d46d99b5afc 100644
--- a/source/de/helpcontent2/source/auxiliary.po
+++ b/source/de/helpcontent2/source/auxiliary.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-24 12:51+0200\n"
-"PO-Revision-Date: 2021-05-08 18:37+0000\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1562560629.000000\n"
#. fEEXD
@@ -86,7 +86,7 @@ msgctxt ""
"07010305\n"
"node.text"
msgid "ScriptForge Library"
-msgstr ""
+msgstr "Bibliothek ScriptForge"
#. Vkt9E
#: sbasic.tree
diff --git a/source/de/helpcontent2/source/text/sbasic/guide.po b/source/de/helpcontent2/source/text/sbasic/guide.po
index 671f5954e82..50614150f7f 100644
--- a/source/de/helpcontent2/source/text/sbasic/guide.po
+++ b/source/de/helpcontent2/source/text/sbasic/guide.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: 2019-11-08 19:34+0100\n"
-"PO-Revision-Date: 2021-04-01 04:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-14 18:03+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/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.4.2\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1561087588.000000\n"
#. WcTKB
@@ -59,7 +59,7 @@ msgctxt ""
"par_idA2B004\n"
"help.text"
msgid "Access2Base is a LibreOffice Basic library of macros for (business or personal) application developers and advanced users. It is one of the libraries stored in \"LibreOffice macros and dialogs\"."
-msgstr "Access2Base ist eine LibreOffice Basic-Bibliothek mit Makros für (geschäftliche oder private) Anwendungsentwickler und fortgeschrittene Benutzer. Sie ist eine der Bibliotheken, die in \"LibreOffice Dialoge verwalten\" gespeichert sind."
+msgstr "Access2Base ist eine LibreOffice Basic-Bibliothek mit Makros für (geschäftliche oder private) Anwendungsentwickler und fortgeschrittene Benutzer. Sie ist eine der Bibliotheken, die in \"LibreOffice Macros und Dialoge\" gespeichert sind."
#. zYTgA
#: access2base.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_idA2B007\n"
"help.text"
msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
-msgstr "<emph>Die Bibliothek ist online dokumentiert auf </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com (englisch)</emph></link>."
+msgstr "<emph>Die Bibliothek ist Online dokumentiert auf </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com (englisch)</emph></link>."
#. fGJgF
#: access2base.xhp
@@ -104,7 +104,7 @@ msgctxt ""
"par_idA2B009\n"
"help.text"
msgid "a simplified and extensible API for <emph>forms</emph>, <emph>dialogs</emph> and <emph>controls</emph> manipulations similar with the Microsoft Access object model,"
-msgstr "eine vereinfachte und erweiterbare API für die Manipulation von <emph>Formularen</emph>, <emph>Dialogen</emph> und <emph>Steuerelementen</emph>, ähnlich dem Microsoft Access-Objektmodell,"
+msgstr "Eine vereinfachte und erweiterbare API für die Manipulation von <emph>Formularen</emph>, <emph>Dialogen</emph> und <emph>Steuerelementen</emph>, ähnlich dem Microsoft Access-Objektmodell,"
#. ZTQD8
#: access2base.xhp
diff --git a/source/de/helpcontent2/source/text/sbasic/python.po b/source/de/helpcontent2/source/text/sbasic/python.po
index b68199bbe3f..7cb1d65cc25 100644
--- a/source/de/helpcontent2/source/text/sbasic/python.po
+++ b/source/de/helpcontent2/source/text/sbasic/python.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: 2021-06-04 11:14+0000\n"
+"PO-Revision-Date: 2021-07-14 18:03+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1566103429.000000\n"
#. naSFZ
@@ -914,7 +914,7 @@ msgctxt ""
"N0664\n"
"help.text"
msgid "' ADAPTER design pattern object to be instantiated in the \"Open Document\" event"
-msgstr ""
+msgstr "' ADAPTER-Entwurfsmusterobjekt, das im Ereignis \"Dokument öffnen\" instanziiert werden soll"
#. 9ZNpG
#: python_document_events.xhp
@@ -1949,7 +1949,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "\"\"\" Listen to & count button clicks \"\"\""
-msgstr "\"\"\" Lauscht nach & zählt die Tastenklicks \"\"\""
+msgstr "\"\"\" Lauscht nach & zählt die Tastenanschläge \"\"\""
#. WK4DA
#: python_listener.xhp
@@ -2480,7 +2480,7 @@ msgctxt ""
"N0218\n"
"help.text"
msgid "<bookmark_value>Python;Programming</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;Python</bookmark_value> <bookmark_value>XSCRIPTCONTEXT;getComponentContext()</bookmark_value> <bookmark_value>uno.py</bookmark_value> <bookmark_value>uno.py;getComponentContext()</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python; Programmierung</bookmark_value><bookmark_value>XSCRIPTCONTEXT; Python</bookmark_value><bookmark_value>XSCRIPTCONTEXT; getComponentContext()</bookmark_value><bookmark_value>uno.py</bookmark_value><bookmark_value>uno.py; getComponentContext()</bookmark_value>"
#. CU6JS
#: python_programming.xhp
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index c1c9b2f7e09..b47a7078d7d 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.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-06-24 12:51+0200\n"
-"PO-Revision-Date: 2021-04-25 08:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1565498614.000000\n"
#. yzYVt
@@ -617,7 +617,7 @@ msgctxt ""
"hd_id191620312698501\n"
"help.text"
msgid "In Basic"
-msgstr ""
+msgstr "In Basic"
#. BenDd
#: 00000003.xhp
@@ -626,7 +626,7 @@ msgctxt ""
"hd_id831620312769993\n"
"help.text"
msgid "In Python"
-msgstr ""
+msgstr "In Python"
#. AuYyY
#: 00000003.xhp
@@ -635,7 +635,7 @@ msgctxt ""
"par_id701621038131185\n"
"help.text"
msgid "This method is only available for <emph>Basic</emph> scripts."
-msgstr ""
+msgstr "Diese Methode ist nur für <emph>Basic</emph>-Skripte verfügbar."
#. Kk2av
#: 00000003.xhp
@@ -644,7 +644,7 @@ msgctxt ""
"par_id701621038131336\n"
"help.text"
msgid "This method is only available for <emph>Python</emph> scripts."
-msgstr ""
+msgstr "Diese Methode ist nur für <emph>Python</emph>-Skripte verfügbar."
#. FMxTn
#: 00000003.xhp
@@ -662,7 +662,7 @@ msgctxt ""
"par_id21624295605301\n"
"help.text"
msgid "This service is fully supported in both Basic and Python languages. All examples are expressed using the Basic programming language and can be easily converted to Python."
-msgstr ""
+msgstr "Dieser Dienst wird sowohl in der Sprache Basic als auch in Python vollständig unterstützt. Alle Beispiele sind in der Programmiersprache Basic geschrieben und können leicht in Python umgewandelt werden."
#. TV2YL
#: 00000003.xhp
@@ -671,7 +671,7 @@ msgctxt ""
"par_id161599082457466\n"
"help.text"
msgid "<variable id=\"stringfunctions\"><link href=\"text/sbasic/shared/03120300.xhp\" name=\"string functions\">String functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"stringfunctions\"><link href=\"text/sbasic/shared/03120300.xhp\" name=\"string functions\">Zeichenketten-Funktionen</link></variable>"
#. CGSvh
#: 00000003.xhp
@@ -2471,7 +2471,7 @@ msgctxt ""
"par_id3150953\n"
"help.text"
msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
-msgstr ""
+msgstr "Doppelvariablen können positive oder negative Werte im Bereich von 1,79769313486232x10E308 bis 4,94065645841247x10E-324 enthalten. Doppelvariablen sind Gleitkomma-Variablen, bei denen die Dezimalgenauigkeit mit zunehmendem nicht-dezimalen Teil der Zahl abnimmt. Doppelvariablen sind für präzise Berechnungen geeignet. Die Berechnung benötigen mehr Zeit als für Einzelvariablen. Eine Doppelvariabel braucht 8 Bytes Speicher. Das Typdeklarationszeichen ist \"#\"."
#. KYBFy
#: 01020100.xhp
@@ -2939,7 +2939,7 @@ msgctxt ""
"par_id3151215\n"
"help.text"
msgid "When you create a new module, %PRODUCTNAME Basic automatically inserts a <literal>Sub</literal> called \"<literal>Main</literal>\". This default name has nothing to do with the order or the starting point of a %PRODUCTNAME Basic project. You can also safely rename this <literal>Sub</literal>routine."
-msgstr ""
+msgstr "Wenn Sie ein neues Modul erstellen, implementiert %PRODUKTNAME Basic automatisch ein <literal>Sub</literal> namens \"<literal>Main</literal>\". Dieser voreingestellte Name beeinflusst nicht die Reihenfolge oder den Startpunkt von einem %PRODUKTNAME Basic Projekt. Sie können die <literal>Sub</literal>-Routine problemlos umbenennen."
#. NBySN
#: 01020300.xhp
@@ -2957,7 +2957,7 @@ msgctxt ""
"par_id3154124\n"
"help.text"
msgid "Procedures (<literal>Sub</literal>routines) functions (<literal>Function</literal>) and properties (<literal>Property</literal>) help you maintaining a structured overview by separating a program into logical pieces."
-msgstr ""
+msgstr "Prozeduren (Routinen <literal>Sub</literal>), Funktionen (<literal>Function</literal>) und Eigenschaften (<literal>Property</literal>) helfen Ihnen, einen strukturierten Überblick zu behalten, indem sie ein Programm in logische Teile unterteilen."
#. UXRyF
#: 01020300.xhp
@@ -3101,7 +3101,7 @@ msgctxt ""
"par_id3155765\n"
"help.text"
msgid "Parameters can be passed to a procedure, a function or a property either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal> gets the parameter and can read and modify its value."
-msgstr ""
+msgstr "Parameter können entweder per Referenz oder per Wert an eine Prozedur, eine Funktion oder eine Eigenschaft übergeben werden. Sofern nicht anders angegeben, wird ein Parameter immer als Referenz übergeben. Das bedeutet, dass <literal>Sub</literal>, <literal>Function</literal> oder <literal>Property</literal> den Parameter bekommt und seinen Wert lesen und ändern kann."
#. uk84S
#: 01020300.xhp
@@ -3110,7 +3110,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "If you want to pass a parameter by value insert the key word <literal>ByVal</literal> in front of the parameter when you call a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal>, for example:"
-msgstr ""
+msgstr "Wenn Sie einen Parameter als Wert übergeben möchten, fügen Sie beim Aufruf von <literal>Sub</literal>, <literal>Function</literal> oder <literal>Property</literal> das Schlüsselwort <literal>ByVal</literal> vor dem Parameter ein, zum Beispiel:"
#. pojXe
#: 01020300.xhp
@@ -3128,7 +3128,7 @@ msgctxt ""
"par_id3149258\n"
"help.text"
msgid "In this case, the original content of the parameter will not be modified by the <literal>Function</literal> since it only gets the value and not the parameter itself."
-msgstr ""
+msgstr "In diesem Fall wird der ursprüngliche Inhalt des Parameters durch <literal>Function</literal> nicht verändert, da sie nur den Wert und nicht den Parameter selbst erhält."
#. AEhBY
#: 01020300.xhp
@@ -3200,7 +3200,7 @@ msgctxt ""
"par_id3149814\n"
"help.text"
msgid "A variable defined within a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal>, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal> is exited."
-msgstr ""
+msgstr "Eine innerhalb von <literal>Sub</literal>, <literal>Function</literal> oder <literal>Property</literal> definierte Variable bleibt nur gültig, bis die Prozedur beendet wird. Dies wird als \"lokale\" Variable bezeichnet. In vielen Fällen benötigen Sie eine Variable, um in allen Prozeduren, in jedem Modul aller Bibliotheken oder nach <literal>Sub</literal>, <literal>Function</literal> oder <literal>Property</literal> gültig zu sein."
#. pVU4G
#: 01020300.xhp
@@ -3209,7 +3209,7 @@ msgctxt ""
"hd_id3154186\n"
"help.text"
msgid "Declaring Variables Outside a <literal>Sub</literal> a <literal>Function</literal> or a <literal>Property</literal>"
-msgstr ""
+msgstr "Deklarieren von Variablen außerhalb von <literal>Sub</literal>, <literal>Function</literal> oder <literal>Property</literal>"
#. 5JwAY
#: 01020300.xhp
@@ -3326,7 +3326,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "The variable retains its value until the next time the a <literal>Function</literal>, <literal>Sub</literal> or <literal>Property</literal> is entered. The declaration must exist inside a <literal>Sub</literal>, a <literal>Function</literal> or a <literal>Property</literal>."
-msgstr ""
+msgstr "Die Variable behält ihren Wert bis zur nächsten Eingabe einer <literal>Function</literal>, <literal>Sub</literal> oder <literal>Property</literal>. Die Deklaration muss innerhalb von <literal>Sub</literal>, <literal>Function</literal> oder <literal>Property</literal> existieren."
#. 9inFk
#: 01020300.xhp
@@ -3344,7 +3344,7 @@ msgctxt ""
"par_id3149404\n"
"help.text"
msgid "As with variables, include a type-declaration character after the function name, or the type indicated by <literal>As</literal> and the corresponding data type at the end of the parameter list to define the type of the function or property's return value, for example:"
-msgstr ""
+msgstr "Fügen Sie wie bei Variablen ein Typdeklarationszeichen nach dem Funktionsnamen oder den durch <literal>As</literal> angegebenen Typ und den entsprechenden Datentyp am Ende der Parameterliste ein, um den Rückgabetyp der Funktion oder Eigenschaft zu definieren Wert, zum Beispiel:"
#. t7xWM
#: 01020300.xhp
@@ -3362,7 +3362,7 @@ msgctxt ""
"N0238\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property Statement\">Property Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/property.xhp\" name=\"Property Statement\">Anweisung Property</link>"
#. CcJXo
#: 01020300.xhp
@@ -3371,7 +3371,7 @@ msgctxt ""
"N0239\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Static Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Statische Anweisung</link>"
#. HrqsB
#: 01020500.xhp
@@ -5765,7 +5765,7 @@ msgctxt ""
"par_id3161831\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/managebreakpoints/pass\">Geben Sie die Anzahl der Schleifen an, die ausgeführt werden sollen, bevor der Haltepunkt wirksam wird.</ahelp>"
#. gr8LF
#: 01050300.xhp
@@ -8501,7 +8501,7 @@ msgctxt ""
"par_id841588605629842\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Print_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Print syntax</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Print_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Syntax Print</alt></image>"
#. A6QEE
#: 03010103.xhp
@@ -8510,7 +8510,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "Print [#filenum,] expression1[{;|,} [Spc(number As Integer);] [Tab(pos As Integer);] [expression2[...]]"
-msgstr ""
+msgstr "Print [#Dateinummer,] Ausdruck1[{;|,} [Spc(Zahl As Integer);] [Tab(Position As Integer);] [Ausdruck2[...]]"
#. NWBqr
#: 03010103.xhp
@@ -8519,7 +8519,7 @@ msgctxt ""
"par_id2508621\n"
"help.text"
msgid "<emph>filenum:</emph> Any numeric expression that contains the file number that was set by the <literal>Open</literal> statement for the respective file."
-msgstr ""
+msgstr "<emph>Dateinummer:</emph> Jeder numerische Ausdruck, der die Dateinummer enthält, die durch die Anweisung <literal>Open</literal> für die jeweilige Datei gesetzt wurde."
#. Zoa2X
#: 03010103.xhp
@@ -8528,7 +8528,7 @@ msgctxt ""
"par_id3163712\n"
"help.text"
msgid "<emph>expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
-msgstr ""
+msgstr "<emph>Ausdruck</emph>: Jeder numerische oder String-Ausdruck, der ausgegeben werden soll. Mehrere Ausdrücke können durch ein Semikolon getrennt werden. Durch ein Komma getrennt, werden die Ausdrücke bis zum nächsten Tabstopp eingerückt. Die Tabstopps können nicht angepasst werden."
#. HB3kc
#: 03010103.xhp
@@ -8537,7 +8537,7 @@ msgctxt ""
"par_id3153092\n"
"help.text"
msgid "<emph>number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr ""
+msgstr "<emph>Nummer</emph>: Anzahl der Leerzeichen, die von der Funktion <emph>Spc</emph> eingefügt werden sollen."
#. QDwLF
#: 03010103.xhp
@@ -8546,7 +8546,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "<emph>pos</emph>: Spaces are inserted until the specified position."
-msgstr ""
+msgstr "<emph>Position</emph>: Leerzeichen werden bis zur angegebenen Position eingefügt."
#. GiAKc
#: 03010103.xhp
@@ -8798,7 +8798,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "Returns the blue component of the specified composite color code."
-msgstr ""
+msgstr "Gibt die Blaukomponente des angegebenen zusammengesetzten Farbcodes zurück."
#. VLvxx
#: 03010301.xhp
@@ -8852,7 +8852,7 @@ msgctxt ""
"par_id3150448\n"
"help.text"
msgid "<emph>Color value</emph>: Long integer expression that specifies any composite color code for which to return the blue component."
-msgstr ""
+msgstr "<emph>Farbwert</emph>: Long-Integer-Ausdruck, der einen beliebigen zusammengesetzten Farbcode angibt, für den die Blaukomponente zurückgegeben werden soll."
#. roGL5
#: 03010301.xhp
@@ -8933,7 +8933,7 @@ msgctxt ""
"par_id3153361\n"
"help.text"
msgid "Returns the Green component of the given composite color code."
-msgstr ""
+msgstr "Gibt die Grünkomponente des angegebenen zusammengesetzten Farbcodes zurück."
#. qAgBp
#: 03010302.xhp
@@ -8987,7 +8987,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "<emph>Color</emph>: Long integer expression that specifies a composite color code for which to return the Green component."
-msgstr ""
+msgstr "<emph>Farbe</emph>: Long-Integer-Ausdruck, der einen zusammengesetzten Farbcode angibt, für den die Grünkomponente zurückgegeben werden soll."
#. DBLfM
#: 03010302.xhp
@@ -9068,7 +9068,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "Returns the Red component of the specified composite color code."
-msgstr ""
+msgstr "Gibt die Rotkomponente des angegebenen zusammengesetzten Farbcodes zurück."
#. YSmcx
#: 03010303.xhp
@@ -9122,7 +9122,7 @@ msgctxt ""
"par_id3150440\n"
"help.text"
msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any composite color code for which to return the Red component."
-msgstr ""
+msgstr "<emph>Farbe</emph>: Long-Integer-Ausdruck, der einen beliebigen zusammengesetzten Farbcode angibt, für den die Rotkomponente zurückgegeben werden soll."
#. iiUNB
#: 03010303.xhp
@@ -9131,7 +9131,7 @@ msgctxt ""
"par_id961588421825749\n"
"help.text"
msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> details the red, green and blue components of a composite color code, as well as its hexadecimal expression. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
-msgstr ""
+msgstr "Der <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">Dialog Farbauswahl</link> beschreibt die Rot-, Grün- und Blaukomponenten eines zusammengesetzten Farbcodes sowie seinen hexadezimalen Ausdruck. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Ändern der Textfarbe</link> und das Auswählen von <emph>Benutzerdefinierte Farbe</emph> zeigt den Farbauswahldialog an."
#. DsCGZ
#: 03010303.xhp
@@ -9464,7 +9464,7 @@ msgctxt ""
"bm_id851576768070903\n"
"help.text"
msgid "<bookmark_value>RGB function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>RGB (Funktion)</bookmark_value>"
#. LaGGq
#: 03010305.xhp
@@ -9482,7 +9482,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "Returns a <literal>Long</literal> integer color value consisting of red, green, and blue components."
-msgstr ""
+msgstr "Gibt einen ganzzahligen Farbwert vom Typ <literal>Long</literal> zurück, der aus roten, grünen und blauen Komponenten besteht."
#. MiCPe
#: 03010305.xhp
@@ -9563,7 +9563,7 @@ msgctxt ""
"par_id211587653651037\n"
"help.text"
msgid "The <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">color picker dialog</link> helps computing red, green and blue components of a composite color. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Changing the color of text</link> and selecting <emph>Custom color</emph> displays the color picker dialog."
-msgstr ""
+msgstr "Der Dialog <link href=\"text/shared/optionen/01010501.xhp\" name=\"color picker dialog\">Farbauswahl</link> hilft bei der Berechnung der Rot-, Grün- und Blaukomponenten einer zusammengesetzten Farbe. <link href=\"text/shared/guide/text_color.xhp\" name=\"Changing the color of text\">Ändern der Textfarbe</link> und das Auswählen von <emph>Benutzerdefinierte Farbe</emph> zeigt den Farbauswahldialog an."
#. Vn6Jr
#: 03010305.xhp
@@ -16988,7 +16988,7 @@ msgctxt ""
"par_id521512319135830\n"
"help.text"
msgid "\\x0D\\x0A (13 10) for Windows"
-msgstr ""
+msgstr "\\x0D\\x0A (13 10) für Windows"
#. CPCWE
#: 03040000.xhp
@@ -16997,7 +16997,7 @@ msgctxt ""
"par_id61512319163913\n"
"help.text"
msgid "\\x0A (10) for other systems"
-msgstr ""
+msgstr "\\x0A (10) für andere Systeme"
#. LXUYw
#: 03040000.xhp
@@ -17051,7 +17051,7 @@ msgctxt ""
"hd_id3143271\n"
"help.text"
msgid "<variable id=\"ErrHandlingh1\"><link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ErrHandlingh1\"><link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Funktionen zur Fehlerbehandlung</link></variable>"
#. KsiEx
#: 03050000.xhp
@@ -17060,7 +17060,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Use the following statements and functions to define the way %PRODUCTNAME Basic reacts to run-time errors."
-msgstr ""
+msgstr "Verwenden Sie die folgenden Anweisungen und Funktionen, um zu definieren, wie %PRODUCTNAME Basic auf Laufzeitfehler reagiert."
#. 9XGsZ
#: 03050000.xhp
@@ -17069,7 +17069,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "%PRODUCTNAME Basic offers several methods to prevent the termination of a program when a run-time error occurs."
-msgstr ""
+msgstr "%PRODUCTNAME Basic bietet mehrere Methoden, um das Beenden eines Programms bei einem Laufzeitfehler zu verhindern."
#. C2vFE
#: 03050100.xhp
@@ -17339,7 +17339,7 @@ msgctxt ""
"par_id3148663\n"
"help.text"
msgid "Returns the error message that corresponds to a value or raises a given error context."
-msgstr ""
+msgstr "Gibt die Fehlermeldung zurück, die einem Wert entspricht oder einen bestimmten Fehlerkontext auslöst."
#. h8KBQ
#: 03050300.xhp
@@ -17357,7 +17357,7 @@ msgctxt ""
"par_id631576404838377\n"
"help.text"
msgid "Error"
-msgstr ""
+msgstr "Error"
#. TMhEb
#: 03050300.xhp
@@ -17366,7 +17366,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "Error(expression)"
-msgstr ""
+msgstr "Error(Ausdruck)"
#. bqewK
#: 03050300.xhp
@@ -17375,7 +17375,7 @@ msgctxt ""
"par_id231576404629080\n"
"help.text"
msgid "Error err_code"
-msgstr ""
+msgstr "Error Fehlercode"
#. ANh6X
#: 03050300.xhp
@@ -17393,7 +17393,7 @@ msgctxt ""
"par_id3154125\n"
"help.text"
msgid "String or raised error context"
-msgstr ""
+msgstr "String oder ausgelöster Fehlerkontext"
#. BnAcN
#: 03050300.xhp
@@ -17411,7 +17411,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "If no argument is provided, the Error function returns the error message of the most recent error that occurred during program execution."
-msgstr ""
+msgstr "Wenn kein Argument angegeben wird, gibt die Fehlerfunktion die Fehlermeldung des letzten Fehlers zurück, der während der Programmausführung aufgetreten ist."
#. JCiAF
#: 03050300.xhp
@@ -17420,7 +17420,7 @@ msgctxt ""
"par_id3153193\n"
"help.text"
msgid "<emph>expression:</emph> Any numeric expression whose error code can be mapped to an existing error message. An empty string is returned if the error code does not exist."
-msgstr ""
+msgstr "<emph>Ausdruck:</emph> Jeder numerische Ausdruck, dessen Fehlercode einer vorhandenen Fehlermeldung zugeordnet werden kann. Wenn der Fehlercode nicht existiert, wird eine leere Zeichenfolge zurückgegeben."
#. gDA6e
#: 03050300.xhp
@@ -17429,7 +17429,7 @@ msgctxt ""
"par_id351576405235602\n"
"help.text"
msgid "<emph>err_code:</emph> Any value that corresponds to an existing error code."
-msgstr ""
+msgstr "<emph>Fehlercode:</emph> Jeder Wert, der einem vorhandenen Fehlercode entspricht."
#. YLe3q
#: 03050500.xhp
@@ -17474,7 +17474,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">On Error Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/On-Error_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer On Error-Anweisung</alt></image>"
#. CKJJr
#: 03050500.xhp
@@ -21542,7 +21542,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "' Returns a 32-bit signed integer number from an 8-digit hexadecimal value."
-msgstr ""
+msgstr "' Gibt eine 32-Bit-Ganzzahl mit Vorzeichen aus einem 8-stelligen Hexadezimalwert zurück."
#. fcv3u
#: 03080801.xhp
@@ -21551,7 +21551,7 @@ msgctxt ""
"par_id3147215\n"
"help.text"
msgid "' Calculates the 8-digit hexadecimal value out of a 32-bit signed integer number."
-msgstr ""
+msgstr "' Berechnet den 8-stelligen Hexadezimalwert aus einer 32-Bit-Ganzzahl mit Vorzeichen."
#. Tko9w
#: 03080802.xhp
@@ -21911,7 +21911,7 @@ msgctxt ""
"bm_id3149416\n"
"help.text"
msgid "<bookmark_value>Select Case statement</bookmark_value> <bookmark_value>Case keyword; in Select Case statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Select Case (Anweisung)</bookmark_value><bookmark_value>Case; in Anweisung Select Case</bookmark_value>"
#. CBpPz
#: 03090102.xhp
@@ -21938,7 +21938,7 @@ msgctxt ""
"par_id841588605629842\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Select-Case_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Select Case syntax</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Select-Case_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Syntax für Select Case</alt></image>"
#. TJu4u
#: 03090102.xhp
@@ -22397,7 +22397,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "Repeats the statements between the <literal>For...Next</literal> block a specified number of times."
-msgstr ""
+msgstr "Wiederholt die Anweisungen zwischen dem Block <literal>For … Next</literal> eine bestimmte Anzahl von Malen."
#. h79GC
#: 03090202.xhp
@@ -22415,7 +22415,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/For-Next_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">For Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/For-Next_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm für die Anweisung For</alt></image>"
#. SuZFA
#: 03090202.xhp
@@ -22424,7 +22424,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "statement-block"
-msgstr ""
+msgstr "Befehlsblock"
#. CCuTr
#: 03090202.xhp
@@ -22433,7 +22433,7 @@ msgctxt ""
"par_id3159414\n"
"help.text"
msgid "statement-block"
-msgstr ""
+msgstr "Befehlsblock"
#. bcKDQ
#: 03090202.xhp
@@ -22442,7 +22442,7 @@ msgctxt ""
"par_id491585653339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/For-Each_statement.svg\" id=\"img_id4156297484514\"><alt id=\"alt_id15152797484514\">For Each Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/For-Each_statement.svg\" id=\"img_id4156297484514\"><alt id=\"alt_id15152797484514\">Diagramm für die Anweisung For Each</alt></image>"
#. YbrKJ
#: 03090202.xhp
@@ -22451,7 +22451,7 @@ msgctxt ""
"bas_id821586521234861\n"
"help.text"
msgid "statement-block"
-msgstr ""
+msgstr "Befehlsblock"
#. 75jXr
#: 03090202.xhp
@@ -22460,7 +22460,7 @@ msgctxt ""
"bas_id501586521235517\n"
"help.text"
msgid "statement-block"
-msgstr ""
+msgstr "Befehlsblock"
#. hE24y
#: 03090202.xhp
@@ -22478,7 +22478,7 @@ msgctxt ""
"par_id3150358\n"
"help.text"
msgid "<emph>counter:</emph> Loop <literal>counter</literal> initially assigned the value to the right of the equal sign (<literal>start</literal>). Only numeric variables are valid. The loop counter increases or decreases according to the variable <literal>step</literal> until <literal>end</literal> is passed."
-msgstr ""
+msgstr "<emph>counter:</emph> Der Schleife <literal>counter</literal> wird anfänglich den Wert rechts vom Gleichheitszeichen (<literal>start</literal>) zugewiesen. Nur numerische Variablen sind gültig. Der Schleifenzähler erhöht oder verringert sich entsprechend der Variablen <literal>step</literal>, bis <literal>end</literal> passiert ist."
#. crpJL
#: 03090202.xhp
@@ -22487,7 +22487,7 @@ msgctxt ""
"par_id3152455\n"
"help.text"
msgid "<emph>start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
-msgstr ""
+msgstr "<emph>start:</emph> Numerische Variable, die den Startwert am Anfang der Schleife definiert."
#. u8ZEL
#: 03090202.xhp
@@ -22496,7 +22496,7 @@ msgctxt ""
"par_id3151043\n"
"help.text"
msgid "<emph>end:</emph> Numeric variable that defines the final value at the end of the loop."
-msgstr ""
+msgstr "<emph>end:</emph> Numerische Variable, die den Endwert am Ende der Schleife definiert."
#. TmxSC
#: 03090202.xhp
@@ -22505,7 +22505,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "<emph>step:</emph> Sets the value by which to increase or decrease the loop counter. If <literal>step</literal> is not specified, the loop counter is incremented by 1. In this case, <literal>end</literal> must be greater than <literal>start</literal>. If you want to decrease <literal>counter</literal>, <literal>end</literal> must be less than <literal>start</literal>, and <literal>step</literal> must be assigned a negative value."
-msgstr ""
+msgstr "<emph>step:</emph> Legt den Wert fest, um den der Schleifenzähler erhöht oder verringert wird. Wird <literal>step</literal> nicht angegeben, wird der Schleifenzähler um 1 erhöht. In diesem Fall muss <literal>end</literal> größer als <literal>start</literal> sein. Wenn Sie <literal>counter</literal> verringern möchten, muss <literal>end</literal> kleiner als <literal>start</literal> sein und <literal>step</literal> muss ein negativer Wert zugewiesen werden."
#. VMWd9
#: 03090202.xhp
@@ -22523,7 +22523,7 @@ msgctxt ""
"par_id3147287\n"
"help.text"
msgid "As the <literal>counter</literal> variable is decreased, %PRODUCTNAME Basic checks if the <literal>end</literal> value has been reached. As soon as the <literal>counter</literal> passes the <literal>end</literal> value, the loop automatically terminates."
-msgstr ""
+msgstr "Wenn die Variable <literal>counter</literal> verringert wird, prüft %PRODUCTNAME Basic, ob der Wert <literal>end</literal> erreicht wurde. Sobald der <literal>counter</literal> den Wert <literal>end</literal> passiert, wird die Schleife automatisch beendet."
#. hFEyc
#: 03090202.xhp
@@ -22550,7 +22550,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "When counting down the counter variable, %PRODUCTNAME Basic checks for overflow or underflow. The loop ends when <literal>counter</literal> exceeds <literal>end</literal> (positive Step value) or is less than <literal>end</literal> (negative Step value)."
-msgstr ""
+msgstr "Beim Herunterzählen der Zählervariablen prüft %PRODUCTNAME Basic auf Überlauf oder Unterlauf. Die Schleife endet, wenn <literal>counter</literal> den Wert für <literal>end</literal> überschreitet (positiver Wert für step) oder kleiner als <literal>end</literal> ist (negativer Wert für step)."
#. DNpBx
#: 03090202.xhp
@@ -22568,7 +22568,7 @@ msgctxt ""
"bas_id621586522583437\n"
"help.text"
msgid "statement-block"
-msgstr ""
+msgstr "Befehlsblock"
#. k56rG
#: 03090202.xhp
@@ -22577,7 +22577,7 @@ msgctxt ""
"bas_id711586522584013\n"
"help.text"
msgid "statement-block"
-msgstr ""
+msgstr "Befehlsblock"
#. C2e3R
#: 03090202.xhp
@@ -22586,7 +22586,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
-msgstr ""
+msgstr "Wenn Sie in verschachtelten Schleifen <emph>For … Next</emph> eine Schleife bedingungslos mit <emph>Exit For</emph> beenden, wird nur eine Schleife verlassen."
#. Xo6Nj
#: 03090202.xhp
@@ -22595,7 +22595,7 @@ msgctxt ""
"hd_id3148457\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Beispiele"
#. mdCY2
#: 03090202.xhp
@@ -22604,7 +22604,7 @@ msgctxt ""
"par_id3151074\n"
"help.text"
msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that is filled with various contents:"
-msgstr ""
+msgstr "Das folgende Beispiel verwendet zwei verschachtelte Schleifen, um ein String-Array mit 10 Elementen ( sEntry() ) zu sortieren, das mit verschiedenen Inhalten gefüllt ist:"
#. uEoLD
#: 03090202.xhp
@@ -22613,7 +22613,7 @@ msgctxt ""
"par_id561586524231943\n"
"help.text"
msgid "This explores the content of an array to display each item it contains."
-msgstr ""
+msgstr "Dadurch wird der Inhalt eines Arrays untersucht, um jedes darin enthaltene Element anzuzeigen."
#. TGDLQ
#: 03090202.xhp
@@ -22622,7 +22622,7 @@ msgctxt ""
"bas_id511586523090639\n"
"help.text"
msgid "Sub list_iteration"
-msgstr ""
+msgstr "Sub list_iteration"
#. biVQS
#: 03090202.xhp
@@ -22631,7 +22631,7 @@ msgctxt ""
"bas_id391586523091799\n"
"help.text"
msgid "cutlery = Array(\"fork\", \"knife\", \"spoon\")"
-msgstr ""
+msgstr "cutlery = Array(\"Gabel\", \"Messer\", \"Löffel\")"
#. AupdW
#: 03090202.xhp
@@ -22640,7 +22640,7 @@ msgctxt ""
"bas_id811586523092655\n"
"help.text"
msgid "For Each item in cutlery"
-msgstr ""
+msgstr "For Each item in cutlery"
#. BdxhG
#: 03090202.xhp
@@ -22649,7 +22649,7 @@ msgctxt ""
"bas_id271586523092911\n"
"help.text"
msgid "Print item"
-msgstr ""
+msgstr "Print item"
#. Pjkxm
#: 03090202.xhp
@@ -22658,7 +22658,7 @@ msgctxt ""
"bas_id941586523093415\n"
"help.text"
msgid "Next ' item"
-msgstr ""
+msgstr "Next ' item"
#. ArG25
#: 03090202.xhp
@@ -22667,7 +22667,7 @@ msgctxt ""
"bas_id301586523093607\n"
"help.text"
msgid "End Sub"
-msgstr ""
+msgstr "End Sub"
#. GD68h
#: 03090203.xhp
@@ -22811,7 +22811,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>GoSub...Return statement</bookmark_value> <bookmark_value>label; in GoSub...Return statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>GoSub … Return (Anweisung)</bookmark_value><bookmark_value>label; in GoSub … Return (Anweisung)</bookmark_value>"
#. gVEdC
#: 03090301.xhp
@@ -22820,7 +22820,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "<variable id=\"GoSubh1\"><link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement\">GoSub...Return Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"GoSubh1\"><link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement\">Anweisung GoSub … Return</link></variable>"
#. HSYep
#: 03090301.xhp
@@ -22829,7 +22829,7 @@ msgctxt ""
"par_id3145316\n"
"help.text"
msgid "Calls a subroutine that is indicated by a label inside a <literal>Sub</literal> or a <literal>Function</literal>. The statements following the label are executed until the next <literal>Return</literal> statement. Afterwards, the program continues with the statement that follows the <literal>GoSub</literal> statement."
-msgstr ""
+msgstr "Ruft eine Subroutine auf, die durch \"label\" innerhalb einer <literal>Sub</literal> oder einer <literal>Function</literal> angezeigt wird. Die auf \"label\" folgenden Anweisungen werden bis zur nächsten Anweisung <literal>Return</literal> ausgeführt. Danach fährt das Programm mit der Anweisung fort, die der Anweisung <literal>GoSub</literal> folgt."
#. g6Wgg
#: 03090301.xhp
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "GoSub label[:]"
-msgstr ""
+msgstr "GoSub label[:]"
#. krBDs
#: 03090301.xhp
@@ -22847,7 +22847,7 @@ msgctxt ""
"par_id471588670859073\n"
"help.text"
msgid "<emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label in that of the routine it belongs to."
-msgstr ""
+msgstr "<emph>label:</emph> Eine Zeilenkennung, die angibt, wo die Ausführung fortgesetzt werden soll. Der Geltungsbereich von \"label\" in der Routine, zu der es gehört."
#. sqKLC
#: 03090301.xhp
@@ -22856,7 +22856,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "The <literal>GoSub</literal> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
-msgstr ""
+msgstr "Die Anweisung <literal>GoSub</literal> ruft eine lokale Subroutine, die durch \"label\" gekennzeichnet ist, innerhalb einer Subroutine oder Funktion auf. Der Name von \"label\" muss mit einem Doppelpunkt (\":\") enden."
#. CfgLj
#: 03090301.xhp
@@ -22865,7 +22865,7 @@ msgctxt ""
"bas_id411588670455217\n"
"help.text"
msgid "' statements"
-msgstr ""
+msgstr "' Anweisungen"
#. hGEZe
#: 03090301.xhp
@@ -22874,7 +22874,7 @@ msgctxt ""
"bas_id421588670457589\n"
"help.text"
msgid "' statements"
-msgstr ""
+msgstr "' Anweisungen"
#. a8NbA
#: 03090301.xhp
@@ -22883,7 +22883,7 @@ msgctxt ""
"bas_id171588670458263\n"
"help.text"
msgid "' statements"
-msgstr ""
+msgstr "' Anweisungen"
#. X2mAh
#: 03090301.xhp
@@ -22955,7 +22955,7 @@ msgctxt ""
"bm_id3159413\n"
"help.text"
msgid "<bookmark_value>GoTo statement</bookmark_value> <bookmark_value>label; in GoTo statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>GoTo (Anweisung)</bookmark_value><bookmark_value>label; in Anweisung GoTo</bookmark_value>"
#. 6PsQf
#: 03090302.xhp
@@ -22964,7 +22964,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "<variable id=\"GoToh1\"><link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement\">GoTo Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"GoToh1\"><link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement\">Anweisung GoTo</link></variable>"
#. zmo8E
#: 03090302.xhp
@@ -22973,7 +22973,7 @@ msgctxt ""
"par_id3153379\n"
"help.text"
msgid "Continues program execution within a <literal>Sub</literal> or <literal>Function</literal> at the procedure line indicated by a label."
-msgstr ""
+msgstr "Setzt die Programmausführung innerhalb einer <literal>Sub</literal> oder <literal>Function</literal> an der durch \"label\" gekennzeichneten Prozedurzeile fort."
#. MFgEA
#: 03090302.xhp
@@ -23018,7 +23018,7 @@ msgctxt ""
"par_id3155416\n"
"help.text"
msgid "You cannot use the <literal>GoTo</literal> statement to jump out of a <literal>Sub</literal> or <literal>Function</literal>."
-msgstr ""
+msgstr "Sie können die Anweisung <literal>GoTo</literal> nicht verwenden, um aus <literal>Sub</literal> oder <literal>Function</literal> zu springen."
#. s9tCK
#: 03090302.xhp
@@ -23036,7 +23036,7 @@ msgctxt ""
"par_id3156424\n"
"help.text"
msgid "' statement block"
-msgstr ""
+msgstr "' Befehlsblock"
#. 4DWfG
#: 03090302.xhp
@@ -23045,7 +23045,7 @@ msgctxt ""
"par_id3161832\n"
"help.text"
msgid "' statement block"
-msgstr ""
+msgstr "' Befehlsblock"
#. FMGBa
#: 03090302.xhp
@@ -23054,7 +23054,7 @@ msgctxt ""
"par_id3152462\n"
"help.text"
msgid "' statement block"
-msgstr ""
+msgstr "' Befehlsblock"
#. GLei6
#: 03090303.xhp
@@ -23072,7 +23072,7 @@ msgctxt ""
"bm_id3153897\n"
"help.text"
msgid "<bookmark_value>On...GoSub statement</bookmark_value> <bookmark_value>On...GoTo statement</bookmark_value> <bookmark_value>label; in On...GoSub statement</bookmark_value> <bookmark_value>label; in On...GoTo statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>On … GoSub (Anweisung)</bookmark_value><bookmark_value>On … GoTo (Anweisung)</bookmark_value><bookmark_value>label; in Anweisung On … GoSub</bookmark_value><bookmark_value>label; in Anweisung On … GoTo</bookmark_value>"
#. 2xMSm
#: 03090303.xhp
@@ -23081,7 +23081,7 @@ msgctxt ""
"hd_id3153897\n"
"help.text"
msgid "<variable id=\"OnGoSubGoToh1\"><link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement\">On...GoSub Statement; On...GoTo Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"OnGoSubGoToh1\"><link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement\">Anweisung On … GoSub; Anweisung On … GoTo</link></variable>"
#. 9AaZW
#: 03090303.xhp
@@ -23099,7 +23099,7 @@ msgctxt ""
"par_id841588605629842\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/On-GoSub-GoTo_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">On GoSub/GoTo syntax</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/On-GoSub-GoTo_statement.svg\" id=\"img_id931588605629842\"><alt id=\"alt_id931588605629842\">Syntax für On … GoSub/GoTo</alt></image>"
#. 7DeW7
#: 03090303.xhp
@@ -23108,7 +23108,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "On expression GoSub Label1[, Label2[, Label3[,...]]]"
-msgstr ""
+msgstr "On Ausdruck GoSub Bezeichnung1[, Bezeichnung2[, Bezeichnung3[, …]]]"
#. osLES
#: 03090303.xhp
@@ -23117,7 +23117,7 @@ msgctxt ""
"par_id3150769\n"
"help.text"
msgid "On expression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr ""
+msgstr "On Ausdruck GoTo Bezeichnung1[, Bezeichnung2[, Bezeichnung3[, …]]]"
#. eLCEK
#: 03090303.xhp
@@ -23126,7 +23126,7 @@ msgctxt ""
"par_id3148673\n"
"help.text"
msgid "<emph>expression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If <emph>expression</emph> is 0, the statement is not executed. If <emph>expression</emph> is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
-msgstr ""
+msgstr "<emph>Ausdruck:</emph> Jeder numerische Ausdruck zwischen 0 und 255, der bestimmt, zu welcher Zeile das Programm verzweigt. Wenn <emph>Ausdruck</emph> 0 ist, wird die Anweisung nicht ausgeführt. Wenn <emph>Ausdruck</emph> größer als 0 ist, springt das Programm zu der Bezeichnung, dessen Positionsnummer dem Ausdruck entspricht (1 = Erste Bezeichnung; 2 = Zweite Bezeichnung)"
#. K4CfD
#: 03090303.xhp
@@ -23135,7 +23135,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<emph>label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
-msgstr ""
+msgstr "<emph>Bezeichnung:</emph> Zielzeile gemäß <emph>GoTo</emph> oder <emph>GoSub</emph>."
#. eqUXk
#: 03090303.xhp
@@ -23243,7 +23243,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "Transfers the control of the program to a subroutine, a function, or a procedure of a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">Dynamic Link Library (DLL)</link>. The keyword, type and number of parameters is dependent on the routine that is being called."
-msgstr ""
+msgstr "Übergibt die Kontrolle des Programms an ein Unterprogramm, eine Funktion oder eine Prozedur einer <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">DLL (Dynamic Link Library)</link>. Schlüsselwort, Typ und Anzahl der Parameter sind abhängig von der aufgerufenen Routine."
#. MdeJS
#: 03090401.xhp
@@ -23261,7 +23261,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Call_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Call Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Call_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Call</alt></image>"
#. zeXDB
#: 03090401.xhp
@@ -23270,7 +23270,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "[Call] name [(] [param :=] value, ... [)]"
-msgstr ""
+msgstr "[Call] Name [(] [Param :=] Wert, … [)]"
#. 5MBBJ
#: 03090401.xhp
@@ -23288,7 +23288,7 @@ msgctxt ""
"par_id3148473\n"
"help.text"
msgid "<emph>name:</emph> Name of the subroutine, the function, or the <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">DLL</link> that you want to call"
-msgstr ""
+msgstr "<emph>Name:</emph> Name des Unterprogramms, der Funktion oder der auszurufenden <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Dynamic Link Library\">DLL</link>"
#. 23rrr
#: 03090401.xhp
@@ -23297,7 +23297,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "<emph>param:</emph> Keyword parameter name to pass to the routine, followed by its <emph>value</emph>. The name must match the routine declaration. Keywords are optional and can be used in any order."
-msgstr ""
+msgstr "<emph>Param:</emph> Der Name des Schlüsselwortparameters, der an die Routine übergeben werden soll, gefolgt von seinem <emph>Wert</emph>. Der Name muss mit der Routinedeklaration übereinstimmen. Schlüsselwörter sind optional und können in beliebiger Reihenfolge verwendet werden."
#. r9JSP
#: 03090401.xhp
@@ -23306,7 +23306,7 @@ msgctxt ""
"par_id871586190690812\n"
"help.text"
msgid "<emph>value:</emph> Positional parameter value. The type is dependent on the routine that is being called"
-msgstr ""
+msgstr "<emph>Wert:</emph> Positionsparameterwert. Der Typ ist abhängig von der aufgerufenen Routine"
#. gANH7
#: 03090401.xhp
@@ -23315,7 +23315,7 @@ msgctxt ""
"par_id421586006407428\n"
"help.text"
msgid "When mixing positional and keyword parameters, make sure positional parameters are following the routine declaration order."
-msgstr ""
+msgstr "Stellen Sie beim Mischen von Positions- und Schlüsselwortparametern sicher, dass die Positionsparameter der Deklarationsreihenfolge der Routine folgen."
#. xFXk8
#: 03090401.xhp
@@ -23324,7 +23324,7 @@ msgctxt ""
"par_id3154216\n"
"help.text"
msgid "When a function is used as an expression, enclosing parameters with brackets becomes necessary. Using a <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare statement</link> is compulsory prior to call a DLL."
-msgstr ""
+msgstr "Wenn eine Funktion als Ausdruck verwendet wird, müssen Parameter in Klammern eingeschlossen werden. Die Verwendung einer <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Anweisung Declare</link> ist vor dem Aufruf einer DLL obligatorisch."
#. QZZ8c
#: 03090401.xhp
@@ -23720,7 +23720,7 @@ msgctxt ""
"par_id51581259731973\n"
"help.text"
msgid "End Property: Marks the end of a <emph>Property</emph> statement."
-msgstr ""
+msgstr "End Property: Markiert das Ende einer Anweisung <emph>Property</emph>."
#. 3xFEp
#: 03090404.xhp
@@ -23936,7 +23936,7 @@ msgctxt ""
"par_id971588473588701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Function_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Function Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Function_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Function</alt></image>"
#. 5Gonq
#: 03090406.xhp
@@ -23945,7 +23945,7 @@ msgctxt ""
"bas_id541588427401158\n"
"help.text"
msgid "statements"
-msgstr ""
+msgstr "Anweisungen"
#. c2Voc
#: 03090406.xhp
@@ -23954,7 +23954,7 @@ msgctxt ""
"bas_id631588427410583\n"
"help.text"
msgid "statements"
-msgstr ""
+msgstr "Anweisungen"
#. QYBuD
#: 03090406.xhp
@@ -23963,7 +23963,7 @@ msgctxt ""
"par_id81588429476557\n"
"help.text"
msgid "<emph>scope:</emph> Function default scope is <literal>Public</literal>. A <literal>Private</literal> scope denotes a module internal routine, not intended to be used from other modules."
-msgstr ""
+msgstr "<emph>Bereich:</emph> Der Standardbereich der Funktion ist <literal>Public</literal>. Der Bereich <literal>Private</literal> bezeichnet eine modulinterne Routine, die nicht von anderen Modulen verwendet werden soll."
#. h8Q2o
#: 03090406.xhp
@@ -23972,7 +23972,7 @@ msgctxt ""
"par_id3153193\n"
"help.text"
msgid "<emph>name:</emph> Name of the subroutine to contain the value returned by the function."
-msgstr ""
+msgstr "<emph>Name:</emph> Name der Unterroutine, die den von der Funktion zurückgegebenen Wert enthalten soll."
#. EUtuq
#: 03090406.xhp
@@ -23981,7 +23981,7 @@ msgctxt ""
"par_id3147229\n"
"help.text"
msgid "<emph>arguments:</emph> Parameters to be passed to the subroutine."
-msgstr ""
+msgstr "<emph>Argumente:</emph> Parameter, die an das Unterprogramm übergeben werden."
#. LGVjB
#: 03090406.xhp
@@ -23990,7 +23990,7 @@ msgctxt ""
"hd_id3163710\n"
"help.text"
msgid "Examples:"
-msgstr ""
+msgstr "Beispiele:"
#. x3YcB
#: 03090406.xhp
@@ -24197,7 +24197,7 @@ msgctxt ""
"par_id971587473488701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Sub_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Sub Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Sub_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Sub</alt></image>"
#. YnF6z
#: 03090409.xhp
@@ -24206,7 +24206,7 @@ msgctxt ""
"par_id3147530\n"
"help.text"
msgid "' statements"
-msgstr ""
+msgstr "' Anweisungen"
#. 8nKUN
#: 03090409.xhp
@@ -24215,7 +24215,7 @@ msgctxt ""
"par_id3148530\n"
"help.text"
msgid "' statements"
-msgstr ""
+msgstr "' Anweisungen"
#. eZzjc
#: 03090409.xhp
@@ -24224,7 +24224,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "<emph>name:</emph> Name of the subroutine."
-msgstr ""
+msgstr "<emph>Name:</emph> Name der Subroutine."
#. wDkCq
#: 03090409.xhp
@@ -24233,7 +24233,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "<emph>arguments:</emph> Optional parameters that you want to pass to the subroutine."
-msgstr ""
+msgstr "<emph>Argumente:</emph> Optionale Parameter, die Sie an die Subroutine übergeben möchten."
#. CCDzt
#: 03090410.xhp
@@ -24467,7 +24467,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, a property, or a subroutine."
-msgstr ""
+msgstr "Beendet <emph>Do … Loop</emph>, <emph>For … Next</emph>, eine Funktion, eine Eigenschaft oder eine Subroutine."
#. LYyBt
#: 03090412.xhp
@@ -24476,7 +24476,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "Exit Do, Exit For, Exit Function, Exit Property, Exit Sub"
-msgstr ""
+msgstr "Exit Do, Exit For, Exit Function, Exit Property, Exit Sub"
#. CaPsN
#: 03090412.xhp
@@ -24512,7 +24512,7 @@ msgctxt ""
"par_id1001581260355700\n"
"help.text"
msgid "Exits the <emph>Property</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Property</emph> call."
-msgstr ""
+msgstr "Beendet die Prozedur <emph>Property</emph> sofort. Die Programmausführung wird mit der Anweisung fortgesetzt, die dem Aufruf von <emph>Property</emph> folgt."
#. 2jmBs
#: 03090412.xhp
@@ -24620,7 +24620,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Type_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Type statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Type_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Type</alt></image>"
#. sSoso
#: 03090413.xhp
@@ -24629,7 +24629,7 @@ msgctxt ""
"par_id701574739564765\n"
"help.text"
msgid "Extended types such as <literal>Type</literal> statement structures, UNO objects or <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule\">ClassModule</link> objects are valid typenames."
-msgstr ""
+msgstr "Erweiterte Typen wie Anweisungsstrukturen <literal>Type</literal>, UNO-Objekte oder Objekte <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule\">ClassModule</link> sind gültige Typnamen."
#. TTALN
#: 03090413.xhp
@@ -24980,7 +24980,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "<variable id=\"CvErrh1\"><link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"CvErrh1\"><link href=\"text/sbasic/shared/03100080.xhp\">Funktion CVErr</link></variable>"
#. 3B8u2
#: 03100080.xhp
@@ -26753,7 +26753,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "Declares variables or arrays."
-msgstr ""
+msgstr "Deklariert Variablen oder Arrays."
#. 7Ske5
#: 03102100.xhp
@@ -26762,7 +26762,7 @@ msgctxt ""
"par_id3154686\n"
"help.text"
msgid "If the variables are separated by commas - for example <literal>Dim v1, v2, v3 As String</literal> - first ones get defined as Variant variables. A new line, or colon sign (<emph>:</emph>), help separate variable definitions."
-msgstr ""
+msgstr "Werden die Variablen durch Kommas getrennt – zum Beispiel <literal>Dim v1, v2, v3 As String</literal> – werden die ersten als Variant-Variablen definiert. Eine neue Zeile oder ein Doppelpunkt (<emph>:</emph>) hilft beim Trennen von Variablendefinitionen."
#. sZ9H8
#: 03102100.xhp
@@ -26771,7 +26771,7 @@ msgctxt ""
"par_id3152576\n"
"help.text"
msgid "<literal>Dim</literal> declares local variables within subroutines. Global variables are declared with the <literal>Global</literal>, <literal>Public</literal> or the <literal>Private</literal> statement."
-msgstr ""
+msgstr "<literal>Dim</literal> deklariert lokale Variablen innerhalb von Unterprogrammen. Globale Variablen werden mit den Anweisungen <literal>Global</literal>, <literal>Public</literal> oder <literal>Private</literal> deklariert."
#. RWfkr
#: 03102100.xhp
@@ -26780,7 +26780,7 @@ msgctxt ""
"par_id971587473488701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Dim_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Dim Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Dim_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Dim</alt></image>"
#. bEQhy
#: 03102100.xhp
@@ -26789,7 +26789,7 @@ msgctxt ""
"par_id3149412\n"
"help.text"
msgid "Dim variable [(start To end)] [As typename][, variable2[char] [(start To end)] [,...]]"
-msgstr ""
+msgstr "Dim Variable [(Start To Ende)] [As Typname][, Variable2[char] [(Start To Ende)] [, …]]"
#. JBuCh
#: 03102100.xhp
@@ -26798,7 +26798,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<emph>variable:</emph> Any variable or array name."
-msgstr ""
+msgstr "<emph>Variable:</emph> Beliebiger Variablen- oder Array-Name."
#. wB6Jx
#: 03102100.xhp
@@ -26807,7 +26807,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "<emph>typename:</emph> Keyword that declares the data type of a variable."
-msgstr ""
+msgstr "<emph>Typname:</emph> Schlüsselwort, das den Datentyp einer Variablen deklariert."
#. Rqp83
#: 03102100.xhp
@@ -26816,7 +26816,7 @@ msgctxt ""
"par_id971587473508701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4156296484515\"><alt id=\"alt_id15152796484515\">primitive data types fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4156296484515\"><alt id=\"alt_id15152796484515\">Fragment primitiver Datentypen</alt></image>"
#. pFWdb
#: 03102100.xhp
@@ -26825,7 +26825,7 @@ msgctxt ""
"par_id21587557790810\n"
"help.text"
msgid "<emph>Byte:</emph> Byte variable (0-255)"
-msgstr ""
+msgstr "<emph>Byte:</emph> Byte-Variabel (0-255)"
#. fQsgi
#: 03102100.xhp
@@ -26834,7 +26834,7 @@ msgctxt ""
"par_id3153949\n"
"help.text"
msgid "<emph>Boolean:</emph> Boolean variable (True, False)"
-msgstr ""
+msgstr "<emph>Boolean:</emph> boolesche Variable (Wahr, Falsch)"
#. PouUE
#: 03102100.xhp
@@ -26843,7 +26843,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "<emph>Currency:</emph> Currency variable (Currency with 4 Decimal places)"
-msgstr ""
+msgstr "<emph>Currency:</emph> Währungsvariable (Währung mit 4 Nachkommastellen)"
#. BHPpy
#: 03102100.xhp
@@ -26861,7 +26861,7 @@ msgctxt ""
"par_id3148405\n"
"help.text"
msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
-msgstr ""
+msgstr "<emph>Double:</emph> Gleitkommavariable mit doppelter Genauigkeit (1,79769313486232x10E308 – 4,94065645841247x10E-324)"
#. kBUDz
#: 03102100.xhp
@@ -26888,7 +26888,7 @@ msgctxt ""
"par_id3149255\n"
"help.text"
msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with <literal>Set</literal>!)"
-msgstr ""
+msgstr "<emph>Object:</emph> Objektvariable (Achtung: diese Variable kann nur nachträglich mit <literal>Set</literal> definiert werden!)"
#. iBZ3a
#: 03102100.xhp
@@ -26915,7 +26915,7 @@ msgctxt ""
"par_id3154704\n"
"help.text"
msgid "<emph>Variant:</emph> Variant variable type (contains all types, specified by definition). If a type name is not specified, variables are automatically defined as Variant Type, unless a statement from <literal>DefBool</literal> to <literal>DefVar</literal> is used."
-msgstr ""
+msgstr "<emph>Variant:</emph> Variablentyp Variant (enthält alle Typen, die per Definition angegeben sind). Wird kein Typname angegeben, werden Variablen automatisch als Typ \"Variant\" definiert, es sei denn, es wird eine Anweisung von <literal>DefBool</literal> bis <literal>DefVar</literal> verwendet."
#. 2GyLr
#: 03102100.xhp
@@ -26924,7 +26924,7 @@ msgctxt ""
"par_id21587667790810\n"
"help.text"
msgid "<emph>object:</emph> Universal Network object (UNO) object or <link href=\"text/sbasic/shared/classmodule\" name=\"Class module\">ClassModule</link> object instance."
-msgstr ""
+msgstr "<emph>objekt:</emph> UNO-Objekt (Universal Network Object) oder Objektinstanz <link href=\"text/sbasic/shared/classmodule\" name=\"Class module\">ClassModule</link>."
#. NbDcm
#: 03102100.xhp
@@ -26933,7 +26933,7 @@ msgctxt ""
"par_id3153510\n"
"help.text"
msgid "<emph>char:</emph> Special character that declares the data type of a variable."
-msgstr ""
+msgstr "<emph>char:</emph> Sonderzeichen, das den Datentyp einer Variablen deklariert."
#. 52vix
#: 03102100.xhp
@@ -26942,7 +26942,7 @@ msgctxt ""
"par_id971587473518701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4156296484516\"><alt id=\"alt_id15152796484516\">Type declaration characters fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4156296484516\"><alt id=\"alt_id15152796484516\">Zeichenfragment einer Deklaration Type</alt></image>"
#. JgnAC
#: 03102100.xhp
@@ -26951,7 +26951,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "In %PRODUCTNAME Basic, you do not need to declare variables explicitly. However, you need to declare arrays before you can use them. You can declare a variable with the <literal>Dim</literal> statement, using commas (<emph>,</emph>) to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding type keyword name."
-msgstr ""
+msgstr "In %PRODUCTNAME Basic müssen Sie Variablen nicht explizit deklarieren. Sie müssen jedoch Arrays deklarieren, bevor Sie sie verwenden können. Sie können eine Variable mit der Anweisung <literal>Dim</literal> deklarieren, indem Sie Kommata (<emph>,</emph>) verwenden, um mehrere Deklarationen zu trennen. Um einen Variablentyp zu deklarieren, geben Sie nach dem Namen ein Typdeklarationszeichen ein oder verwenden Sie einen entsprechenden Typschlüsselwortnamen."
#. VDkAN
#: 03102100.xhp
@@ -26960,7 +26960,7 @@ msgctxt ""
"par_id441587477911298\n"
"help.text"
msgid "<emph>array:</emph> Array declaration."
-msgstr ""
+msgstr "<emph>array:</emph> Array-Deklaration."
#. TmrKG
#: 03102100.xhp
@@ -26969,7 +26969,7 @@ msgctxt ""
"par_id971587473519701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/array_fragment.svg\" id=\"img_id4156296485516\"><alt id=\"alt_id15152796485516\">array fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/array_fragment.svg\" id=\"img_id4156296485516\"><alt id=\"alt_id15152796485516\">Fragment für ein array</alt></image>"
#. BaEsN
#: 03102100.xhp
@@ -26978,7 +26978,7 @@ msgctxt ""
"par_id3147125\n"
"help.text"
msgid "<emph>start, end:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
-msgstr ""
+msgstr "<emph>Start, Ende:</emph> Numerische Werte oder Konstanten, die die Anzahl der Elemente (NumberElements=(Ende-Start)+1) und den Indexbereich definieren."
#. T2g5D
#: 03102100.xhp
@@ -26987,7 +26987,7 @@ msgctxt ""
"par_id3153877\n"
"help.text"
msgid "<emph>start</emph> and <emph>end</emph> can be numerical expressions if <literal>ReDim</literal> is applied at the procedure level."
-msgstr ""
+msgstr "<emph>Start</emph> und <emph>Ende</emph> können numerische Ausdrücke sein, wenn <literal>ReDim</literal> auf Prozedurebene angewendet wird."
#. JkDDD
#: 03102100.xhp
@@ -27005,7 +27005,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "Arrays are declared with the <literal>Dim</literal> statement. There are multiple ways to define the index range:"
-msgstr ""
+msgstr "Arrays werden mit der Anweisung <literal>Dim</literal> deklariert. Es gibt mehrere Möglichkeiten, den Indexbereich zu definieren:"
#. iXgDy
#: 03102100.xhp
@@ -27014,7 +27014,7 @@ msgctxt ""
"bas_id381587475057846\n"
"help.text"
msgid "Dim text(20) As String ' 21 elements numbered from 0 to 20"
-msgstr ""
+msgstr "Dim Text(20) As String ' 21 Elemente nummeriert von 0 bis 20"
#. Du5a3
#: 03102100.xhp
@@ -27023,7 +27023,7 @@ msgctxt ""
"bas_id1001587475058292\n"
"help.text"
msgid "Dim value(5 to 25) As Integer ' 21 values numbered from 5 to 25"
-msgstr ""
+msgstr "Dim Wert(5 to 25) As Integer ' 21 Werte nummeriert von 5 bis 25"
#. 66C57
#: 03102100.xhp
@@ -27032,7 +27032,7 @@ msgctxt ""
"bas_id481587475059423\n"
"help.text"
msgid "Dim amount(-15 to 5) As Currency ' 21 amounts (including 0), numbered from -15 to 5"
-msgstr ""
+msgstr "Dim Betrag(-15 to 5) As Currency ' 21 Beträge (einschließlich 0), nummeriert von -15 bis 5"
#. Q6d4T
#: 03102100.xhp
@@ -27041,7 +27041,7 @@ msgctxt ""
"bas_id621587475059824\n"
"help.text"
msgid "REM Two-dimensional data field"
-msgstr ""
+msgstr "REM Zweidimensionales Datenfeld"
#. 9gAsN
#: 03102100.xhp
@@ -27050,7 +27050,7 @@ msgctxt ""
"bas_id11587475060830\n"
"help.text"
msgid "Dim table$(20,2) ' 63 items; from 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
-msgstr ""
+msgstr "Dim Tabelle$(20,2) '63 Einträge; von 0 bis 20 in Ebene 1, von 0 bis 20 in Ebene 2 und von 0 bis 20 in Ebene 3."
#. FLoRP
#: 03102100.xhp
@@ -27059,7 +27059,7 @@ msgctxt ""
"par_id3159239\n"
"help.text"
msgid "You can declare an array types as dynamic if a <literal>ReDim</literal> statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with <literal>ReDim</literal>. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
-msgstr ""
+msgstr "Sie können einen Array-Typ als dynamisch deklarieren, wenn eine Anweisung <literal>ReDim</literal> die Anzahl der Dimensionen in der Unterroutine oder der Funktion definiert, die das Array enthält. Im Allgemeinen können Sie eine Array-Dimension nur einmal definieren und nicht ändern. Innerhalb einer Subroutine können Sie mit <literal>ReDim</literal> ein Array deklarieren. Sie können Dimensionen nur mit numerischen Ausdrücken definieren. Dadurch wird sichergestellt, dass die Felder nur so groß wie nötig sind."
#. cGpY9
#: 03102100.xhp
@@ -27113,7 +27113,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "Declares or redefines variables or arrays."
-msgstr ""
+msgstr "Deklariert oder definiert Variablen oder Arrays neu."
#. dTArZ
#: 03102101.xhp
@@ -27122,7 +27122,7 @@ msgctxt ""
"par_id971587473488701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/ReDim_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">ReDim Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/ReDim_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung ReDim</alt></image>"
#. bD6eG
#: 03102101.xhp
@@ -27131,7 +27131,7 @@ msgctxt ""
"par_id3156214\n"
"help.text"
msgid "ReDim [Preserve] variable [(start To end)] [As type-name][, variable2 [(start To end)] [As type-name][,...]]"
-msgstr ""
+msgstr "ReDim [Preserve] Variable [(Start To Ende)] [As Typname][, Variable2 [(Start To End)] [As Typname][, …]]"
#. 5wDoD
#: 03102101.xhp
@@ -27140,7 +27140,7 @@ msgctxt ""
"par_id711996\n"
"help.text"
msgid "Optionally, add the <literal>Preserve</literal> keyword to preserve the contents of the array that is redimensioned. <literal>ReDim</literal> can only be used in subroutines."
-msgstr ""
+msgstr "Fügen Sie optional das Schlüsselwort <literal>Preserve</literal> hinzu, um den Inhalt des neu dimensionierten Arrays beizubehalten. <literal>ReDim</literal> kann nur in Unterprogrammen verwendet werden."
#. TTGyB
#: 03102101.xhp
@@ -27500,7 +27500,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "<variable id=\"IsErrorh1\"><link href=\"text/sbasic/shared/03102450.xhp\">IsError Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"IsErrorh1\"><link href=\"text/sbasic/shared/03102450.xhp\">Funktion IsError</link></variable>"
#. yQg58
#: 03102450.xhp
@@ -27815,7 +27815,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "Tests if a variable is an object, as opposed to primitive data types such as dates, numbers, texts. The function returns <literal>True</literal> if the variable is an object, otherwise it returns <literal>False</literal>."
-msgstr ""
+msgstr "Testet, ob eine Variable ein Objekt ist, im Gegensatz zu primitiven Datentypen wie Datumsangaben, Zahlen, Texte. Die Funktion gibt <literal>True</literal> zurück, wenn die Variable ein Objekt ist, andernfalls gibt sie <literal>False</literal> zurück."
#. gBKMV
#: 03102800.xhp
@@ -27833,7 +27833,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "IsObject(var)"
-msgstr ""
+msgstr "IsObject(var)"
#. ni2zH
#: 03102800.xhp
@@ -27851,7 +27851,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "Boolean"
-msgstr ""
+msgstr "Boolean"
#. rEmQA
#: 03102800.xhp
@@ -27869,7 +27869,7 @@ msgctxt ""
"par_id3148552\n"
"help.text"
msgid "<emph>var:</emph> Any variable that you want to test."
-msgstr ""
+msgstr "<emph>var:</emph> Jede Variable, die Sie testen möchten."
#. SPGXx
#: 03102800.xhp
@@ -27878,7 +27878,7 @@ msgctxt ""
"par_id891575896963115\n"
"help.text"
msgid "The following objects return <literal>True</literal>:"
-msgstr ""
+msgstr "Die folgenden Objekte geben <literal>True</literal> zurück:"
#. CBoWs
#: 03102800.xhp
@@ -27887,7 +27887,7 @@ msgctxt ""
"par_id471575892220352\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">OLE objects or </caseinline></switchinline>UNO objects"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">OLE- oder </caseinline></switchinline>UNO-Objekte"
#. mBGyY
#: 03102800.xhp
@@ -27896,7 +27896,7 @@ msgctxt ""
"par_id451575892264518\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/classmodule.xhp\" name=\"Class module\">Class module</link> object instances"
-msgstr ""
+msgstr "Objektinstanzen <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"Class module\">Klassenmodul</link>"
#. DgPrD
#: 03102800.xhp
@@ -27905,7 +27905,7 @@ msgctxt ""
"par_id851575882379006\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Extended types\">Extended types</link> or <link href=\"text/sbasic/shared/enum.xhp\" name=\"enumerations\">enumerations</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Extended types\">Erweiterte Typen</link> oder <link href=\"text/sbasic/shared/enum.xhp\" name=\"enumerations\">Aufzählungen</link>"
#. TFDZQ
#: 03102800.xhp
@@ -27914,7 +27914,7 @@ msgctxt ""
"par_id131575882378422\n"
"help.text"
msgid "Routines or variables when defined as Object."
-msgstr ""
+msgstr "Routinen oder Variablen, wenn sie als Objekt definiert sind."
#. oqtFf
#: 03102800.xhp
@@ -27923,7 +27923,7 @@ msgctxt ""
"par_id511575889156356\n"
"help.text"
msgid "%PRODUCTNAME Basic modules"
-msgstr ""
+msgstr "%PRODUCTNAME Basic-Module"
#. MCx37
#: 03102800.xhp
@@ -27932,7 +27932,7 @@ msgctxt ""
"par_id441575886284392\n"
"help.text"
msgid "Data structures return <literal>True</literal> even when empty. Object defined variables return <literal>True</literal> even if uninitialized."
-msgstr ""
+msgstr "Datenstrukturen geben <literal>True</literal> zurück, auch wenn sie leer sind. Objektdefinierte Variablen geben <literal>True</literal> zurück, auch wenn sie nicht initialisiert sind."
#. yHDkt
#: 03102800.xhp
@@ -27941,7 +27941,7 @@ msgctxt ""
"par_id191575887649871\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum statement\">Enum statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/enum.xhp\" name=\"Enum statement\">Anweisung Enum</link>"
#. Dg4st
#: 03102800.xhp
@@ -27950,7 +27950,7 @@ msgctxt ""
"par_id51575897210153\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type statement\">Type statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type statement\">Anweisung Type</link>"
#. WEgzG
#: 03102800.xhp
@@ -27959,7 +27959,7 @@ msgctxt ""
"par_id811575887627196\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using variables\">Using variables</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using variables\">Variablen verwenden</link>"
#. dj7fW
#: 03102900.xhp
@@ -28193,7 +28193,7 @@ msgctxt ""
"par_id41586012988213\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/LetSet_statement.svg\" id=\"img_id4156306484514\"><alt id=\"alt_id15152796484514\">Let Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/LetSet_statement.svg\" id=\"img_id4156306484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Let</alt></image>"
#. X4WmE
#: 03103100.xhp
@@ -28211,7 +28211,7 @@ msgctxt ""
"par_id3147560\n"
"help.text"
msgid "<emph>variable:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
-msgstr ""
+msgstr "<emph>Variable:</emph> Variable, der Sie einen Wert zuweisen möchten. Wert und Variablentyp müssen kompatibel sein."
#. ZCswn
#: 03103100.xhp
@@ -28499,7 +28499,7 @@ msgctxt ""
"bm_id3159201\n"
"help.text"
msgid "<bookmark_value>Global keyword</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Global (Schlüsselwort)</bookmark_value>"
#. D6Aqe
#: 03103450.xhp
@@ -28508,7 +28508,7 @@ msgctxt ""
"hd_id3159201\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global keyword\">Global keyword</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global keyword\">Schlüsselwort Global</link>"
#. rrYQS
#: 03103450.xhp
@@ -28796,7 +28796,7 @@ msgctxt ""
"par_id3158645\n"
"help.text"
msgid "Byte variable"
-msgstr ""
+msgstr "Byte-Variable"
#. N3udA
#: 03103600.xhp
@@ -28931,7 +28931,7 @@ msgctxt ""
"bm_id3154422\n"
"help.text"
msgid "<bookmark_value>Set statement</bookmark_value> <bookmark_value>New keyword</bookmark_value> <bookmark_value>Nothing object</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Set (Anweisung)</bookmark_value><bookmark_value>New (Schlüsselwort)</bookmark_value><bookmark_value>Nothing (Objekt)</bookmark_value>"
#. MT9CF
#: 03103700.xhp
@@ -28949,7 +28949,7 @@ msgctxt ""
"par_id3159149\n"
"help.text"
msgid "Sets an object reference on a variable."
-msgstr ""
+msgstr "Setzt eine Objektreferenz auf eine Variable."
#. DiSYW
#: 03103700.xhp
@@ -28958,7 +28958,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/LetSet_statement.svg\" id=\"img_id4156306484514\"><alt id=\"alt_id15152796484514\">Set Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/LetSet_statement.svg\" id=\"img_id4156306484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Set</alt></image>"
#. QfXmo
#: 03103700.xhp
@@ -28967,7 +28967,7 @@ msgctxt ""
"par_id3154217\n"
"help.text"
msgid "[Set] variable = [New] object"
-msgstr ""
+msgstr "[Set] Variable = [New] Objekt"
#. K6c5D
#: 03103700.xhp
@@ -28976,7 +28976,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "<emph>variable:</emph> a variable or a property that requires an object reference."
-msgstr ""
+msgstr "<emph>Variable:</emph> eine Variable oder eine Eigenschaft, die eine Objektreferenz erfordert."
#. 49Jii
#: 03103700.xhp
@@ -28985,7 +28985,7 @@ msgctxt ""
"par_id211588241663649\n"
"help.text"
msgid "<emph>expression: </emph> A computable combination of terms such as a formula or an object property or method."
-msgstr ""
+msgstr "<emph>Ausdruck: </emph> Eine berechenbare Kombination von Begriffen wie einer Formel oder einer Objekteigenschaft oder Methode."
#. kSZDp
#: 03103700.xhp
@@ -28994,7 +28994,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "<emph>object:</emph> Object that the variable refers to."
-msgstr ""
+msgstr "<emph>Objekt:</emph> Objekt, auf das sich die Variable bezieht."
#. ihHpq
#: 03103700.xhp
@@ -29003,7 +29003,7 @@ msgctxt ""
"par_idN10623\n"
"help.text"
msgid "<literal>Nothing</literal> - Assign <literal>Nothing</literal> to a variable to remove a previous assignment."
-msgstr ""
+msgstr "<literal>Nothing</literal> – Weisen Sie einer Variablen <literal>Nothing</literal> zu, um eine vorherige Zuweisung zu entfernen."
#. 4WqJK
#: 03103700.xhp
@@ -29012,7 +29012,7 @@ msgctxt ""
"par_id101586014505785\n"
"help.text"
msgid "<literal>Set</literal> keyword is optional. <literal>Nothing</literal> is the default value for objects."
-msgstr ""
+msgstr "Das Schlüsselwort <literal>Set</literal> ist optional. <literal>Nothing</literal> ist der Standardwert für Objekte."
#. GhsMS
#: 03103700.xhp
@@ -29021,7 +29021,7 @@ msgctxt ""
"par_id841586014507226\n"
"help.text"
msgid "<literal>New</literal> creates UNO objects or <link href=\"text/sbasic/shared/classmodule\" name=\"ClassModule\">class module</link> objects, before assigning it to a variable."
-msgstr ""
+msgstr "<literal>New</literal> erstellt UNO-Objekte oder <link href=\"text/sbasic/shared/classmodule\" name=\"ClassModule\">Klassenmodul</link>-Objekte, bevor sie einer Variablen zugewiesen wird."
#. ukqdX
#: 03103800.xhp
@@ -29849,7 +29849,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Erase Statement"
-msgstr ""
+msgstr "Anweisung Erase"
#. UwzDN
#: 03104700.xhp
@@ -29858,7 +29858,7 @@ msgctxt ""
"bm_id624713\n"
"help.text"
msgid "<bookmark_value>Erase statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Erase (Anweisung)</bookmark_value>"
#. W6k5N
#: 03104700.xhp
@@ -29867,7 +29867,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Anweisung Erase</link>"
#. xqtMK
#: 03104700.xhp
@@ -29885,7 +29885,7 @@ msgctxt ""
"par_id831588865616326\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Erase_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Erase syntax</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Erase_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Syntax für Erase</alt></image>"
#. CCyg8
#: 03104700.xhp
@@ -29894,7 +29894,7 @@ msgctxt ""
"par_idN105E6\n"
"help.text"
msgid "Erase array1 [, array2 [,...]]"
-msgstr ""
+msgstr "Erase Array1 [, Array2 [, …]]"
#. 8J4Ab
#: 03104700.xhp
@@ -29903,7 +29903,7 @@ msgctxt ""
"par_idN105ED\n"
"help.text"
msgid "<emph>array list</emph> - A comma delimited list of arrays to be erased."
-msgstr ""
+msgstr "<emph>Array-Liste</emph> – Eine durch Kommas getrennte Liste von zu löschenden Arrays."
#. FiDAp
#: 03104700.xhp
@@ -29912,7 +29912,7 @@ msgctxt ""
"bas_id821588866562452\n"
"help.text"
msgid "Erase a, c(Ubound(c)) ' b and c(0) are unchanged"
-msgstr ""
+msgstr "Erase a, c(Ubound(c)) ' b und c(0) sind unverändert"
#. tYVCK
#: 03104700.xhp
@@ -29921,7 +29921,7 @@ msgctxt ""
"bas_id701588866563382\n"
"help.text"
msgid "Erase b, c(0) ' everything gets cleared"
-msgstr ""
+msgstr "Erase b, c(0) ' alles wird geleert"
#. LvkX5
#: 03104700.xhp
@@ -29930,7 +29930,7 @@ msgctxt ""
"par_id161588865796615\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim statement\">Dim</link> or <link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim statement\">ReDim</link> statements"
-msgstr ""
+msgstr "Anweisungen <link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim statement\">Dim</link> oder <link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim statement\">ReDim</link>"
#. h7XZF
#: 03104700.xhp
@@ -29939,7 +29939,7 @@ msgctxt ""
"par_id281588865818334\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array function\">Array</link> or <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray function\">DimArray</link> functions"
-msgstr ""
+msgstr "Funktionen <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array function\">Array</link> oder <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray function\">DimArray</link>"
#. FA4C9
#: 03104700.xhp
@@ -29948,7 +29948,7 @@ msgctxt ""
"par_id761588867124078\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> and <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link> functions"
-msgstr ""
+msgstr "Funktionen <link href=\"text/sbasic/shared/03102900.xhp\" name=\"lower bound function\">Lbound</link> und <link href=\"text/sbasic/shared/03103000.xhp\" name=\"upper bound function\">Ubound</link>"
#. bDVn8
#: 03110100.xhp
@@ -34412,7 +34412,7 @@ msgctxt ""
"bm_id3150682\n"
"help.text"
msgid "<bookmark_value>CreateUnoService function</bookmark_value><bookmark_value>API;FilePicker</bookmark_value><bookmark_value>API;FunctionAccess</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CreateUnoService (Funktion)</bookmark_value><bookmark_value>API; FilePicker</bookmark_value><bookmark_value>API; FunctionAccess</bookmark_value>"
#. aeYuT
#: 03131600.xhp
@@ -34421,7 +34421,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<variable id=\"createunoserviceh1\"><link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function\">CreateUnoService Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"createunoserviceh1\"><link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function\">Funktion CreateUnoService</link></variable>"
#. rJbLM
#: 03131600.xhp
@@ -34457,7 +34457,7 @@ msgctxt ""
"bm_id731561653332192\n"
"help.text"
msgid "<bookmark_value>Calc functions;API Service</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Calc-Funktionen; API Service</bookmark_value>"
#. 7YLme
#: 03131600.xhp
@@ -34475,7 +34475,7 @@ msgctxt ""
"par_id741592351349391\n"
"help.text"
msgid "REM The code below does not work for add-in functions, which have a different calling procedure."
-msgstr ""
+msgstr "REM Der folgende Code funktioniert nicht für Add-In-Funktionen, die eine andere Aufrufprozedur haben."
#. JnBj8
#: 03131600.xhp
@@ -37580,7 +37580,7 @@ msgctxt ""
"par_id061420170153186193\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060106.xhp#Section21\">Calc ROUND function</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060106.xhp#Section21\">Calc-Funktion ROUND</link>"
#. 3ECTM
#: 03170010.xhp
@@ -38336,7 +38336,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Err VBA Object"
-msgstr ""
+msgstr "VBA-Objekt Err"
#. iHP2L
#: ErrVBA.xhp
@@ -38345,7 +38345,7 @@ msgctxt ""
"N0010\n"
"help.text"
msgid "<bookmark_value>Err object</bookmark_value> <bookmark_value>Error;raising</bookmark_value> <bookmark_value>Error;handling</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Err (Objekt)</bookmark_value><bookmark_value>Fehler; beheben</bookmark_value><bookmark_value>Fehler; Handhabung</bookmark_value>"
#. pPqhS
#: ErrVBA.xhp
@@ -38354,7 +38354,7 @@ msgctxt ""
"N0011\n"
"help.text"
msgid "<variable id=\"ErrVBAh1\"><link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"Err object [VBA]\">Err Object [VBA]</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ErrVBAh1\"><link href=\"text/sbasic/shared/ErrVBA.xhp\" name=\"Err object [VBA]\">VBA-Objekt Err</link></variable>"
#. RZpQL
#: ErrVBA.xhp
@@ -38363,7 +38363,7 @@ msgctxt ""
"N0012\n"
"help.text"
msgid "Use VBA <literal>Err</literal> object to raise or handle runtime errors."
-msgstr ""
+msgstr "Verwenden Sie das VBA-Objekt <literal>Err</literal>, um Laufzeitfehler auszulösen oder zu behandeln."
#. D7JiE
#: ErrVBA.xhp
@@ -38372,7 +38372,7 @@ msgctxt ""
"N0012b\n"
"help.text"
msgid "<literal>Err</literal> is a built-in VBA global object that allows:"
-msgstr ""
+msgstr "<literal>Err</literal> ist ein integriertes globales VBA-Objekt, das Folgendes ermöglicht:"
#. VpE8g
#: ErrVBA.xhp
@@ -38381,7 +38381,7 @@ msgctxt ""
"N0013\n"
"help.text"
msgid "to raise predefined Basic errors"
-msgstr ""
+msgstr "um vordefinierte Grundfehler auszulösen"
#. tFEYq
#: ErrVBA.xhp
@@ -38390,7 +38390,7 @@ msgctxt ""
"N0014\n"
"help.text"
msgid "to throw user-defined exceptions"
-msgstr ""
+msgstr "um benutzerdefinierte Ausnahmen auszulösen"
#. BeB2y
#: ErrVBA.xhp
@@ -38399,7 +38399,7 @@ msgctxt ""
"N0015\n"
"help.text"
msgid "to name the routine originating the error"
-msgstr ""
+msgstr "die Routine, die den Fehler verursacht, zu benennen"
#. 5FhxC
#: ErrVBA.xhp
@@ -38408,7 +38408,7 @@ msgctxt ""
"N0016\n"
"help.text"
msgid "to describe the error and possible solutions"
-msgstr ""
+msgstr "um den Fehler und mögliche Lösungen zu beschreiben"
#. QaZUT
#: ErrVBA.xhp
@@ -38426,7 +38426,7 @@ msgctxt ""
"N0018\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Eigenschaften"
#. FtD5A
#: ErrVBA.xhp
@@ -38453,7 +38453,7 @@ msgctxt ""
"N0024\n"
"help.text"
msgid "<emph>Source</emph> indicates the name of the routine that produces the error. <emph>Source</emph> is an option for user-defined errors."
-msgstr ""
+msgstr "<emph>Source</emph> gibt den Namen der Routine an, die den Fehler erzeugt. <emph>Source</emph> ist eine Option für benutzerdefinierte Fehler."
#. MuyUY
#: ErrVBA.xhp
@@ -38462,7 +38462,7 @@ msgctxt ""
"N0025\n"
"help.text"
msgid "Methods"
-msgstr ""
+msgstr "Methoden"
#. y5Ne4
#: ErrVBA.xhp
@@ -38489,7 +38489,7 @@ msgctxt ""
"N0030\n"
"help.text"
msgid "Parameters"
-msgstr ""
+msgstr "Parameter"
#. 9a9P9
#: ErrVBA.xhp
@@ -38507,7 +38507,7 @@ msgctxt ""
"N0032\n"
"help.text"
msgid "Error code range 0-2000 is reserved for %PRODUCTNAME Basic. User-defined errors may start from higher values in order to prevent collision with %PRODUCTNAME Basic future developments."
-msgstr ""
+msgstr "Der Fehlercodebereich 0-2000 ist für %PRODUCTNAME Basic reserviert. Benutzerdefinierte Fehler sollten bei höheren Werten beginnen, um Kollisionen mit zukünftigen Entwicklungen von %PRODUCTNAME Basic zu vermeiden."
#. VAmhX
#: ErrVBA.xhp
@@ -38543,7 +38543,7 @@ msgctxt ""
"N0045\n"
"help.text"
msgid "errTitle = \"Error \"& Err &\" at line \"& Erl &\" in \"& Err.Source"
-msgstr ""
+msgstr "errTitle = \"Error \"& Err &\" at line \"& Erl &\" in \"& Err.Source"
#. ZXCWy
#: ErrVBA.xhp
@@ -38552,7 +38552,7 @@ msgctxt ""
"N0050\n"
"help.text"
msgid "Exception ClassModule"
-msgstr ""
+msgstr "Exception ClassModule"
#. RK2AX
#: ErrVBA.xhp
@@ -38561,7 +38561,7 @@ msgctxt ""
"N0049\n"
"help.text"
msgid "A short <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule option\">ClassModule</link>, that wraps VBA <literal>Err</literal> object, can distribute <literal>Err</literal> properties and methods for standard %PRODUCTNAME Basic modules."
-msgstr ""
+msgstr "Ein kurzes <link href=\"text/sbasic/shared/classmodule.xhp\" name=\"ClassModule option\">ClassModule</link>, welches das VBA-Objekt <literal>Err</literal> umschließt, kann Eigenschaften und Methoden in <literal>Err</literal> für Standardmodule in %PRODUCTNAME Basic verteilen."
#. tECEu
#: ErrVBA.xhp
@@ -38570,7 +38570,7 @@ msgctxt ""
"N0069\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Beispiel"
#. oA4pq
#: ErrVBA.xhp
@@ -38579,7 +38579,7 @@ msgctxt ""
"N0078\n"
"help.text"
msgid "\"Any multi-line description for this user-defined exception\")"
-msgstr ""
+msgstr "\"Beliebige mehrzeilige Beschreibung für diese benutzerdefinierte Ausnahme\")"
#. hzLgR
#: ErrVBA.xhp
@@ -38588,7 +38588,7 @@ msgctxt ""
"N0079\n"
"help.text"
msgid "' your code goes here …"
-msgstr ""
+msgstr "' Ihr Code hgehört hier hin …"
#. wEaa3
#: ErrVBA.xhp
@@ -38597,7 +38597,7 @@ msgctxt ""
"N0083\n"
"help.text"
msgid "errTitle = \"Error \"& Exc.Number &\" at line \"& Erl &\" in \"& Exc.Source"
-msgstr ""
+msgstr "errTitel = \"Error \"& Exc.Number &\" at line \"& Erl &\" in \"& Exc.Source"
#. kBsGp
#: ErrVBA.xhp
@@ -38606,7 +38606,7 @@ msgctxt ""
"N0088\n"
"help.text"
msgid "The <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error statement\">Error</link> statement or an Exception-like class module can be used interchangeably, while the latter adds extra features."
-msgstr ""
+msgstr "Die Anweisung <link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error statement\">Error</link> oder ein Exception-ähnliches Klassenmodul können austauschbar verwendet werden, während letzteres zusätzliche Funktionen hinzufügt."
#. h6V9P
#: GetPathSeparator.xhp
@@ -38705,7 +38705,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Resume Statement"
-msgstr ""
+msgstr "Anweisung Resume"
#. sMcg4
#: Resume.xhp
@@ -38714,7 +38714,7 @@ msgctxt ""
"N0001\n"
"help.text"
msgid "<bookmark_value>Resume statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Resume (Anweisung)</bookmark_value>"
#. LTupm
#: Resume.xhp
@@ -38723,7 +38723,7 @@ msgctxt ""
"N0002\n"
"help.text"
msgid "<variable id=\"resumeh1\"><link href=\"text/sbasic/shared/Resume.xhp\" name=\"Resume statement\">Resume Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"resumeh1\"><link href=\"text/sbasic/shared/Resume.xhp\" name=\"Resume statement\">Anweisung Resume</link></variable>"
#. AVhyb
#: Resume.xhp
@@ -38732,7 +38732,7 @@ msgctxt ""
"N0003\n"
"help.text"
msgid "Resets error information and indicates what to execute next."
-msgstr ""
+msgstr "Setzt Fehlerinformationen zurück und zeigt an, was als nächstes ausgeführt werden soll."
#. FhZm3
#: Resume.xhp
@@ -38741,7 +38741,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Resume_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Resume Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Resume_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm einer Anweisung Resume</alt></image>"
#. eafvm
#: Resume.xhp
@@ -38750,7 +38750,7 @@ msgctxt ""
"par_id481586090298901\n"
"help.text"
msgid "<literal>0</literal>: Resets error information and re-executes the instruction that caused the error. <literal>0</literal> is optional."
-msgstr ""
+msgstr "<literal>0</literal>: Setzt Fehlerinformationen zurück und führt die Anweisung, die den Fehler verursacht hat, erneut aus. <literal>0</literal> ist optional."
#. fakJ2
#: Resume.xhp
@@ -38768,7 +38768,7 @@ msgctxt ""
"par_id331586090432804\n"
"help.text"
msgid "<literal>Next</literal>: Resets error information and executes the instruction following the one that caused the error."
-msgstr ""
+msgstr "<literal>Next</literal>: Setzt die Fehlerinformationen zurück und führt die Anweisung aus, die der Anweisung folgt, welche den Fehler verursacht hat."
#. 3Jge7
#: Resume.xhp
@@ -38777,7 +38777,7 @@ msgctxt ""
"par_id441586333320983\n"
"help.text"
msgid "Error information is built with <literal>Erl</literal>, <literal>Err</literal> and <literal>Error$</literal> functions."
-msgstr ""
+msgstr "Fehlerinformationen werden mit den Funktionen <literal>Erl</literal>, <literal>Err</literal> und <literal>Error$</literal> erstellt."
#. PoXod
#: Resume.xhp
@@ -38786,7 +38786,7 @@ msgctxt ""
"par_id741586333516110\n"
"help.text"
msgid "<literal>Erl</literal>: Module line number where error occurs."
-msgstr ""
+msgstr "<literal>Erl</literal>: Modulzeilennummer, bei der der Fehler auftritt."
#. aX9ZN
#: Resume.xhp
@@ -38795,7 +38795,7 @@ msgctxt ""
"par_id81586333580520\n"
"help.text"
msgid "<literal>Err</literal>: Error number."
-msgstr ""
+msgstr "<literal>Err</literal>: Fehlernummer."
#. ctA2t
#: Resume.xhp
@@ -38804,7 +38804,7 @@ msgctxt ""
"par_id721586333586263\n"
"help.text"
msgid "<literal>Error[$]</literal>: Error description."
-msgstr ""
+msgstr "<literal>Fehler[$]</literal>: Fehlerbeschreibung."
#. fDJgb
#: Resume.xhp
@@ -38813,7 +38813,7 @@ msgctxt ""
"par_id941586091561618\n"
"help.text"
msgid "Using <emph>Resume</emph> to reset error information prevents the propagation of the handled condition to calling routines."
-msgstr ""
+msgstr "Die Verwendung von <emph>Resume</emph> zum Zurücksetzen von Fehlerinformationen verhindert die Weitergabe der behandelten Bedingung an aufrufende Routinen."
#. coy5D
#: Resume.xhp
@@ -38822,7 +38822,7 @@ msgctxt ""
"hd_id441586092960246\n"
"help.text"
msgid "Examples:"
-msgstr ""
+msgstr "Beispiele:"
#. 4dyMX
#: Resume.xhp
@@ -38831,7 +38831,7 @@ msgctxt ""
"par_id961586248539108\n"
"help.text"
msgid "Typical error handling routines are: alerting the user, fixing the error, logging error information or re-throwing custom errors that provide explanations with resolution instructions. Use <literal>Resume label</literal> when requiring such mechanisms."
-msgstr ""
+msgstr "Typische Fehlerbehandlungsroutinen sind: Warnen des Benutzers, Beheben des Fehlers, Protokollieren von Fehlerinformationen oder erneutes Auslösen von benutzerdefinierten Fehlern, die Erklärungen mit Lösungsanweisungen bereitstellen. Verwenden Sie <literal>Resume label</literal>, wenn Sie solche Mechanismen benötigen."
#. VCDS3
#: Resume.xhp
@@ -38840,7 +38840,7 @@ msgctxt ""
"bas_id451586093122848\n"
"help.text"
msgid "' routine code goes here"
-msgstr ""
+msgstr "' Routinecode gehört hier her"
#. BFzfG
#: Resume.xhp
@@ -38849,7 +38849,7 @@ msgctxt ""
"bas_id515860931234846\n"
"help.text"
msgid "Error 91 ' example error"
-msgstr ""
+msgstr "Error 91 ' Beispielfehler"
#. uFVnv
#: Resume.xhp
@@ -38858,7 +38858,7 @@ msgctxt ""
"bas_id361586093126654\n"
"help.text"
msgid "' routine cleanup code goes here"
-msgstr ""
+msgstr "' Routine-Bereinigungscode gehört hier her"
#. UNbMJ
#: Resume.xhp
@@ -38867,7 +38867,7 @@ msgctxt ""
"par_id61586095819168\n"
"help.text"
msgid "Use <literal>Resume Next</literal>, for example, when reporting anomalies encountered for an iterating process that must not be interrupted. In which case multiple handling routines may be required."
-msgstr ""
+msgstr "Verwenden Sie <literal>Resume Next</literal>, wenn Sie beispielsweise Anomalien melden, die bei einem iterativen Prozess aufgetreten sind, der nicht unterbrochen werden darf. In diesem Fall können mehrere Behandlungsroutinen erforderlich sein."
#. AeVfB
#: Resume.xhp
@@ -38885,7 +38885,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calling Calc Functions in Macros"
-msgstr ""
+msgstr "Aufrufen von Calc-Funktionen in Makros"
#. mpMbn
#: calc_functions.xhp
@@ -38894,7 +38894,7 @@ msgctxt ""
"bm_id291592361063458\n"
"help.text"
msgid "<bookmark_value>calling Calc function;macros</bookmark_value> <bookmark_value>macros;calling Calc function</bookmark_value> <bookmark_value>createUNOservice function;calling Calc function</bookmark_value> <bookmark_value>API;addin.Analysis</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Calc-Funktion aufrufen; Makros</bookmark_value><bookmark_value>Makros; Calc-Funktionen aufrufen</bookmark_value><bookmark_value>createUNOservice (Funktion); Calc-Funktionen aufrufen</bookmark_value><bookmark_value>API; addin.Analysis</bookmark_value>"
#. CSA8o
#: calc_functions.xhp
@@ -38903,7 +38903,7 @@ msgctxt ""
"hd_id91592352089011\n"
"help.text"
msgid "<variable id=\"CallingCalcFunctionsh1\"><link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"Calling Calc Functions\">Calling Calc Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"CallingCalcFunctionsh1\"><link href=\"text/sbasic/shared/calc_functions.xhp\" name=\"Calling Calc Functions\">Calc-Funktionen aufrufen</link></variable>"
#. DeJyb
#: calc_functions.xhp
@@ -38912,7 +38912,7 @@ msgctxt ""
"par_id1001592359117987\n"
"help.text"
msgid "In addition to the native BASIC functions, you can call Calc functions in your macros and scripts."
-msgstr ""
+msgstr "Zusätzlich zu den nativen BASIC-Funktionen können Sie Calc-Funktionen in Ihren Makros und Skripten aufrufen."
#. pFoqw
#: calc_functions.xhp
@@ -38921,7 +38921,7 @@ msgctxt ""
"hd_id251592352174921\n"
"help.text"
msgid "Calling Internal Calc functions in Basic"
-msgstr ""
+msgstr "Aufrufen von internen Calc-Funktionen in Basic"
#. 2rKcD
#: calc_functions.xhp
@@ -38930,7 +38930,7 @@ msgctxt ""
"par_id731592352332694\n"
"help.text"
msgid "Use the <literal>CreateUNOService</literal> function to access the <literal>com.sun.star.sheet.FunctionAccess</literal> service."
-msgstr ""
+msgstr "Verwenden Sie die Funktion <literal>CreateUNOService</literal>, um auf den Dienst <literal>com.sun.star.sheet.FunctionAccess</literal> zuzugreifen."
#. V3quU
#: calc_functions.xhp
@@ -38939,7 +38939,7 @@ msgctxt ""
"hd_id561592352225441\n"
"help.text"
msgid "Calling Add-In Calc Functions in BASIC"
-msgstr ""
+msgstr "Aufrufen von Add-In-Berechnungsfunktionen in BASIC"
#. ufZSW
#: calc_functions.xhp
@@ -38948,7 +38948,7 @@ msgctxt ""
"par_id261592359338681\n"
"help.text"
msgid "The Calc Add-In functions are in service <literal>com.sun.star.sheet.addin.Analysis</literal>."
-msgstr ""
+msgstr "Die Calc-Add-In-Funktionen befinden sich im Dienst <literal>com.sun.star.sheet.addin.Analysis</literal>."
#. Yrje5
#: calc_functions.xhp
@@ -38957,7 +38957,7 @@ msgctxt ""
"bas_id421592358343633\n"
"help.text"
msgid "REM Example calling Addin function SQRTPI"
-msgstr ""
+msgstr "REM Beispiel zum Aufrufen der Add-In-Funktion WURZELPI"
#. bFnDA
#: calc_functions.xhp
@@ -38966,7 +38966,7 @@ msgctxt ""
"bas_id731592358351744\n"
"help.text"
msgid "Function MySQRTPI(arg as double) as double"
-msgstr ""
+msgstr "Function MeineWURZELPI(arg as double) as double"
#. HHyMW
#: calc_functions.xhp
@@ -38975,7 +38975,7 @@ msgctxt ""
"bas_id211592358377026\n"
"help.text"
msgid "MySQRTPI = oService.getSqrtPi(arg)"
-msgstr ""
+msgstr "MeineWURZELPI = oService.getSqrtPi(arg)"
#. emGWD
#: calc_functions.xhp
@@ -38984,7 +38984,7 @@ msgctxt ""
"par_id721592355432992\n"
"help.text"
msgid "ACCRINT"
-msgstr ""
+msgstr "AUFGELZINS"
#. oKBuD
#: calc_functions.xhp
@@ -38993,7 +38993,7 @@ msgctxt ""
"par_id311592355461144\n"
"help.text"
msgid "ACCRINTM"
-msgstr ""
+msgstr "AUFGELZINSF"
#. pBfUh
#: calc_functions.xhp
@@ -39002,7 +39002,7 @@ msgctxt ""
"par_id731592355465193\n"
"help.text"
msgid "AMORDEGRC"
-msgstr ""
+msgstr "AMORDEGRK"
#. ViiCh
#: calc_functions.xhp
@@ -39011,7 +39011,7 @@ msgctxt ""
"par_id361592355471024\n"
"help.text"
msgid "AMORLINC"
-msgstr ""
+msgstr "AMORLINEARK"
#. ZeeMB
#: calc_functions.xhp
@@ -39020,7 +39020,7 @@ msgctxt ""
"par_id11592355475920\n"
"help.text"
msgid "BESSELI"
-msgstr ""
+msgstr "BESSELI"
#. Bv4xD
#: calc_functions.xhp
@@ -39029,7 +39029,7 @@ msgctxt ""
"par_id841592355481243\n"
"help.text"
msgid "BESSELJ"
-msgstr ""
+msgstr "BESSELJ"
#. Ana8S
#: calc_functions.xhp
@@ -39038,7 +39038,7 @@ msgctxt ""
"par_id781592355488489\n"
"help.text"
msgid "BESSELK"
-msgstr ""
+msgstr "BESSELK"
#. gPmYm
#: calc_functions.xhp
@@ -39047,7 +39047,7 @@ msgctxt ""
"par_id751592355494321\n"
"help.text"
msgid "BESSELY"
-msgstr ""
+msgstr "BESSELY"
#. Rhr8N
#: calc_functions.xhp
@@ -39056,7 +39056,7 @@ msgctxt ""
"par_id661592355500416\n"
"help.text"
msgid "BIN2DEC"
-msgstr ""
+msgstr "BININDEZ"
#. CF6He
#: calc_functions.xhp
@@ -39065,7 +39065,7 @@ msgctxt ""
"par_id331592355505769\n"
"help.text"
msgid "BIN2HEX"
-msgstr ""
+msgstr "BININHEX"
#. XJGN7
#: calc_functions.xhp
@@ -39074,7 +39074,7 @@ msgctxt ""
"par_id691592355510409\n"
"help.text"
msgid "BIN2OCT"
-msgstr ""
+msgstr "BININOKT"
#. trpYC
#: calc_functions.xhp
@@ -39083,7 +39083,7 @@ msgctxt ""
"par_id1001592355515562\n"
"help.text"
msgid "COMPLEX"
-msgstr ""
+msgstr "KOMPLEXE"
#. eHuPF
#: calc_functions.xhp
@@ -39092,7 +39092,7 @@ msgctxt ""
"par_id661592355519833\n"
"help.text"
msgid "CONVERT"
-msgstr ""
+msgstr "UMRECHNEN"
#. yF4wh
#: calc_functions.xhp
@@ -39101,7 +39101,7 @@ msgctxt ""
"par_id501592355525049\n"
"help.text"
msgid "COUPDAYBS"
-msgstr ""
+msgstr "ZINSTERMTAGVA"
#. SArWm
#: calc_functions.xhp
@@ -39110,7 +39110,7 @@ msgctxt ""
"par_id251592355529338\n"
"help.text"
msgid "COUPDAYS"
-msgstr ""
+msgstr "ZINSTERMTAGE"
#. CkhYX
#: calc_functions.xhp
@@ -39119,7 +39119,7 @@ msgctxt ""
"par_id681592355545522\n"
"help.text"
msgid "COUPDAYSNC"
-msgstr ""
+msgstr "ZINSTERMTAGNZ"
#. A4oUG
#: calc_functions.xhp
@@ -39128,7 +39128,7 @@ msgctxt ""
"par_id151592355550475\n"
"help.text"
msgid "COUPNCD"
-msgstr ""
+msgstr "ZINSTERMNZ"
#. 8Eyr4
#: calc_functions.xhp
@@ -39137,7 +39137,7 @@ msgctxt ""
"par_id291592355554258\n"
"help.text"
msgid "COUPNUM"
-msgstr ""
+msgstr "ZINSTERMZAHL"
#. ur3HX
#: calc_functions.xhp
@@ -39146,7 +39146,7 @@ msgctxt ""
"par_id361592355563155\n"
"help.text"
msgid "COUPPCD"
-msgstr ""
+msgstr "ZINSTERMVZ"
#. HYaqY
#: calc_functions.xhp
@@ -39155,7 +39155,7 @@ msgctxt ""
"par_id591592355570035\n"
"help.text"
msgid "CUMIPMT"
-msgstr ""
+msgstr "KUMZINSZ"
#. ccwAv
#: calc_functions.xhp
@@ -39164,7 +39164,7 @@ msgctxt ""
"par_id681592355573971\n"
"help.text"
msgid "CUMPRINC"
-msgstr ""
+msgstr "KUMKAPITAL"
#. CWYx5
#: calc_functions.xhp
@@ -39173,7 +39173,7 @@ msgctxt ""
"par_id591592355577411\n"
"help.text"
msgid "DEC2BIN"
-msgstr ""
+msgstr "DEZINBIN"
#. LZGCA
#: calc_functions.xhp
@@ -39182,7 +39182,7 @@ msgctxt ""
"par_id651592355580939\n"
"help.text"
msgid "DEC2HEX"
-msgstr ""
+msgstr "DEZINHEX"
#. FABUZ
#: calc_functions.xhp
@@ -39191,7 +39191,7 @@ msgctxt ""
"par_id981592355585026\n"
"help.text"
msgid "DEC2OCT"
-msgstr ""
+msgstr "DEZINOKT"
#. Y2HuZ
#: calc_functions.xhp
@@ -39200,7 +39200,7 @@ msgctxt ""
"par_id911592355588619\n"
"help.text"
msgid "DELTA"
-msgstr ""
+msgstr "DELTA"
#. XMBJo
#: calc_functions.xhp
@@ -39209,7 +39209,7 @@ msgctxt ""
"par_id931592355591947\n"
"help.text"
msgid "DISC"
-msgstr ""
+msgstr "DISAGIO"
#. iTNtK
#: calc_functions.xhp
@@ -39218,7 +39218,7 @@ msgctxt ""
"par_id281592355595627\n"
"help.text"
msgid "DOLLARDE"
-msgstr ""
+msgstr "NOTIERUNGDEZ"
#. iWfvp
#: calc_functions.xhp
@@ -39227,7 +39227,7 @@ msgctxt ""
"par_id731592355599218\n"
"help.text"
msgid "DOLLARFR"
-msgstr ""
+msgstr "NOTIERUNGBRU"
#. iq2zc
#: calc_functions.xhp
@@ -39236,7 +39236,7 @@ msgctxt ""
"par_id451592355602770\n"
"help.text"
msgid "DURATION"
-msgstr ""
+msgstr "LAUFZEIT"
#. yzAGQ
#: calc_functions.xhp
@@ -39245,7 +39245,7 @@ msgctxt ""
"par_id261592355606039\n"
"help.text"
msgid "EDATE"
-msgstr ""
+msgstr "EDATUM"
#. ePmwB
#: calc_functions.xhp
@@ -39254,7 +39254,7 @@ msgctxt ""
"par_id221592355620084\n"
"help.text"
msgid "EFFECT"
-msgstr ""
+msgstr "EFFEKTIV"
#. whDH8
#: calc_functions.xhp
@@ -39263,7 +39263,7 @@ msgctxt ""
"par_id721592355623964\n"
"help.text"
msgid "EOMONTH"
-msgstr ""
+msgstr "MONATSENDE"
#. T8yoU
#: calc_functions.xhp
@@ -39272,7 +39272,7 @@ msgctxt ""
"par_id581592355627044\n"
"help.text"
msgid "ERF"
-msgstr ""
+msgstr "GAUSSFEHLER"
#. YFhBd
#: calc_functions.xhp
@@ -39281,7 +39281,7 @@ msgctxt ""
"par_id451592355631036\n"
"help.text"
msgid "ERFC"
-msgstr ""
+msgstr "GAUSSFKOMPL"
#. dKas5
#: calc_functions.xhp
@@ -39290,7 +39290,7 @@ msgctxt ""
"par_id851592355634629\n"
"help.text"
msgid "FACTDOUBLE"
-msgstr ""
+msgstr "ZWEIFAKULTÄT"
#. 87Htt
#: calc_functions.xhp
@@ -39299,7 +39299,7 @@ msgctxt ""
"par_id731592355637900\n"
"help.text"
msgid "FVSCHEDULE"
-msgstr ""
+msgstr "ZW2"
#. jjTyE
#: calc_functions.xhp
@@ -39308,7 +39308,7 @@ msgctxt ""
"par_id431592355641084\n"
"help.text"
msgid "GCD"
-msgstr ""
+msgstr "GGT"
#. mcjKe
#: calc_functions.xhp
@@ -39317,7 +39317,7 @@ msgctxt ""
"par_id461592355646844\n"
"help.text"
msgid "GESTEP"
-msgstr ""
+msgstr "GGANZZAHL"
#. Toc2i
#: calc_functions.xhp
@@ -39326,7 +39326,7 @@ msgctxt ""
"par_id471592355650772\n"
"help.text"
msgid "HEX2BIN"
-msgstr ""
+msgstr "HEXINBIN"
#. CEWxE
#: calc_functions.xhp
@@ -39335,7 +39335,7 @@ msgctxt ""
"par_id91592355654156\n"
"help.text"
msgid "HEX2DEC"
-msgstr ""
+msgstr "HEXINDEZ"
#. RrpLx
#: calc_functions.xhp
@@ -39344,7 +39344,7 @@ msgctxt ""
"par_id401592355657388\n"
"help.text"
msgid "HEX2OCT"
-msgstr ""
+msgstr "HEXINOKT"
#. 6GUuy
#: calc_functions.xhp
@@ -39353,7 +39353,7 @@ msgctxt ""
"par_id331592355660565\n"
"help.text"
msgid "IMABS"
-msgstr ""
+msgstr "IMABS"
#. mUowh
#: calc_functions.xhp
@@ -39362,7 +39362,7 @@ msgctxt ""
"par_id401592355663828\n"
"help.text"
msgid "IMAGINARY"
-msgstr ""
+msgstr "IMAGINÄRTEIL"
#. 8GGrD
#: calc_functions.xhp
@@ -39371,7 +39371,7 @@ msgctxt ""
"par_id571592355667021\n"
"help.text"
msgid "IMARGUMENT"
-msgstr ""
+msgstr "IMARGUMENT"
#. AaMnu
#: calc_functions.xhp
@@ -39380,7 +39380,7 @@ msgctxt ""
"par_id921592355670053\n"
"help.text"
msgid "IMCONJUGATE"
-msgstr ""
+msgstr "IMKONJUGIERT"
#. 4vbCQ
#: calc_functions.xhp
@@ -39389,7 +39389,7 @@ msgctxt ""
"par_id171592355673117\n"
"help.text"
msgid "IMCOS"
-msgstr ""
+msgstr "IMCOS"
#. dr8EH
#: calc_functions.xhp
@@ -39398,7 +39398,7 @@ msgctxt ""
"par_id701592355676365\n"
"help.text"
msgid "IMCOSH"
-msgstr ""
+msgstr "IMCOSHYP"
#. paAHR
#: calc_functions.xhp
@@ -39407,7 +39407,7 @@ msgctxt ""
"par_id601592355679652\n"
"help.text"
msgid "IMCOT"
-msgstr ""
+msgstr "IMCOT"
#. twyK6
#: calc_functions.xhp
@@ -39416,7 +39416,7 @@ msgctxt ""
"par_id41592355682724\n"
"help.text"
msgid "IMCSC"
-msgstr ""
+msgstr "IMCOSEC"
#. jKEFp
#: calc_functions.xhp
@@ -39425,7 +39425,7 @@ msgctxt ""
"par_id61592355685899\n"
"help.text"
msgid "IMCSCH"
-msgstr ""
+msgstr "IMCOSECHYP"
#. Lav7E
#: calc_functions.xhp
@@ -39434,7 +39434,7 @@ msgctxt ""
"par_id51592355688940\n"
"help.text"
msgid "IMDIV"
-msgstr ""
+msgstr "IMDIV"
#. Q3Zxj
#: calc_functions.xhp
@@ -39443,7 +39443,7 @@ msgctxt ""
"par_id611592355692012\n"
"help.text"
msgid "IMEXP"
-msgstr ""
+msgstr "IMEXP"
#. 7DUrG
#: calc_functions.xhp
@@ -39452,7 +39452,7 @@ msgctxt ""
"par_id381592355695069\n"
"help.text"
msgid "IMLN"
-msgstr ""
+msgstr "IMLN"
#. pVmGz
#: calc_functions.xhp
@@ -39461,7 +39461,7 @@ msgctxt ""
"par_id231592355698892\n"
"help.text"
msgid "IMLOG10"
-msgstr ""
+msgstr "IMLOG10"
#. gTxpZ
#: calc_functions.xhp
@@ -39470,7 +39470,7 @@ msgctxt ""
"par_id581592355702180\n"
"help.text"
msgid "IMLOG2"
-msgstr ""
+msgstr "IMLOG2"
#. Windb
#: calc_functions.xhp
@@ -39479,7 +39479,7 @@ msgctxt ""
"par_id341592355705773\n"
"help.text"
msgid "IMPOWER"
-msgstr ""
+msgstr "IMPOTENZ"
#. 4RLjP
#: calc_functions.xhp
@@ -39488,7 +39488,7 @@ msgctxt ""
"par_id301592355708742\n"
"help.text"
msgid "IMPRODUCT"
-msgstr ""
+msgstr "IMPRODUKT"
#. mogsD
#: calc_functions.xhp
@@ -39497,7 +39497,7 @@ msgctxt ""
"par_id621592355711845\n"
"help.text"
msgid "IMREAL"
-msgstr ""
+msgstr "IMREALTEIL"
#. kaDjL
#: calc_functions.xhp
@@ -39506,7 +39506,7 @@ msgctxt ""
"par_id821592355714852\n"
"help.text"
msgid "IMSEC"
-msgstr ""
+msgstr "IMSEC"
#. GAsAW
#: calc_functions.xhp
@@ -39515,7 +39515,7 @@ msgctxt ""
"par_id871592355718533\n"
"help.text"
msgid "IMSECH"
-msgstr ""
+msgstr "IMSECHYP"
#. 8Dtdh
#: calc_functions.xhp
@@ -39533,7 +39533,7 @@ msgctxt ""
"par_id681592355725045\n"
"help.text"
msgid "IMSINH"
-msgstr ""
+msgstr "IMSINHYP"
#. HoKey
#: calc_functions.xhp
@@ -39542,7 +39542,7 @@ msgctxt ""
"par_id801592355728022\n"
"help.text"
msgid "IMSQRT"
-msgstr ""
+msgstr "IMWURZEL"
#. EDQwc
#: calc_functions.xhp
@@ -39551,7 +39551,7 @@ msgctxt ""
"par_id851592355731069\n"
"help.text"
msgid "IMSUB"
-msgstr ""
+msgstr "IMSUB"
#. Qfop5
#: calc_functions.xhp
@@ -39560,7 +39560,7 @@ msgctxt ""
"par_id131592355734118\n"
"help.text"
msgid "IMSUM"
-msgstr ""
+msgstr "IMSUMME"
#. DaiAF
#: calc_functions.xhp
@@ -39569,7 +39569,7 @@ msgctxt ""
"par_id761592355737109\n"
"help.text"
msgid "IMTAN"
-msgstr ""
+msgstr "IMTAN"
#. AWW2a
#: calc_functions.xhp
@@ -39578,7 +39578,7 @@ msgctxt ""
"par_id91592355740301\n"
"help.text"
msgid "INTRATE"
-msgstr ""
+msgstr "ZINSSATZ"
#. BNWvt
#: calc_functions.xhp
@@ -39587,7 +39587,7 @@ msgctxt ""
"par_id561592355743397\n"
"help.text"
msgid "ISEVEN"
-msgstr ""
+msgstr "ISTGERADE"
#. 5Avoj
#: calc_functions.xhp
@@ -39596,7 +39596,7 @@ msgctxt ""
"par_id481592355746477\n"
"help.text"
msgid "ISODD"
-msgstr ""
+msgstr "ISTUNGERADE"
#. fwZ3Y
#: calc_functions.xhp
@@ -39605,7 +39605,7 @@ msgctxt ""
"par_id621592355749526\n"
"help.text"
msgid "LCM"
-msgstr ""
+msgstr "KGV"
#. WDW3o
#: calc_functions.xhp
@@ -39614,7 +39614,7 @@ msgctxt ""
"par_id381592355752413\n"
"help.text"
msgid "MDURATION"
-msgstr ""
+msgstr "MLAUFZEIT"
#. CaC2W
#: calc_functions.xhp
@@ -39623,7 +39623,7 @@ msgctxt ""
"par_id161592355755349\n"
"help.text"
msgid "MROUND"
-msgstr ""
+msgstr "VRUNDEN"
#. ipDJm
#: calc_functions.xhp
@@ -39632,7 +39632,7 @@ msgctxt ""
"par_id601592355758534\n"
"help.text"
msgid "MULTINOMIAL"
-msgstr ""
+msgstr "POLYNOMIAL"
#. wDMMt
#: calc_functions.xhp
@@ -39641,7 +39641,7 @@ msgctxt ""
"par_id241592355761822\n"
"help.text"
msgid "NETWORKDAYS"
-msgstr ""
+msgstr "NETTOARBEITSTAGE"
#. azBMs
#: calc_functions.xhp
@@ -39650,7 +39650,7 @@ msgctxt ""
"par_id121592355764950\n"
"help.text"
msgid "NOMINAL"
-msgstr ""
+msgstr "NOMINAL"
#. FGnXt
#: calc_functions.xhp
@@ -39659,7 +39659,7 @@ msgctxt ""
"par_id161592355767958\n"
"help.text"
msgid "OCT2BIN"
-msgstr ""
+msgstr "OKTINBIN"
#. npjsC
#: calc_functions.xhp
@@ -39668,7 +39668,7 @@ msgctxt ""
"par_id401592355770926\n"
"help.text"
msgid "OCT2DEC"
-msgstr ""
+msgstr "OKTINDEZ"
#. Bd3s5
#: calc_functions.xhp
@@ -39677,7 +39677,7 @@ msgctxt ""
"par_id981592355773838\n"
"help.text"
msgid "OCT2HEX"
-msgstr ""
+msgstr "OKTINHEX"
#. iBzAQ
#: calc_functions.xhp
@@ -39686,7 +39686,7 @@ msgctxt ""
"par_id51592355776830\n"
"help.text"
msgid "ODDFPRICE"
-msgstr ""
+msgstr "UNREGERKURS"
#. ParaD
#: calc_functions.xhp
@@ -39695,7 +39695,7 @@ msgctxt ""
"par_id581592355779822\n"
"help.text"
msgid "ODDFYIELD"
-msgstr ""
+msgstr "UNREGERREND"
#. 9CxRc
#: calc_functions.xhp
@@ -39704,7 +39704,7 @@ msgctxt ""
"par_id251592355782710\n"
"help.text"
msgid "ODDLPRICE"
-msgstr ""
+msgstr "UNREGLEKURS"
#. jBECN
#: calc_functions.xhp
@@ -39713,7 +39713,7 @@ msgctxt ""
"par_id331592355785647\n"
"help.text"
msgid "ODDLYIELD"
-msgstr ""
+msgstr "UNREGLEREND"
#. opEEG
#: calc_functions.xhp
@@ -39722,7 +39722,7 @@ msgctxt ""
"par_id471592355788791\n"
"help.text"
msgid "PRICE"
-msgstr ""
+msgstr "KURS"
#. kXJnU
#: calc_functions.xhp
@@ -39731,7 +39731,7 @@ msgctxt ""
"par_id141592355791678\n"
"help.text"
msgid "PRICEDISC"
-msgstr ""
+msgstr "KURSDISAGIO"
#. 24W75
#: calc_functions.xhp
@@ -39740,7 +39740,7 @@ msgctxt ""
"par_id341592355794671\n"
"help.text"
msgid "PRICEMAT"
-msgstr ""
+msgstr "KURSFÄLLIG"
#. rvmjF
#: calc_functions.xhp
@@ -39749,7 +39749,7 @@ msgctxt ""
"par_id681592355799718\n"
"help.text"
msgid "QUOTIENT"
-msgstr ""
+msgstr "QUOTIENT"
#. AC3Lz
#: calc_functions.xhp
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id831592355803591\n"
"help.text"
msgid "RANDBETWEEN"
-msgstr ""
+msgstr "ZUFALLSBEREICH"
#. ZCZFS
#: calc_functions.xhp
@@ -39767,7 +39767,7 @@ msgctxt ""
"par_id701592355807287\n"
"help.text"
msgid "RECEIVED"
-msgstr ""
+msgstr "AUSZAHLUNG"
#. nfAzV
#: calc_functions.xhp
@@ -39776,7 +39776,7 @@ msgctxt ""
"par_id231592355810343\n"
"help.text"
msgid "SERIESSUM"
-msgstr ""
+msgstr "POTENZREIHE"
#. uC2XH
#: calc_functions.xhp
@@ -39785,7 +39785,7 @@ msgctxt ""
"par_id111592355816454\n"
"help.text"
msgid "SQRTPI"
-msgstr ""
+msgstr "WURZELPI"
#. t6kbr
#: calc_functions.xhp
@@ -39794,7 +39794,7 @@ msgctxt ""
"par_id521592355819614\n"
"help.text"
msgid "TBILLEQ"
-msgstr ""
+msgstr "TBILLÄQUIV"
#. BMCzh
#: calc_functions.xhp
@@ -39803,7 +39803,7 @@ msgctxt ""
"par_id351592355822703\n"
"help.text"
msgid "TBILLPRICE"
-msgstr ""
+msgstr "TBILLKURS"
#. KFSbi
#: calc_functions.xhp
@@ -39812,7 +39812,7 @@ msgctxt ""
"par_id921592355825694\n"
"help.text"
msgid "TBILLYIELD"
-msgstr ""
+msgstr "TBILLRENDITE"
#. Ce7D3
#: calc_functions.xhp
@@ -39821,7 +39821,7 @@ msgctxt ""
"par_id751592355828599\n"
"help.text"
msgid "WEEKNUM"
-msgstr ""
+msgstr "KALENDERWOCHE"
#. WKvrN
#: calc_functions.xhp
@@ -39830,7 +39830,7 @@ msgctxt ""
"par_id851592355831471\n"
"help.text"
msgid "WORKDAY"
-msgstr ""
+msgstr "ARBEITSTAG"
#. jJDdS
#: calc_functions.xhp
@@ -39839,7 +39839,7 @@ msgctxt ""
"par_id291592355834479\n"
"help.text"
msgid "XIRR"
-msgstr ""
+msgstr "XINTZINSFUSS"
#. JEeBG
#: calc_functions.xhp
@@ -39848,7 +39848,7 @@ msgctxt ""
"par_id521592355837464\n"
"help.text"
msgid "XNPV"
-msgstr ""
+msgstr "XKAPITALWERT"
#. JkpJC
#: calc_functions.xhp
@@ -39857,7 +39857,7 @@ msgctxt ""
"par_id201592355840359\n"
"help.text"
msgid "YEARFRAC"
-msgstr ""
+msgstr "BRTEILJAHRE"
#. SaiBh
#: calc_functions.xhp
@@ -39866,7 +39866,7 @@ msgctxt ""
"par_id281592355843559\n"
"help.text"
msgid "YIELD"
-msgstr ""
+msgstr "RENDITE"
#. qFVKa
#: calc_functions.xhp
@@ -39875,7 +39875,7 @@ msgctxt ""
"par_id341592355846704\n"
"help.text"
msgid "YIELDDISC"
-msgstr ""
+msgstr "RENDITEDIS"
#. HY4dN
#: calc_functions.xhp
@@ -39884,7 +39884,7 @@ msgctxt ""
"par_id181592355849664\n"
"help.text"
msgid "YIELDMAT"
-msgstr ""
+msgstr "RENDITEFÄLL"
#. MqMrx
#: classmodule.xhp
@@ -40037,7 +40037,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CompatibilityMode function"
-msgstr ""
+msgstr "Funktion CompatibilityMode"
#. 7mPvG
#: compatibilitymode.xhp
@@ -40073,7 +40073,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "Use this feature with caution, limit it to document conversion for example."
-msgstr ""
+msgstr "Verwenden Sie diese Funktion mit Vorsicht, beschränken Sie sie beispielsweise auf die Dokumentkonvertierung."
#. GJLGQ
#: compatibilitymode.xhp
@@ -40325,7 +40325,7 @@ msgctxt ""
"par_id641581846957447\n"
"help.text"
msgid "' With this option the code works, otherwise it causes a compiling error"
-msgstr ""
+msgstr "' Mit dieser Option funktioniert der Code, sonst kommt es zu einem Kompilierungsfehler"
#. E6GpA
#: compatible.xhp
@@ -40595,7 +40595,7 @@ msgctxt ""
"par_id831588865616326\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Enum_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Enum syntax</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Enum_statement.svg\" id=\"img_id651588865616326\"><alt id=\"alt_id281588865616326\">Syntax für Enum</alt></image>"
#. irGeH
#: enum.xhp
@@ -40685,7 +40685,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Basic syntax diagrams fragments"
-msgstr ""
+msgstr "Fragmente von Basic Syntaxdiagrammen"
#. y2yz2
#: fragments.xhp
@@ -40694,7 +40694,7 @@ msgctxt ""
"hd_id541587044867073\n"
"help.text"
msgid "<variable id=\"fragmentsh1\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"Syntax fragments\">Syntax fragments</link></variable>"
-msgstr ""
+msgstr "<variable id=\"fragmentsh1\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"Syntax fragments\">Syntaxfragmente</link></variable>"
#. qdgmB
#: fragments.xhp
@@ -40703,7 +40703,7 @@ msgctxt ""
"par_id881587044839050\n"
"help.text"
msgid "%PRODUCTNAME Basic syntax fragments."
-msgstr ""
+msgstr "%PRODUCTNAME Basic Syntaxfragmente."
#. 4eH7M
#: fragments.xhp
@@ -40721,7 +40721,7 @@ msgctxt ""
"par_id491585753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/argument_fragment.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">argument fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/argument_fragment.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Fragment für argument</alt></image>"
#. zqKwG
#: fragments.xhp
@@ -40730,7 +40730,7 @@ msgctxt ""
"hd_id811587303969210\n"
"help.text"
msgid "Parameters"
-msgstr ""
+msgstr "Parameter"
#. E7GXy
#: fragments.xhp
@@ -40739,7 +40739,7 @@ msgctxt ""
"par_id481586090298901\n"
"help.text"
msgid "<literal>Optional</literal>: The argument is not mandatory."
-msgstr ""
+msgstr "<literal>Optional</literal>: Das Argument ist nicht obligatorisch."
#. FEs39
#: fragments.xhp
@@ -40748,7 +40748,7 @@ msgctxt ""
"par_id331586090532804\n"
"help.text"
msgid "<literal>ByRef</literal>: The argument is passed by reference. <literal>ByRef</literal> is the default."
-msgstr ""
+msgstr "<literal>ByRef</literal>: Das Argument wird als Referenz übergeben. <literal>NyRef</literal> ist die Standardeinstellung."
#. WuCPC
#: fragments.xhp
@@ -40757,7 +40757,7 @@ msgctxt ""
"par_id331586090432804\n"
"help.text"
msgid "<literal>ByVal</literal>: The argument is passed by value. Its value can be modified by the called routine."
-msgstr ""
+msgstr "<literal>ByVal</literal>: Das Argument wird als Wert übergeben. Sein Wert kann von der aufgerufenen Routine geändert werden."
#. GrfMS
#: fragments.xhp
@@ -40766,7 +40766,7 @@ msgctxt ""
"par_id651587044335713\n"
"help.text"
msgid "<emph>char:</emph> Type declaration character."
-msgstr ""
+msgstr "<emph>char:</emph> Typdeklarationszeichen."
#. Naxwg
#: fragments.xhp
@@ -40775,7 +40775,7 @@ msgctxt ""
"par_id651587044336713\n"
"help.text"
msgid "<emph>typename</emph>: Primitive data type name. Library or module defined types can also be specified."
-msgstr ""
+msgstr "<emph>typename</emph>: Primitiver Datentypname. Bibliotheks- oder moduldefinierte Typen können ebenfalls angegeben werden."
#. KwsyR
#: fragments.xhp
@@ -40784,7 +40784,7 @@ msgctxt ""
"par_id11587045141290\n"
"help.text"
msgid "<emph>= expression</emph>: Specify a default value for the argument, matching its declared type. <literal>Optional</literal> is necessary for each argument specifying a default value."
-msgstr ""
+msgstr "<emph>= expression</emph>: Geben Sie einen Standardwert für das Argument an, der seinem deklarierten Typ entspricht. <literal>Optional</literal> ist für jedes Argument erforderlich, das einen Standardwert angibt."
#. 4Atx8
#: fragments.xhp
@@ -40793,7 +40793,7 @@ msgctxt ""
"par_id331586091432804\n"
"help.text"
msgid "<literal>ParamArray</literal>: Use <literal>ParamArray</literal> when the number of parameters is undetermined. A typical scenario is that of a Calc user-defined function. Using <literal>ParamArray</literal> should be limited to the last argument of a routine."
-msgstr ""
+msgstr "<literal>ParamArray</literal>: Verwenden Sie <literal>ParamArray</literal>, wenn die Anzahl der Parameter unbestimmt ist. Ein typisches Szenario ist das einer benutzerdefinierten Calc-Funktion. Die Verwendung von <literal>ParamArray</literal> sollte auf das letzte Argument einer Routine beschränkt sein."
#. GWSD4
#: fragments.xhp
@@ -40802,7 +40802,7 @@ msgctxt ""
"par_id851587050837107\n"
"help.text"
msgid "Using<literal>ParamArray</literal> or <emph>= expression</emph> require <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> to be placed before the executable program code in a module."
-msgstr ""
+msgstr "Die Verwendung von <literal>ParamArray</literal> oder <emph>= expression</emph> erfordert, dass <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> vor dem ausführbaren Programmcode in einem Modul platziert ist."
#. EDCLX
#: fragments.xhp
@@ -40811,7 +40811,7 @@ msgctxt ""
"par_id391587571321063\n"
"help.text"
msgid "When using <link href=\"text/sbasic/shared/vbasupport.xhp\" name=\"Option VBASupport\">Option VBASupport 1</link>, <literal>Optional</literal> arguments with no default value (<emph>= expression</emph>) are initialized according to their data type, except if <literal>Variant</literal>."
-msgstr ""
+msgstr "Bei Verwendung von <link href=\"text/sbasic/shared/vbasupport.xhp\" name=\"Option VBASupport\">Option VBASupport 1</link> werden Argumente <literal>Optional</literal> ohne Standardwert (<emph>= expression</emph>) entsprechend ihrem Datentyp initialisiert, außer wenn <literal>Variant</literal>."
#. fDUEu
#: fragments.xhp
@@ -40820,7 +40820,7 @@ msgctxt ""
"hd_id231587046013456\n"
"help.text"
msgid "<variable id=\"arrayh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"array syntax fragment\">array fragment</link></variable>"
-msgstr ""
+msgstr "<variable id=\"arrayh4\"><link href=\"text/sbasic/shared/fragments.xhp\" name=\"array syntax fragment\">Fragment eines Arrays</link></variable>"
#. YD32W
#: fragments.xhp
@@ -40829,7 +40829,7 @@ msgctxt ""
"par_id491586753339473\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/array_fragment.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">array fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/array_fragment.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Fragment eines Arrays</alt></image>"
#. zrpkq
#: fragments.xhp
@@ -40838,7 +40838,7 @@ msgctxt ""
"hd_id731587304120258\n"
"help.text"
msgid "Parameters"
-msgstr ""
+msgstr "Parameter"
#. dUCSu
#: fragments.xhp
@@ -40847,7 +40847,7 @@ msgctxt ""
"par_id951587051619162\n"
"help.text"
msgid "<emph>start:</emph> Lower bound of a dimension."
-msgstr ""
+msgstr "<emph>start:</emph> Untere Grenze einer Dimension."
#. yeb4H
#: fragments.xhp
@@ -40856,7 +40856,7 @@ msgctxt ""
"par_id951587052619162\n"
"help.text"
msgid "<emph>end:</emph> Upper bound of a dimension."
-msgstr ""
+msgstr "<emph>end:</emph> Obere Grenze einer Dimension."
#. wyE23
#: fragments.xhp
@@ -40865,7 +40865,7 @@ msgctxt ""
"par_id961587051702571\n"
"help.text"
msgid "Multiple dimensions for an array are denoted using comma (<emph>,</emph>) sign."
-msgstr ""
+msgstr "Mehrere Dimensionen für ein Array werden durch Kommata (<emph>,</emph>) gekennzeichnet."
#. E9UTU
#: fragments.xhp
@@ -40883,7 +40883,7 @@ msgctxt ""
"par_id501586753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484515\">primitive data types fragment</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/typename_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484515\">Fragment primitiver Datentypen</alt></image>"
#. BSD4e
#: fragments.xhp
@@ -40901,7 +40901,7 @@ msgctxt ""
"par_id511586753339474\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484516\">type declaration characters</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/char_fragment.svg\" id=\"img_id4157296484514\"><alt id=\"alt_id15152796484516\">Zeichen-Typdeklaration</alt></image>"
#. onSEk
#: keys.xhp
@@ -41342,7 +41342,7 @@ msgctxt ""
"Property Statement\n"
"help.text"
msgid "Property Statement"
-msgstr ""
+msgstr "Anweisung Property"
#. ukCtn
#: property.xhp
@@ -41351,7 +41351,7 @@ msgctxt ""
"N0181\n"
"help.text"
msgid "<bookmark_value>Property statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Property (Anweisung)</bookmark_value>"
#. 6Gjab
#: property.xhp
@@ -41360,7 +41360,7 @@ msgctxt ""
"N0182\n"
"help.text"
msgid "Property Statement"
-msgstr ""
+msgstr "Anweisung Property"
#. CxW74
#: property.xhp
@@ -41378,7 +41378,7 @@ msgctxt ""
"N0184\n"
"help.text"
msgid "This statement requires <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> to be placed before the executable program code in a module."
-msgstr ""
+msgstr "Diese Anweisung erfordert, dass <link href=\"text/sbasic/shared/compatible.xhp\" name=\"Option Compatible\">Option Compatible</link> vor dem ausführbaren Programmcode in einem Modul platziert wird."
#. gSJbV
#: property.xhp
@@ -41387,7 +41387,7 @@ msgctxt ""
"par_id971587473488701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Property-Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Property Get Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Property-Get_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm der Anweisung Property Get</alt></image>"
#. LNJAH
#: property.xhp
@@ -41396,7 +41396,7 @@ msgctxt ""
"par_id972787473488701\n"
"help.text"
msgid "<image src=\"media/helpimg/sbasic/Property-Set_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Property Set Statement diagram</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sbasic/Property-Set_statement.svg\" id=\"img_id4156296484514\"><alt id=\"alt_id15152796484514\">Diagramm der Anweisung Property Set</alt></image>"
#. uowWh
#: property.xhp
@@ -41405,7 +41405,7 @@ msgctxt ""
"par_id941588582710020\n"
"help.text"
msgid "<emph>name: </emph>The property name."
-msgstr ""
+msgstr "<emph>name:</emph> Der Eigenschaftsname."
#. hiW2o
#: property.xhp
@@ -41414,7 +41414,7 @@ msgctxt ""
"par_id3147229\n"
"help.text"
msgid "<emph>argument:</emph> Value to be passed to the <literal>Property</literal> setter routine."
-msgstr ""
+msgstr "<emph>argument:</emph> Wert, der an die Setter-Routine <literal>Property</literal> übergeben werden soll."
#. duS8j
#: property.xhp
@@ -41423,7 +41423,7 @@ msgctxt ""
"par_id301588583826717\n"
"help.text"
msgid "<literal>Property</literal> setters often use a single argument. Multiple arguments are equally accepted."
-msgstr ""
+msgstr "<literal>Property</literal>-Setter verwenden oft ein einzelnes Argument. Mehrere Argumente werden gleichermaßen akzeptiert."
#. FG2Dc
#: property.xhp
@@ -41432,7 +41432,7 @@ msgctxt ""
"N0188\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Beispiele"
#. 2n4nC
#: property.xhp
@@ -41441,7 +41441,7 @@ msgctxt ""
"N0192\n"
"help.text"
msgid "Print ProductName ' displays \"%PRODUCTNAME\""
-msgstr ""
+msgstr "Print ProductName ' Zeigt \"%PRODUCTNAME\""
#. oUuG9
#: property.xhp
@@ -41450,7 +41450,7 @@ msgctxt ""
"N0202\n"
"help.text"
msgid "In the absence of Property <emph>Let</emph> or Property <emph>Set</emph>, Property <emph>Get</emph> helps define protected information, which can not be accidently altered by a foreign module:"
-msgstr ""
+msgstr "In Abwesenheit von Property <emph>Let</emph> oder Property <emph>Set</emph> hilft Property <emph>Get</emph> dabei, geschützte Informationen zu definieren, die nicht versehentlich von einem fremden Modul geändert werden können:"
#. PP63o
#: property.xhp
@@ -41459,7 +41459,7 @@ msgctxt ""
"N0204\n"
"help.text"
msgid "Public Property Get PathDelimiter As String ' Read-only variable"
-msgstr ""
+msgstr "Public Property Get PathDelimiter As String ' Schreibgeschützte Variable"
#. yNhRi
#: property.xhp
@@ -41468,7 +41468,7 @@ msgctxt ""
"N0208\n"
"help.text"
msgid "Case 4 : this = \":\" ' Linux or macOS"
-msgstr ""
+msgstr "Case 4 : this = \":\" ' Linux oder macOS"
#. BievJ
#: property.xhp
@@ -41477,7 +41477,7 @@ msgctxt ""
"N0209\n"
"help.text"
msgid "Case Else : Error 423 ' Property or method not defined: PathDelimiter"
-msgstr ""
+msgstr "Case Else : Error 423 ' Eigenschaft oder Methode nicht definiert: PathDelimiter"
#. wnG4s
#: property.xhp
@@ -41486,7 +41486,7 @@ msgctxt ""
"N0212\n"
"help.text"
msgid "End Property ' read-only PathDelimiter"
-msgstr ""
+msgstr "End Property ' Schreibgeschützter PathDelimiter"
#. ze9dZ
#: property.xhp
@@ -41495,7 +41495,7 @@ msgctxt ""
"N0215\n"
"help.text"
msgid "PathDelimiter = \"a sentence\" ' does nothing"
-msgstr ""
+msgstr "PathDelimiter = \"a sentence\" ' Nichts passiert"
#. xR9j7
#: property.xhp
@@ -41504,7 +41504,7 @@ msgctxt ""
"N0217\n"
"help.text"
msgid "Use <emph>Let</emph> or <emph>Set</emph> when handling UNO services or class objects:"
-msgstr ""
+msgstr "Verwenden Sie <emph>Let</emph> oder <emph>Set</emph> beim Umgang mit UNO-Diensten oder Klassenobjekten:"
#. KbzAx
#: property.xhp
@@ -41513,7 +41513,7 @@ msgctxt ""
"N0237\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link> statements"
-msgstr ""
+msgstr "Anweisungen <link href=\"text/sbasic/shared/03090404.xhp\" name=\"End\">End</link>, <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>"
#. Dh5aG
#: property.xhp
@@ -41522,7 +41522,7 @@ msgctxt ""
"N0238\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Using Procedures and Fonctions\">Using Procedures and Functions</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/01020300.xhp\" name=\"Using Procedures and Fonctions\">Prozeduren und Funktionen verwenden</link>"
#. uM2zs
#: replace.xhp
@@ -41666,7 +41666,7 @@ msgctxt ""
"par_id861587778446685\n"
"help.text"
msgid "REM returns D*FGHI because the search starts at position 4, which is also the start of the returned string."
-msgstr ""
+msgstr "REM gibt D*FGHI zurück, da die Suche bei Position 4 beginnt, die auch der Anfang der zurückgegebenen Zeichenkette ist."
#. nDtDv
#: replace.xhp
@@ -41846,7 +41846,7 @@ msgctxt ""
"bm_id051920170359045662\n"
"help.text"
msgid "<bookmark_value>VBA Functions;Object Properties and Methods</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>VBA-Funktionen; Objekteigenschaften und Methoden</bookmark_value>"
#. puram
#: special_vba_func.xhp
@@ -41855,7 +41855,7 @@ msgctxt ""
"hd_id051920170347039686\n"
"help.text"
msgid "Object Properties and Methods"
-msgstr ""
+msgstr "Objekteigenschaften und Methoden"
#. ZEw4t
#: stardesktop.xhp
diff --git a/source/de/helpcontent2/source/text/sbasic/shared/03.po b/source/de/helpcontent2/source/text/sbasic/shared/03.po
index ee749786a78..6eed2531eaa 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared/03.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-07-01 17:53+0200\n"
-"PO-Revision-Date: 2021-06-13 09:10+0000\n"
-"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1565407061.000000\n"
#. ViEWM
@@ -32,7 +32,7 @@ msgctxt ""
"not_BasMeth\n"
"help.text"
msgid "This method is not available in Basic."
-msgstr ""
+msgstr "Diese Methode ist in Basic nicht verfügbar."
#. LDXQx
#: avail_release.xhp
@@ -41,7 +41,7 @@ msgctxt ""
"not_BasProp\n"
"help.text"
msgid "This property is not available in Basic."
-msgstr ""
+msgstr "Diese Eigenschaft ist in Basic nicht verfügbar."
#. 4GDXo
#: avail_release.xhp
@@ -50,7 +50,7 @@ msgctxt ""
"not_PycMeth\n"
"help.text"
msgid "This method is not available in Python."
-msgstr ""
+msgstr "Diese Methode ist in Python nicht verfügbar."
#. 3ZUdq
#: avail_release.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"not_PycProp\n"
"help.text"
msgid "This property is not available in Python."
-msgstr ""
+msgstr "Diese Eigenschaft ist in Python nicht verfügbar."
#. 7KtXf
#: avail_release.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"par_id651551701041690\n"
"help.text"
msgid "This service is available from %PRODUCTNAME 7.2 onwards."
-msgstr ""
+msgstr "Dieser Dienst ist ab %PRODUCTNAME 7.2 verfügbar."
#. GXE45
#: avail_release.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"par_id281613660174140\n"
"help.text"
msgid "These methods are available from %PRODUCTNAME 7.2 onwards."
-msgstr ""
+msgstr "Diese Methoden sind ab %PRODUCTNAME 7.2 verfügbar."
#. An73n
#: avail_release.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id291613654389792\n"
"help.text"
msgid "This method is available from %PRODUCTNAME 7.2 onwards."
-msgstr ""
+msgstr "Diese Methode ist ab %PRODUCTNAME 7.2 verfügbar."
#. qjuHF
#: avail_release.xhp
@@ -104,7 +104,7 @@ msgctxt ""
"par_id831613654401663\n"
"help.text"
msgid "These event properties are available from %PRODUCTNAME 7.2 onwards."
-msgstr ""
+msgstr "Diese Ereigniseigenschaften sind ab %PRODUCTNAME 7.2 verfügbar."
#. kVj8c
#: avail_release.xhp
@@ -113,7 +113,7 @@ msgctxt ""
"par_id201613654395537\n"
"help.text"
msgid "This property is available from %PRODUCTNAME 7.2 onwards."
-msgstr ""
+msgstr "Diese Eigenschaft ist ab %PRODUCTNAME 7.2 verfügbar."
#. EziC4
#: lib_ScriptForge.xhp
@@ -131,7 +131,7 @@ msgctxt ""
"hd_id31529004750471\n"
"help.text"
msgid "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">The <literal>ScriptForge</literal> Library</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ScriptForge_lib\"><link href=\"text/sbasic/shared/03/lib_ScriptForge.xhp\" name=\"ScriptForge library\">Die Bibliothek <literal>ScriptForge</literal></link></variable>"
#. yE8bw
#: lib_ScriptForge.xhp
@@ -140,7 +140,7 @@ msgctxt ""
"bm_id491529070339774\n"
"help.text"
msgid "<bookmark_value>BASIC ScriptForge library</bookmark_value> <bookmark_value>Python scriptforge module</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>BASIC ScriptForge (Bibliothek)</bookmark_value><bookmark_value>Python Scriptforge (Modul)</bookmark_value>"
#. BtMUU
#: lib_ScriptForge.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"par_id681619700336879\n"
"help.text"
msgid "ScriptForge libraries build up an extensible collection of macro scripting resources for %PRODUCTNAME to be invoked from Basic macros or Python scripts."
-msgstr ""
+msgstr "ScriptForge-Bibliotheken bilden eine erweiterbare Sammlung an Makro-Skriptressourcen für %PRODUCTNAME, die von Basic-Makros oder Python-Skripten aufgerufen werden können."
#. YwSXj
#: lib_ScriptForge.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"par_id851605659675843\n"
"help.text"
msgid "The <literal>ScriptForge</literal> Basic library is available from %PRODUCTNAME 7.1 onwards.<br/>Python <literal>scriptforge</literal> module is available from %PRODUCTNAME 7.2 onwards."
-msgstr ""
+msgstr "Die Bibliothek <literal>ScriptForge</literal> Basic ist ab %PRODUCTNAME 7.1 verfügbar.<br/>Das Modul Python <literal>scriptforge</literal> ist ab %PRODUCTNAME 7.2 verfügbar."
#. Depaw
#: lib_ScriptForge.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"hd_id851613836643580\n"
"help.text"
msgid "Services provided by the ScriptForge library"
-msgstr ""
+msgstr "Von der Bibliothek ScriptForge bereitgestellte Dienste"
#. dw2Fe
#: lib_ScriptForge.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"par_id131613838858931\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Kategorie"
#. TmFbF
#: lib_ScriptForge.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"par_id441613838858931\n"
"help.text"
msgid "Services"
-msgstr ""
+msgstr "Dienste"
#. ZZKBq
#: lib_ScriptForge.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"par_id131613838825831\n"
"help.text"
msgid "Document Content"
-msgstr ""
+msgstr "Dokumentinhalt"
#. 8fZtg
#: lib_ScriptForge.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"par_id131613947858931\n"
"help.text"
msgid "User Interface"
-msgstr ""
+msgstr "Benutzeroberfläche"
#. dAomL
#: lib_ScriptForge.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id131613866258931\n"
"help.text"
msgid "Utilities"
-msgstr ""
+msgstr "Dienstprogramme"
#. 6gvZc
#: lib_ScriptForge.xhp
@@ -455,7 +455,7 @@ msgctxt ""
"par_id691593519646426\n"
"help.text"
msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
-msgstr ""
+msgstr "Konflikte mit Namen von Basic-Routinen können bestehen, wenn mehrfach Basic-Bibliotheken in den Speicher geladen wurden."
#. FGEdL
#: lib_gimmicks.xhp
@@ -464,7 +464,7 @@ msgctxt ""
"par_id1001593520257636\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
-msgstr ""
+msgstr "Basic-Bibliothek <link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link>"
#. 9DVHn
#: lib_gimmicks.xhp
@@ -518,7 +518,7 @@ msgctxt ""
"par_id921593518140986\n"
"help.text"
msgid "The <emph>ImportWizard</emph> library is used by the <emph>Document Converter</emph> wizard."
-msgstr ""
+msgstr "Die Bibliothek <emph>ImportWizard</emph> wird vom Assistenten <emph>Dokumentkonverter</emph> verwendet."
#. FaGZt
#: lib_importwiz.xhp
@@ -527,7 +527,7 @@ msgctxt ""
"par_id481593518247400\n"
"help.text"
msgid "Its entry point is:"
-msgstr ""
+msgstr "Ihr Einstiegspunkt ist:"
#. foGsC
#: lib_importwiz.xhp
@@ -536,7 +536,7 @@ msgctxt ""
"par_id381593519742529\n"
"help.text"
msgid "Selecting the <emph>Document Converter</emph> wizard loads the following libraries in memory:"
-msgstr ""
+msgstr "Nach Auswahl des Assistenten <emph>Dokumentkonverter</emph> werden die folgenden Bibliothek in den Arbeitsspeicher geladen:"
#. vV4TD
#: lib_importwiz.xhp
@@ -545,7 +545,7 @@ msgctxt ""
"par_id691593519646426\n"
"help.text"
msgid "Basic routine name conflicts may exist when multiple Basic libraries are loaded in memory."
-msgstr ""
+msgstr "Konflikte mit Namen von Basic-Routinen können bestehen, wenn mehrfach Basic-Bibliotheken in den Speicher geladen wurden."
#. ZCH7G
#: lib_importwiz.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"par_id1001593520257636\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link> Basic library"
-msgstr ""
+msgstr "Basic-Bibliothek <link href=\"text/sbasic/shared/03/lib_tools.xhp\" name=\"Tools library\">Tools</link>"
#. ZT5z9
#: lib_importwiz.xhp
@@ -563,7 +563,7 @@ msgctxt ""
"par_id251593518523704\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Document Converter</link> describes what the <emph>ImportWizard</emph> library does."
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01130000.xhp\" name=\"Document Converter\">Dokumentkonverter</link> beschreibt, wofür die Bibliothek <emph>ImportWizard</emph> da ist."
#. UWzWk
#: lib_schedule.xhp
@@ -653,7 +653,7 @@ msgctxt ""
"par_id131593538122154\n"
"help.text"
msgid "This library is not used by %PRODUCTNAME Basic."
-msgstr ""
+msgstr "Diese Bibliothek wird nicht von %PRODUCTNAME Basic verwendet."
#. Qh7KM
#: lib_script.xhp
@@ -671,7 +671,7 @@ msgctxt ""
"par_id721593525163663\n"
"help.text"
msgid "Beanshell, Java and JavaScript <link href=\"text/shared/01/06130030.xhp\" name=\"Scripts\">Scripts</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06130030.xhp\" name=\"Scripts\">Skripte</link> für Beanshell, Java und JavaScript"
#. QZNvL
#: lib_template.xhp
@@ -968,7 +968,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WikiEditor Library"
-msgstr ""
+msgstr "Bibliothek WikiEditor"
#. QDwwy
#: lib_wikieditor.xhp
@@ -977,7 +977,7 @@ msgctxt ""
"hd_id31529004750471\n"
"help.text"
msgid "<variable id=\"wikieditor_lib\"><link href=\"text/sbasic/shared/03/lib_wikieditor.xhp\" name=\"WikiEditor library\">The <item type=\"literal\">WikiEditor</item> Library</link></variable>"
-msgstr ""
+msgstr "<variable id=\"wikieditor_lib\"><link href=\"text/sbasic/shared/03/lib_wikieditor.xhp\" name=\"WikiEditor library\">Die Bibliothek <item type=\"literal\">WikiEditor</item></link></variable>"
#. mBGxx
#: lib_wikieditor.xhp
@@ -986,7 +986,7 @@ msgctxt ""
"bm_id231529070133574\n"
"help.text"
msgid "<bookmark_value>BASIC WikiEditor library</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>BASIC WikiEditor (Bibliothek)</bookmark_value>"
#. qGFuz
#: lib_wikieditor.xhp
@@ -995,7 +995,7 @@ msgctxt ""
"hd_id841593518085848\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. MdATA
#: lib_wikieditor.xhp
@@ -1004,7 +1004,7 @@ msgctxt ""
"par_id921593518140986\n"
"help.text"
msgid "The <emph>WikiEditor</emph> library only contains dialogs, it is used by <emph>Wiki Publisher</emph> bundled Java extension."
-msgstr ""
+msgstr "Die Bibliothek <emph>WikiEditor</emph> enthält nur Dialoge, die vom <emph>Wiki Publisher</emph> in der mitgelieferten Java-Erweiterung verwendet werden."
#. k2E85
#: lib_wikieditor.xhp
@@ -1013,7 +1013,7 @@ msgctxt ""
"par_id131593538122154\n"
"help.text"
msgid "This library is not used by %PRODUCTNAME Basic."
-msgstr ""
+msgstr "Diese Bibliothek wird nicht von %PRODUCTNAME Basic verwendet."
#. Ns4rA
#: sf_array.xhp
@@ -2705,7 +2705,7 @@ msgctxt ""
"par_id971618923022846\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. W8eh6
#: sf_basic.xhp
@@ -4118,7 +4118,7 @@ msgctxt ""
"par_id931582885195131\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. 3MHFG
#: sf_calc.xhp
@@ -6197,7 +6197,7 @@ msgctxt ""
"par_id951587913266220\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. BzLQb
#: sf_database.xhp
@@ -6836,7 +6836,7 @@ msgctxt ""
"par_id401583668386455\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. iZZec
#: sf_dialog.xhp
@@ -7700,7 +7700,7 @@ msgctxt ""
"par_id401583668386455\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. xNGhR
#: sf_dialogcontrol.xhp
@@ -8357,7 +8357,7 @@ msgctxt ""
"par_id961598543254444\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. jEyx9
#: sf_dialogcontrol.xhp
@@ -9212,7 +9212,7 @@ msgctxt ""
"par_id931582885195131\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. B8ZfD
#: sf_dictionary.xhp
@@ -9914,7 +9914,7 @@ msgctxt ""
"par_id931582885195131\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. wBpru
#: sf_document.xhp
@@ -10751,7 +10751,7 @@ msgctxt ""
"par_id621584978211403\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. tJZkJ
#: sf_exception.xhp
@@ -11300,7 +11300,7 @@ msgctxt ""
"par_id711612988600163\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. dEUyj
#: sf_filesystem.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id401583668386455\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. CyEEJ
#: sf_filesystem.xhp
@@ -13253,7 +13253,7 @@ msgctxt ""
"par_id401583668386455\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. wSC47
#: sf_form.xhp
@@ -14378,7 +14378,7 @@ msgctxt ""
"par_id401583668386455\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. N3ejK
#: sf_formcontrol.xhp
@@ -14990,7 +14990,7 @@ msgctxt ""
"par_id961598543254444\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. FLUGH
#: sf_formcontrol.xhp
@@ -16547,7 +16547,7 @@ msgctxt ""
"par_id351585843652638\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. j3wEj
#: sf_l10n.xhp
@@ -16970,7 +16970,7 @@ msgctxt ""
"par_id67160078807636\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. XdLGG
#: sf_platform.xhp
@@ -18680,7 +18680,7 @@ msgctxt ""
"par_id621584978211403\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. 6DG3u
#: sf_string.xhp
@@ -20669,7 +20669,7 @@ msgctxt ""
"par_id551585330787608\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. ECkTm
#: sf_textstream.xhp
@@ -21182,7 +21182,7 @@ msgctxt ""
"par_id751582733781926\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. T92or
#: sf_timer.xhp
@@ -21317,7 +21317,7 @@ msgctxt ""
"par_id971582734180676\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. ZMfpe
#: sf_timer.xhp
@@ -21776,7 +21776,7 @@ msgctxt ""
"par_id951587913266220\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Beschreibung"
#. c5EiC
#: sf_ui.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index 98d08ffd767..2f847585005 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/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-06-24 12:51+0200\n"
-"PO-Revision-Date: 2021-06-04 11:14+0000\n"
+"PO-Revision-Date: 2021-07-24 16:17+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1565412342.000000\n"
#. sZfWF
@@ -2867,7 +2867,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_SELECTTABLES\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr "<ahelp hid=\"SC_HID_SELECTTABLES\">Zeigt eine Liste der Tabellen im aktuellen Dokument an. Verwenden Sie die Auf- und Abwärtspfeiltasten, um eine Tabelle in dieser Liste hervorzuheben. Um eine Tabelle der Auswahl hinzuzufügen, halten Sie die Taste <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline> gedrückt, während Sie Auf- oder Abwärtspfeiltaste drücken, und drücken Sie dann die Leertaste. Aufeinander folgende Tabellen wählen Sie mit gedrückter Umschalttaste und den Auf- und Abwärtspfeiltasten.</ahelp>"
+msgstr "<ahelp hid=\"SC_HID_SELECTTABLES\">Zeigt eine Liste der Tabellen im aktuellen Dokument an. Verwenden Sie die Tasten Pfeil nach oben/unten, um eine Tabelle in dieser Liste hervorzuheben. Um eine Tabelle der Auswahl hinzuzufügen, halten Sie die Taste <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline> gedrückt, während Sie Tasten Pfeil nach oben/unten drücken, und drücken Sie dann die Leertaste. Aufeinander folgende Tabellen wählen Sie mit gedrückter Umschalttaste und den Tasten Pfeil nach oben/unten aus.</ahelp>"
#. eomCF
#: 03070000.xhp
@@ -10391,7 +10391,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logicaltext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logicaltext\">Diese Kategorie enthält die Funktion vom Typ <emph>Logisch</emph>.</variable>"
#. ADKTB
#: 04060105.xhp
@@ -13010,7 +13010,7 @@ msgctxt ""
"par_id3144732\n"
"help.text"
msgid "LOG(Number [; Base])"
-msgstr ""
+msgstr "LOG(Zahl [; Basis])"
#. Eiqiq
#: 04060106.xhp
@@ -13262,7 +13262,7 @@ msgctxt ""
"par_id241599040594931\n"
"help.text"
msgid "<literal>=POWER(0,0)</literal> returns 1."
-msgstr ""
+msgstr "<literal>=POTENZ(0;0)</literal> ergibt 1."
#. D3Ghv
#: 04060106.xhp
@@ -13676,7 +13676,7 @@ msgctxt ""
"par_id3158182\n"
"help.text"
msgid "ROUND(Number [; Count])"
-msgstr ""
+msgstr "RUNDEN(Zahl [; Stellen])"
#. yE5Jb
#: 04060106.xhp
@@ -13775,7 +13775,7 @@ msgctxt ""
"par_id3146051\n"
"help.text"
msgid "ROUNDDOWN(Number [; Count])"
-msgstr ""
+msgstr "ABRUNDEN(Zahl [;Stellen])"
#. EXn4P
#: 04060106.xhp
@@ -13865,7 +13865,7 @@ msgctxt ""
"par_id3163328\n"
"help.text"
msgid "ROUNDUP(Number [; Count])"
-msgstr ""
+msgstr "AUFRUNDEN(Zahl [; Stellen])"
#. x59Ls
#: 04060106.xhp
@@ -14333,7 +14333,7 @@ msgctxt ""
"par_id3152028\n"
"help.text"
msgid "SUMIF(Range; Criterion [; SumRange])"
-msgstr ""
+msgstr "SUMMEWENN(Bereich; Bedingung [; Summenbereich])"
#. wmLcE
#: 04060106.xhp
@@ -14846,7 +14846,7 @@ msgctxt ""
"par_id3143748\n"
"help.text"
msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\" [; full_precision [; triangulation_precision]])"
-msgstr ""
+msgstr "EUROUMRECHNEN(Wert; Ausgangswährung; Zielwährung [;Volle Genauigkeit [;Zwischenergebnis Genauigkeit]])"
#. 4KJUc
#: 04060106.xhp
@@ -14873,7 +14873,7 @@ msgctxt ""
"par_id0119200904301810\n"
"help.text"
msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
-msgstr "<emph>Volle_Genauigkeit</emph> ist ein optionaler Parameter. Wenn er fehlt oder FALSCH ist, wird das Ergebnis auf die der Zielwährung entsprechenden Stellenanzahl gerundet. Wenn Volle_Genauigkeit WAHR ist, wird das Ergebnis nicht gerundet."
+msgstr "<emph>Volle Genauigkeit</emph> ist ein optionaler Parameter. Wenn er fehlt oder FALSCH ist, wird das Ergebnis auf die der Zielwährung entsprechenden Stellenanzahl gerundet. Wenn \"Volle Genauigkeit\" WAHR ist, wird das Ergebnis nicht gerundet."
#. Pzmf5
#: 04060106.xhp
@@ -14882,7 +14882,7 @@ msgctxt ""
"par_id0119200904301815\n"
"help.text"
msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
-msgstr "<emph>Zwischenergebnis_Genauigkeit</emph> ist ein optionaler Parameter. Wenn Zwischenergebnis_Genauigkeit angeben und >= 3 ist, wird das Zwischenergebnis der Umwandlung (Währung_1, EUR, Währung_2) auf diese Genauigkeit gerundet. Wenn Zwischenergebnis_Genauigkeit fehlt, wird das Zwischenergebnis nicht gerundet. Auch wenn die Zielwährung \"EUR\" ist, wird Zwischenergebnis_Genauigkeit verwendet, als wenn ein Zwischenergebnis berechnet würde und auf die Umwandlung EUR zu EUR angewandt."
+msgstr "<emph>Zwischenergebnis Genauigkeit</emph> ist ein optionaler Parameter. Wenn \"Zwischenergebnis Genauigkeit\" angeben und >= 3 ist, wird das Zwischenergebnis der Umwandlung (Währung 1, EUR, Währung 2) auf diese Genauigkeit gerundet. Wenn \"Zwischenergebnis Genauigkeit\" fehlt, wird das Zwischenergebnis nicht gerundet. Auch wenn die Zielwährung \"EUR\" ist, wird \"Zwischenergebnis Genauigkeit\" verwendet, als wenn ein Zwischenergebnis berechnet würde und auf die Umwandlung EUR zu EUR angewandt."
#. YmarB
#: 04060106.xhp
@@ -14954,7 +14954,7 @@ msgctxt ""
"par_id0908200902131191\n"
"help.text"
msgid "CONVERT_OOO(value; \"text\"; \"text\")"
-msgstr ""
+msgstr "UMRECHNEN_OOO(Wert; \"Text\"; \"Text\")"
#. egbGd
#: 04060106.xhp
@@ -17636,7 +17636,7 @@ msgctxt ""
"par_id3166377\n"
"help.text"
msgid "GROWTH(DataY [; [ DataX ] [; [ NewDataX ] [; FunctionType ] ] ])"
-msgstr ""
+msgstr "VARIATION(Daten Y [; [ Daten X] [; [ Neue Daten X ] [; Art der Funktion ] ] ])"
#. CA3qD
#: 04060107.xhp
@@ -19400,7 +19400,7 @@ msgctxt ""
"par_id3155425\n"
"help.text"
msgid "CHOOSE(Index; Value 1 [; Value 2 [; ... [; Value 30]]])"
-msgstr ""
+msgstr "WAHL(Index; Wert 1 [; Wert 2 [; … [; Wert 30]]])"
#. CNK7e
#: 04060109.xhp
@@ -19418,7 +19418,7 @@ msgctxt ""
"par_id3149939\n"
"help.text"
msgid "<emph>Value 1, Value 2, ..., Value 30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr ""
+msgstr "<emph>Wert 1, Wert 2, …, Wert 30</emph> ist die Liste der Werte, die als Bezugszelle oder als einzelne Werte eingeben wird."
#. s64Du
#: 04060109.xhp
@@ -21011,7 +21011,7 @@ msgctxt ""
"par_id3147567\n"
"help.text"
msgid "FIXED(Number; [Decimals = 2 [; NoThousandsSeparators = FALSE]])"
-msgstr ""
+msgstr "FEST(Zahl; [Dezimalstellen = 2 [; Keine Tausendertrennzeichen = FALSCH]])"
#. Lu9oq
#: 04060110.xhp
@@ -21020,7 +21020,7 @@ msgctxt ""
"par_id3151272\n"
"help.text"
msgid "<emph>Number</emph> is rounded to <literal>Decimals</literal> places (after the decimal separator) and the result formatted as text, using <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">locale-specific settings</link>."
-msgstr ""
+msgstr "<emph>Zahl</emph> wird auf die Anzahl von <literal>Dezimalstellen</literal> nach dem Dezimaltrennzeichen gerundet und das Ergebnis wird als Text ausgegeben. Es werden die <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">aktuellen lokalen Einstellungen</link> verwendet."
#. 5zSz5
#: 04060110.xhp
@@ -21029,7 +21029,7 @@ msgctxt ""
"par_id3156322\n"
"help.text"
msgid "<emph>Decimals</emph> (optional) refers to the number of decimal places to be displayed. If <literal>Decimals</literal> is negative, <literal>Number</literal> is rounded to ABS(<literal>Decimals</literal>) places to the left from the decimal point. If <literal>Decimals</literal> is a fraction, it is truncated actually ignoring what is the closest integer."
-msgstr ""
+msgstr "<emph>Dezimalstellen</emph> (optional) ist die Anzahl an Dezimalstellen, die angezeigt werden sollen. Wenn <literal>Dezimalstellen</literal> negativ ist, wird <literal>Zahl</literal> mit der Anzahl von (<literal>Dezimalstellen</literal>) links vom Dezimaltrennzeichen auf die ganze Zahl gerundet. Wenn <literal>Dezimalstellen</literal> eine Dezimalzahl ist, wird nur die ganze Zahl verwendet."
#. MccEk
#: 04060110.xhp
@@ -21038,7 +21038,7 @@ msgctxt ""
"par_id3150877\n"
"help.text"
msgid "<emph>NoThousandsSeparators</emph> (optional) determines whether the thousands separator is used. If it is <literal>TRUE</literal> or non-zero, then group separators are omitted from the resulting string. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">current locale setting</link> are displayed."
-msgstr ""
+msgstr "<emph>Keine Tausendertrennzeichen</emph> (optional) bestimmt, ob das Tausendertrennzeichen verwendet wird. Wenn der Parameter <literal>WAHR</literal> oder ungleich 0 ist, wird das Tausendertrennzeichen nicht angezeigt. Wenn der Parameter FALSCH, gleich 0 oder nicht vorhanden ist, werden die Tausendertrennzeichen entsprechend Ihren <link href=\"text/shared/optionen/01140000.xhp\" name=\"current locale setting\">aktuellen lokalen Einstellungen</link> angezeigt."
#. nDs7Q
#: 04060110.xhp
@@ -27797,7 +27797,7 @@ msgctxt ""
"par_id3149025\n"
"help.text"
msgid "VDB(Cost; Salvage; Life; Start; End [; Factor [; NoSwitch]])"
-msgstr ""
+msgstr "VDB(Kosten; Restwert; Nutzungsdauer; Anfang; Ende [; Faktor [; KeinWechsel]])"
#. zGhDb
#: 04060118.xhp
@@ -27806,7 +27806,7 @@ msgctxt ""
"par_id3150692\n"
"help.text"
msgid "<emph>Cost</emph> is the initial value of an asset."
-msgstr "<emph>AW</emph> ist der Anfangs- beziehungsweise Anschaffungswert eines Wirtschaftsgutes."
+msgstr "<emph>Kosten</emph> ist der Anfangs- beziehungsweise Anschaffungswert eines Wirtschaftsgutes."
#. aCwbE
#: 04060118.xhp
@@ -27833,7 +27833,7 @@ msgctxt ""
"par_id3152817\n"
"help.text"
msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
-msgstr "<emph>S</emph> ist der Beginn der Abschreibung. A muss in derselben Zeiteinheit angegeben werden wie die Dauer."
+msgstr "<emph>Anfang</emph> ist der Beginn der Abschreibung. A muss in derselben Zeiteinheit angegeben werden wie die Dauer."
#. DMz6v
#: 04060118.xhp
@@ -27851,7 +27851,7 @@ msgctxt ""
"par_id3147536\n"
"help.text"
msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
-msgstr "<emph>F</emph> (optional) ist der Abschreibungsfaktor. Faktor = 2 bedeutet Doppelraten-Abschreibung."
+msgstr "<emph>Faktor</emph> (optional) ist der Abschreibungsfaktor. Faktor = 2 bedeutet Doppelraten-Abschreibung."
#. JaZEz
#: 04060118.xhp
@@ -30191,7 +30191,7 @@ msgctxt ""
"bm_id3148448\n"
"help.text"
msgid "<bookmark_value>calculating; durations</bookmark_value><bookmark_value>durations;calculating</bookmark_value><bookmark_value>PDURATION function</bookmark_value>"
-msgstr "<bookmark_value>Berechnen; Laufzeiten</bookmark_value><bookmark_value>Laufzeiten; berechnen</bookmark_value><bookmark_value>PDURATION (Funktion)</bookmark_value>"
+msgstr "<bookmark_value>Berechnen; Laufzeiten</bookmark_value><bookmark_value>Laufzeiten; berechnen</bookmark_value><bookmark_value>PLAUFZEIT (Funktion)</bookmark_value>"
#. EjWXp
#: 04060119.xhp
@@ -30200,7 +30200,7 @@ msgctxt ""
"hd_id3148448\n"
"help.text"
msgid "PDURATION"
-msgstr "PDURATION"
+msgstr "PLAUFZEIT"
#. mQkqy
#: 04060119.xhp
@@ -30218,7 +30218,7 @@ msgctxt ""
"par_id3148933\n"
"help.text"
msgid "PDURATION(Rate; PV; FV)"
-msgstr "PDURATION(Zins; BW; ZW)"
+msgstr "PLAUFZEIT(Zins; BW; ZW)"
#. Rzxhq
#: 04060119.xhp
@@ -30344,7 +30344,7 @@ msgctxt ""
"bm_id3153739\n"
"help.text"
msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macauley duration</bookmark_value>"
-msgstr "<bookmark_value>MDURATION (Funktion)</bookmark_value><bookmark_value>Macauley-Duration</bookmark_value>"
+msgstr "<bookmark_value>MLAUFZEIT (Funktion)</bookmark_value><bookmark_value>Macauley-Laufzeit</bookmark_value>"
#. FWB2Q
#: 04060119.xhp
@@ -30353,7 +30353,7 @@ msgctxt ""
"hd_id3153739\n"
"help.text"
msgid "MDURATION"
-msgstr "MDURATION"
+msgstr "MLAUFZEIT"
#. MggV6
#: 04060119.xhp
@@ -30362,7 +30362,7 @@ msgctxt ""
"par_id3149923\n"
"help.text"
msgid "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Calculates the modified Macauley duration of a fixed interest security in years.</ahelp>"
-msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Berechnet die modifizierte Macauley-Duration eines festverzinslichen Wertpapiers in Jahren.</ahelp>"
+msgstr "<ahelp hid=\"HID_AAI_FUNC_MDURATION\">Berechnet die modifizierte Macauley-Laufzeit eines festverzinslichen Wertpapiers in Jahren.</ahelp>"
#. tGit8
#: 04060119.xhp
@@ -30371,7 +30371,7 @@ msgctxt ""
"par_id3148987\n"
"help.text"
msgid "MDURATION(Settlement; Maturity; Coupon; Yield; Frequency [; Basis])"
-msgstr "MDURATION(Abrechnung; Fälligkeit; Coupon; Rendite; Häufigkeit [; Basis])"
+msgstr "MLAUFZEIT(Abrechnung; Fälligkeit; Coupon; Rendite; Häufigkeit [; Basis])"
#. xTn69
#: 04060119.xhp
@@ -30434,7 +30434,7 @@ msgctxt ""
"par_id3145378\n"
"help.text"
msgid "<input>=MDURATION(\"2001-01-01\"; \"2006-01-01\"; 0.08; 0.09; 2; 3)</input> returns 4.02 years."
-msgstr "<input>=MDURATION(\"01.01.2001\";\"01.01.2006\";0,08;0,09;2;3)</input> ergibt 4,02 Jahre."
+msgstr "<input>=MLAUFZEIT(\"01.01.2001\";\"01.01.2006\";0,08;0,09;2;3)</input> ergibt 4,02 Jahre."
#. BrDKP
#: 04060119.xhp
@@ -44321,7 +44321,7 @@ msgctxt ""
"bm_id651593596384469\n"
"help.text"
msgid "<bookmark_value>style;page</bookmark_value><bookmark_value>page;style</bookmark_value><bookmark_value>format;page</bookmark_value><bookmark_value>formatting;page</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Vorlage; Seite</bookmark_value><bookmark_value>Seite; Vorlage</bookmark_value><bookmark_value>Format; Seite</bookmark_value><bookmark_value>Formatierung; Seite</bookmark_value>"
#. YjqDi
#: 05070000.xhp
@@ -45059,7 +45059,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Styles in Calc"
-msgstr ""
+msgstr "Vorlagen in Calc"
#. rJpRh
#: 05100000.xhp
@@ -45068,7 +45068,7 @@ msgctxt ""
"bm_id3150447\n"
"help.text"
msgid "<bookmark_value>Stylist, see Styles window</bookmark_value><bookmark_value>Styles window</bookmark_value><bookmark_value>formats; Styles window</bookmark_value><bookmark_value>formatting; Styles window</bookmark_value><bookmark_value>paint can for applying styles</bookmark_value><bookmark_value>styles in spreadsheets</bookmark_value><bookmark_value>styles; in Calc</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Vorlagen, siehe Dialog Formatvorlagen</bookmark_value><bookmark_value>Dialog Formatvorlagen</bookmark_value><bookmark_value>Formate; Dialog Formatvorlagen</bookmark_value><bookmark_value>Formatierung; Dialog Formatvorlagen</bookmark_value><bookmark_value>Formate übertragen</bookmark_value><bookmark_value>Formatvorlagen; in Tabellen</bookmark_value><bookmark_value>Formatvorlagen; in Calc</bookmark_value>"
#. eA3vo
#: 05100000.xhp
@@ -45131,7 +45131,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the list of the available Cell Styles.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt die Liste der verfügbaren Zellvorlagen.</ahelp>"
#. JcMEc
#: 05100000.xhp
@@ -45158,7 +45158,7 @@ msgctxt ""
"hd_id171593598056580\n"
"help.text"
msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Page Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"page styles\">Seitenvorlagen</link>"
#. 4XFww
#: 05100000.xhp
@@ -45167,7 +45167,7 @@ msgctxt ""
"par_id3147003\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the Page Styles available.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Zeigt die verfügbaren Seitenvorlagen.</ahelp>"
#. cM9f4
#: 05100000.xhp
@@ -48470,7 +48470,7 @@ msgctxt ""
"hd_id71610757096466\n"
"help.text"
msgid "Include boundary column(s)/row(s) containing only comments"
-msgstr ""
+msgstr "Randspalte(n)/-zeile(n) einschließen, die nur Kommentare enthalten"
#. AKcgf
#: 12030200.xhp
@@ -48479,7 +48479,7 @@ msgctxt ""
"par_id431610757186031\n"
"help.text"
msgid "Range boundary columns (for sorting rows) or boundary rows (for sorting columns) of a sorting range are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing comments are also to be sorted."
-msgstr ""
+msgstr "Randspalten (beim Sortieren von Zeilen) oder Randzeilen (beim Sortieren von Spalten) eines Sortierbereiches werden standardmäßig nicht mit sortiert, wenn sie leer sind. Aktivieren sie diese Option, wenn Randspalten oder -zeilen, die Kommentare enthalten, mit sortiert werden sollen."
#. zDzUQ
#: 12030200.xhp
@@ -48488,7 +48488,7 @@ msgctxt ""
"hd_id161610757296697\n"
"help.text"
msgid "Include boundary column(s)/row(s) containing only images"
-msgstr ""
+msgstr "Randspalte(n)/-zeile(n) einschließen, die nur Bilder enthalten"
#. QCvRo
#: 12030200.xhp
@@ -48497,7 +48497,7 @@ msgctxt ""
"par_id181610758875786\n"
"help.text"
msgid "Border columns (for sorting rows) or border rows (for sorting columns) of a sorting area are not sorted by default if they are empty. Check this option if boundary columns or boundary rows containing images are also to be sorted."
-msgstr ""
+msgstr "Randspalten (beim Sortieren von Zeilen) oder Randzeilen (beim Sortieren von Spalten) eines Sortierbereiches werden standardmäßig nicht mit sortiert, wenn sie leer sind. Aktivieren sie diese Option, wenn Randspalten oder -zeilen, die Bilder enthalten, mit sortiert werden sollen."
#. LBnqi
#: 12030200.xhp
@@ -52898,7 +52898,7 @@ msgctxt ""
"par_id221603980244052\n"
"help.text"
msgid "Only up to 255 characters are saved, when using Excel format."
-msgstr ""
+msgstr "Wenn das Excel-Format verwendet wird, werden nur bis zu 255 Zeichen gespeichert."
#. pfATZ
#: 12120100.xhp
@@ -53384,7 +53384,7 @@ msgctxt ""
"hd_id1000013\n"
"help.text"
msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3."
-msgstr ""
+msgstr "Diese Funktion ist Teil des Open-Document-Formats für Office-Anwendungen (OpenDocument) Standardversion 1.3."
#. SGHPh
#: calculate.xhp
@@ -53429,7 +53429,7 @@ msgctxt ""
"hd_id811593560413206\n"
"help.text"
msgid "<link href=\"text/scalc/01/cell_styles.xhp\" name=\"Cell Style\">Cell Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/cell_styles.xhp\" name=\"Cell Style\">Zellvorlagen</link>"
#. AZNrM
#: common_func.xhp
@@ -55247,7 +55247,7 @@ msgctxt ""
"par_id1001601332672155\n"
"help.text"
msgid "This function is always recalculated whenever a recalculation occurs."
-msgstr ""
+msgstr "Diese Funktion wird immer neu berechnet, wenn eine Neuberechnung erfolgt."
#. 8DbP2
#: func_aggregate.xhp
@@ -58856,7 +58856,7 @@ msgctxt ""
"par_id831605805755075\n"
"help.text"
msgid "For these examples to work as described, make sure that <emph>Enable regular expressions in formulas</emph> is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - $[officename] Calc - Calculate</menuitem>."
-msgstr ""
+msgstr "Damit diese Beispiele richtig funktionieren, stellen Sie sicher, dass <emph>Reguläre Ausdrücke in Formeln ermöglichen</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – $[officename] Calc – Berechnen</menuitem> ausgewählt ist ."
#. iHFsx
#: func_countifs.xhp
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index b85f822034b..93491552c9e 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-05-31 15:15+0200\n"
-"PO-Revision-Date: 2021-06-13 09:10+0000\n"
+"PO-Revision-Date: 2021-07-14 18:03+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/de/>\n"
"Language: de\n"
@@ -5792,7 +5792,7 @@ msgctxt ""
"par_id3163853\n"
"help.text"
msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. These symbols are included in searches when the Formatted Display search option is activated."
-msgstr ""
+msgstr "Zellinhalte können verschiedenartig formatiert werden. Eine Zahl kann zum Beispiel als Währung formatiert werden, damit das Währungssymbol angezeigt wird. Diese Symbole werden in die Suche einbezogen, wenn die Option \"Formatierte Anzeige\" aktiviert ist."
#. Z4ABm
#: finding.xhp
@@ -7655,7 +7655,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "Choose <item type=\"menuitem\">View - Freeze Rows and Columns</item>."
-msgstr ""
+msgstr "Wählen Sie <item type=\"menuitem\">Ansicht – Zeilen/Spalten fixieren</item>."
#. Exqyb
#: line_fix.xhp
@@ -7664,7 +7664,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Rows and Columns</item> again."
-msgstr ""
+msgstr "Zum Deaktivieren wählen Sie erneut <item type=\"menuitem\">Ansicht – Zeilen/Spalten fixieren</item>."
#. U7GBK
#: line_fix.xhp
@@ -7691,7 +7691,7 @@ msgctxt ""
"par_id3147004\n"
"help.text"
msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Rows and Columns</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Ansicht – Zeilen/Spalten fixieren</link>"
#. RbKLt
#: line_fix.xhp
@@ -10679,7 +10679,7 @@ msgctxt ""
"par_id701519308848244\n"
"help.text"
msgid "Setting sheet names is an important feature to produce readable and understandable spreadsheets documents."
-msgstr ""
+msgstr "Das Festlegen von Tabellennamen ist ein wichtiger Bestandteil, um lesbare und verständliche Tabellendokumente zu erstellen."
#. DE2ji
#: rename_table.xhp
@@ -10697,7 +10697,7 @@ msgctxt ""
"par_id471607437423400\n"
"help.text"
msgid "To rename a sheet in your document:"
-msgstr ""
+msgstr "Um eine Tabelle im Dokument umzubenennen:"
#. 99JMV
#: rename_table.xhp
@@ -10706,7 +10706,7 @@ msgctxt ""
"par_id3146976\n"
"help.text"
msgid "Double-click the sheet tab or open its context menu and choose <menuitem>Rename Sheet</menuitem>. A dialog box appears where you can enter a new name."
-msgstr ""
+msgstr "Doppelklicken Sie auf das Tabellenregister oder öffnen Sie sein Kontextmenü und wählen Sie <menuitem>Tabelle umbenennen…</menuitem>. Ein Dialog öffnet sich, in dem Sie einen neuen Namen eingeben können."
#. GtGtQ
#: rename_table.xhp
@@ -10742,7 +10742,7 @@ msgctxt ""
"hd_id541607437294635\n"
"help.text"
msgid "Sheet Naming Restrictions"
-msgstr ""
+msgstr "Einschränkungen für Tabellennamen"
#. ynfez
#: rename_table.xhp
@@ -10760,7 +10760,7 @@ msgctxt ""
"par_id090920081050281\n"
"help.text"
msgid "colon <literal>:</literal>"
-msgstr ""
+msgstr "Doppelpunkt <literal>:</literal>"
#. a2JXE
#: rename_table.xhp
@@ -10769,7 +10769,7 @@ msgctxt ""
"par_id0909200810502897\n"
"help.text"
msgid "back slash <literal>\\</literal>"
-msgstr ""
+msgstr "Rückstrich <literal>\\</literal>"
#. mkHAC
#: rename_table.xhp
@@ -10778,7 +10778,7 @@ msgctxt ""
"par_id090920081050299\n"
"help.text"
msgid "forward slash <literal>/</literal>"
-msgstr ""
+msgstr "Schrägstrich <literal>/</literal>"
#. V9Z6i
#: rename_table.xhp
@@ -10787,7 +10787,7 @@ msgctxt ""
"par_id0909200810502913\n"
"help.text"
msgid "question mark <literal>?</literal>"
-msgstr ""
+msgstr "Fragezeichen <literal>?</literal>"
#. 42B5r
#: rename_table.xhp
@@ -10796,7 +10796,7 @@ msgctxt ""
"par_id090920081050298\n"
"help.text"
msgid "asterisk <literal>*</literal>"
-msgstr ""
+msgstr "Sternchen <literal>*</literal>"
#. sAMTR
#: rename_table.xhp
@@ -10805,7 +10805,7 @@ msgctxt ""
"par_id0909200810502969\n"
"help.text"
msgid "left square bracket <literal>[</literal>"
-msgstr ""
+msgstr "öffnende eckige Klammer <literal>[</literal>"
#. 32rAi
#: rename_table.xhp
@@ -10814,7 +10814,7 @@ msgctxt ""
"par_id0909200810502910\n"
"help.text"
msgid "right square bracket <literal>]</literal>"
-msgstr ""
+msgstr "schließende eckige Klammer <literal>]</literal>"
#. ESD5B
#: rename_table.xhp
@@ -10823,7 +10823,7 @@ msgctxt ""
"par_id0909200810502971\n"
"help.text"
msgid "single quote <literal>'</literal> as the first or last character of the name"
-msgstr ""
+msgstr "einfaches Anführungszeichen <literal>'</literal> als erstes oder letztes Zeichen des Namens"
#. 36nvo
#: rename_table.xhp
@@ -10832,7 +10832,7 @@ msgctxt ""
"par_id761607437686157\n"
"help.text"
msgid "The single quote is Unicode <literal>U+0027</literal>, also known as <literal>apostrophe</literal>. Other single-quote characters, similar to <literal>apostrophe</literal>, are allowed, such as <literal>ʼ</literal> <literal>‛</literal> and <literal>‚</literal>."
-msgstr ""
+msgstr "Das einfaches Anführungszeichen ist das Unicodezeichen <literal>U+0027</literal>, auch bekannt als <literal>Apostroph</literal>. Ähnliche Zeichen des <literal>Apostrophs</literal> sind erlaubt, wie <literal>ʼ</literal> <literal>‛</literal> und <literal>‚</literal>."
#. DMm29
#: rename_table.xhp
@@ -10841,7 +10841,7 @@ msgctxt ""
"hd_id251607438968588\n"
"help.text"
msgid "Using a Default Prefix for Sheet Names"
-msgstr ""
+msgstr "Einen Standardnamen für neue Tabellen verwenden"
#. MEc8r
#: rename_table.xhp
@@ -10850,7 +10850,7 @@ msgctxt ""
"par_id81519309108908\n"
"help.text"
msgid "You can set a prefix for the names of new sheets you create. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Defaults</menuitem> and enter the prefix name in <emph>Prefix name for new worksheet</emph>."
-msgstr ""
+msgstr "Sie können einen Standardnamen für neu erstellte Tabellen festlegen. Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Calc - Vorgaben</menuitem> und geben Sie den Standardnamen für <emph>Name neuer Tabellen </emph> ein."
#. Ev9Ae
#: rename_table.xhp
@@ -10859,7 +10859,7 @@ msgctxt ""
"hd_id821607437571713\n"
"help.text"
msgid "Referencing Sheet Names with Special Characters"
-msgstr ""
+msgstr "Verweisen auf Tabellennamen mit Sonderzeichen"
#. BAZ4z
#: rename_table.xhp
@@ -10868,7 +10868,7 @@ msgctxt ""
"par_id090920081050307\n"
"help.text"
msgid "In cell references, a sheet name must be enclosed in single quotes <literal>'</literal> when the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes)."
-msgstr ""
+msgstr "In Zellbezügen muss ein Tabellenname in einfache Anführungszeichen <literal>'</literal> eingeschlossen sein, wenn der Tabellenname andere Zeichen als alphanummerische Zeichen oder Unterstriche enthält. Wenn der Tabellenname ein einfaches Anführungszeichen enthält, müssen die einfachen Anführungszeichen verdoppelt werden (zwei einfache Anführungszeichen)."
#. ZjbDT
#: rename_table.xhp
@@ -10877,7 +10877,7 @@ msgctxt ""
"par_id321519307869857\n"
"help.text"
msgid "For example, you want to reference the <literal>cell A1</literal> on a sheet named <literal>This year's sheet</literal>."
-msgstr ""
+msgstr "Um zum Beispiel auf die <literal>Zelle A1</literal> in der Tabelle <literal>Felix’ Tabelle</literal> zu verweisen."
#. tAj5V
#: rename_table.xhp
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id0909200810503054\n"
"help.text"
msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled: <literal>'This year''s sheet'.A1</literal>"
-msgstr ""
+msgstr "Der Verweis muss in einfachen Anführungszeichen eingeschlossen sein und das einfache Anführungszeichen im Namen muss verdoppelt werden: <literal>'Felix'' Tabelle'.A1</literal>"
#. bwZRy
#: rounding_numbers.xhp
@@ -12344,7 +12344,7 @@ msgctxt ""
"par_id3156280\n"
"help.text"
msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expanded to the multi-line by the Down arrow button on the right."
-msgstr ""
+msgstr "Durch Drücken der Tastenkombination <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Befehl</keycode></caseinline><defaultinline><keycode>Strg</keycode></defaultinline></switchinline>+Eingabe wird ein manueller Zeilenumbruch eingefügt. Diese Tastenkombination funktioniert direkt in der Zelle oder in der Eingabeleiste. Die Eingabeleiste kann zu einer Mehrzeilenleiste über die Schaltfläche mit dem Pfeil nach unten (Eingabezeile ausklappen) auf der rechten Seite erweitert werden."
#. Cs3FE
#: text_wrap.xhp
@@ -12371,7 +12371,7 @@ msgctxt ""
"par_id3148575\n"
"help.text"
msgid "In <menuitem>Format - Cells - Alignment</menuitem>, mark the <emph>Wrap text automatically</emph> option and click OK."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Format – Zellen… – Register: Ausrichtung</menuitem>, setzen Sie ein Häkchen bei der Option <emph>Automatischer Zeilenumbruch</emph> und klicken Sie auf OK."
#. GGFPz
#: text_wrap.xhp
@@ -12380,7 +12380,7 @@ msgctxt ""
"par_id201608575657740\n"
"help.text"
msgid "For automatic wrapping in XLS files, the rows in question should be set to Optimal Height."
-msgstr ""
+msgstr "Für den automatischen Zeilenumbruch in XLS-Dateien sollten Sie bei den Zeilen die optimale Höhe einstellen."
#. pED9m
#: text_wrap.xhp
@@ -12461,7 +12461,7 @@ msgctxt ""
"par_id3148456\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Edit Macros</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Makros – Makros bearbeiten…</menuitem>."
#. N4uB4
#: userdefined_function.xhp
@@ -12470,7 +12470,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "You will now see the Basic IDE."
-msgstr ""
+msgstr "Sie sehen nun die Basic-IDE."
#. jXhZH
#: userdefined_function.xhp
@@ -12479,7 +12479,7 @@ msgctxt ""
"par_id651603905832952\n"
"help.text"
msgid "In the Object Catalog window, double-click on the module where you want to store your macro."
-msgstr ""
+msgstr "Im Fenster Objektkatalog klicken Sie doppelt auf das Modul, in dem Sie das Makro speichern möchten."
#. G6mwG
#: userdefined_function.xhp
@@ -12506,7 +12506,7 @@ msgctxt ""
"par_id3150043\n"
"help.text"
msgid "Your function is automatically saved in the selected module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
-msgstr ""
+msgstr "Ihre Funktion wird automatisch im ausgewählten Modul gespeichert und ist nun verfügbar. Wenn Sie die Funktion in einem Calc-Dokument nutzen möchten, das auf einem anderen Rechner verwendet wird, können Sie die Funktion, wie im nächsten Abschnitt beschrieben, in das Calc-Dokument kopieren."
#. 3bcAE
#: userdefined_function.xhp
@@ -12542,7 +12542,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Makros – Makros verwalten – Basic…</menuitem>."
#. HZciB
#: userdefined_function.xhp
@@ -12578,7 +12578,7 @@ msgctxt ""
"par_id3150517\n"
"help.text"
msgid "Choose <menuitem>Tools - Macros - Organize Macros - Basic</menuitem> ."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Extras – Makros – Makros verwalten – Basic…</menuitem>."
#. oTBX8
#: userdefined_function.xhp
diff --git a/source/de/helpcontent2/source/text/sdatabase.po b/source/de/helpcontent2/source/text/sdatabase.po
index 5080aab9a93..fd3bebaffb4 100644
--- a/source/de/helpcontent2/source/text/sdatabase.po
+++ b/source/de/helpcontent2/source/text/sdatabase.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-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-04-01 04:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
+"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
#. ugSgG
#: 02000000.xhp
@@ -139,7 +139,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
-msgstr ""
+msgstr "Sie können auch die Datenquellen-Ansicht öffnen (Strg+Umschalt+F4), die ganze Datentabelle auswählen (auf die obere linke Ecke der Tabelle klicken) und dann die Auswahl in ein Text- oder Tabellendokument ziehen."
#. PJjKX
#: 02000000.xhp
@@ -481,7 +481,7 @@ msgctxt ""
"hd_id8226264\n"
"help.text"
msgid "Keys in Query Design View"
-msgstr "Tastaturkürzel in der Ansicht Abfrageentwurf"
+msgstr "Tastenkombinationen in der Ansicht Abfrageentwurf"
#. Cvd4o
#: 02010100.xhp
@@ -490,7 +490,7 @@ msgctxt ""
"par_id2341074\n"
"help.text"
msgid "Key"
-msgstr "Tastaturkürzel"
+msgstr "Tastenkombination"
#. mCy9S
#: 02010100.xhp
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id3154362\n"
"help.text"
msgid "Schema"
-msgstr ""
+msgstr "Schema"
#. 4Jwm3
#: 02010100.xhp
@@ -868,7 +868,7 @@ msgctxt ""
"hd_id3146916\n"
"help.text"
msgid "Field"
-msgstr ""
+msgstr "Feld"
#. 4KDzZ
#: 02010100.xhp
@@ -913,7 +913,7 @@ msgctxt ""
"par_id3149922\n"
"help.text"
msgid "SELECT column AS alias FROM table."
-msgstr ""
+msgstr "SELECT Spalte AS Alias FROM Tabelle."
#. TWexq
#: 02010100.xhp
@@ -922,7 +922,7 @@ msgctxt ""
"par_id3159335\n"
"help.text"
msgid "For example:"
-msgstr ""
+msgstr "Zum Beispiel:"
#. ynSGq
#: 02010100.xhp
@@ -931,7 +931,7 @@ msgctxt ""
"par_id3148478\n"
"help.text"
msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\""
-msgstr ""
+msgstr "SELECT \"TlNr\" AS \"TeilNum\" FROM \"Teile\""
#. roTzi
#: 02010100.xhp
@@ -940,7 +940,7 @@ msgctxt ""
"hd_id3148485\n"
"help.text"
msgid "Table"
-msgstr ""
+msgstr "Tabelle"
#. GM9Sp
#: 02010100.xhp
@@ -976,7 +976,7 @@ msgctxt ""
"hd_id3150384\n"
"help.text"
msgid "Visible"
-msgstr ""
+msgstr "Sichtbar"
#. AAZfA
#: 02010100.xhp
@@ -994,7 +994,7 @@ msgctxt ""
"hd_id3154714\n"
"help.text"
msgid "Criteria"
-msgstr ""
+msgstr "Kriterien"
#. f3DvJ
#: 02010100.xhp
@@ -1012,7 +1012,7 @@ msgctxt ""
"hd_id3152477\n"
"help.text"
msgid "or"
-msgstr ""
+msgstr "oder"
#. KFVy8
#: 02010100.xhp
@@ -1039,7 +1039,7 @@ msgctxt ""
"hd_id3148419\n"
"help.text"
msgid "Functions"
-msgstr ""
+msgstr "Funktionen"
#. Cxhjn
#: 02010100.xhp
@@ -1066,7 +1066,7 @@ msgctxt ""
"par_id3150307\n"
"help.text"
msgid "Option"
-msgstr ""
+msgstr "Option"
#. kBvXF
#: 02010100.xhp
@@ -1075,7 +1075,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "Effect"
-msgstr ""
+msgstr "Effekt"
#. zCunm
#: 02010100.xhp
@@ -1084,7 +1084,7 @@ msgctxt ""
"par_id3155377\n"
"help.text"
msgid "No function"
-msgstr ""
+msgstr "Keine Funktion"
#. kZMTN
#: 02010100.xhp
diff --git a/source/de/helpcontent2/source/text/sdraw/01.po b/source/de/helpcontent2/source/text/sdraw/01.po
index b310f88ef9a..9319aa24e06 100644
--- a/source/de/helpcontent2/source/text/sdraw/01.po
+++ b/source/de/helpcontent2/source/text/sdraw/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-06-24 12:51+0200\n"
-"PO-Revision-Date: 2021-02-16 16:36+0000\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1557891741.000000\n"
#. ybhKD
@@ -473,7 +473,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Consolidate Text Boxes"
-msgstr ""
+msgstr "Textfelder konsolidieren"
#. e3z7C
#: consolidatetext.xhp
@@ -491,7 +491,7 @@ msgctxt ""
"hd_id861623510996086\n"
"help.text"
msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\" name=\"consolidate text\">Text Box Consolidation</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/consolidatetext.xhp\" name=\"consolidate text\">Konsolidierung von Textfeldern</link>"
#. zsb7F
#: consolidatetext.xhp
@@ -500,7 +500,7 @@ msgctxt ""
"par_id441623510996088\n"
"help.text"
msgid "<variable id=\"textboxconsolidationv1\"><ahelp hid=\".\">Combine two or more selected text boxes into one.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textboxconsolidationv1\"><ahelp hid=\".\">Führt zwei oder mehrere ausgewählte Textfelder zu einem einzigen zusammen.</ahelp></variable>"
#. uDEkt
#: consolidatetext.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"par_id211623513189855\n"
"help.text"
msgid "The resulting text box is inserted into the current layer."
-msgstr ""
+msgstr "Die daraus entstehende Textfeld wird in die aktuelle Ebene eingefügt."
#. xPr6s
#: consolidatetext.xhp
@@ -590,7 +590,7 @@ msgctxt ""
"par_id611623516624688\n"
"help.text"
msgid "Title and description of the single text boxes are lost."
-msgstr ""
+msgstr "Titel und Beschreibung der einzelnen Textfelder gehen verloren."
#. TKkEa
#: consolidatetext.xhp
@@ -599,7 +599,7 @@ msgctxt ""
"par_id281623513291901\n"
"help.text"
msgid "The previous text box objects are deleted after consolidation."
-msgstr ""
+msgstr "Die bisherigen Textfeld-Objekte werden nach der Konsolidierung gelöscht."
#. 6AkKv
#: consolidatetext.xhp
diff --git a/source/de/helpcontent2/source/text/sdraw/04.po b/source/de/helpcontent2/source/text/sdraw/04.po
index f9593606301..1cee72c201c 100644
--- a/source/de/helpcontent2/source/text/sdraw/04.po
+++ b/source/de/helpcontent2/source/text/sdraw/04.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-05-25 18:07+0000\n"
+"PO-Revision-Date: 2021-07-14 18:03+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
-"Language-Team: German <https://weblate.documentfoundation.org/projects/libo_help-master/textsdraw04/de/>\n"
+"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw04/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 3.10.3\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1532496289.000000\n"
#. XCKCk
@@ -545,7 +545,7 @@ msgctxt ""
"hd_id3147533\n"
"help.text"
msgid "Shortcut Keys Specific to Drawings"
-msgstr "Spezielle Tastatursteuerungen bei Zeichnungsdokumenten"
+msgstr "Spezielle Tastenkombinationen bei Zeichnungsdokumenten"
#. Syicg
#: 01020000.xhp
diff --git a/source/de/helpcontent2/source/text/sdraw/guide.po b/source/de/helpcontent2/source/text/sdraw/guide.po
index 3ced1dddc93..6ab77234391 100644
--- a/source/de/helpcontent2/source/text/sdraw/guide.po
+++ b/source/de/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-01-25 14:55+0100\n"
-"PO-Revision-Date: 2021-05-08 18:37+0000\n"
+"PO-Revision-Date: 2021-07-14 18:03+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsdrawguide/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.4.2\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1552452870.000000\n"
#. cZbDh
@@ -1859,7 +1859,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys for Drawing Objects"
-msgstr "Tastatursteuerung für Zeichnungsobjekte"
+msgstr "Tastenkombinationen für Zeichnungsobjekte"
#. WaKgD
#: keyboard.xhp
diff --git a/source/de/helpcontent2/source/text/shared.po b/source/de/helpcontent2/source/text/shared.po
index bec0bd38fce..6cf40ce703a 100644
--- a/source/de/helpcontent2/source/text/shared.po
+++ b/source/de/helpcontent2/source/text/shared.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: 2020-10-27 14:18+0100\n"
-"PO-Revision-Date: 2021-04-06 06:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-14 18:03+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared/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.4.2\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1547273355.000000\n"
#. DBz3U
@@ -905,7 +905,7 @@ msgctxt ""
"par_id3157910\n"
"help.text"
msgid "The Navigation bar is only visible for forms connected to a database. In the <link href=\"text/sdatabase/04030000.xhp\" name=\"Design view\">Design view</link> of a form, the Navigation bar is not available. See also <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Table Data bar</link>."
-msgstr ""
+msgstr "Die Navigationsleiste ist nur für Formulare sichtbar, die mit einer Datenbank verbunden sind. In der <link href=\"text/sdatabase/04030000.xhp\" name=\"Design view\">Entwurfsansicht</link> eines Formulars ist die Navigationsleiste nicht verfügbar. Siehe auch <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\">Symbolleiste Datenbank</link>."
#. tqTbR
#: main0213.xhp
@@ -2003,7 +2003,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spacing"
-msgstr ""
+msgstr "Abstand"
#. yQezt
#: submenu_spacing.xhp
@@ -2012,7 +2012,7 @@ msgctxt ""
"hd_id411816022675979\n"
"help.text"
msgid "<link href=\"text/shared/submenu_spacing.xhp\">Spacing</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/submenu_spacing.xhp\">Abstand</link>"
#. 22dPh
#: submenu_spacing.xhp
@@ -2021,7 +2021,7 @@ msgctxt ""
"par_id398855439580084\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu where you can choose text spacing commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Öffnet ein Untermenü, in dem Sie Befehle für den Textabstand auswählen können.</ahelp>"
#. 7Sh42
#: submenu_spacing.xhp
@@ -2030,7 +2030,7 @@ msgctxt ""
"hd_id3154944\n"
"help.text"
msgid "Line Spacing: 1"
-msgstr ""
+msgstr "Zeilenabstand: 1"
#. xxnjH
#: submenu_spacing.xhp
@@ -2039,7 +2039,7 @@ msgctxt ""
"hd_id3146969\n"
"help.text"
msgid "Line Spacing: 1.5"
-msgstr ""
+msgstr "Zeilenabstand: 1,5"
#. acjb4
#: submenu_spacing.xhp
@@ -2048,7 +2048,7 @@ msgctxt ""
"hd_id3153711\n"
"help.text"
msgid "Line Spacing: 2"
-msgstr ""
+msgstr "Zeilenabstand: 2"
#. 44Px9
#: submenu_spacing.xhp
@@ -2057,7 +2057,7 @@ msgctxt ""
"hd_id3147573\n"
"help.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "Absatzabstand vergrößern"
#. zhqwZ
#: submenu_spacing.xhp
@@ -2066,7 +2066,7 @@ msgctxt ""
"par_id3150695\n"
"help.text"
msgid "Increases the paragraph spacing above the selected paragraph."
-msgstr ""
+msgstr "Vergrößert den Absatzabstand über dem ausgewählten Absatz."
#. XCZUT
#: submenu_spacing.xhp
@@ -2075,7 +2075,7 @@ msgctxt ""
"hd_id3147574\n"
"help.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "Absatzabstand verkleinern"
#. EVYri
#: submenu_spacing.xhp
@@ -2084,7 +2084,7 @@ msgctxt ""
"par_id3150696\n"
"help.text"
msgid "Decreases the paragraph spacing above the selected paragraph."
-msgstr ""
+msgstr "Verkleinert den Absatzabstand über dem ausgewählten Absatz."
#. EsHFP
#: submenu_spacing.xhp
@@ -2093,7 +2093,7 @@ msgctxt ""
"hd_id3147575\n"
"help.text"
msgid "Increase Indent"
-msgstr ""
+msgstr "Einzug vergrößern"
#. BU6i9
#: submenu_spacing.xhp
@@ -2102,7 +2102,7 @@ msgctxt ""
"par_id3150697\n"
"help.text"
msgid "Increases the left indent of the current paragraph or cell content and sets it to the next default tab position. If several paragraphs are selected, the indentation of all selected paragraphs is increased."
-msgstr ""
+msgstr "Vergrößert den linken Einzug des aktuellen Absatzes oder Zellinhalts und setzt diesen auf die nächste Standardtabulatorposition. Wenn mehrere Absätze ausgewählt sind, werden alle Einzüge der ausgewählten Absätze vergrößert."
#. YA8bT
#: submenu_spacing.xhp
@@ -2111,7 +2111,7 @@ msgctxt ""
"hd_id3147576\n"
"help.text"
msgid "Decrease Indent"
-msgstr ""
+msgstr "Einzug verkleinern"
#. zVFFG
#: submenu_spacing.xhp
@@ -2120,7 +2120,7 @@ msgctxt ""
"par_id3150698\n"
"help.text"
msgid "Decreases the left indent of the current paragraph or cell content and sets it to the previous default tab position. If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs."
-msgstr ""
+msgstr "Verkleinert den linken Einzug des aktuellen Absatzes oder Zellinhaltes und setzt diesen auf die vorherigen Standardtabulatorposition. Wenn Sie vorher für mehrere Absätze den Einzug vergrößert haben, können Sie mit diesem Befehl die Einzüge aller ausgewählten Absätze verkleinert."
#. MVHBc
#: submenu_text.xhp
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index a96766e1083..ba95d602187 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.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-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-04-06 06:37+0000\n"
-"Last-Translator: Mister Update <mr.update@yahoo.de>\n"
+"PO-Revision-Date: 2021-07-28 09:59+0000\n"
+"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1563509840.000000\n"
#. 3B8ZN
@@ -536,7 +536,7 @@ msgctxt ""
"hd_id811616711038538\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Abbrechen"
#. TcFYz
#: 00000001.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"hd_id601616709204188\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Zurücksetzen"
#. YmYPB
#: 00000001.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"hd_id541616711560721\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Anwenden"
#. pjHJH
#: 00000001.xhp
@@ -761,7 +761,7 @@ msgctxt ""
"hd_id321597440555403\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Anwenden"
#. yJtrx
#: 00000001.xhp
@@ -3533,7 +3533,7 @@ msgctxt ""
"par_id3153760\n"
"help.text"
msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
-msgstr "Beispielsweise schaltet \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" auf fett, kursiv, Kapitälchen, 12 pt, zweizeiligen Zeilenabstand mit der Fontfamilie Arial beziehungsweise Helvetica, falls Arial nicht existieren sollte."
+msgstr "Beispielsweise schaltet \"Font: bold italic small-caps 12 pt/200 % Arial, Helvetica\" auf fett, kursiv, Kapitälchen, 12 pt, zweizeiligen Zeilenabstand mit der Schriftart Arial beziehungsweise Helvetica, falls Arial nicht existieren sollte."
#. 3f8u3
#: 00000020.xhp
@@ -10697,7 +10697,7 @@ msgctxt ""
"par_id3148533\n"
"help.text"
msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149568\">Icon Styles</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149568\">Symbol für Formatvorlagen</alt></image>"
#. GGmAC
#: 00040500.xhp
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 8a116e0425d..e78fde6e554 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/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: 2021-06-11 17:09+0200\n"
-"PO-Revision-Date: 2021-05-14 13:37+0000\n"
+"PO-Revision-Date: 2021-07-24 16:17+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/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: LibreOffice\n"
+"X-Generator: Weblate 4.6.2\n"
"X-POOTLE-MTIME: 1565411332.000000\n"
#. 3u8hR
@@ -27608,7 +27608,7 @@ msgctxt ""
"par_id3153114\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To Color</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Geben Sie den horizontalen Versatz für den Farbverlauf ein, wobei 0% der aktuellen horizontalen Position der Endpunktfarbe im Verlauf entspricht. Die Endpunktfarbe ist die Farbe, die im Feld <emph>Endfarbe</emph> ausgewählt ist.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Geben Sie den horizontalen Versatz für den Farbverlauf ein, wobei 0 % der aktuellen horizontalen Position der Endpunktfarbe im Verlauf entspricht. Die Endpunktfarbe ist die Farbe, die im Feld <emph>Endfarbe</emph> ausgewählt ist.</ahelp>"
#. TGhRA
#: 05210300.xhp
@@ -27626,7 +27626,7 @@ msgctxt ""
"par_id3154751\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To Color</emph> box.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Geben Sie den vertikalen Versatz für den Farbverlauf ein, wobei 0% der aktuellen vertikalen Position der Endpunktfarbe im Verlauf entspricht. Die Endpunktfarbe ist die Farbe, die im Feld <emph>Endfarbe</emph> ausgewählt ist.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Geben Sie den vertikalen Versatz für den Farbverlauf ein, wobei 0 % der aktuellen vertikalen Position der Endpunktfarbe im Verlauf entspricht. Die Endpunktfarbe ist die Farbe, die im Feld <emph>Endfarbe</emph> ausgewählt ist.</ahelp>"
#. Vh5bN
#: 05210300.xhp
@@ -27689,7 +27689,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/colorfrommtr\">Enter the intensity for the color in the <emph>From Color</emph> box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/colorfrommtr\">Geben Sie die Intensität für die Farbe im Feld <emph>Startfarbe</emph> ein, wobei 0% Schwarz und 100% der ausgewählten Farbe entspricht.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/colorfrommtr\">Geben Sie die Intensität für die Farbe im Feld <emph>Startfarbe</emph> ein, wobei 0 % Schwarz und 100 % der ausgewählten Farbe entspricht.</ahelp>"
#. iqyqC
#: 05210300.xhp
@@ -27716,7 +27716,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Enter the intensity for the color in the <emph>To Color</emph> box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Geben Sie die Intensität für die Farbe im Feld <emph>Endfarbe</emph> ein, wobei 0% Schwarz und 100% der ausgewählten Farbe entspricht.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Geben Sie die Intensität für die Farbe im Feld <emph>Endfarbe</emph> ein, wobei 0 % Schwarz und 100 % der ausgewählten Farbe entspricht.</ahelp>"
#. NCtQh
#: 05210400.xhp
@@ -30704,7 +30704,7 @@ msgctxt ""
"par_id3159158\n"
"help.text"
msgid "You can make text follow any shape. Most of the custom shapes available in the Drawing toolbar need to be converted to a different type before you can use them with Fontwork. In Impress or Draw, right-click the shape and select <emph>Convert - To Curve/Polygon/Contour</emph>. If you wish, you can now copy and paste the converted shape into Writer for use with Fontwork. Shapes in the <emph>Legacy Circles and Ovals</emph> and <emph>Legacy Rectangles</emph> toolbars do not need to be converted. The <emph>Arc</emph> included in the basic shapes is also a legacy shape."
-msgstr ""
+msgstr "Sie können Text an beliebige Formen anpassen. Die meisten der in der Symbolleiste Zeichnen verfügbaren benutzerdefinierten Formen müssen in einen anderen Typ konvertiert werden, bevor Sie sie mit Fontwork verwenden können. Klicken Sie in Impress oder Draw mit der rechten Maustaste auf die Form und wählen Sie <emph>Umwandeln - In Kurve/Polygon/Kontur</emph>. Wenn Sie möchten, können Sie jetzt die umgewandelte Form kopieren und in Writer einfügen, um sie mit Fontwork zu verwenden. Formen in den Symbolleisten <emph>Kreise und Ellipsen (veraltet)</emph> und <emph>Rechtecke (veraltet)</emph> müssen nicht umgewandelt werden. Der in den Grundformen enthaltene <emph>Bogen</emph> ist ebenfalls eine veraltete Form."
#. rDFeE
#: 05280000.xhp
@@ -32468,7 +32468,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/cellalignment/spinDegrees\">Enter the rotation angle from 0 to 360 for the text in the selected cell(s).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/cellalignment/spinDegrees\">Geben Sie den Drehwinkel von 0 bis 360 für den Text in der/den ausgewählten Zelle(n) ein.</ahelp>"
#. XJAyp
#: 05340300.xhp
@@ -33296,7 +33296,7 @@ msgctxt ""
"bm_id131592533297401\n"
"help.text"
msgid "<bookmark_value>3D Effects</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>3D-Effekte</bookmark_value>"
#. TFRAz
#: 05350000.xhp
@@ -33314,7 +33314,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<ahelp hid=\".uno:Window3D\">Specifies the properties of 3D object(s) in the current document or converts a 2D object to 3D.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Window3D\">Legt die Eigenschaften der 3D-Objekte im aktuellen Dokument fest oder wandelt ein 2D- in ein 3D-Objekt um.</ahelp>"
#. LY4zH
#: 05350000.xhp
@@ -33323,7 +33323,7 @@ msgctxt ""
"hd_id281592536322406\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Anwenden"
#. dG8Wm
#: 05350000.xhp
@@ -33332,7 +33332,7 @@ msgctxt ""
"par_id741592536331459\n"
"help.text"
msgid "Click here to apply the properties shown in the dialog to the selected object."
-msgstr ""
+msgstr "Klicken Sie hier, um die im Dialog angezeigten Eigenschaften auf das ausgewählte Objekt anzuwenden."
#. cYsYv
#: 05350000.xhp
@@ -33341,7 +33341,7 @@ msgctxt ""
"par_id41592538802394\n"
"help.text"
msgid "<image src=\"svx/res/apply.png\" id=\"img_id861592538802395\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id501592538802396\">Apply icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/apply.png\" id=\"img_id861592538802395\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id501592538802396\">Symbol für Anwenden</alt></image>"
#. icjxn
#: 05350000.xhp
@@ -33350,7 +33350,7 @@ msgctxt ""
"par_id631592538701619\n"
"help.text"
msgid "Apply"
-msgstr ""
+msgstr "Anwenden"
#. GJ3hX
#: 05350000.xhp
@@ -33359,7 +33359,7 @@ msgctxt ""
"hd_id71592536242245\n"
"help.text"
msgid "Update"
-msgstr ""
+msgstr "Aktualisieren"
#. 5hw4X
#: 05350000.xhp
@@ -33368,7 +33368,7 @@ msgctxt ""
"par_id631592536255091\n"
"help.text"
msgid "Click here to view in the dialog all the properties of the selected object."
-msgstr ""
+msgstr "Klicken Sie hier, um im Dialog alle Eigenschaften des ausgewählten Objekts anzuzeigen."
#. h9CJA
#: 05350000.xhp
@@ -33377,7 +33377,7 @@ msgctxt ""
"par_id231592538985329\n"
"help.text"
msgid "<image src=\"res/sc10350.png\" id=\"img_id761592538985330\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id401592538985331\">Update Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"res/sc10350.png\" id=\"img_id761592538985330\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id401592538985331\">Symbol für Aktualisieren</alt></image>"
#. 5jyB7
#: 05350000.xhp
@@ -33386,7 +33386,7 @@ msgctxt ""
"par_id401592538985331\n"
"help.text"
msgid "Update"
-msgstr ""
+msgstr "Aktualisieren"
#. FW5mo
#: 05350000.xhp
@@ -33395,7 +33395,7 @@ msgctxt ""
"hd_id11592536591540\n"
"help.text"
msgid "Convert to 3-D"
-msgstr ""
+msgstr "In 3D umwandeln"
#. hc48F
#: 05350000.xhp
@@ -33404,7 +33404,7 @@ msgctxt ""
"par_id531592536732187\n"
"help.text"
msgid "<ahelp hid=\".\">Use this icon to convert a selected 2D object to a 3D object.</ahelp> You can also select several 2D objects and convert them to one single 3D object. To convert a group of 2D objects to 3D, you must first ungroup the selected objects."
-msgstr ""
+msgstr "<ahelp hid=\".\">Verwenden Sie dieses Symbol, um ein ausgewähltes 2D-Objekt in ein 3D-Objekt umzuwandeln.</ahelp> Sie können auch mehrere 2D-Objekte auswählen und in ein einzelnes 3D-Objekt konvertieren. Um eine Gruppe von 2D-Objekten in 3D umzuwandeln, müssen Sie zunächst die Gruppierung der ausgewählten Objekte aufheben."
#. cU9qs
#: 05350000.xhp
@@ -33413,7 +33413,7 @@ msgctxt ""
"par_id281592539101657\n"
"help.text"
msgid "<image src=\"svx/res/convrt3d.png\" id=\"img_id731592539101658\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751592539101659\">Icon Convert to 3-D</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/convrt3d.png\" id=\"img_id731592539101658\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id751592539101659\">Symbol für In 3D umwandeln</alt></image>"
#. 5DATF
#: 05350000.xhp
@@ -33422,7 +33422,7 @@ msgctxt ""
"par_id551592539101660\n"
"help.text"
msgid "Convert to 3-D"
-msgstr ""
+msgstr "In 3D umwandeln"
#. SjkGL
#: 05350000.xhp
@@ -33431,7 +33431,7 @@ msgctxt ""
"hd_id601592536828018\n"
"help.text"
msgid "Convert to Rotation Object"
-msgstr ""
+msgstr "In 3D-Rotationskörper umwandeln"
#. gMEko
#: 05350000.xhp
@@ -33440,7 +33440,7 @@ msgctxt ""
"par_id611592536869774\n"
"help.text"
msgid "<ahelp hid=\".\">Click here to convert a selected 2D object to a 3D rotation object.</ahelp> You can also select several 2D objects and convert them to one single 3D rotation object. To convert a group of 2D objects to 3D, you must first ungroup the selected objects."
-msgstr ""
+msgstr "<ahelp hid=\".\">Klicken Sie hier, um ein ausgewähltes 2D-Objekt in ein 3D-Rotationsobjekt umzuwandeln.</ahelp> Sie können auch mehrere 2D-Objekte auswählen und in ein einzelnes 3D-Rotationsobjekt konvertieren. Um eine Gruppe von 2D-Objekten in 3D umzuwandeln, müssen Sie zunächst die Gruppierung der ausgewählten Objekte aufheben."
#. ZSSAm
#: 05350000.xhp
@@ -33449,7 +33449,7 @@ msgctxt ""
"par_id201592539216068\n"
"help.text"
msgid "<image src=\"svx/res/rotate3d.png\" id=\"img_id301592539216069\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id321592539216069\">Icon Convert to Rotation Object</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/rotate3d.png\" id=\"img_id301592539216069\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id321592539216069\">Symbol für In 3D-Rotationskörper umwandeln</alt></image>"
#. a5JBW
#: 05350000.xhp
@@ -33458,7 +33458,7 @@ msgctxt ""
"par_id561592539216070\n"
"help.text"
msgid "Convert to Rotation Object"
-msgstr ""
+msgstr "In 3D-Rotationskörper umwandeln"
#. mfQMT
#: 05350000.xhp
@@ -33467,7 +33467,7 @@ msgctxt ""
"hd_id141592536953717\n"
"help.text"
msgid "Perspective On/Off"
-msgstr ""
+msgstr "Perspektive ein/aus"
#. UhgwE
#: 05350000.xhp
@@ -33476,7 +33476,7 @@ msgctxt ""
"par_id731592536947112\n"
"help.text"
msgid "<ahelp hid=\".\">Click here to turn the perspective view on or off.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klicken Sie hier, um die perspektivische Ansicht ein- oder auszuschalten.</ahelp>"
#. BYGG2
#: 05350000.xhp
@@ -33485,7 +33485,7 @@ msgctxt ""
"par_id141592539295096\n"
"help.text"
msgid "<image src=\"svx/res/persp3d.png\" id=\"img_id341592539295097\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11592539295098\">Icon Perspective On/Off</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/persp3d.png\" id=\"img_id341592539295097\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11592539295098\">Symbol für Perspektive ein/aus</alt></image>"
#. Sohv7
#: 05350000.xhp
@@ -33494,7 +33494,7 @@ msgctxt ""
"par_id31592539295099\n"
"help.text"
msgid "Perspective On/Off"
-msgstr ""
+msgstr "Perspektive ein/aus"
#. YrBDB
#: 05350200.xhp
@@ -33530,7 +33530,7 @@ msgctxt ""
"par_id231592540156123\n"
"help.text"
msgid "<image src=\"svx/res/3dgeo.png\" id=\"img_id561592540156124\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id481592540156125\">Geometry Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/3dgeo.png\" id=\"img_id561592540156124\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id481592540156125\">Symbol für Geometrie</alt></image>"
#. kgxwZ
#: 05350200.xhp
@@ -33539,7 +33539,7 @@ msgctxt ""
"par_id151592540156126\n"
"help.text"
msgid "Geometry"
-msgstr ""
+msgstr "Geometrie"
#. ncWkA
#: 05350200.xhp
@@ -33728,7 +33728,7 @@ msgctxt ""
"par_id3152811\n"
"help.text"
msgid "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150865\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150865\">Symbol für Objektspezifisch</alt></image>"
#. 6DyPr
#: 05350200.xhp
@@ -33764,7 +33764,7 @@ msgctxt ""
"par_id3157962\n"
"help.text"
msgid "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154068\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3154068\">Symbol für Flach</alt></image>"
#. fMPFg
#: 05350200.xhp
@@ -33800,7 +33800,7 @@ msgctxt ""
"par_id3148923\n"
"help.text"
msgid "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149807\">Symbol für Kugelförmig</alt></image>"
#. FfUMo
#: 05350200.xhp
@@ -33836,7 +33836,7 @@ msgctxt ""
"par_id3152940\n"
"help.text"
msgid "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151116\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151116\">Symbol für Normalen umkehren</alt></image>"
#. PABev
#: 05350200.xhp
@@ -33872,7 +33872,7 @@ msgctxt ""
"par_id3157309\n"
"help.text"
msgid "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155746\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155746\">Symbol für 2-seitige Beleuchtung</alt></image>"
#. LGaGJ
#: 05350200.xhp
@@ -33908,7 +33908,7 @@ msgctxt ""
"par_id3150686\n"
"help.text"
msgid "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152460\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152460\">Symbol für Doppelseitig</alt></image>"
#. t7GZ3
#: 05350200.xhp
@@ -33953,7 +33953,7 @@ msgctxt ""
"par_id401592540321324\n"
"help.text"
msgid "<image src=\"svx/res/3drepres.png\" id=\"img_id461592540321325\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id991592540321326\">Icon Shading</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/3drepres.png\" id=\"img_id461592540321325\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id991592540321326\">Symbol für Darstellung</alt></image>"
#. BWaRu
#: 05350300.xhp
@@ -33962,7 +33962,7 @@ msgctxt ""
"par_id741592540321327\n"
"help.text"
msgid "Shading"
-msgstr ""
+msgstr "Darstellung"
#. XaVEX
#: 05350300.xhp
@@ -34025,7 +34025,7 @@ msgctxt ""
"par_id3150254\n"
"help.text"
msgid "<image id=\"img_id3159342\" src=\"svx/res/shadow3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159342\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159342\" src=\"svx/res/shadow3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3159342\">Symbol für Schatten</alt></image>"
#. vJjvT
#: 05350300.xhp
@@ -34142,7 +34142,7 @@ msgctxt ""
"par_id411592540760546\n"
"help.text"
msgid "<image src=\"svx/res/3dlight.png\" id=\"img_id151592540760547\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611592540760548\">Icon Illumination</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/3dlight.png\" id=\"img_id151592540760547\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611592540760548\">Symbol für Beleuchtung</alt></image>"
#. mYoPc
#: 05350400.xhp
@@ -34151,7 +34151,7 @@ msgctxt ""
"par_id601592540760549\n"
"help.text"
msgid "Illumination"
-msgstr ""
+msgstr "Beleuchtung"
#. UdHMg
#: 05350400.xhp
@@ -34196,7 +34196,7 @@ msgctxt ""
"par_id3159269\n"
"help.text"
msgid "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156155\">Icon Light is on</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156155\">Symbol für Licht ist an</alt></image>"
#. BeChj
#: 05350400.xhp
@@ -34214,7 +34214,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147573\">Icon Light is off</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147573\">Symbol für Licht ist aus</alt></image>"
#. giCYQ
#: 05350400.xhp
@@ -34340,7 +34340,7 @@ msgctxt ""
"par_id871592540872026\n"
"help.text"
msgid "<image src=\"svx/res/3dtextur.png\" id=\"img_id241592540872027\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id151592540872028\">Icon Textures</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/3dtextur.png\" id=\"img_id241592540872027\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id151592540872028\">Symbol für Texturen</alt></image>"
#. 7QEfG
#: 05350500.xhp
@@ -34349,7 +34349,7 @@ msgctxt ""
"par_id41592540872029\n"
"help.text"
msgid "Textures"
-msgstr ""
+msgstr "Texturen"
#. pVanr
#: 05350500.xhp
@@ -34412,7 +34412,7 @@ msgctxt ""
"par_id3146773\n"
"help.text"
msgid "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150084\">Icon Black & White</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150084\">Symbol für Schwarz-weiß</alt></image>"
#. RReP7
#: 05350500.xhp
@@ -34448,7 +34448,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155388\">Icon Color</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155388\">Symbol für Farbe</alt></image>"
#. bvQtQ
#: 05350500.xhp
@@ -34502,7 +34502,7 @@ msgctxt ""
"par_id3154280\n"
"help.text"
msgid "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149045\">Icon Only Texture</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149045\">Symbol für Nur Textur</alt></image>"
#. 3ZP8a
#: 05350500.xhp
@@ -34538,7 +34538,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152803\">Icon Texture and Shading</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152803\">Symbol für Textur und Schattierung</alt></image>"
#. 6RBA7
#: 05350500.xhp
@@ -34592,7 +34592,7 @@ msgctxt ""
"par_id3155103\n"
"help.text"
msgid "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148920\">Icon Object-specific</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3148920\">Symbol für Objektspezifisch</alt></image>"
#. h7Pr5
#: 05350500.xhp
@@ -34628,7 +34628,7 @@ msgctxt ""
"par_id3148977\n"
"help.text"
msgid "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147478\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3147478\">Symbol für Parallel</alt></image>"
#. tD2xB
#: 05350500.xhp
@@ -34664,7 +34664,7 @@ msgctxt ""
"par_id3154013\n"
"help.text"
msgid "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153943\">Icon Circular</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153943\">Symbol für Kreisförmig</alt></image>"
#. CDnKt
#: 05350500.xhp
@@ -34718,7 +34718,7 @@ msgctxt ""
"par_id3153210\n"
"help.text"
msgid "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153188\">Icon Object-Specific</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153188\">Symbol für Objektspezifisch</alt></image>"
#. EFSxZ
#: 05350500.xhp
@@ -34754,7 +34754,7 @@ msgctxt ""
"par_id3147485\n"
"help.text"
msgid "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151280\">Icon Parallel</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151280\">Symbol für Parallel</alt></image>"
#. ChZxa
#: 05350500.xhp
@@ -34790,7 +34790,7 @@ msgctxt ""
"par_id3157876\n"
"help.text"
msgid "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152807\">Icon Circular</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3152807\">Symbol für Kreisförmig</alt></image>"
#. 6Xq2Y
#: 05350500.xhp
@@ -34844,7 +34844,7 @@ msgctxt ""
"par_id3145651\n"
"help.text"
msgid "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156355\">Icon Filtering On/Off</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3156355\">Symbol für Filtern ein/aus</alt></image>"
#. NRzG4
#: 05350500.xhp
@@ -34889,7 +34889,7 @@ msgctxt ""
"par_id231592541000678\n"
"help.text"
msgid "<image src=\"svx/res/material.png\" id=\"img_id781592541000679\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id681592541000680\">Icon Material</alt></image>"
-msgstr ""
+msgstr "<image src=\"svx/res/material.png\" id=\"img_id781592541000679\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id681592541000680\">Symbol für Material</alt></image>"
#. JLbj7
#: 05350600.xhp
@@ -34898,7 +34898,7 @@ msgctxt ""
"par_id251592541000681\n"
"help.text"
msgid "Material"
-msgstr ""
+msgstr "Material"
#. qHMby
#: 05350600.xhp
@@ -35402,7 +35402,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spelling"
-msgstr ""
+msgstr "Rechtschreibung"
#. dRS2j
#: 06010000.xhp
@@ -35411,7 +35411,7 @@ msgctxt ""
"bm_id3149047\n"
"help.text"
msgid "<bookmark_value>dictionaries; spellcheck</bookmark_value> <bookmark_value>spellcheck; dialog</bookmark_value> <bookmark_value>dictionaries; spelling</bookmark_value> <bookmark_value>spelling; dialog</bookmark_value> <bookmark_value>languages; spellcheck</bookmark_value> <bookmark_value>languages; spelling</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Wörterbücher; Rechtschreibprüfung</bookmark_value><bookmark_value>Rechtschreibprüfung; Dialog</bookmark_value><bookmark_value>Wörterbücher; Rechtschreibung</bookmark_value><bookmark_value>Rechtschreibung; Dialog</bookmark_value><bookmark_value>Sprachen; Rechtschreibprüfung</bookmark_value><bookmark_value>Sprachen; Rechtschreibung</bookmark_value>"
#. Pqa2F
#: 06010000.xhp
@@ -35420,7 +35420,7 @@ msgctxt ""
"hd_id3153882\n"
"help.text"
msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Rechtschreibung</link>"
#. WLdXq
#: 06010000.xhp
@@ -35447,7 +35447,7 @@ msgctxt ""
"par_id3166445\n"
"help.text"
msgid "Spelling looks for misspelled words and gives you the option of adding an unknown word to a user dictionary. When the first misspelled word is found, the <emph>Spelling</emph> dialog opens."
-msgstr ""
+msgstr "Rechtschreibung sucht nach falsch geschriebenen Wörtern und bietet die Möglichkeit, einem Benutzerwörterbuch ein unbekanntes Wort hinzuzufügen. Wenn das erste falsch geschriebene Wort gefunden wird, wird der Dialog <emph>Rechtschreibung</emph> geöffnet."
#. oYUuw
#: 06010000.xhp
@@ -35519,7 +35519,7 @@ msgctxt ""
"par_idN107CB\n"
"help.text"
msgid "This label of this button changes to <emph>Resume</emph> if you leave the Spelling dialog open when you return to your document. To continue the spellcheck from the current position of the cursor, click <emph>Resume</emph>."
-msgstr ""
+msgstr "Die Beschriftung dieser Schaltfläche ändert sich in <emph>Fortsetzen</emph>, falls Sie den Dialog Rechtschreibung geöffnet lassen, wenn Sie zu Ihrem Dokument zurückkehren. Um die Rechtschreibprüfung ab der aktuellen Cursorposition fortzusetzen, klicken Sie auf <emph>Fortsetzen</emph>."
#. RZhbH
#: 06010000.xhp
@@ -38048,7 +38048,7 @@ msgctxt ""
"hd_id3159500\n"
"help.text"
msgid "Transliterate to Old Hungarian if the text direction is from right to left"
-msgstr ""
+msgstr "In Altungarisch umschreiben, wenn die Textrichtung von rechts nach links ist"
#. WYyWs
#: 06040400.xhp
@@ -38057,7 +38057,7 @@ msgctxt ""
"par_id3155173\n"
"help.text"
msgid "Words and numbers are transliterated to Old Hungarian script, if the text direction is from right to left using complex text layout."
-msgstr ""
+msgstr "Wörter und Zahlen werden in altungarische Schrift umgeschrieben, wenn die Textrichtung von rechts nach links mit komplexem Textlayout ist."
#. hYXVf
#: 06040400.xhp
@@ -38066,7 +38066,7 @@ msgctxt ""
"hd_id3159600\n"
"help.text"
msgid "Replace << and >> with angle quotes"
-msgstr ""
+msgstr "<< und >> durch Guillemets ersetzen"
#. iNK4q
#: 06040400.xhp
@@ -38075,7 +38075,7 @@ msgctxt ""
"par_id3155273\n"
"help.text"
msgid "Automatically replaces double less-than and greater-than signs with double angle quotes « and » in several languages, and with single angle quotes ‹ and › in Swiss French."
-msgstr ""
+msgstr "Ersetzt doppelte Kleiner-als- und Größer-als-Zeichen automatisch in mehreren Sprachen durch doppelte Anführungszeichen « und » und in Schweizer Französisch durch einfache Anführungszeichen ‹ und ›."
#. YRQQD
#: 06040400.xhp
@@ -38183,7 +38183,7 @@ msgctxt ""
"bm_id3152823\n"
"help.text"
msgid "<bookmark_value>AutoCorrect function; context menu</bookmark_value><bookmark_value>spellcheck; context menus</bookmark_value><bookmark_value>spelling; context menus</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>AutoKorrektur; Kontextmenü</bookmark_value><bookmark_value>Rechtschreibprüfung; Kontextmenü</bookmark_value><bookmark_value>Rechtschreibung; Kontextmenü</bookmark_value>"
#. p8cgD
#: 06040500.xhp
@@ -38228,7 +38228,7 @@ msgctxt ""
"hd_id3153089\n"
"help.text"
msgid "Spelling"
-msgstr ""
+msgstr "Rechtschreibung"
#. TFCeh
#: 06040500.xhp
@@ -38237,7 +38237,7 @@ msgctxt ""
"par_id3154497\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Opens the <link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling</link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/spellmenu/spelldialog\">Öffnet den Dialog <link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Rechtschreibung</link>.</ahelp>"
#. mfvxN
#: 06040500.xhp
@@ -38840,7 +38840,7 @@ msgctxt ""
"par_id3152918\n"
"help.text"
msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Customize tab (Bullets and Numbering dialog)</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Register Anpassen (Dialog Aufzählungszeichen und Nummerierung)</link>"
#. AQgFB
#: 06050300.xhp
@@ -38921,7 +38921,7 @@ msgctxt ""
"hd_id0611200904373284\n"
"help.text"
msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Image</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Bild</link>"
#. YBPGk
#: 06050400.xhp
@@ -39659,7 +39659,7 @@ msgctxt ""
"hd_id3149261\n"
"help.text"
msgid "Position and Spacing"
-msgstr ""
+msgstr "Position und Abstand"
#. AGzEA
#: 06050600.xhp
@@ -39668,7 +39668,7 @@ msgctxt ""
"par_id5004119\n"
"help.text"
msgid "This page shows the position controls used in all versions of %PRODUCTNAME Writer. Some documents (produced by other applications) use another method for positioning and spacing. Opening such documents will show the position controls documented in <link href=\"text/swriter/01/legacynumbering.xhp\" name=\"Legacy numbering alignment\">Position for List styles (legacy)</link>."
-msgstr ""
+msgstr "Diese Seite zeigt die Positionskontrollen, wie sie in allen Versionen von %PRODUCTNAME Writer verwendet werden. Einige Dokumente (die von anderen Anwendungen erstellt wurden) verwenden eine andere Methode für die Positionierung und den Abstand. Beim Öffnen solcher Dokumente werden die Positionskontrollen angezeigt, wie sie in <link href=\"text/swriter/01/legacynumbering.xhp\" name=\"Legacy numbering alignment\">Position für Listenvorlagen (veraltet)</link> dokumentiert sind."
#. 9zM7v
#: 06050600.xhp
@@ -39740,7 +39740,7 @@ msgctxt ""
"hd_id7809686\n"
"help.text"
msgid "Tab stop at"
-msgstr ""
+msgstr "Tabulator bei"
#. AwaE8
#: 06050600.xhp
@@ -39794,7 +39794,7 @@ msgctxt ""
"par_id3116348\n"
"help.text"
msgid "This control appears only when modifying a List style."
-msgstr ""
+msgstr "Dieses Steuerelement wird nur beim Ändern einer Listenvorlage angezeigt."
#. XV3ZK
#: 06050600.xhp
@@ -39803,7 +39803,7 @@ msgctxt ""
"par_id3116228\n"
"help.text"
msgid "<link href=\"text/swriter/01/legacynumbering.xhp\" name=\"Legacy numbering alignment\">Position for List styles (legacy)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/legacynumbering.xhp\" name=\"Legacy numbering alignment\">Position für Listenvorlagen (veraltet)</link>"
#. G6S8m
#: 06050600.xhp
@@ -39821,7 +39821,7 @@ msgctxt ""
"par_id3124378\n"
"help.text"
msgid "<link href=\"text/swriter/guide/indenting.xhp\" name=\"Paragraph indenting\">Indenting Paragraphs</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/indenting.xhp\" name=\"Paragraph indenting\">Absätze einrücken</link>"
#. hf4eV
#: 06130000.xhp
@@ -40100,7 +40100,7 @@ msgctxt ""
"hd_id821582666527674\n"
"help.text"
msgid "Edit Macros"
-msgstr ""
+msgstr "Makros bearbeiten"
#. 9SRC2
#: 06130001.xhp
@@ -44267,7 +44267,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spelling"
-msgstr ""
+msgstr "Rechtschreibung"
#. cTCCi
#: 06990000.xhp
@@ -44276,7 +44276,7 @@ msgctxt ""
"hd_id3147069\n"
"help.text"
msgid "<link href=\"text/shared/01/06990000.xhp\" name=\"Spelling\">Spelling</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06990000.xhp\" name=\"Spelling\">Rechtschreibung</link>"
#. C5oKq
#: 06990000.xhp
@@ -44294,7 +44294,7 @@ msgctxt ""
"par_id2551957\n"
"help.text"
msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Spelling dialog</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06010000.xhp\" name=\"Spelling\">Dialog Rechtschreibung</link>"
#. Eq4Ep
#: 07010000.xhp
@@ -44591,7 +44591,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Documents"
-msgstr ""
+msgstr "Unterschriftszeile in Dokumente einfügen"
#. EGN36
#: addsignatureline.xhp
@@ -44600,7 +44600,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Digitale Signatur; Unterschriftszeile hinzufügen</bookmark_value><bookmark_value>Unterschriftszeile; hinzufügen</bookmark_value>"
#. fYs2f
#: addsignatureline.xhp
@@ -44609,7 +44609,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/shared/01/addsignatureline.xhp\" name=\"Signature Line\">Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/shared/01/addsignatureline.xhp\" name=\"Signature Line\">Unterschriftszeile</link></variable>"
#. bcvDE
#: addsignatureline.xhp
@@ -44618,7 +44618,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "Insert a graphic box representing a signature line of the document."
-msgstr ""
+msgstr "Fügt ein Grafikfeld ein, das eine Unterschriftszeile des Dokuments darstellt."
#. FFaDB
#: addsignatureline.xhp
@@ -44627,7 +44627,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"><alt id=\"alt_id351526436546031\">Feld einer Unterschriftszeile</alt></image>"
#. YbTJd
#: addsignatureline.xhp
@@ -44645,7 +44645,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#. mwYBp
#: addsignatureline.xhp
@@ -44663,7 +44663,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titel"
#. fyUJY
#: addsignatureline.xhp
@@ -44681,7 +44681,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "E-Mail"
#. jr5gQ
#: addsignatureline.xhp
@@ -44699,7 +44699,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Unterzeichner kann Kommentare hinzufügen"
#. x49zw
#: addsignatureline.xhp
@@ -44717,7 +44717,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Unterschriftsdatum in Unterschriftszeile anzeigen"
#. xWyoH
#: addsignatureline.xhp
@@ -44735,7 +44735,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Anweisungen an den Unterzeichner"
#. jrvVd
#: addsignatureline.xhp
@@ -46553,7 +46553,7 @@ msgctxt ""
"hd_id501534716852913\n"
"help.text"
msgid "Calculate New Size"
-msgstr ""
+msgstr "Neue Größe berechnen"
#. DpeVD
#: image_compression.xhp
@@ -47174,7 +47174,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <menuitem>View - User Interface</menuitem>"
-msgstr ""
+msgstr "Wählen Sie <menuitem>Ansicht – Benutzeroberfläche…</menuitem>"
#. SJiku
#: notebook_bar.xhp
@@ -47345,7 +47345,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - View - Notebookbar icon size</menuitem> listbox."
-msgstr ""
+msgstr "Die Symbolgröße des Symbolbands ist einstellbar unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – %PRODUCTNAME – Ansicht – Listenfeld: Symbolband</menuitem>."
#. ooEpD
#: notebook_bar.xhp
@@ -47363,7 +47363,7 @@ msgctxt ""
"par_id190920161744078275\n"
"help.text"
msgid "The current implementation (%PRODUCTNAME %PRODUCTVERSION) of the notebook bar is common to Writer, Calc, Draw and Impress modules. A change in the notebook bar in one module will affect the notebook bar of the other modules."
-msgstr ""
+msgstr "Die aktuelle Implementierung (%PRODUCTNAME %PRODUCTVERSION) des Symbolbands ist den Modulen Writer, Calc, Draw und Impress gemeinsam. Eine Änderung des Symbolbands in einem Modul wirkt sich auf das Symbolband der anderen Module aus."
#. zznYu
#: notebook_bar.xhp
@@ -47381,7 +47381,7 @@ msgctxt ""
"par_id921589901261168\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010800.xhp\" name=\"view\">View</link> options"
-msgstr ""
+msgstr "Optionen für <link href=\"text/shared/optionen/01010800.xhp\" name=\"view\">Ansicht</link>"
#. kgVKD
#: online_update.xhp
@@ -47453,7 +47453,7 @@ msgctxt ""
"par_id3422345\n"
"help.text"
msgid "If an update is available, an icon <image id=\"img_id3155415\" src=\"extensions/res/update/ui/onlineupdate_16.svg\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Update Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
-msgstr ""
+msgstr "Wenn ein Update verfügbar ist, informiert Sie ein Symbol <image id=\"img_id3155415\" src=\"extensions/res/update/ui/onlineupdate_16.svg\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Symbol für Update</alt></image> in der Menüleiste über das Update. Klicken Sie auf das Symbol, um einen Dialog mit weiteren Informationen zu öffnen."
#. bGkRw
#: online_update.xhp
@@ -48398,7 +48398,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paste as Column Before"
-msgstr ""
+msgstr "Als Spalten davor einfügen"
#. gsE4t
#: pastecolumnleft.xhp
@@ -48407,7 +48407,7 @@ msgctxt ""
"hd_id211584810952165\n"
"help.text"
msgid "<variable id=\"pastecolumnlefth1\"><link href=\"text/shared/01/pastecolumnleft.xhp\" name=\"Paste Column Before\">Paste as Column Before</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pastecolumnlefth1\"><link href=\"text/shared/01/pastecolumnleft.xhp\" name=\"Paste Column Before\">Spalten davor einfügen</link></variable>"
#. sYvSY
#: pastecolumnleft.xhp
@@ -48416,7 +48416,7 @@ msgctxt ""
"par_id31584810952167\n"
"help.text"
msgid "<ahelp hid=\".\">Insert clipboard table data in a table as new columns before instead of overwriting the content of the original cells of the target table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fügt die Daten der Zwischenablagetabelle in eine Tabelle als neue Spalten ein, anstatt den Inhalt der ursprünglichen Zellen der Zieltabelle zu überschreiben.</ahelp>"
#. as5zb
#: pastenestedtable.xhp
@@ -48425,7 +48425,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paste Nested Table"
-msgstr ""
+msgstr "Verschachtelte Tabelle einfügen"
#. B3CFV
#: pastenestedtable.xhp
@@ -48434,7 +48434,7 @@ msgctxt ""
"bm_id361584810142517\n"
"help.text"
msgid "<bookmark_value>paste;nested table</bookmark_value> <bookmark_value>paste special;nested table</bookmark_value> <bookmark_value>paste nested table</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Einfügen; verschachtelte Tabelle</bookmark_value><bookmark_value>Inhalte einfügen; verschachtelte Tabelle</bookmark_value><bookmark_value>Verschachtelte Tabelle einfügen</bookmark_value>"
#. BXzAw
#: pastenestedtable.xhp
@@ -48443,7 +48443,7 @@ msgctxt ""
"hd_id81584806817671\n"
"help.text"
msgid "<variable id=\"pastenestedtableh1\"><link href=\"text/shared/01/pastenestedtable.xhp\" name=\"Paste Nested Table\">Paste Nested Table</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pastenestedtableh1\"><link href=\"text/shared/01/pastenestedtable.xhp\" name=\"Paste Nested Table\">Als verschachtelte Tabelle einfügen</link></variable>"
#. sr9PD
#: pastenestedtable.xhp
@@ -48452,7 +48452,7 @@ msgctxt ""
"par_id91584806817674\n"
"help.text"
msgid "<ahelp hid=\".\">Paste clipboard content (including native tables or tables copied from Calc or other spreadsheets) as nested tables in empty cells and at cell starting cursor position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fügt den Inhalt der Zwischenablage (einschließlich nativer Tabellen oder Tabellen, die aus Calc oder anderen Tabellenkalkulationen kopiert wurden) als verschachtelte Tabellen in leere Zellen und an der Cursorposition am Anfang der Zelle ein.</ahelp>"
#. K7apy
#: pastenestedtable.xhp
@@ -48461,7 +48461,7 @@ msgctxt ""
"par_id81584810089800\n"
"help.text"
msgid "Pasting table data in Writer tables overwrites the contents of the existing cells, when the cursor is in an empty cell or at the beginning of the first paragraph of a table cell."
-msgstr ""
+msgstr "Das Einfügen von Tabellendaten in Writer-Tabellen überschreibt den Inhalt der vorhandenen Zellen, wenn sich der Cursor in einer leeren Zelle oder am Anfang des ersten Absatzes einer Tabellenzelle befindet."
#. FqhdV
#: pasterowabove.xhp
@@ -48470,7 +48470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paste as Row Above"
-msgstr ""
+msgstr "Als Zeile oberhalb einfügen"
#. LH8xb
#: pasterowabove.xhp
@@ -48479,7 +48479,7 @@ msgctxt ""
"hd_id211584810952165\n"
"help.text"
msgid "<variable id=\"pasterowaboveh1\"><link href=\"text/shared/01/pasterowabove.xhp\" name=\"Paste as Row Above\">Paste as Row Above</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pasterowaboveh1\"><link href=\"text/shared/01/pasterowabove.xhp\" name=\"Paste as Row Above\">Zeilen oberhalb einfügen</link></variable>"
#. YbQg8
#: pasterowabove.xhp
@@ -48488,7 +48488,7 @@ msgctxt ""
"par_id31584810952167\n"
"help.text"
msgid "<ahelp hid=\".\">Insert clipboard table data in a table as new rows instead of overwriting the content of the original cells of the target table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fügen Sie Tabellendaten der Zwischenablage als neue Zeilen in eine Tabelle ein, anstatt den Inhalt der ursprünglichen Zellen der Zieltabelle zu überschreiben.</ahelp>"
#. oivUB
#: pastespecialmenu.xhp
@@ -48497,7 +48497,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paste Special"
-msgstr ""
+msgstr "Inhalte einfügen"
#. HuP73
#: pastespecialmenu.xhp
@@ -48506,7 +48506,7 @@ msgctxt ""
"hd_id361584804540671\n"
"help.text"
msgid "<variable id=\"pastespecialmenuh1\"><link href=\"text/shared/01/pastespecialmenu.xhp\" name=\"paste special\">Paste Special</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pastespecialmenuh1\"><link href=\"text/shared/01/pastespecialmenu.xhp\" name=\"paste special\">Inhalte einfügen</link></variable>"
#. RWjTr
#: pastespecialmenu.xhp
@@ -48524,7 +48524,7 @@ msgctxt ""
"bm_id201584826135259\n"
"help.text"
msgid "<bookmark_value>paste special;only text (spreadsheet)</bookmark_value><bookmark_value>paste special;only numbers (spreadsheet)</bookmark_value><bookmark_value