summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/includeform.cxx
blob: bf3d689c603b1eaa6e05dceb740da8fc54bc1664 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
 * 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/.
 */

#include "compat.hxx"
#include "plugin.hxx"

namespace {

class IncludeForm final: public PPCallbacks, public loplugin::RewritePlugin {
public:
    explicit IncludeForm(loplugin::InstantiationData const & data):
        RewritePlugin(data)
    { compat::addPPCallbacks(compiler.getPreprocessor(), this); }

private:
    void run() override {}

    void InclusionDirective(
        SourceLocation HashLoc, Token const & IncludeTok, StringRef,
        bool IsAngled, CharSourceRange FilenameRange, FileEntry const * File,
        StringRef SearchPath, StringRef, clang::Module const *) override
    {
        if (ignoreLocation(HashLoc)) {
            return;
        }
        if (File == nullptr) { // in case of "fatal error: '...' file not found"
            return;
        }
        if (IncludeTok.getIdentifierInfo()->getPPKeywordID() != tok::pp_include)
        {
            return;
        }
        auto const uno = isInUnoIncludeFile(HashLoc)
            && !compiler.getSourceManager().isInMainFile(HashLoc);
                // exclude the various compat.cxx that are included in
                // isInUnoIncludeFile
            //TODO: 'uno' should be false if HashLoc is inside an
            // '#ifdef LIBO_INTERNAL_ONLY' block
        bool shouldUseAngles;
        if (uno) {
            shouldUseAngles
                = (!(loplugin::hasPathnamePrefix(SearchPath, SRCDIR)
                     || loplugin::hasPathnamePrefix(SearchPath, BUILDDIR))
                   || loplugin::hasPathnamePrefix(
                       SearchPath, WORKDIR "/UnpackedTarball"));
        } else {
            auto const file = StringRef(
                compiler.getSourceManager().getPresumedLoc(HashLoc)
                .getFilename());
            auto pos = file.rfind('/');
#if defined _WIN32
            auto const pos2 = file.rfind('\\');
            if (pos2 != StringRef::npos
                && (pos == StringRef::npos || pos2 > pos))
            {
                pos = pos2;
            }
#endif
            auto const dir = compat::take_front(file, pos);
            shouldUseAngles = !loplugin::isSamePathname(SearchPath, dir);
        }
        if (shouldUseAngles == IsAngled) {
            return;
        }
        if (rewriter != nullptr) {
            auto last = FilenameRange.getEnd().getLocWithOffset(-1);
            if ((compiler.getSourceManager().getCharacterData(
                     FilenameRange.getBegin())[0]
                 == (IsAngled ? '<' : '"'))
                && (compiler.getSourceManager().getCharacterData(last)[0]
                    == (IsAngled ? '>' : '"'))
                && replaceText(
                    FilenameRange.getBegin(), 1, shouldUseAngles ? "<" : "\"")
                && replaceText(last, 1, shouldUseAngles ? ">" : "\""))
            {
                //TODO: atomically only replace both or neither
                return;
            }
        }
        report(
            DiagnosticsEngine::Warning,
            ("%select{|in UNO API include file, }0replace"
             " %select{\"...\"|<...>}1 include form with"
             " %select{\"...\"|<...>}2 for inclusion of %select{%select{a"
             " source file next to the current source file|a source file not"
             " next to the current source file, or a header}2|%select{a source"
             " file|a header}2}0, %3"),
            FilenameRange.getBegin())
            << uno << IsAngled << shouldUseAngles << File->getName()
            << FilenameRange;
    }
};

static loplugin::Plugin::Registration<IncludeForm> reg("includeform", true);

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
5-2-4&id=b9f615df6f9027998b4e33e1ad401fa337b99110'>source/de/helpcontent2/source/text/sbasic/shared/02.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/de/helpcontent2/source/text/scalc/02.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/04.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po28
-rw-r--r--source/de/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/de/helpcontent2/source/text/sdatabase.po24
-rw-r--r--source/de/helpcontent2/source/text/sdraw/04.po30
-rw-r--r--source/de/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/de/helpcontent2/source/text/shared.po20
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po32
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po4
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po80
-rw-r--r--source/de/helpcontent2/source/text/shared/04.po34
-rw-r--r--source/de/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/de/helpcontent2/source/text/shared/autopi.po56
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po46
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/de/helpcontent2/source/text/simpress/04.po32
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/de/helpcontent2/source/text/swriter.po8
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/de/helpcontent2/source/text/swriter/02.po4
-rw-r--r--source/de/helpcontent2/source/text/swriter/04.po48
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/de/helpcontent2/source/text/swriter/librelogo.po10
-rw-r--r--source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po14
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po62
-rw-r--r--source/de/readlicense_oo/docs.po6
-rw-r--r--source/de/sc/messages.po14
-rw-r--r--source/de/sd/messages.po8
-rw-r--r--source/de/sfx2/messages.po26
-rw-r--r--source/de/starmath/messages.po8
-rw-r--r--source/de/svx/messages.po10
-rw-r--r--source/de/sw/messages.po86
-rw-r--r--source/de/wizards/source/resources.po6
-rw-r--r--source/de/xmlsecurity/messages.po14
-rw-r--r--source/dsb/librelogo/source/pythonpath.po52
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po124
-rw-r--r--source/dsb/sc/messages.po20
-rw-r--r--source/dsb/sd/messages.po6
-rw-r--r--source/dsb/sfx2/messages.po6
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/python.po22
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/02.po20
-rw-r--r--source/es/chart2/messages.po6
-rw-r--r--source/es/cui/messages.po34
-rw-r--r--source/es/dbaccess/messages.po10
-rw-r--r--source/es/desktop/messages.po4
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po38
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po18
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po52
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/02.po50
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po406
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/es/helpcontent2/source/text/scalc/04.po78
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/es/helpcontent2/source/text/schart.po8
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po42
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po16
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po44
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/es/helpcontent2/source/text/shared/05.po16
-rw-r--r--source/es/helpcontent2/source/text/shared/06.po38
-rw-r--r--source/es/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po22
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/es/helpcontent2/source/text/simpress.po4
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po44
-rw-r--r--source/es/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po22
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po14
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/es/scaddins/messages.po4
-rw-r--r--source/es/sfx2/messages.po8
-rw-r--r--source/es/svx/messages.po20
-rw-r--r--source/es/sw/messages.po16
-rw-r--r--source/eu/dbaccess/messages.po4
-rw-r--r--source/eu/filter/source/config/fragments/filters.po32
-rw-r--r--source/eu/filter/source/config/fragments/internalgraphicfilters.po22
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po30
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po236
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po56
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po58
-rw-r--r--source/eu/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/schart/04.po10
-rw-r--r--source/eu/helpcontent2/source/text/sdatabase.po4
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/04.po30
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/guide.po14
-rw-r--r--source/eu/helpcontent2/source/text/shared.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po34
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po70
-rw-r--r--source/eu/helpcontent2/source/text/shared/04.po88
-rw-r--r--source/eu/helpcontent2/source/text/shared/05.po10
-rw-r--r--source/eu/helpcontent2/source/text/shared/autopi.po12
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po142
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po8
-rw-r--r--source/eu/helpcontent2/source/text/simpress/00.po8
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po78
-rw-r--r--source/eu/helpcontent2/source/text/simpress/04.po56
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/eu/helpcontent2/source/text/smath/00.po12
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/smath/04.po14
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po24
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter/04.po76
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po34
-rw-r--r--source/eu/helpcontent2/source/text/swriter/librelogo.po6
-rw-r--r--source/eu/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/eu/sc/messages.po6
-rw-r--r--source/eu/sd/messages.po6
-rw-r--r--source/eu/svtools/messages.po8
-rw-r--r--source/eu/sw/messages.po8
-rw-r--r--source/fi/chart2/messages.po77
-rw-r--r--source/fi/cui/messages.po26
-rw-r--r--source/fi/dbaccess/messages.po4
-rw-r--r--source/fi/desktop/messages.po6
-rw-r--r--source/fi/editeng/messages.po4
-rw-r--r--source/fi/extensions/messages.po6
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/fi/helpcontent2/source/text/scalc/04.po7
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/fi/helpcontent2/source/text/schart.po18
-rw-r--r--source/fi/helpcontent2/source/text/schart/01.po29
-rw-r--r--source/fi/helpcontent2/source/text/sdraw/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/autopi.po4
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po4
-rw-r--r--source/fi/helpcontent2/source/text/smath/guide.po8
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po5
-rw-r--r--source/fi/helpcontent2/source/text/swriter/04.po12
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po19
-rw-r--r--source/fi/helpcontent2/source/text/swriter/menu.po6
-rw-r--r--source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po10
-rw-r--r--source/fi/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po44
-rw-r--r--source/fi/readlicense_oo/docs.po10
-rw-r--r--source/fi/reportdesign/messages.po18
-rw-r--r--source/fi/sc/messages.po262
-rw-r--r--source/fi/scaddins/messages.po8
-rw-r--r--source/fi/sd/messages.po4
-rw-r--r--source/fi/sfx2/messages.po10
-rw-r--r--source/fi/starmath/messages.po4
-rw-r--r--source/fi/svtools/messages.po4
-rw-r--r--source/fi/svx/messages.po11
-rw-r--r--source/fi/sw/messages.po276
-rw-r--r--source/fi/uui/messages.po12
-rw-r--r--source/fi/wizards/source/resources.po31
-rw-r--r--source/fr/chart2/messages.po12
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po10
-rw-r--r--source/fr/sc/messages.po8
-rw-r--r--source/fr/sw/messages.po4
-rw-r--r--source/fr/swext/mediawiki/help.po18
-rw-r--r--source/fr/swext/mediawiki/src/registry/data/org/openoffice/Office.po12
-rw-r--r--source/fr/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po10
-rw-r--r--source/gl/desktop/messages.po8
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po4
-rw-r--r--source/gl/helpcontent2/source/text/scalc/02.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po4
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/gl/sfx2/messages.po4
-rw-r--r--source/gl/svx/messages.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/guide.po38
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po18
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po52
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/02.po50
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po406
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po62
-rw-r--r--source/gug/helpcontent2/source/text/scalc/04.po78
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/gug/helpcontent2/source/text/schart.po8
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po42
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po16
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po44
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po18
-rw-r--r--source/gug/helpcontent2/source/text/shared/05.po16
-rw-r--r--source/gug/helpcontent2/source/text/shared/06.po38
-rw-r--r--source/gug/helpcontent2/source/text/shared/explorer/database.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po22
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/gug/helpcontent2/source/text/simpress.po4
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po44
-rw-r--r--source/gug/helpcontent2/source/text/simpress/04.po8
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po4
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po22
-rw-r--r--source/gug/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po16
-rw-r--r--source/hr/cui/messages.po14
-rw-r--r--source/hsb/cui/messages.po4
-rw-r--r--source/hsb/librelogo/source/pythonpath.po62
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office.po4
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po112
-rw-r--r--source/hsb/sc/messages.po26
-rw-r--r--source/hsb/sd/messages.po6
-rw-r--r--source/hsb/sfx2/messages.po6
-rw-r--r--source/hsb/vcl/messages.po6
-rw-r--r--source/hu/cui/messages.po22
-rw-r--r--source/hu/filter/source/config/fragments/internalgraphicfilters.po52
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po1086
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/hu/sc/messages.po6
-rw-r--r--source/hu/sfx2/messages.po10
-rw-r--r--source/hu/svx/messages.po8
-rw-r--r--source/id/basctl/messages.po10
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po116
-rw-r--r--source/id/helpcontent2/source/text/shared/autopi.po26
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po78
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po42
-rw-r--r--source/id/helpcontent2/source/text/swriter/02.po6
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/id/sc/messages.po6
-rw-r--r--source/id/setup_native/source/mac.po10
-rw-r--r--source/is/sfx2/messages.po8
-rw-r--r--source/it/helpcontent2/source/auxiliary.po8
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/01.po12
-rw-r--r--source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po184
-rw-r--r--source/kk/nlpsolver/src/locale.po8
-rw-r--r--source/kk/scp2/source/ooo.po8
-rw-r--r--source/mn/filter/messages.po115
-rw-r--r--source/mn/sw/messages.po4611
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po136
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po492
-rw-r--r--source/nl/cui/messages.po10
-rw-r--r--source/nl/filter/messages.po12
-rw-r--r--source/nl/formula/messages.po4
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/nl/sc/messages.po12
-rw-r--r--source/nl/sd/messages.po12
-rw-r--r--source/nl/svx/messages.po6
-rw-r--r--source/nn/cui/messages.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po6
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po28
-rw-r--r--source/nn/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/nn/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po4
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po20
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po4
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po4
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/nn/sc/messages.po8
-rw-r--r--source/nn/svx/messages.po8
-rw-r--r--source/nn/swext/mediawiki/help.po8
-rw-r--r--source/oc/dictionaries/gl.po12
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/oc/scp2/source/ooo.po14
-rw-r--r--source/oc/sw/messages.po12
-rw-r--r--source/pa-IN/scaddins/messages.po14
-rw-r--r--source/pl/cui/messages.po4
-rw-r--r--source/pl/extensions/messages.po4
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po16
-rw-r--r--source/pl/sc/messages.po38
-rw-r--r--source/pl/sd/messages.po10
-rw-r--r--source/pl/svx/messages.po4
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/autokorr.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po4
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ro/sc/messages.po25
-rw-r--r--source/ro/sw/messages.po42
-rw-r--r--source/ru/basctl/messages.po8
-rw-r--r--source/ru/chart2/messages.po16
-rw-r--r--source/ru/connectivity/messages.po10
-rw-r--r--source/ru/cui/messages.po68
-rw-r--r--source/ru/dbaccess/messages.po44
-rw-r--r--source/ru/dictionaries/en/dialog.po16
-rw-r--r--source/ru/dictionaries/pt_BR/dialog.po88
-rw-r--r--source/ru/dictionaries/pt_PT.po12
-rw-r--r--source/ru/extensions/messages.po30
-rw-r--r--source/ru/filter/messages.po14
-rw-r--r--source/ru/filter/source/config/fragments/filters.po20
-rw-r--r--source/ru/framework/messages.po4
-rw-r--r--source/ru/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office.po18
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po30
-rw-r--r--source/ru/readlicense_oo/docs.po8
-rw-r--r--source/ru/sc/messages.po296
-rw-r--r--source/ru/sd/messages.po108
-rw-r--r--source/ru/sfx2/classification.po14
-rw-r--r--source/ru/sfx2/messages.po26
-rw-r--r--source/ru/starmath/messages.po122
-rw-r--r--source/ru/svx/messages.po207
-rw-r--r--source/ru/sw/messages.po332
-rw-r--r--source/ru/uui/messages.po59
-rw-r--r--source/sk/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/sk/writerperfect/messages.po8
-rw-r--r--source/sk/xmlsecurity/messages.po10
-rw-r--r--source/sv/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/sv/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/th/sw/messages.po5049
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po12
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/uk/sc/messages.po6
-rw-r--r--source/uk/sfx2/messages.po10
-rw-r--r--source/uk/starmath/messages.po14
-rw-r--r--source/uk/svx/messages.po108
-rw-r--r--source/uk/sw/messages.po56
-rw-r--r--source/zh-CN/dbaccess/messages.po30
-rw-r--r--source/zh-CN/extensions/messages.po6
-rw-r--r--source/zh-CN/helpcontent2/source/auxiliary.po18
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/guide.po96
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/python.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po68
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdatabase.po50
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/01.po50
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/04.po16
-rw-r--r--source/zh-CN/sc/messages.po4
-rw-r--r--source/zh-TW/editeng/messages.po56
431 files changed, 10998 insertions, 11579 deletions
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index 2b0ebee4093..fda1a9c43c3 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-08-18 16:38+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/am/>\n"
"Language: am\n"
@@ -18624,7 +18624,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Spacing: 1.15"
-msgstr ""
+msgstr "የ መስመር ክፍተት: 1.15"
#. q8wJt
#: GenericCommands.xcu
diff --git a/source/an/chart2/messages.po b/source/an/chart2/messages.po
index dfa41e81eb3..6b1d9c097b0 100644
--- a/source/an/chart2/messages.po
+++ b/source/an/chart2/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-01 11:51+0200\n"
-"PO-Revision-Date: 2022-01-17 16:39+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/an/>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1540149291.000000\n"
#. NCRDD
@@ -1668,7 +1668,7 @@ msgstr ""
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:166
msgctxt "dlg_InsertErrorBars|RB_PERCENT"
msgid "_Percentage"
-msgstr ""
+msgstr "_Percentache"
#. bGDm2
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:175
@@ -2713,7 +2713,7 @@ msgstr ""
#: chart2/uiconfig/ui/sidebartype.ui:222
msgctxt "sidebartype|percent"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. iDSaa
#: chart2/uiconfig/ui/sidebartype.ui:236
@@ -3578,7 +3578,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_ChartType.ui:288
msgctxt "tp_ChartType|percent"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. EVNAR
#: chart2/uiconfig/ui/tp_ChartType.ui:296
@@ -4156,7 +4156,7 @@ msgstr ""
#: chart2/uiconfig/ui/tp_ErrorBars.ui:99
msgctxt "tp_ErrorBars|RB_PERCENT"
msgid "_Percentage"
-msgstr ""
+msgstr "_Percentache"
#. kqgrm
#: chart2/uiconfig/ui/tp_ErrorBars.ui:110
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index 54743dd507b..d710b84b1f5 100644
--- a/source/an/cui/messages.po
+++ b/source/an/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: 2022-07-01 11:51+0200\n"
-"PO-Revision-Date: 2022-08-31 12:21+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/an/>\n"
"Language: an\n"
@@ -40,7 +40,7 @@ msgstr "Numero"
#: cui/inc/numcategories.hrc:21
msgctxt "numberingformatpage|liststore1"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. 6C4cy
#: cui/inc/numcategories.hrc:22
diff --git a/source/an/dbaccess/messages.po b/source/an/dbaccess/messages.po
index 33ca66bbcac..d195fef2654 100644
--- a/source/an/dbaccess/messages.po
+++ b/source/an/dbaccess/messages.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-01 11:51+0200\n"
-"PO-Revision-Date: 2022-01-17 16:38+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/an/>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/dbaccessmessages/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1524566312.000000\n"
#. BiN6g
@@ -2545,7 +2545,7 @@ msgstr ""
#: dbaccess/inc/templwin.hrc:44
msgctxt "STRARY_SVT_DOCINFO"
msgid "Date"
-msgstr ""
+msgstr "Calendata"
#. eHFA4
#: dbaccess/inc/templwin.hrc:45
diff --git a/source/an/filter/source/config/fragments/filters.po b/source/an/filter/source/config/fragments/filters.po
index 6232967ce70..9940098e5dc 100644
--- a/source/an/filter/source/config/fragments/filters.po
+++ b/source/an/filter/source/config/fragments/filters.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-12-20 13:20+0100\n"
-"PO-Revision-Date: 2018-07-01 22:41+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/filtersourceconfigfragmentsfilters/an/>\n"
"Language: an\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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1530484870.000000\n"
#. FR4Ff
@@ -64,7 +64,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Pages"
-msgstr ""
+msgstr "Apple Pages"
#. nWjHd
#: BMP___MS_Windows.xcu
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office.po b/source/an/officecfg/registry/data/org/openoffice/Office.po
index 0c41f3dbcf8..e64f561e952 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-02-05 18:59+0100\n"
-"PO-Revision-Date: 2021-10-01 05:36+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
-"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/an/>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeoffice/an/>\n"
"Language: an\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1542022401.000000\n"
@@ -13718,7 +13718,6 @@ msgstr "Documentos de texto"
#. kbKMe
#: UI.xcu
-#, fuzzy
msgctxt ""
"UI.xcu\n"
"..UI.FilterClassification.GlobalFilters.Classes.com.sun.star.sheet.SpreadsheetDocument\n"
@@ -13729,7 +13728,6 @@ msgstr "Fuellas de calculo"
#. MUhBD
#: UI.xcu
-#, fuzzy
msgctxt ""
"UI.xcu\n"
"..UI.FilterClassification.GlobalFilters.Classes.com.sun.star.presentation.PresentationDocument\n"
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index c23022106ba..2fbd574b453 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-12-21 12:38+0100\n"
-"PO-Revision-Date: 2022-08-18 16:38+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/officecfgregistrydataorgopenofficeofficeui/an/>\n"
"Language: an\n"
@@ -4062,7 +4062,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. 2AvVJ
#: CalcCommands.xcu
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 87beaf8dc3b..a02be4b3284 100644
--- a/source/an/sc/messages.po
+++ b/source/an/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: 2022-07-01 11:53+0200\n"
-"PO-Revision-Date: 2022-04-11 14:45+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/scmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022406.000000\n"
#. kBovX
@@ -3402,7 +3402,7 @@ msgstr "Numero"
#: sc/inc/globstr.hrc:521
msgctxt "STR_PERCENT"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. 7G5Cc
#: sc/inc/globstr.hrc:522
@@ -21272,7 +21272,7 @@ msgstr "Valors"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:220
msgctxt "conditionalentry|colscalemin"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. tEhTB
#: sc/uiconfig/scalc/ui/conditionalentry.ui:221
@@ -21319,7 +21319,7 @@ msgstr "Valors"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:239
msgctxt "conditionalentry|colscalemiddle"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. 83BhU
#: sc/uiconfig/scalc/ui/conditionalentry.ui:240
@@ -21366,7 +21366,7 @@ msgstr "Valors"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:258
msgctxt "conditionalentry|colscalemax"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. oTJU7
#: sc/uiconfig/scalc/ui/conditionalentry.ui:259
@@ -21904,7 +21904,7 @@ msgstr "Valors"
#: sc/uiconfig/scalc/ui/conditionaliconset.ui:47
msgctxt "conditionaliconset|listbox"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. hdHXA
#: sc/uiconfig/scalc/ui/conditionaliconset.ui:48
@@ -21963,7 +21963,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Calendata"
#. tgZHu
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
@@ -22502,7 +22502,7 @@ msgstr "Valors"
#: sc/uiconfig/scalc/ui/databaroptions.ui:140
msgctxt "databaroptions|min"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. Ckh2x
#: sc/uiconfig/scalc/ui/databaroptions.ui:141
@@ -22553,7 +22553,7 @@ msgstr "Valors"
#: sc/uiconfig/scalc/ui/databaroptions.ui:165
msgctxt "databaroptions|max"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. 5QJ3k
#: sc/uiconfig/scalc/ui/databaroptions.ui:166
@@ -32028,7 +32028,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:77
msgctxt "sidebarnumberformat|numberformatcombobox"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. bHC79
#: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:78
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 5e6fabc20fa..685dced4ef4 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-03-31 23:45+0200\n"
-"PO-Revision-Date: 2022-08-18 16:39+0000\n"
+"PO-Revision-Date: 2022-10-13 08:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/sfx2messages/an/>\n"
"Language: an\n"
@@ -1247,7 +1247,7 @@ msgstr ""
#: include/sfx2/strings.hrc:234
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
-msgstr ""
+msgstr "Ninviar"
#. 9HHQw
#: include/sfx2/strings.hrc:235
@@ -4902,10 +4902,9 @@ msgstr ""
#. eECt7
#: sfx2/uiconfig/ui/templatedlg.ui:212
-#, fuzzy
msgctxt "templatedlg|applist"
msgid "Spreadsheets"
-msgstr "Fuella de calculo"
+msgstr "Fuellas de calculo"
#. ajLbV
#: sfx2/uiconfig/ui/templatedlg.ui:213
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 9f9b7254bc4..b575db00885 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-01 11:53+0200\n"
-"PO-Revision-Date: 2022-06-06 18:34+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/swmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542195186.000000\n"
#. v3oJv
@@ -16847,7 +16847,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:38
msgctxt "inputwinmenu|phd"
msgid "Percent"
-msgstr ""
+msgstr "Percentache"
#. AE86C
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:42
diff --git a/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 625a25f783b..2599dd613e1 100644
--- a/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.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: 2013-06-22 20:57+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/swextmediawikisrcregistrydataorgopenofficeofficecustom/an/>\n"
"Language: an\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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1371934654.000000\n"
#. sc9Hg
@@ -194,7 +194,7 @@ msgctxt ""
"Dlg_SendButton\n"
"value.text"
msgid "~Send"
-msgstr ""
+msgstr "~Ninviar"
#. j2hBK
#: WikiExtension.xcu
diff --git a/source/an/vcl/messages.po b/source/an/vcl/messages.po
index 4322398e39f..27d412e1cf6 100644
--- a/source/an/vcl/messages.po
+++ b/source/an/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-01 11:54+0200\n"
-"PO-Revision-Date: 2022-05-18 09:18+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-7-3/vclmessages/an/>\n"
"Language: an\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022411.000000\n"
#. k5jTM
@@ -142,19 +142,19 @@ msgstr ""
#: vcl/inc/print.hrc:53
msgctxt "RID_STR_PAPERNAMES"
msgid "C"
-msgstr ""
+msgstr "C"
#. Yfrzk
#: vcl/inc/print.hrc:54
msgctxt "RID_STR_PAPERNAMES"
msgid "D"
-msgstr ""
+msgstr "D"
#. Ahd2X
#: vcl/inc/print.hrc:55
msgctxt "RID_STR_PAPERNAMES"
msgid "E"
-msgstr ""
+msgstr "E"
#. 9quGe
#: vcl/inc/print.hrc:56
diff --git a/source/ast/chart2/messages.po b/source/ast/chart2/messages.po
index 4db68bcb87a..80520b3b8ba 100644
--- a/source/ast/chart2/messages.po
+++ b/source/ast/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: 2022-07-01 11:51+0200\n"
-"PO-Revision-Date: 2022-07-15 17:24+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/chart2messages/ast/>\n"
"Language: ast\n"
@@ -1145,7 +1145,7 @@ msgstr "Allugamientu"
#: chart2/uiconfig/ui/chartdatadialog.ui:8
msgctxt "chartdatadialog|ChartDataDialog"
msgid "Data Table"
-msgstr "Tabla datos"
+msgstr "Tabla de datos"
#. ywdAz
#: chart2/uiconfig/ui/chartdatadialog.ui:72
@@ -1535,7 +1535,7 @@ msgstr "Escueye'l separador ente multiples cadenes de testu pa un mesmu oxetu."
#: chart2/uiconfig/ui/dlg_DataLabel.ui:406
msgctxt "dlg_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "Opciones del atributu"
#. gE7CA
#: chart2/uiconfig/ui/dlg_DataLabel.ui:458
@@ -2663,7 +2663,7 @@ msgstr ""
#: chart2/uiconfig/ui/sidebartype.ui:222
msgctxt "sidebartype|percent"
msgid "Percent"
-msgstr ""
+msgstr "Porcentaxe"
#. iDSaa
#: chart2/uiconfig/ui/sidebartype.ui:236
@@ -3851,7 +3851,7 @@ msgstr "Escueye'l separador ente multiples cadenes de testu pa un mesmu oxetu."
#: chart2/uiconfig/ui/tp_DataLabel.ui:338
msgctxt "tp_DataLabel|label1"
msgid "Attribute Options"
-msgstr ""
+msgstr "Opciones del atributu"
#. avLCL
#: chart2/uiconfig/ui/tp_DataLabel.ui:390
@@ -3947,7 +3947,7 @@ msgstr "Escoyer l'intervalu de datos"
#: chart2/uiconfig/ui/tp_DataSource.ui:73
msgctxt "tp_DataSource|FT_SERIES"
msgid "Data _series:"
-msgstr "_Series de datos"
+msgstr "_Series de datos:"
#. oFoeg
#: chart2/uiconfig/ui/tp_DataSource.ui:116
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 089e08bb981..5afb4164eb8 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/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: 2022-07-01 11:51+0200\n"
-"PO-Revision-Date: 2022-08-31 12:21+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/cuimessages/ast/>\n"
"Language: ast\n"
@@ -38,7 +38,7 @@ msgstr "Númberu"
#: cui/inc/numcategories.hrc:21
msgctxt "numberingformatpage|liststore1"
msgid "Percent"
-msgstr "Porcentax"
+msgstr "Porcentaxe"
#. 6C4cy
#: cui/inc/numcategories.hrc:22
@@ -6981,7 +6981,7 @@ msgstr "Testu"
#: cui/uiconfig/ui/colorconfigwin.ui:1203
msgctxt "colorconfigwin|protectedcells"
msgid "Protected cells background"
-msgstr ""
+msgstr "Fondu de les caxelles protexíes"
#. mA6HV
#: cui/uiconfig/ui/colorconfigwin.ui:1219
@@ -6999,7 +6999,7 @@ msgstr "Cuadrícula"
#: cui/uiconfig/ui/colorconfigwin.ui:1287
msgctxt "colorconfigwin|draw"
msgid "Drawing / Presentation"
-msgstr "Dibuxu / Presentación"
+msgstr "Dibuxu/presentación"
#. yELpi
#: cui/uiconfig/ui/colorconfigwin.ui:1339
@@ -8241,7 +8241,7 @@ msgstr "Amuesa'l testu paralelu a la llinia de dimensiones o con un ángulu de 9
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
-msgstr "Ver les unidaes de _midida"
+msgstr "Amosar les unidaes de _midida"
#. cJRA9
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
@@ -21282,7 +21282,7 @@ msgstr "Cará_uteres al entamu de la llinia"
#: cui/uiconfig/ui/textflowpage.ui:181
msgctxt "textflowpage|labelMaxNum"
msgid "_Maximum consecutive hyphenated lines"
-msgstr "Ringleres guionaes consecutives _máximes"
+msgstr "Ringleres guionaes consecutives má_ximes"
#. GgHhP
#: cui/uiconfig/ui/textflowpage.ui:192
diff --git a/source/ast/desktop/messages.po b/source/ast/desktop/messages.po
index 9ff205d7160..5e9c4bc14ed 100644
--- a/source/ast/desktop/messages.po
+++ b/source/ast/desktop/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2022-07-15 17:24+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/desktopmessages/ast/>\n"
"Language: ast\n"
@@ -1073,7 +1073,7 @@ msgstr "Llei l'alcuerdu de llicencia completu. Usa la barra de movimientu o'l bo
#: desktop/uiconfig/ui/licensedialog.ui:160
msgctxt "licensedialog|label5"
msgid "Accept the License Agreement for the extension by pressing the 'Accept' button."
-msgstr "Aceutar l'alcuerdu de llicencia de la estensión primiendo'l botón «Aceutar»."
+msgstr "Aceuta l'alcuerdu de llicencia de la estensión calcando'l botón «Aceutar»."
#. ydBcE
#: desktop/uiconfig/ui/licensedialog.ui:173
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index 01c70fade4a..1dae81ac809 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-01 11:52+0200\n"
-"PO-Revision-Date: 2022-07-15 17:24+0000\n"
+"PO-Revision-Date: 2022-10-13 08:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-7-3/fpickermessages/ast/>\n"
"Language: ast\n"
@@ -413,7 +413,7 @@ msgstr ""
#: include/fpicker/strings.hrc:18
msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS"
msgid "~Edit filter settings"
-msgstr "~Editar la configuración de peñeres"
+msgstr "~Editar los axustes de peñeres"
#. k7Sdb
#: include/fpicker/strings.hrc:19
@@ -497,7 +497,7 @@ msgid ""
msgstr ""
"Yá esiste un ficheru nomáu «$filename$».\n"
"\n"
-"¿Quier trocalu?"
+"¿Quies trocalu?"
#. z6Eo3
#: include/fpicker/strings.hrc:32
diff --git a/source/ast/helpcontent2/source/auxiliary.po b/source/ast/helpcontent2/source/auxiliary.po
index 22b6f5eaeb9..c731d663563 100644
--- a/source/ast/helpcontent2/source/auxiliary.po
+++ b/source/ast/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-11-25 19:33+0100\n"
-"PO-Revision-Date: 2022-04-26 12:55+0000\n"
+"PO-Revision-Date: 2022-10-13 10:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/auxiliary/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1532004324.000000\n"
#. fEEXD
@@ -86,7 +86,7 @@ msgctxt ""
"07010305\n"
"node.text"
msgid "ScriptForge Library"
-msgstr ""
+msgstr "Biblioteca ScriptForge"
#. Vkt9E
#: sbasic.tree
@@ -185,7 +185,7 @@ msgctxt ""
"0803\n"
"node.text"
msgid "Functions Types and Operators"
-msgstr "Tipos de funciones y operadores"
+msgstr "Tribes de funciones y operadores"
#. DSUE2
#: scalc.tree
@@ -356,7 +356,7 @@ msgctxt ""
"0901\n"
"node.text"
msgid "General Information"
-msgstr ""
+msgstr "Información xeneral"
#. xU49Q
#: sdraw.tree
@@ -428,7 +428,7 @@ msgctxt ""
"1105\n"
"node.text"
msgid "Printing"
-msgstr "Imprentar"
+msgstr "Imprentación"
#. G8GoF
#: sdraw.tree
diff --git a/source/ast/helpcontent2/source/text/sbasic/guide.po b/source/ast/helpcontent2/source/text/sbasic/guide.po
index b84c053ddde..e1de3502f52 100644
--- a/source/ast/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ast/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-10-20 13:08+0200\n"
-"PO-Revision-Date: 2022-08-31 14:00+0000\n"
+"PO-Revision-Date: 2022-10-13 10:18+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicguide/ast/>\n"
"Language: ast\n"
@@ -1076,7 +1076,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Properties of Controls in the Dialog Editor"
-msgstr "Cambéu de les propiedaes de los campos de control nel Editor de diálogos"
+msgstr "Cambéu de les propiedaes de los controles nel Editor de diálogos"
#. PDQCc
#: control_properties.xhp
@@ -1094,7 +1094,7 @@ msgctxt ""
"hd_id3145786\n"
"help.text"
msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
-msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Cambéu de les propiedaes de los campos de control nel Editor de diálogos</link></variable>"
+msgstr "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Cambéu de les propiedaes de los controles nel Editor de diálogos</link></variable>"
#. Es8Xy
#: control_properties.xhp
@@ -1193,7 +1193,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Controls in the Dialog Editor"
-msgstr "Creación de campos de control nel Editor de diálogos"
+msgstr "Creación controles nel Editor de diálogos"
#. yeHTt
#: insert_control.xhp
@@ -1202,7 +1202,7 @@ msgctxt ""
"bm_id3149182\n"
"help.text"
msgid "<bookmark_value>controls; creating in the dialog editor</bookmark_value><bookmark_value>dialog editor;creating controls</bookmark_value>"
-msgstr "<bookmark_value>campos de control;crear nel editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear campos de control</bookmark_value>"
+msgstr "<bookmark_value>controles;crear nel editor de diálogos</bookmark_value><bookmark_value>editor de diálogos;crear controles</bookmark_value>"
#. UAc5k
#: insert_control.xhp
@@ -1679,7 +1679,7 @@ msgctxt ""
"hd_id3150042\n"
"help.text"
msgid "Read or Edit Properties of Controls in the Program"
-msgstr "Lleer o editar propiedaes de los campos de control nel programa"
+msgstr "Lleer o editar propiedaes de los controles nel programa"
#. SahL8
#: sample_code.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/python.po b/source/ast/helpcontent2/source/text/sbasic/python.po
index 1c24c86bebb..367f10d46b5 100644
--- a/source/ast/helpcontent2/source/text/sbasic/python.po
+++ b/source/ast/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-12-20 13:20+0100\n"
-"PO-Revision-Date: 2022-02-10 10:40+0000\n"
+"PO-Revision-Date: 2022-10-13 10:18+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-7-3/textsbasicpython/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.12.2\n"
#. naSFZ
#: main0000.xhp
@@ -3613,4 +3613,4 @@ msgctxt ""
"par_id351633599611244\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\"><literal>PythonShell</literal></link> function in <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link> service"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03/sf_exception.xhp?#PythonShell\" name=\"PythonShell method\">Función <literal>PythonShell</literal></link> del serviciu <link href=\"text/sbasic/shared/03/sf_exception.xhp\" name=\"ScriptForge.Exception service\"><literal>ScriptForge.Exception</literal></link>"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po